/* ============================================================
   HAPPYNEST — Luxury Editorial Stylesheet
   Vogue / BONDIR inspired · Orange tones
   ============================================================ */

/* Fonts loaded non-blocking via <link> in each HTML file */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  color: #1C1916;
  background: #FAF8F4;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TOKENS ── */
:root {
  --cream:        #FAF8F4;
  --cream-dark:   #F2EDE5;
  --orange:       #D4601A;
  --orange-light: #E8854A;
  --orange-pale:  #FBF0E8;
  --orange-deep:  #A84510;
  --charcoal:     #1C1916;
  --stone:        #6B6258;
  --stone-light:  #A89F95;
  --white:        #FFFFFF;
  --border:       rgba(28,25,22,0.12);
  --border-warm:  rgba(212,96,26,0.2);
}

/* ── TYPOGRAPHY ── */
.serif { font-family: 'Cormorant Garamond', Georgia, serif; }

h1, h2, h3, .h1, .h2, .h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.text-orange { color: var(--orange); }
.text-stone  { color: var(--stone); }
.italic { font-style: italic; }

/* eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--stone);
  margin-bottom: 18px;
}
.eyebrow-orange {
  color: var(--orange);
}

/* thin rule */
.rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--orange);
  margin-bottom: 20px;
}

/* ── ANNOUNCEMENT BAR ── */
.ann-bar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ann-bar span { color: var(--orange-light); }

/* ── HEADER ── */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 200;
}

.header-logo {
  justify-self: center;
}
.header-logo img {
  height: 38px;
  width: auto;
  /* keep logo dark on cream */
}

.site-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.site-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color 0.2s;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width 0.25s;
}
.site-nav a:hover,
.site-nav a.active { color: var(--charcoal); }
.site-nav a:hover::after,
.site-nav a.active::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-self: end;
}

/* ── BUTTONS ── */
.btn-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
}
.btn-text:hover { color: var(--orange); border-color: var(--orange); }

.btn-text-orange {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
  padding-bottom: 2px;
  display: inline-block;
  transition: color 0.2s, border-color 0.2s;
}
.btn-text-orange:hover { color: var(--orange-deep); border-color: var(--orange-deep); }

.btn-solid {
  display: inline-block;
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 36px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-solid:hover { background: var(--orange); }

.btn-solid-orange {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 14px 36px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-solid-orange:hover { background: var(--orange-deep); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 13px 35px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--charcoal);
  padding: 13px 35px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--charcoal);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--charcoal);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 300;
  flex-direction: column;
  padding: 36px 48px 48px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 56px;
}
.mobile-nav-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--charcoal);
  line-height: 1;
  font-weight: 300;
}
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 500;
  color: var(--charcoal);
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  font-style: italic;
}
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav .mobile-book {
  margin-top: 40px;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 96vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,25,22,0.78) 0%,
    rgba(28,25,22,0.3) 45%,
    rgba(28,25,22,0.05) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 80px;
  max-width: 900px;
}
.hero-content .eyebrow {
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(56px, 8vw, 110px);
  color: var(--white);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--orange-light);
}
.hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 44px;
  letter-spacing: 0.02em;
}
.hero-cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* ── MARQUEE / TICKER ── */
.ticker {
  background: var(--orange);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-block;
  animation: ticker 22s linear infinite;
}
.ticker-item {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 32px;
}
.ticker-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 8px;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION BASE ── */
section { padding: 100px 48px; }
.section-inner { max-width: 1120px; margin: 0 auto; }

/* ── EDITORIAL SPLIT ── */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.editorial-split.reverse { direction: rtl; }
.editorial-split.reverse > * { direction: ltr; }

.split-img {
  overflow: hidden;
  aspect-ratio: 3/4;
  min-height: 480px;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.editorial-split:hover .split-img img { transform: scale(1.03); }

.split-body {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream-dark);
}
.split-body h2 {
  font-size: clamp(38px, 4vw, 60px);
  margin-bottom: 20px;
  line-height: 1.0;
}
.split-body p {
  font-size: 15px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 380px;
}
.split-body .price-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 28px;
}
.split-body .price-tag small {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: var(--stone-light);
  font-weight: 400;
}

