/* 山东大洋包装科技有限公司 — 企业官网 */
:root {
  --ocean-900: #063647;
  --ocean-800: #0a4d5c;
  --ocean-700: #0e6b7a;
  --ocean-500: #1a9aad;
  --ocean-300: #7ec8d4;
  --ocean-100: #e8f6f8;
  --sand-50: #f7fafb;
  --ink: #14242a;
  --ink-soft: #4a5c64;
  --line: rgba(6, 54, 71, 0.12);
  --amber: #e08a2a;
  --amber-dark: #c47318;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(6, 54, 71, 0.12);
  --radius: 4px;
  --font-display: "Sora", "Noto Sans SC", sans-serif;
  --font-body: "Noto Sans SC", "Sora", sans-serif;
  --max: 1160px;
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(126, 200, 212, 0.35), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(224, 138, 42, 0.08), transparent 55%),
    linear-gradient(180deg, #f4fafb 0%, var(--sand-50) 40%, #eef5f7 100%);
  line-height: 1.7;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--ocean-500), var(--ocean-900));
  display: grid;
  place-items: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(10, 77, 92, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 0.95vw, 0.92rem);
  color: var(--ocean-900);
  font-weight: 700;
}

.brand-text span {
  font-size: 0.68rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav > li {
  position: relative;
}

.nav > li > a,
.nav-toggle-link {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.92rem;
  color: var(--ink);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.nav > li > a:hover,
.nav > li:hover > a,
.nav > li > a.active {
  color: var(--ocean-700);
  background: var(--ocean-100);
}

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 168px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.2s ease;
}

.nav > li:hover .dropdown,
.nav > li:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.55rem 0.75rem;
  font-size: 0.88rem;
  border-radius: 6px;
  color: var(--ink-soft);
}

.dropdown a:hover {
  background: var(--ocean-100);
  color: var(--ocean-800);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-chip {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ocean-800);
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: white;
  box-shadow: 0 10px 24px rgba(224, 138, 42, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(224, 138, 42, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--ocean-800);
  border: 1.5px solid var(--ocean-300);
}

.btn-ghost:hover {
  background: var(--ocean-100);
}

.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-btn span {
  width: 18px;
  height: 2px;
  background: var(--ocean-900);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6, 54, 71, 0.88) 0%,
    rgba(6, 54, 71, 0.55) 45%,
    rgba(6, 54, 71, 0.25) 100%
  );
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 5rem;
  max-width: 640px;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.85rem;
  animation: rise 0.8s ease both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
  opacity: 0.95;
  animation: rise 0.8s 0.1s ease both;
}

.hero p {
  font-size: 1rem;
  opacity: 0.88;
  margin-bottom: 1.75rem;
  max-width: 32em;
  animation: rise 0.8s 0.18s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 0.8s 0.26s ease both;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: white;
  transform: scale(1.15);
}

.scroll-hint {
  position: absolute;
  z-index: 3;
  right: 2rem;
  bottom: 2rem;
  writing-mode: vertical-rl;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  opacity: 0.7;
  animation: bob 2s ease-in-out infinite;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* —— Sections —— */
.section {
  padding: 4.5rem 0;
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ocean-500);
  margin-bottom: 0.55rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--ocean-900);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.section-head p {
  color: var(--ink-soft);
}

/* —— Advantage —— */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.adv-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.adv-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  background: var(--ocean-100);
  color: var(--ocean-700);
}

.adv-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--ocean-900);
}

.adv-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* —— Product spotlight —— */
.product-spotlight {
  display: grid;
  gap: 2rem;
}

.spot-item {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(6, 54, 71, 0.06);
}

.spot-item:nth-child(even) {
  grid-template-columns: 1fr 1.1fr;
}

.spot-item:nth-child(even) .spot-media {
  order: 2;
}

.spot-media {
  min-height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.spot-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spot-media .tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  background: rgba(6, 54, 71, 0.85);
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

.spot-body {
  padding: 2rem 2rem 2rem 0.5rem;
}

.spot-item:nth-child(even) .spot-body {
  padding: 2rem 0.5rem 2rem 2rem;
}

.spot-body h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--ocean-900);
  margin-bottom: 0.75rem;
}

.spot-body p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.feature-list {
  margin-bottom: 1.5rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ocean-500);
}

