:root {
  --ink: #20302a;
  --muted: #5f6b62;
  --green: #30473d;
  --green-dark: #233a31;
  --green-soft: #46604f;
  --sand: #f6f1e7;
  --cream: #fbf7ef;
  --warm: #efe7d6;
  --paper: #fffdf8;
  --line: #e0d8c8;
  --line-soft: #ece4d4;
  --gold: #a6814a;
  --gold-soft: #bf9b63;
  --shadow: 0 30px 80px rgba(28, 42, 35, 0.14);
  --shadow-soft: 0 18px 50px rgba(28, 42, 35, 0.08);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --script: "WindSong", "Cormorant Garamond", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

*:focus-visible {
  outline: 2px solid var(--green-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.005em;
  margin: 0;
}

p {
  margin: 0;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 247, 239, 0.92);
  padding: 14px clamp(18px, 4vw, 60px);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: fit-content;
}

.brand-mark {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #ece2cc;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand-mark.small {
  width: 44px;
  height: 44px;
  font-size: 1.05rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
}

.brand-subtitle {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 4px 0;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 220ms ease;
}

.desktop-nav a:hover {
  color: var(--green);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.secondary-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 11px 18px;
  transition: border-color 180ms ease, color 180ms ease;
}

.secondary-link:hover {
  border-color: var(--gold-soft);
  color: var(--green-dark);
}

/* ---------- mobile menu ---------- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  transition: transform 260ms ease, opacity 200ms ease;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 84px clamp(28px, 8vw, 56px) 44px;
  background: linear-gradient(180deg, var(--cream), var(--sand));
  animation: menuFade 260ms ease;
}

.mobile-menu[hidden] {
  display: none;
}

@keyframes menuFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--green);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
}

.mobile-menu-links a {
  padding: 16px 4px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
}

.mobile-menu .button {
  margin-top: 26px;
}

.mobile-menu-call {
  margin-top: 16px;
  text-align: center;
  color: var(--green);
  font-weight: 700;
  font-size: 1.02rem;
}

body.menu-open {
  overflow: hidden;
}

/* ---------- buttons ---------- */
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: #fbf7ef;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.button.ghost {
  background: transparent;
  border-color: rgba(48, 71, 61, 0.32);
  color: var(--green);
}

.button.ghost:hover {
  background: rgba(48, 71, 61, 0.06);
}

.button.soft {
  background: var(--paper);
  border-color: var(--line);
  color: var(--green);
}

.button.soft:hover {
  background: var(--cream);
  border-color: var(--gold-soft);
}

.button.full {
  width: 100%;
}

/* ---------- eyebrow / typography helpers ---------- */
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow.script {
  font-family: var(--script);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--gold-soft);
}

.section {
  padding: clamp(64px, 9vw, 122px) clamp(20px, 6vw, 92px);
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(34px, 5vw, 60px);
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin-top: 10px;
}

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: clamp(12px, 3vw, 36px);
  min-height: calc(92svh - 78px);
  background: linear-gradient(180deg, var(--cream), var(--sand));
  padding-right: clamp(18px, 4vw, 60px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 104px) clamp(24px, 6vw, 92px);
  max-width: 720px;
}

.hero-copy .eyebrow.script {
  margin-bottom: 6px;
}

.hero h1 {
  font-size: clamp(2.9rem, 5.4vw, 5.1rem);
  line-height: 1.02;
  margin: 6px 0 24px;
  color: var(--ink);
}

.hero-text {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-foot {
  margin-top: 26px;
  color: var(--green-soft);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: clamp(28px, 4vw, 56px);
}

/* soft decorative graphics behind the portrait */
.hero-deco {
  position: absolute;
  z-index: 0;
  width: min(86%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 44%, rgba(70, 96, 79, 0.16), rgba(70, 96, 79, 0) 68%);
}

.hero-deco::before {
  content: "";
  position: absolute;
  top: 4%;
  right: 2%;
  width: 66%;
  height: 66%;
  border: 1px solid rgba(166, 129, 74, 0.32);
  border-radius: 50%;
}

.hero-portrait-wrap {
  position: relative;
  z-index: 1;
  width: min(86%, 348px);
}

.hero-portrait {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 32%;
  border-radius: 176px 176px 26px 26px;
  box-shadow: 0 34px 70px rgba(28, 42, 35, 0.24);
}

.hero-badge {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: -16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(28, 42, 35, 0.14);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- trust strip ---------- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px clamp(22px, 4vw, 56px);
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  padding: 24px clamp(20px, 6vw, 60px);
}

.trust-strip span {
  position: relative;
  color: var(--green-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-strip span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: clamp(-28px, -2vw, -12px);
  top: 50%;
  width: 4px;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--gold-soft);
}

@media (max-width: 640px) {
  .trust-strip span:not(:last-child)::after {
    display: none;
  }
}

/* ---------- welcome quote ---------- */
.welcome {
  background: var(--green);
  color: #f4efe2;
  text-align: center;
  padding: clamp(60px, 8vw, 104px) clamp(22px, 6vw, 120px);
}

.welcome .eyebrow {
  color: var(--gold-soft);
}

.welcome blockquote {
  margin: 0 auto;
  max-width: 940px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.1vw, 2.6rem);
  font-weight: 500;
  line-height: 1.32;
  color: #f6f1e4;
}

