@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #0b1728;
  --bg-soft: #0f1e32;
  --ink: #dce4f2;
  --muted: #9aa8be;
  --gold: #d7b068;
  --gold-soft: #a5844f;
  --champagne: #f2e4c3;
  --navy: #0b1728;
  --navy-mid: #1a3050;
  --accent: #3d6589;
  --accent-light: #6b8faf;
  --accent-soft: rgba(61, 101, 137, 0.22);
  --accent-glow: rgba(11, 23, 40, 0.55);
  --glass: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.14);
  --panel: rgba(11, 23, 40, 0.72);
  --radius: 1.2rem;
  --page-max: 1240px;
  --gutter: clamp(1rem, 3vw, 2rem);
  --section-gap: 2.5rem;
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-deep: 0 28px 80px rgba(4, 8, 15, 0.55);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(11, 23, 40, 0.9), rgba(11, 23, 40, 0.94)),
    url("/assets/gold-background.png") center/cover fixed no-repeat;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 45rem;
  height: 45rem;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
}

body::before {
  left: -16rem;
  top: -8rem;
  background: radial-gradient(circle, rgba(215, 176, 104, 0.4), transparent 60%);
}

body::after {
  right: -18rem;
  top: 30%;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--page-max), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 1rem;
  z-index: 40;
  width: min(var(--page-max), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  border: none;
  border-radius: 999px;
  background: rgba(11, 23, 40, 0.58);
  backdrop-filter: blur(14px);
  transition: all 420ms var(--ease-premium);
}

.topbar.is-compact {
  width: min(1080px, calc(100% - var(--gutter) * 2));
  background: rgba(11, 23, 40, 0.82);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.3);
}

.topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem 1rem;
  padding: 0.62rem 1.1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  min-width: 0;
  transition: opacity 280ms var(--ease-premium);
}

.brand:hover { opacity: 0.92; }

.brand-logo {
  width: 2.35rem;
  height: 2.35rem;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
  min-width: 0;
}

.brand-text strong {
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: var(--champagne);
}

.brand-text small {
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 0.72rem;
  flex-wrap: wrap;
  justify-content: center;
}

nav a {
  color: #d2dbec;
  font-size: 0.92rem;
  padding: 0.2rem 0.35rem;
  border-radius: 0.5rem;
  transition: color 300ms var(--ease-premium), transform 300ms var(--ease-premium), background 300ms var(--ease-premium);
}

nav a:hover {
  color: var(--champagne);
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.05);
}

.lang-switch {
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  font-size: 0.83rem;
  background: linear-gradient(140deg, rgba(215, 176, 104, 0.3), rgba(215, 176, 104, 0.12));
  color: #fff4dc;
  transition: transform 300ms var(--ease-premium), box-shadow 300ms var(--ease-premium);
}

.lang-switch:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(215, 176, 104, 0.28);
}

main { padding-top: 1.6rem; }

section { padding: var(--section-gap) 0; }

.section-head {
  margin-bottom: 1.25rem;
  max-width: 52rem;
}

.section-head h2 { margin-bottom: 0.55rem; }

.section-head + .bento-grid,
.section-head + .process-grid,
.section-head + .metrics-grid,
.section-head + .dual-image-grid,
.section-head + .gallery {
  margin-top: 0;
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  letter-spacing: -0.02em;
}

h2 { font-size: clamp(1.58rem, 3vw, 2.6rem); }

.gradient-text {
  background: linear-gradient(120deg, #fff6e4, var(--gold) 50%, var(--accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kicker {
  display: inline-flex;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--gold);
}

.lead {
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-shell {
  position: relative;
  border-radius: 2rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow-deep);
  overflow: hidden;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(215, 176, 104, 0.12), transparent 40%), linear-gradient(320deg, var(--accent-soft), transparent 36%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.4rem;
  padding: clamp(1.4rem, 3.5vw, 2.4rem);
  padding-bottom: 1rem;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
}

.hero-stats {
  position: relative;
  z-index: 1;
  padding: 0 clamp(1.4rem, 3.5vw, 2.4rem) clamp(1.4rem, 3.5vw, 2.4rem);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.hero-grid-single {
  grid-template-columns: 1fr;
}

.hero-owner {
  margin-top: 0;
  max-width: 100%;
  min-height: 100%;
}

.hero-header-image {
  margin: 0;
  padding: 0;
  border-radius: 1.2rem;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  min-height: 0;
  height: 100%;
  align-self: stretch;
  display: flex;
}

.hero-header-image:hover {
  transform: none;
  box-shadow: none;
}

.hero-owner img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  max-height: 32rem;
  object-fit: cover;
}