/* —— Gallery grids —— */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.25s, box-shadow 0.25s;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.gallery-card .thumb {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  background-color: var(--ocean-100);
}

.gallery-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card .body {
  padding: 1rem 1.1rem 1.25rem;
}

.gallery-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--ocean-900);
}

.gallery-card p {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* —— Stats —— */
.about-band {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: linear-gradient(135deg, var(--ocean-900), var(--ocean-700));
  color: white;
  border-radius: 20px;
  padding: 2.75rem;
  overflow: hidden;
  position: relative;
}

.about-band::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -60px;
  top: -80px;
  border-radius: 50%;
  background: rgba(126, 200, 212, 0.15);
}

.about-band h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  position: relative;
}

.about-band p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
  position: relative;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
}

.stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.1rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
}

.stat span {
  font-size: 0.82rem;
  opacity: 0.85;
}

/* —— Partners —— */
.partner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.partner-logo {
  width: 140px;
  height: 64px;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ocean-800);
  opacity: 0.85;
}

/* —— News —— */
.news-list {
  display: grid;
  gap: 1rem;
}

.news-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.15rem 1.35rem;
  transition: box-shadow 0.2s;
}

.news-item:hover {
  box-shadow: var(--shadow);
}

.news-date {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--ocean-500);
}

.news-item h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.news-item p {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.news-item .more {
  color: var(--ocean-700);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

/* —— Page hero (inner) —— */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(120deg, var(--ocean-900) 0%, var(--ocean-700) 55%, #1a8a9a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 0.75rem;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.page-hero p {
  opacity: 0.9;
  max-width: 36em;
}

/* —— Content layouts —— */
.prose {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem 2.25rem;
}

.prose h2 {
  font-family: var(--font-display);
  color: var(--ocean-900);
  font-size: 1.35rem;
  margin: 1.5rem 0 0.75rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.prose ul {
  margin: 0 0 1rem 1.2rem;
  list-style: disc;
  color: var(--ink-soft);
}

.two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.side-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
}

.side-card h3 {
  font-size: 1.05rem;
  color: var(--ocean-900);
  margin-bottom: 1rem;
}

/* —— Timeline —— */
.timeline {
  position: relative;
  padding-left: 1.75rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.3rem;
  bottom: 0.3rem;
  width: 2px;
  background: var(--ocean-300);
}

.timeline-item {
  position: relative;
  margin-bottom: 1.75rem;
  padding-left: 1rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 0.45rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ocean-500);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--ocean-300);
}

.timeline-item .year {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ocean-700);
  margin-bottom: 0.25rem;
}

.timeline-item .card-body {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 8px 24px rgba(6, 54, 71, 0.06);
}

.timeline-item .card-body h3 {
  font-size: 1.05rem;
  color: var(--ocean-900);
  margin-bottom: 0.35rem;
}

.timeline-item .card-body p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* —— Honor / certificates —— */
.honor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.honor-card {
  aspect-ratio: 3/4;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem;
  color: white;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.honor-card strong {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  position: relative;
}

.honor-card span {
  font-size: 0.8rem;
  opacity: 0.9;
  position: relative;
}

/* —— Product detail —— */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 1rem 0 1.5rem;
}

.spec-table th,
.spec-table td {
  border: 1px solid var(--line);
  padding: 0.7rem 0.9rem;
  text-align: left;
}

.spec-table th {
  background: var(--ocean-100);
  color: var(--ocean-900);
  width: 32%;
  font-weight: 600;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.product-thumbs .thumb {
  aspect-ratio: 1;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  overflow: hidden;
}

.product-thumbs .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero-img {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 360px;
  background: var(--ocean-100);
}

.product-hero-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* —— Contact —— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--ocean-100);
  color: var(--ocean-700);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 700;
}

.contact-item h3 {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 0.2rem;
}

.contact-item p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ocean-900);
}

.qr-box {
  text-align: center;
  padding: 1.5rem;
}

.qr-placeholder {
  width: 160px;
  height: 160px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  background: repeating-linear-gradient(
      45deg,
      var(--ocean-100),
      var(--ocean-100) 8px,
      white 8px,
      white 16px
    ),
    linear-gradient(var(--ocean-700), var(--ocean-500));
  display: grid;
  place-items: center;
  color: var(--ocean-900);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--line);
}

.map-placeholder {
  height: 280px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(6, 54, 71, 0.55), rgba(26, 154, 173, 0.4)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1200&q=60")
      center/cover;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 600;
  border: 1px solid var(--line);
}