/* ── SERVICE GRID ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.service-tile {
  background: var(--cream);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
}
.service-tile-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.service-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.92);
}
.service-tile:hover .service-tile-img img {
  transform: scale(1.04);
  filter: brightness(1);
}
.service-tile-body {
  padding: 24px 28px 32px;
}
.service-tile-body .service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.service-tile-body .service-price {
  font-size: 13px;
  color: var(--orange);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.service-tile-body .service-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 18px;
}
.service-tile-body .service-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.service-tile:hover .service-link { color: var(--orange); border-color: var(--orange); }

/* Featured tile (spans 2 cols) */
.service-tile.featured {
  grid-column: span 2;
}
.service-tile.featured .service-tile-img {
  aspect-ratio: 16/9;
}

/* ── PHILOSOPHY / MANIFESTO ── */
.manifesto {
  background: var(--charcoal);
  padding: 120px 48px;
  text-align: center;
}
.manifesto blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto 36px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.manifesto blockquote em { color: var(--orange-light); font-style: normal; }
.manifesto cite {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-light);
  font-style: normal;
  display: block;
  margin-bottom: 48px;
}

/* ── PILLARS / VALUES ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.pillar {
  padding: 48px 36px;
  border-right: 1px solid var(--border);
  position: relative;
}
.pillar:last-child { border-right: none; }
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}
.pillar h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.pillar p {
  font-size: 13px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.75;
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-step {
  padding: 52px 40px;
  border-right: 1px solid var(--border);
}
.process-step:last-child { border-right: none; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}
.process-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.1;
}
.process-step p {
  font-size: 13px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.8;
}

/* ── CTA / FULL-BLEED ── */
.cta-full {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cta-full-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}
.cta-full-content {
  position: relative;
  z-index: 2;
  padding: 80px;
  max-width: 680px;
}
.cta-full-content .eyebrow { color: var(--orange-light); }
.cta-full-content h2 {
  font-size: clamp(40px, 5vw, 72px);
  color: var(--white);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.0;
}
.cta-full-content h2 em { font-style: italic; color: var(--orange-light); }
.cta-full-content p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 420px;
}
.cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 80px 80px 72px;
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid var(--border-warm);
  pointer-events: none;
}
.page-hero-inner { max-width: 1120px; margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 500;
  line-height: 1.0;
  margin-bottom: 18px;
}
.page-hero h1 em { font-style: italic; color: var(--orange); }
.page-hero p {
  font-size: 15px;
  font-weight: 300;
  color: var(--stone);
  max-width: 560px;
  line-height: 1.8;
}

/* ── CONTACT PAGE — EDITORIAL QR SECTION ── */
.contact-wechat {
  background: var(--charcoal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}
.contact-wechat-left {
  padding: 80px 72px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.contact-wechat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  margin: 16px 0 20px;
}
.contact-wechat-title em { font-style: italic; color: var(--orange-light); }
.contact-wechat-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 340px;
}

/* Right side: QR items — horizontal row aligned with heading */
.contact-wechat-right {
  padding: 80px 80px 80px 64px;
  display: flex;
  align-items: center;         /* vertically centre with heading */
  justify-content: center;
}
.qr-row-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}
.qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.qr-item:hover { opacity: 0.8; }
.qr-item-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--white);
  border-radius: 3px;
  padding: 10px;
  box-sizing: border-box;
}
.qr-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.qr-item-hint {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  opacity: 0;
  transition: opacity 0.2s;
}
.qr-item:hover .qr-item-hint { opacity: 1; }
.qr-item-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-align: center;
}
.qr-divider { display: none; } /* no longer needed */

/* QR Lightbox */
#qr-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,25,22,0.9);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
#qr-lightbox.open { display: flex; }
.qr-lightbox-card {
  background: var(--white);
  border-radius: 4px;
  padding: 40px 40px 32px;
  text-align: center;
  position: relative;
  max-width: 340px;
  width: 90vw;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.qr-lightbox-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  font-weight: 300;
  color: var(--stone);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
#qr-lightbox-img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}
#qr-lightbox-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.qr-lightbox-hint {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

.contact-info {
  background: var(--charcoal);
  padding: 56px 80px;
}
.contact-info-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
}
.contact-info-actions { display: flex; flex-direction: column; gap: 16px; }