.link-cta {
  display: inline-block;
  margin-top: 30px;
  color: #e7d8b6;
  font-weight: 700;
  font-size: 0.98rem;
  border-bottom: 1px solid rgba(231, 216, 182, 0.4);
  padding-bottom: 3px;
  transition: color 180ms ease, border-color 180ms ease;
}

.link-cta:hover {
  color: #fff;
  border-color: #fff;
}

/* ---------- about (text-led, centered) ---------- */
.about {
  background: linear-gradient(180deg, var(--sand), var(--cream));
  text-align: center;
}

.about-inner {
  max-width: 780px;
  margin: 0 auto;
}

.about-inner h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin: 10px 0 0;
}

.about-divider {
  display: block;
  width: 58px;
  height: 1px;
  margin: 26px auto 30px;
  background: var(--gold-soft);
}

.about-lead {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--green);
  margin-bottom: 22px;
}

.about-text {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.85;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.about-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 9px 16px;
}

/* ---------- offer ---------- */
.offer {
  background: var(--cream);
  text-align: center;
}

.offer-inner {
  max-width: 820px;
  margin: 0 auto;
}

.offer h2 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.12;
  margin: 10px 0 22px;
}

.offer-text {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.75;
}

/* ---------- steps (how it works) ---------- */
.steps {
  background: var(--sand);
}

.step-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 52px);
  max-width: 1000px;
  margin: 0 auto;
}

.step-flow::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 17%;
  right: 17%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), var(--line), transparent);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-num {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #efe6d2;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(28, 42, 35, 0.16);
}

.step-icon {
  display: block;
  margin: 20px auto 12px;
  color: var(--gold);
}

.step-icon svg {
  width: 30px;
  height: 30px;
}

.step h3 {
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  margin-bottom: 10px;
}

.step p {
  max-width: 280px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .step-flow {
    grid-template-columns: 1fr;
    gap: 34px;
    max-width: 340px;
  }

  .step-flow::before {
    display: none;
  }
}

/* ---------- prices ---------- */
.prices {
  background: var(--paper);
}

.price-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 8px;
}

.price-row {
  padding: clamp(24px, 3vw, 34px) clamp(10px, 1.8vw, 20px);
  border-bottom: 1px solid var(--line-soft);
  transition: background 220ms ease;
}

.price-row:hover {
  background: var(--cream);
}

.price-row:first-child {
  border-top: 1px solid var(--line-soft);
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.price-main h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
  font-weight: 600;
  white-space: nowrap;
}

.leader {
  flex: 1;
  border-bottom: 1px dotted #c9bda6;
  transform: translateY(-5px);
}

.price-main .price {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.price-row p {
  margin-top: 10px;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.prices-cta {
  margin-top: clamp(34px, 5vw, 52px);
  text-align: center;
}

/* ---------- vision band ---------- */
.vision-band {
  background: linear-gradient(135deg, var(--warm), var(--sand));
  text-align: center;
  padding: clamp(64px, 9vw, 120px) clamp(22px, 6vw, 120px);
}

.vision-band .eyebrow.script {
  font-size: 1.9rem;
  margin-bottom: 18px;
}

.vision-text {
  max-width: 880px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.6vw, 3.1rem);
  font-weight: 500;
  line-height: 1.24;
  color: var(--green);
}

/* ---------- contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
  background: var(--sand);
}

.contact-copy h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.08;
  margin: 8px 0 20px;
}

.contact-copy > p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.78;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.contact-grid a {
  display: block;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  padding: 20px 22px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.contact-grid a:hover {
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.contact-grid small {
  display: block;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-grid strong {
  display: block;
  margin-top: 9px;
  color: var(--green);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.4;
  word-break: break-word;
}

.contact-panel {
  border-radius: 16px;
  background: var(--green);
  color: #f3eede;
  padding: clamp(30px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.panel-eyebrow {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-panel h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin-bottom: 14px;
  color: #fbf7ef;
}

.contact-panel p {
  color: #d8e0d6;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-panel .button {
  background: #efe6d2;
  border-color: #efe6d2;
  color: var(--green-dark);
}

.contact-panel .button:hover {
  background: #fff;
  border-color: #fff;
}

.contact-panel .button.soft {
  margin-top: 10px;
  background: transparent;
  border-color: rgba(243, 238, 222, 0.4);
  color: #f3eede;
}

.contact-panel .button.soft:hover {
  background: rgba(243, 238, 222, 0.1);
  border-color: rgba(243, 238, 222, 0.7);
}

/* ---------- online samtaler band ---------- */
.online-band {
  background: var(--paper);
  text-align: center;
}

.online-inner {
  max-width: 760px;
  margin: 0 auto;
}

.online-inner h2 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.1;
  margin: 10px 0 20px;
}