/* —— Footer —— */
.site-footer {
  background: var(--ocean-900);
  color: rgba(255, 255, 255, 0.85);
  padding: 3.5rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: white;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.footer-col h4 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  opacity: 0.75;
  margin-bottom: 0.45rem;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--ocean-300);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
  opacity: 0.7;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
  text-decoration: underline;
}

/* —— Mobile bottom nav —— */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 0.4rem 0.5rem calc(0.4rem + env(safe-area-inset-bottom));
  grid-template-columns: repeat(4, 1fr);
}

.mobile-bar a {
  text-align: center;
  font-size: 0.72rem;
  color: var(--ink-soft);
  padding: 0.4rem;
  border-radius: 8px;
}

.mobile-bar a strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.1rem;
  color: var(--ocean-800);
}

.mobile-bar a:hover,
.mobile-bar a.active {
  background: var(--ocean-100);
  color: var(--ocean-800);
}

/* —— Reveal animation —— */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* —— Placeholder color blocks —— */
.ph-teal {
  background: linear-gradient(145deg, #0e6b7a, #063647);
}
.ph-cyan {
  background: linear-gradient(145deg, #7ec8d4, #1a9aad);
}
.ph-amber {
  background: linear-gradient(145deg, #e08a2a, #8a5010);
}
.ph-slate {
  background: linear-gradient(145deg, #4a5c64, #14242a);
}
.ph-mint {
  background: linear-gradient(145deg, #b8e0d2, #3d8b7a);
}
.ph-steel {
  background: linear-gradient(145deg, #9aabb4, #4a5c64);
}

/* —— Responsive —— */
@media (max-width: 980px) {
  .adv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spot-item,
  .spot-item:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .spot-item:nth-child(even) .spot-media {
    order: 0;
  }

  .spot-body,
  .spot-item:nth-child(even) .spot-body {
    padding: 1.5rem;
  }

  .about-band,
  .two-col,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .honor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}

@media (max-width: 1100px) {
  .header-cta .phone-chip {
    display: none;
  }
}

@media (max-width: 820px) {
  .menu-btn {
    display: flex;
  }

  .brand-text strong {
    font-size: 0.8rem;
    max-width: 12.5em;
  }

  .nav-wrap {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: white;
    border-bottom: 1px solid var(--line);
    padding: 0.75rem;
    display: none;
    max-height: calc(100vh - var(--header-h));
    overflow: auto;
  }

  .nav-wrap.is-open {
    display: block;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 0.75rem;
    display: none;
  }

  .nav > li.is-open .dropdown {
    display: block;
  }

  .header-cta .phone-chip {
    display: none;
  }

  .mobile-bar {
    display: grid;
  }

  body {
    padding-bottom: 70px;
  }

  .scroll-hint {
    display: none;
  }
}

@media (max-width: 560px) {
  .adv-grid,
  .gallery-grid,
  .honor-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 480px;
  }
}

/* —— Extra blocks 2026 —— */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.process-step {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.35rem 1.2rem;
  box-shadow: 0 10px 28px rgba(6, 54, 71, 0.06);
}
.process-step .num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ocean-500);
  margin-bottom: 0.55rem;
  letter-spacing: 0.04em;
}
.process-step h3 {
  font-size: 1.05rem;
  color: var(--ocean-900);
  margin-bottom: 0.4rem;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.feature-strip > div {
  background: linear-gradient(180deg, #fff, var(--ocean-100));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem 1.1rem;
}
.feature-strip h3 {
  font-size: 1rem;
  color: var(--ocean-900);
  margin-bottom: 0.4rem;
}
.feature-strip p {
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.prose p {
  margin-bottom: 0.95rem;
}
.prose h2 {
  margin-top: 1.6rem;
}
@media (max-width: 900px) {
  .process-grid,
  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .process-grid,
  .feature-strip {
    grid-template-columns: 1fr;
  }
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #fff;
  text-decoration: underline;
}

/* —— series grid —— */
.series-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}
.series-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem 1rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.series-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--ocean-300);
}
.series-card h3 {
  font-size: 0.98rem;
  color: var(--ocean-900);
  margin-bottom: 0.35rem;
}
.series-card p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
@media (max-width: 980px) {
  .series-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .series-grid { grid-template-columns: 1fr; }
}