/* ── FAQ ── */
.faq-wrap { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  line-height: 1.2;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--orange); }
.faq-icon {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 300;
  color: var(--orange);
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner {
  padding: 4px 0 28px;
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.85;
}
.faq-a-inner ul { padding-left: 18px; list-style: disc; margin-top: 10px; display: flex; flex-direction: column; gap: 7px; }
.faq-item.open .faq-a { max-height: 600px; }

/* ── BLOG CARDS ── */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.guide-card {
  background: var(--cream);
  padding: 44px 40px 48px;
  display: block;
  transition: background 0.2s;
}
.guide-card:hover { background: var(--orange-pale); }
.guide-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 400;
  color: var(--orange);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 20px;
}
.guide-card h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.1;
}
.guide-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 24px;
}
.guide-read {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
  padding-bottom: 2px;
  display: inline-block;
}

/* ── CATEGORY CARDS ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.cat-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  display: block;
}
.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
  transition: transform 0.6s ease, filter 0.4s;
}
.cat-card:hover img { transform: scale(1.04); filter: brightness(0.5); }
.cat-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 36px;
  z-index: 2;
}
.cat-card-body .cat-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 8px;
  display: block;
}
.cat-card-body h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.05;
}
.cat-card-body p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 16px;
}
.cat-card-body .cat-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  display: inline-block;
  transition: border-color 0.2s;
}
.cat-card:hover .cat-link { border-color: var(--orange-light); color: var(--orange-light); }

/* ── FOOTER ── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.45);
  padding: 72px 48px 40px;
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 36px;
}
.footer-brand img {
  height: 34px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  max-width: 240px;
}
.footer-brand .social {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}
.footer-brand .social a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-brand .social a:hover { color: var(--orange-light); }
.footer-brand .social .social-nolink {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  cursor: default;
}

.footer-col h5 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.42);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--orange-light); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(2) { border-right: none; }
  .pillar { border-bottom: 1px solid var(--border); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-info-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: auto 1fr auto; padding: 0 24px; }
  .header-logo { justify-self: start; }
  .site-nav { display: none; }
  .hamburger { display: flex; }

  section { padding: 72px 24px; }
  .page-hero { padding: 56px 24px 52px; }
  .hero-content { padding: 0 32px 60px; }
  .cta-full-content { padding: 56px 32px; }

  .service-grid { grid-template-columns: 1fr; }
  .service-tile.featured { grid-column: span 1; }
  .service-tile.featured .service-tile-img { aspect-ratio: 4/3; }

  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { aspect-ratio: 4/3; }

  .guide-grid { grid-template-columns: 1fr; }
  .contact-wechat { grid-template-columns: 1fr; }
  .contact-wechat-left { padding: 56px 24px 40px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .contact-wechat-right { padding: 40px 24px 56px; }
  .qr-row-inner { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .contact-info { padding: 48px 24px; }

  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }

  .editorial-split { grid-template-columns: 1fr; }
  .editorial-split.reverse { direction: ltr; }
  .split-body { padding: 48px 32px; }

  .manifesto { padding: 80px 32px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 48px; }
  .hero-desc { font-size: 14px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; }
  .mobile-nav { padding: 28px 28px 40px; }
  .mobile-nav a { font-size: 34px; }
}

/* ── GUIDE ARTICLE ── */
.guide-article {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 48px 96px;
}
.guide-article-meta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.guide-article-meta::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-warm);
}
.guide-article h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 48px 0 16px;
  line-height: 1.15;
}
.guide-article h3:first-child { margin-top: 0; }
.guide-article h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  color: var(--charcoal);
  margin: 36px 0 12px;
}
.guide-article p {
  font-size: 15px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.85;
  margin-bottom: 16px;
}
.guide-article strong { font-weight: 600; color: var(--charcoal); }
.guide-article em { font-style: italic; }
.guide-article ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.guide-article ul li {
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}
.guide-article ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 12px;
}
.guide-callout {
  border-left: 2px solid var(--orange);
  padding: 20px 24px;
  margin: 28px 0;
  background: var(--orange-pale);
  border-radius: 0 3px 3px 0;
}
.guide-callout p {
  margin: 0;
  font-size: 14px;
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.75;
}
.guide-callout p + p { margin-top: 8px; }
.guide-tip {
  border: 1px solid var(--border-warm);
  padding: 20px 24px;
  margin: 28px 0;
  background: var(--cream-dark);
  border-radius: 3px;
  position: relative;
}
.guide-tip::before {
  content: 'HappyNest Tip';
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.guide-tip p {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.75;
  font-style: italic;
}
.guide-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}
.guide-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  border-bottom: 1px solid var(--border-warm);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  margin-top: 56px;
  display: block;
}
.guide-back:hover { color: var(--orange); border-color: var(--orange); }
.guide-nav-strip {
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 48px;
}
.guide-nav-strip-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.guide-nav-strip a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color 0.2s;
}
.guide-nav-strip a:hover { color: var(--orange); }
.guide-nav-strip .guide-nav-links { display: flex; gap: 24px; flex-wrap: wrap; }