.online-text {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.online-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 30px 0 34px;
}

.online-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 10px 18px;
}

/* ---------- footer ---------- */
.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  border-top: 1px solid var(--line);
  background: var(--cream);
  color: var(--muted);
  padding: 38px clamp(20px, 6vw, 92px);
  font-size: 0.92rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand .brand-name {
  display: block;
  font-size: 1.15rem;
}

.footer-info {
  display: grid;
  gap: 4px;
  text-align: center;
}

.footer-info a:hover {
  color: var(--green);
}

.footer-info .copyright {
  color: #9a9183;
  font-size: 0.82rem;
}

.studio-credit {
  justify-self: end;
  color: #9a9183;
  font-size: 0.82rem;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.studio-credit:hover {
  color: var(--green);
  border-color: var(--gold-soft);
}

/* ---------- mobile sticky booking ---------- */
.mobile-booking {
  display: none;
}

/* ---------- about origin line ---------- */
.about-origin {
  max-width: 640px;
  margin: 0 auto 22px;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--gold);
}

/* ---------- who is it for ---------- */
.who {
  background: var(--cream);
  text-align: center;
}

.who-lead {
  max-width: 720px;
  margin: 0 auto clamp(34px, 5vw, 52px);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--green);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 30px);
  max-width: 1000px;
  margin: 0 auto;
}

.who-card {
  padding: clamp(26px, 3vw, 38px) clamp(20px, 2.4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.who-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-soft);
}

.who-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--green);
}

.who-icon svg {
  width: 26px;
  height: 26px;
}

.who-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.who-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.who-note {
  max-width: 620px;
  margin: clamp(32px, 4vw, 46px) auto 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.who-cta {
  margin-top: 26px;
}

/* ---------- offer method + outcome ---------- */
.offer-method {
  max-width: 760px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.offer-outcome {
  max-width: 720px;
  margin: clamp(30px, 4vw, 42px) auto 0;
  padding: clamp(22px, 3vw, 30px) clamp(24px, 4vw, 40px);
  border-left: 2px solid var(--gold-soft);
  background: var(--sand);
  border-radius: 4px 14px 14px 4px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--green);
  text-align: left;
}

/* ---------- faq ---------- */
.faq {
  background: var(--sand);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 6px;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
  font-weight: 600;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 220ms ease, background 220ms ease;
}

.faq-item[open] summary::after {
  content: "–";
  background: var(--cream);
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 6px 22px;
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ---------- blog teaser ---------- */
.blog-teaser {
  background: var(--paper);
}

.blog-card {
  display: block;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(160deg, var(--cream), var(--sand));
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow);
}

.blog-card-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--green);
  color: #efe6d2;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 18px 0 12px;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.15;
}

.blog-card > p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.blog-card-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--green);
  font-weight: 700;
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 3px;
}

/* ---------- videos ---------- */
.videos {
  background: var(--paper);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3vw, 36px);
  max-width: 1040px;
  margin: 0 auto;
  justify-items: center;
}

.video-card {
  width: 100%;
  max-width: 320px;
  text-align: center;
}

.video-frame {
  width: 100%;
  aspect-ratio: 300 / 534;
  margin: 0 auto 16px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--sand);
  box-shadow: var(--shadow-soft);
}

.video-frame iframe,
.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  background: var(--green-dark);
}


.video-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.video-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.video-note {
  margin-top: clamp(30px, 4vw, 44px);
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}

@media (max-width: 860px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- footer social ---------- */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 6px 0 2px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
  background: var(--paper);
  transition: color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.footer-social a:hover {
  color: var(--green-dark);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 19px;
  height: 19px;
}

/* ---------- article + blog index pages ---------- */
.article-main {
  padding: clamp(38px, 6vw, 76px) clamp(20px, 6vw, 60px) clamp(60px, 8vw, 110px);
  background: linear-gradient(180deg, var(--cream), var(--sand));
}

.article {
  max-width: 760px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 26px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--green);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.article-eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.article h1 {
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  line-height: 1.05;
  margin: 0 0 24px;
}

.article-lead {
  margin-bottom: 36px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--green);
}