.hero-header-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: 28% top;
}

.hero-media {
  min-height: 25rem;
  border-radius: 1.4rem;
  overflow: hidden;
  background: var(--panel);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 520ms var(--ease-premium);
}

.hero-media:hover img { transform: scale(1.08); }

.btn-row { margin-top: 1.3rem; display: flex; gap: 0.8rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.78rem 1.24rem;
  font-weight: 600;
  transition: transform 360ms var(--ease-premium), box-shadow 360ms var(--ease-premium), filter 360ms var(--ease-premium);
}

.btn-primary {
  color: #1a1305;
  background: linear-gradient(140deg, #f2d9a4, var(--gold));
  box-shadow: 0 12px 26px rgba(215, 176, 104, 0.26);
}

.btn-secondary {
  color: #c8d8ea;
  background: var(--accent-soft);
  border: none;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.06);
}

.bento-grid {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
}

.bento-layout {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.bento-row {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
}

.bento-stack {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  min-height: 0;
}

.bento-stack .card {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}

.bento-grid > .card,
.bento-row > .card,
.bento-stack > .card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.bento-grid > .card .btn,
.bento-row > .card .btn,
.bento-stack > .card .btn,
.bento-grid > .card .read-link,
.bento-row > .card .read-link,
.bento-stack > .card .read-link,
.bento-grid > .card .btn-row,
.bento-row > .card .btn-row,
.bento-stack > .card .btn-row {
  margin-top: auto;
}

.bento-3 { grid-column: span 3; }
.bento-4 { grid-column: span 4; }
.bento-6 { grid-column: span 6; }
.bento-8 { grid-column: span 8; }
.bento-12 { grid-column: span 12; }

.card {
  position: relative;
  background: var(--panel);
  border: none;
  border-radius: var(--radius);
  padding: 1.15rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(3, 7, 14, 0.32);
  transition: transform 380ms var(--ease-premium), box-shadow 380ms var(--ease-premium);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(3, 7, 14, 0.5);
}

.glass-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02));
}

.stat-row { margin-top: 1.2rem; display: grid; gap: 0.7rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }

.stat { padding: 0.8rem; border-radius: 1rem; background: rgba(255, 255, 255, 0.05); }
.stat span { color: var(--gold); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em; }
.stat p { margin: 0.35rem 0 0; color: var(--muted); font-size: 0.92rem; }

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.split > .card,
.split > article {
  height: 100%;
}