@media (max-width: 600px) {
  .guide-article { padding: 48px 24px 72px; }
  .guide-nav-strip { padding: 16px 24px; }
}

/* ═══════════════════════════════════════════════════
   BOOKING OVERLAY
═══════════════════════════════════════════════════ */
.hidden { display: none !important; }

#hn-booking {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
#hn-booking.open {
  opacity: 1;
  pointer-events: all;
}

.hn-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 22, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hn-panel {
  position: relative;
  margin: auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  width: min(1000px, 96vw);
  height: 92vh;        /* fixed height so iframe fills the panel */
  max-height: 92vh;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
  transform: translateY(24px);
  transition: transform 0.35s ease;
}
#hn-booking.open .hn-panel { transform: translateY(0); }

/* Left brand column */
.hn-left {
  background: var(--charcoal);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
}
.hn-logo {
  height: 36px;
  width: auto;
  align-self: flex-start;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 40px;
  display: block;
}
.hn-left-body { flex: 1; }
.hn-left-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 16px;
}
.hn-left-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}
.hn-left-title em { font-style: italic; color: var(--orange-light); }
.hn-left-sub {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.48);
  line-height: 1.8;
  margin-bottom: 36px;
}
.hn-steps { display: flex; flex-direction: column; gap: 0; }
.hn-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.28);
  transition: color 0.2s;
}
.hn-step:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.hn-step span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.18);
  min-width: 24px;
}
.hn-step.active { color: rgba(255,255,255,0.9); }
.hn-step.active span { color: var(--orange-light); }
.hn-step.done { color: rgba(255,255,255,0.48); }
.hn-step.done span { color: var(--orange); }
.hn-left-note {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  line-height: 1.7;
  margin-top: 32px;
}

/* Right column — iframe mode */
.hn-right {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hn-right-iframe {
  padding: 0;
}
.hn-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 300;
  color: var(--stone);
  cursor: pointer;
  line-height: 1;
  padding: 2px 8px 4px;
  transition: color 0.2s, background 0.2s;
  z-index: 10;
}
.hn-close:hover { color: var(--charcoal); background: var(--white); }

/* Iframe container — clips MikeCRM's top disclaimer (~96px) and footer (~48px) */
.hn-iframe-clip {
  position: relative;
  flex: 1;
  overflow: hidden;
  /* Shift up to hide MikeCRM disclaimer header */
  margin-top: 0;
}

.hn-iframe-clip iframe {
  position: absolute;
  top: -96px;          /* hide the MikeCRM disclaimer notice */
  left: 0;
  width: 100%;
  height: calc(100% + 96px + 48px);  /* compensate for clipped top + hidden footer */
  border: none;
  background: var(--cream);
}

/* Loading spinner */
.hn-iframe-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  gap: 16px;
  z-index: 5;
}
.hn-iframe-loading p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}
.hn-spinner {
  width: 28px;
  height: 28px;
  border: 2px solid var(--border-warm);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: hn-spin 0.8s linear infinite;
}
@keyframes hn-spin { to { transform: rotate(360deg); } }

/* Booking overlay responsive */
@media (max-width: 780px) {
  .hn-panel { grid-template-columns: 1fr; max-height: 100vh; border-radius: 0; width: 100vw; }
  .hn-left { display: none; }
  .hn-right { min-height: 85vh; }
}