.article-figure {
  margin: 0 0 42px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.article-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 20%;
}

.article-body h2 {
  margin: 42px 0 14px;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.15;
}

.article-body p {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.85;
}

.article-cta {
  margin-top: clamp(44px, 6vw, 64px);
  padding: clamp(30px, 4vw, 48px);
  border-radius: 18px;
  background: var(--green);
  color: #f3eede;
  text-align: center;
}

.article-cta h2 {
  margin-bottom: 10px;
  color: #fbf7ef;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.article-cta p {
  margin-bottom: 24px;
  color: #d8e0d6;
}

.article-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.article-cta .button {
  background: #efe6d2;
  border-color: #efe6d2;
  color: var(--green-dark);
}

.article-cta .button:hover {
  background: #fff;
  border-color: #fff;
}

.article-cta .button.ghost {
  background: transparent;
  border-color: rgba(243, 238, 222, 0.4);
  color: #f3eede;
}

.article-cta .button.ghost:hover {
  background: rgba(243, 238, 222, 0.1);
}

.blog-index-main {
  min-height: 58vh;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 6vw, 60px);
  background: linear-gradient(180deg, var(--cream), var(--sand));
}

.blog-index-head {
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}

.blog-index-head h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.06;
  margin: 10px 0 16px;
}

.blog-index-head p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.blog-index-list {
  display: grid;
  gap: 22px;
  max-width: 760px;
  margin: 0 auto;
}

.blog-card-date {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* stat callout inside articles */
.stat-callout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 34px 0 10px;
}

.stat-item {
  padding: clamp(20px, 3vw, 30px) 18px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--sand);
  text-align: center;
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  color: var(--green);
}

.stat-label {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.stat-source {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
}

.article-quote {
  margin: 8px 0 4px;
  padding: clamp(22px, 3vw, 30px) clamp(24px, 4vw, 38px);
  border-left: 2px solid var(--gold-soft);
  background: var(--sand);
  border-radius: 4px 14px 14px 4px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--green);
}

@media (max-width: 640px) {
  .stat-callout {
    grid-template-columns: 1fr;
  }
}

/* keep the blog/article header usable on mobile (no hamburger there) */
@media (max-width: 760px) {
  .article-header .header-actions .button {
    display: inline-flex;
    min-height: 44px;
    padding: 10px 16px;
    font-size: 0.82rem;
  }
}

@media (max-width: 760px) {
  .who-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .offer-outcome {
    text-align: center;
  }
}

/* ---------- admin live-preview helpers ---------- */
.lp-highlight {
  outline: 2px solid var(--gold-soft);
  outline-offset: 4px;
  border-radius: 4px;
  transition: outline-color 220ms ease;
}

body.is-admin-preview .mobile-booking {
  display: none !important;
}

/* ---------- reveal animation (only when JS is active, so no-JS keeps content visible) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- responsive ---------- */
@media (max-width: 1040px) {
  .desktop-nav,
  .secondary-link {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0;
    padding-right: 0;
  }

  .hero-figure {
    order: -1;
    padding: clamp(30px, 8vw, 48px) clamp(22px, 6vw, 40px) 6px;
  }

  .hero-copy {
    padding: clamp(20px, 5vw, 40px) clamp(22px, 6vw, 60px) clamp(48px, 8vw, 64px);
  }

  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .about-figure {
    max-width: 460px;
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 18px;
  }

  .studio-credit {
    justify-self: center;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    min-height: 66px;
    padding: 10px 16px;
  }

  .header-actions .button {
    display: none;
  }

  .brand-name {
    font-size: 1.22rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 11vw, 3.6rem);
  }

  .hero-portrait-wrap {
    width: min(74%, 280px);
  }

  .hero-badge {
    left: 0;
    font-size: 0.76rem;
  }

  .section,
  .welcome,
  .vision-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .price-main {
    flex-wrap: wrap;
    gap: 4px 12px;
  }

  .price-main h3 {
    white-space: normal;
  }

  .leader {
    display: none;
  }

  .price-main .price {
    margin-left: auto;
  }


  .mobile-booking {
    position: fixed;
    right: 14px;
    bottom: 12px;
    left: 14px;
    z-index: 60;
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--green);
    color: #fbf7ef;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 16px 34px rgba(22, 34, 28, 0.26);
  }
}

.footer-info .copyright a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-info .copyright a:hover {
  color: var(--green);
}