.image-card {
  min-height: 20rem;
  padding: 0;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.muted { color: var(--muted); }

.list { margin: 0; padding-left: 1.1rem; color: var(--muted); }

.process-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.process-step {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.process-step .btn { margin-top: auto; }

.process-step span { color: var(--gold); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; }

.gallery { display: grid; gap: 0.85rem; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery .item {
  min-height: 8.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-end;
  padding: 0.8rem;
  overflow: hidden;
}

.gallery .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.6rem;
}

form {
  border-radius: 1.2rem;
  border: none;
  background: var(--panel);
  padding: 1.1rem;
  backdrop-filter: blur(10px);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
label { display: block; font-size: 0.88rem; margin-bottom: 0.22rem; color: #d0daee; }

input, select, textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  border-radius: 0.82rem;
  color: var(--ink);
  padding: 0.65rem 0.72rem;
  transition: border-color 280ms var(--ease-premium), box-shadow 280ms var(--ease-premium), transform 280ms var(--ease-premium);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(215, 176, 104, 0.65);
  box-shadow: 0 0 0 4px rgba(215, 176, 104, 0.16);
}

textarea { min-height: 7rem; resize: vertical; }
.full { grid-column: 1 / -1; }

.success {
  display: none;
  margin-top: 0.8rem;
  border-radius: 0.72rem;
  padding: 0.58rem 0.72rem;
  color: #d9ffe7;
  background: rgba(47, 160, 100, 0.2);
  border: none;
}

.form-error {
  display: none;
  margin-top: 0.8rem;
  border-radius: 0.72rem;
  padding: 0.58rem 0.72rem;
  color: #ffd0d0;
  background: rgba(180, 60, 60, 0.22);
  border: none;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.image-frame {
  display: grid;
  gap: 0.5rem;
}

.image-frame figcaption {
  font-size: 0.82rem;
  color: var(--muted);
}

.dual-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.dual-image-grid .image-card {
  min-height: 11rem;
  max-height: 14rem;
}

.zoomable-image {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(3, 6, 12, 0.88);
  padding: 1rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(94vw, 1100px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 0.8rem;
}

.form-incentive {
  margin-top: 0.85rem;
  padding: 0.75rem;
  border-radius: 0.95rem;
  background: rgba(215, 176, 104, 0.12);
  font-size: 0.9rem;
  color: #f6e7c2;
}

.section-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: transform 700ms var(--ease-premium), opacity 700ms var(--ease-premium);
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.loading .btn-primary {
  position: relative;
  pointer-events: none;
  opacity: 0.88;
}

.loading .btn-primary::after {
  content: "";
  position: absolute;
  right: 0.8rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  border: 2px solid rgba(26, 19, 5, 0.3);
  border-top-color: #1a1305;
  animation: spin 900ms linear infinite;
}

.site-footer {
  margin-top: 2.4rem;
  padding: 1.5rem 0 2.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.footer-inner {
  display: grid;
  gap: 0.65rem;
  text-align: center;
}

.footer-brand-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-inline: auto;
  color: var(--champagne);
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-logo {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
}

.site-footer a {
  color: #c5d4ee;
  transition: color 240ms var(--ease-premium);
}

.site-footer a:hover { color: var(--champagne); }

footer {
  margin-top: 2.4rem;
  padding: 1.3rem 0 2.1rem;
  color: var(--muted);
}

@keyframes spin { to { transform: rotate(360deg); } }

/* FAQ accordion */
.faq-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.2rem 0 1rem;
}

.faq-search {
  flex: 1 1 14rem;
  min-width: 12rem;
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.faq-chip {
  border: none;
  border-radius: 999px;
  padding: 0.42rem 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background 280ms var(--ease-premium), color 280ms var(--ease-premium);
}

.faq-chip.is-active,
.faq-chip:hover {
  color: #f6e7c2;
  background: rgba(215, 176, 104, 0.22);
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border-radius: 1rem;
  background: var(--panel);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: box-shadow 280ms var(--ease-premium);
}

.faq-item.is-open {
  box-shadow: 0 18px 44px rgba(3, 7, 14, 0.42);
}

.faq-item.is-hidden {
  display: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border: none;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.faq-icon {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--gold);
  background: rgba(215, 176, 104, 0.14);
  transition: transform 320ms var(--ease-premium);
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 420ms var(--ease-premium);
}

.faq-answer-inner {
  padding: 0 1.1rem 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.faq-answer-inner a {
  color: var(--champagne);
}

/* Metrics & dashboards */
.metrics-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-card {
  padding: 1rem;
  border-radius: 1rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
}

.metric-card strong {
  display: block;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--champagne);
  line-height: 1.1;
}

.metric-card span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.metric-trend {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: #8fd4a8;
}

.dashboard {
  display: grid;
  gap: 0.85rem;
}

.dashboard-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.dashboard-badge {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.dashboard-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-stat {
  padding: 0.85rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
}

.dashboard-stat label {
  display: block;
  margin: 0 0 0.3rem;
  font-size: 0.76rem;
  color: var(--muted);
}

.dashboard-stat b {
  font-size: 1.15rem;
  color: var(--ink);
}

.bar-chart {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.bar-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr 2.5rem;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.bar-track {
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold));
}

.campaign-card {
  display: grid;
  gap: 0.55rem;
  padding: 0.95rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
}

.campaign-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.campaign-status {
  color: #8fd4a8;
}

/* Blog */
.blog-featured {
  margin-bottom: 1rem;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.blog-tag {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #b8cce0;
}

.blog-card h3 {
  margin: 0 0 0.45rem;
}

.blog-card .read-link {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.88rem;
  color: var(--champagne);
}

.gallery .item.is-empty {
  min-height: 7rem;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  align-items: center;
  justify-content: center;
  color: rgba(160, 173, 194, 0.45);
  font-size: 0.82rem;
}

.service-tier {
  display: grid;
  gap: 0.55rem;
}

.service-tier ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.price-tag {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--champagne);
}

.section-band {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ecosystem-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 0;
}

.eco-pill {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--champagne);
  background: rgba(215, 176, 104, 0.14);
}

.video-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  min-height: 100%;
}

.video-card .video-thumb {
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, rgba(215, 176, 104, 0.18), rgba(11, 23, 40, 0.9));
  display: grid;
  place-items: center;
  color: var(--champagne);
  font-size: 0.82rem;
  text-align: center;
  padding: 0.75rem;
}

.video-card h3 {
  margin: 0;
  font-size: 1rem;
}

.ebook-panel {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.ebook-cover {
  min-height: 14rem;
  border-radius: 1rem;
  background: linear-gradient(160deg, rgba(215, 176, 104, 0.22), rgba(61, 101, 137, 0.35));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--champagne);
  font-weight: 600;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.form-consent input {
  width: auto;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.form-consent a {
  color: var(--champagne);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1rem;
  margin-top: 0.35rem;
  font-size: 0.84rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.45rem;
}

.footer-social a {
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.06);
  color: #c5d4ee;
}

.booking-embed {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.booking-embed p {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.metrics-grid--compact {
  margin-top: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  color: var(--champagne);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: background 240ms var(--ease-premium);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 980px) {
  :root {
    --section-gap: 1.85rem;
    --gutter: 1rem;
  }

  body {
    background-attachment: scroll;
  }

  .topbar {
    top: 0.5rem;
    width: calc(100% - var(--gutter) * 2);
    border-radius: 1.2rem;
  }

  .topbar.is-compact {
    width: calc(100% - var(--gutter) * 2);
  }

  .topbar-inner {
    grid-template-columns: 1fr auto auto;
    grid-template-areas:
      "brand lang toggle"
      "nav nav nav";
    gap: 0.65rem 0.55rem;
    padding: 0.7rem 0.85rem;
  }

  .topbar-inner .brand { grid-area: brand; min-width: 0; }
  .topbar-inner .lang-switch { grid-area: lang; justify-self: end; }
  .topbar-inner .nav-toggle {
    display: inline-flex;
    grid-area: toggle;
    justify-self: end;
  }

  .topbar-inner nav {
    grid-area: nav;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    width: 100%;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .topbar-inner nav.is-open {
    display: flex;
  }

  .topbar-inner nav a {
    padding: 0.55rem 0.65rem;
    border-radius: 0.65rem;
    font-size: 0.92rem;
  }

  .hero-grid,
  .split,
  .form-grid,
  .process-grid,
  .gallery,
  .metrics-grid,
  .dashboard-grid,
  .dual-image-grid,
  .bento-row {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 1.15rem;
    padding-bottom: 1rem;
  }

  .hero-stats {
    padding: 0 1.15rem 1.15rem;
  }

  .hero-content {
    justify-content: flex-start;
  }

  .hero-header-image {
    height: auto;
    align-self: auto;
  }

  .hero-header-image img {
    height: auto;
    max-height: 20rem;
    aspect-ratio: 380 / 596;
  }

  .hero-media {
    min-height: 14rem;
    max-height: 18rem;
  }

  .hero-owner img {
    min-height: 0;
    max-height: 20rem;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .bento-3,
  .bento-4,
  .bento-6,
  .bento-8,
  .bento-12,
  .bento-stack,
  .bento-row > .bento-3,
  .bento-row > .bento-4,
  .bento-row > .bento-6,
  .bento-row > .bento-8,
  .bento-row > .bento-12 {
    grid-column: 1 / -1;
  }

  .bento-stack {
    gap: 0.85rem;
  }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-row .btn {
    width: 100%;
  }

  .metrics-grid--compact {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.45rem);
  }

  .lead {
    font-size: 1rem;
  }

  .card {
    padding: 1rem;
  }

  .card:hover {
    transform: none;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .video-grid,
  .ebook-panel {
    grid-template-columns: 1fr;
  }

  .dual-image-grid .image-card {
    min-height: 10rem;
    max-height: 12rem;
  }

  .faq-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .bar-row {
    grid-template-columns: 4.5rem 1fr 2.2rem;
    font-size: 0.76rem;
  }
}

@media (max-width: 480px) {
  .brand-text small {
    display: none;
  }

  .footer-inner p {
    font-size: 0.8rem;
  }

  .hero-header-image img {
    max-height: 17.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * , *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