/* ═══════════════════════════════════════════════════
   BRAND FILM SECTION
═══════════════════════════════════════════════════ */
.brand-film {
  cursor: pointer;
  display: block;
}
.brand-film-inner {
  position: relative;
  height: 72vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.brand-film-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.38);
  transition: filter 0.5s ease, transform 0.6s ease;
}
.brand-film:hover .brand-film-bg {
  filter: brightness(0.28);
  transform: scale(1.02);
}
.brand-film-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 32px;
}
.brand-film-content .eyebrow {
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.brand-film-content h2 {
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 48px;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.brand-film-content h2 em {
  font-style: italic;
  color: var(--orange-light);
}
.brand-film-play {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: border-color 0.25s, background 0.25s, transform 0.3s;
  flex-shrink: 0;
}
.play-btn svg {
  width: 30px;
  height: 30px;
  margin-left: 5px;
}
.brand-film:hover .play-btn {
  border-color: var(--orange-light);
  background: rgba(212, 96, 26, 0.22);
  transform: scale(1.1);
}
.brand-film-play-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s;
}
.brand-film:hover .brand-film-play-label {
  color: rgba(255,255,255,0.9);
}

/* Duration badge */
.brand-film-duration {
  position: absolute;
  bottom: 28px;
  right: 36px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  z-index: 2;
}

/* ── VIDEO MODAL ── */
#hn-video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9998;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}
#hn-video-modal.open { display: flex; }

.hn-video-card {
  position: relative;
  width: min(1000px, 96vw);
  background: #000;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
}
.hn-video-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 34px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  z-index: 10;
  transition: color 0.2s;
  padding: 4px;
}
.hn-video-close:hover { color: var(--white); }

.hn-video-frame {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
}
.hn-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 600px) {
  .brand-film-inner { height: 60vh; }
  .brand-film-duration { display: none; }
  #hn-video-modal { padding: 0; align-items: flex-end; }
  .hn-video-card { width: 100%; border-radius: 0; }
  .hn-video-close { top: -40px; }
}

/* ═══════════════════════════════════════════════════
   SERVICE PICKER (book.html)
═══════════════════════════════════════════════════ */
.hn-picker-section {
  background: var(--cream);
  padding: 80px 0 100px;
}
.hn-picker-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.hn-picker-card {
  background: var(--white);
  padding: 52px 40px 48px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: background 0.3s ease;
}
.hn-picker-card:hover { background: var(--charcoal); }

.hn-picker-num {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 20px;
  transition: color 0.3s;
}
.hn-picker-card:hover .hn-picker-num { color: rgba(212,96,26,0.7); }

.hn-picker-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 16px;
  line-height: 1.05;
  transition: color 0.3s;
}
.hn-picker-title em { font-style: italic; color: var(--orange); transition: color 0.3s; }
.hn-picker-card:hover .hn-picker-title { color: var(--white); }
.hn-picker-card:hover .hn-picker-title em { color: var(--orange-light); }

.hn-picker-desc {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--stone);
  line-height: 1.75;
  margin: 0 0 28px;
  transition: color 0.3s;
}
.hn-picker-card:hover .hn-picker-desc { color: rgba(255,255,255,0.55); }

.hn-picker-services {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.hn-picker-services li {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--stone);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
  transition: color 0.3s;
}
.hn-picker-services li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 11px;
}
.hn-picker-card:hover .hn-picker-services li { color: rgba(255,255,255,0.5); }

.hn-picker-cta {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--orange);
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s, gap 0.25s;
}
.hn-picker-cta::after { content: '→'; font-size: 14px; }
.hn-picker-card:hover .hn-picker-cta { color: var(--orange-light); gap: 14px; }

.hn-picker-nester {
  max-width: 1200px;
  margin: 56px auto 0;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.hn-picker-nester p {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--stone);
  margin: 0;
}

@media (max-width: 900px) {
  .hn-picker-grid { grid-template-columns: 1fr; gap: 2px; }
  .hn-picker-card { padding: 40px 28px; }
}

/* ═══════════════════════════════════════════════════
   NATIVE BOOKING FORM PAGE
═══════════════════════════════════════════════════ */
.hn-form-section {
  background: var(--cream);
  padding: 80px 0 120px;
}
.hn-form-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}
.hn-form {
  display: flex;
  flex-direction: column;
}

/* Form blocks */
.hn-form-block {
  border-top: 1px solid var(--border);
  padding: 56px 0;
}
.hn-form-block:first-child {
  border-top: none;
  padding-top: 0;
}
.hn-form-block-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 36px;
}
.hn-form-step {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--orange);
  font-weight: 600;
  flex-shrink: 0;
}
.hn-form-block-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0;
  letter-spacing: -0.01em;
}

/* Grid */
.hn-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}
.hn-field { display: flex; flex-direction: column; gap: 9px; }
.hn-field-full { grid-column: 1 / -1; }

/* Labels */
.hn-field label {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 600;
}
.hn-field label small {
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  font-weight: 400;
  color: var(--stone);
  opacity: 0.75;
}
.hn-req { color: var(--orange); }

/* Inputs */
.hn-field input[type="text"],
.hn-field input[type="email"],
.hn-field input[type="tel"],
.hn-field input[type="date"],
.hn-field select,
.hn-field textarea {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--border-warm);
  border-radius: 2px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.hn-field input:focus,
.hn-field select:focus,
.hn-field textarea:focus {
  border-color: var(--orange);
}
.hn-field input::placeholder,
.hn-field textarea::placeholder {
  color: var(--stone);
  opacity: 0.45;
}
.hn-field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}
.hn-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6258' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

/* File upload */
.hn-file-drop {
  position: relative;
  border: 1.5px dashed var(--border-warm);
  border-radius: 2px;
  padding: 44px 24px;
  text-align: center;
  background: var(--white);
  transition: border-color 0.2s, background 0.2s;
}
.hn-file-drop:hover { border-color: var(--orange); background: var(--cream); }
.hn-file-drop input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.hn-file-icon {
  font-size: 28px;
  margin-bottom: 12px;
  opacity: 0.4;
}
.hn-file-hint {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--stone);
  margin: 0;
  line-height: 1.8;
  pointer-events: none;
}
.hn-file-hint strong { color: var(--orange); font-weight: 500; }

/* Checkboxes & radios */
.hn-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 4px;
}
.hn-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.55;
}
.hn-checkbox-label input[type="checkbox"],
.hn-checkbox-label input[type="radio"] {
  margin-top: 3px;
  accent-color: var(--orange);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}
.hn-checkbox-label small { color: var(--stone); font-size: 12px; }
.hn-field-note {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: var(--stone);
  margin: 0 0 10px;
  line-height: 1.6;
  opacity: 0.8;
}
.hn-form-block-desc {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--stone);
  margin: -20px 0 32px;
  line-height: 1.7;
}

/* Submit row */
.hn-form-submit {
  padding: 56px 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hn-form-note {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--stone);
  margin: 0;
  line-height: 1.7;
}

/* Success page */
.hn-success-section {
  background: var(--cream);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 32px;
}
.hn-success-inner { max-width: 540px; }
.hn-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 36px;
  color: var(--orange);
  font-size: 26px;
}
.hn-success-inner .eyebrow { margin-bottom: 16px; }
.hn-success-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hn-success-inner h2 em { font-style: italic; color: var(--orange); }
.hn-success-inner p {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 640px) {
  .hn-form-grid { grid-template-columns: 1fr; }
  .hn-form-block { padding: 40px 0; }
  .hn-form-wrap { padding: 0 20px; }
  .hn-form-section { padding: 60px 0 80px; }
}

/* ═══════════════════════════════════════════════════
   STAR RATING
═══════════════════════════════════════════════════ */
.hn-rating-block {
  border-top: 1px solid var(--border);
  padding: 48px 0 0;
}
.hn-rating-block-head {
  margin-bottom: 32px;
}
.hn-rating-block-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 4px;
}
.hn-rating-block-head p {
  font-size: 13px;
  color: var(--stone);
  margin: 0;
}
.hn-rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.hn-rating-row:last-child { border-bottom: none; }
.hn-rating-label {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--charcoal);
  flex: 1;
  min-width: 160px;
}
.hn-rating-label small {
  display: block;
  font-size: 11px;
  color: var(--stone);
  margin-top: 3px;
  font-weight: 300;
}
.hn-stars {
  display: flex;
  gap: 6px;
  align-items: center;
}
.hn-stars .star {
  font-size: 30px;
  color: var(--border-warm);
  cursor: pointer;
  transition: color 0.1s, transform 0.12s;
  user-select: none;
  line-height: 1;
}
.hn-stars .star.active { color: var(--orange); }
.hn-stars .star.hover { color: var(--orange); transform: scale(1.15); }
.hn-rating-value {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--stone);
  min-width: 60px;
  text-align: right;
}

/* Standalone feedback page — minimal header */
.hn-standalone-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.hn-standalone-header img { height: 36px; }
