/* ============================================================
   Auckland Airport Cabin — Variant B
   Design direction: quiet, editorial, minimal. Boutique-hotel
   website, not a listing page. White space does the framing;
   one accent color (deep bottle green) is used sparingly. Photos
   and copy carry the message — no icon grids, no stat bars,
   no comparison tables, no gradients.
   ============================================================ */

:root {
  --paper: #ffffff;
  --paper-2: #f6f4ef;
  --ink: #1b1a17;
  --ink-soft: rgba(27, 26, 23, 0.62);
  --ink-faint: rgba(27, 26, 23, 0.4);
  --accent: #1f3d2f;
  --accent-soft: #45604f;
  --line: rgba(27, 26, 23, 0.12);

  --serif: "Newsreader", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

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

.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }

a { color: inherit; }

img { display: block; width: 100%; height: auto; }

/* ---------- Header ---------- */
.site-header {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.wordmark {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--ink);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--accent); }
.btn-text {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
  white-space: nowrap;
}
.btn-text:hover { border-color: var(--accent); }

/* ---------- Hero ---------- */
.hero {
  padding: 100px 0 56px;
  max-width: 760px;
}
.kicker {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  line-height: 1.22;
}
.hero-sub {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-top: 24px;
  line-height: 1.6;
}
.text-link {
  display: inline-block;
  margin-top: 22px;
  font-size: 0.96rem;
  text-decoration: none;
  color: var(--accent);
  border-bottom: 1px solid rgba(31, 61, 47, 0.35);
}
.text-link:hover { border-color: var(--accent); }
.intro .text-link {
  margin-top: 0;
  display: inline;
}

/* ---------- Hero photo ---------- */
.hero-photo {
  margin: 0 0 96px;
  position: relative;
}
.hero-photo img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  display: block;
}
.hero-photo figcaption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-faint);
  padding-top: 14px;
}

.hero-badge {
  position: absolute;
  left: 32px;
  bottom: 32px;
  background: var(--ink);
  color: var(--paper);
  padding: 18px 24px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.hero-badge-num {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  white-space: nowrap;
}
.hero-badge-num small {
  font-family: var(--sans);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
  margin-left: 4px;
}
.hero-badge-label {
  font-size: 0.82rem;
  line-height: 1.35;
  max-width: 11ch;
  opacity: 0.9;
}

@media (max-width: 600px) {
  .hero-badge {
    left: 16px;
    bottom: 16px;
    padding: 14px 18px;
    gap: 10px;
  }
  .hero-badge-num { font-size: 1.6rem; }
}

/* ---------- Intro ---------- */
.intro {
  max-width: 640px;
  padding-bottom: 100px;
}
.intro p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.intro p:last-child { margin-bottom: 0; }

/* ---------- Gallery ---------- */
.gallery { padding-bottom: 110px; }
.gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.gallery-row-split { grid-template-columns: 2fr 1fr; }
.gallery figure { margin: 0; }
.gallery img { aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-full { margin: 0 0 28px; }
.gallery-full img { aspect-ratio: 16 / 8; object-fit: cover; }
.gallery figcaption {
  font-size: 0.88rem;
  color: var(--ink-faint);
  padding-top: 12px;
  font-style: italic;
  font-family: var(--serif);
}

@media (max-width: 640px) {
  .gallery-row, .gallery-row-split { grid-template-columns: 1fr; }
}

/* ---------- Section headings ---------- */
.details h2, .location h2, .host h2 {
  font-size: 1.5rem;
  margin-bottom: 32px;
}

/* ---------- Spec list ---------- */
.details, .location { padding-bottom: 100px; max-width: 640px; }
.spec-list { border-top: 1px solid var(--line); }
.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}
.spec-row span:first-child { color: var(--ink-faint); }
.spec-row span:last-child { color: var(--ink); text-align: right; }

/* ---------- Host ---------- */
.host {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 110px;
  max-width: 900px;
}
.host-copy p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-top: 20px;
  max-width: 46ch;
}
.host-photo img { aspect-ratio: 4 / 3; object-fit: cover; }
.host-photo figcaption {
  font-size: 0.86rem;
  color: var(--ink-faint);
  font-style: italic;
  font-family: var(--serif);
  padding-top: 10px;
}

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

.map-embed {
  margin-top: 36px;
  border: 1px solid var(--line);
}
.map-embed iframe {
  filter: grayscale(25%) contrast(1.02);
  display: block;
  transition: filter 0.3s ease;
}
.map-embed:hover iframe {
  filter: grayscale(0%);
}
.map-note {
  font-size: 0.82rem;
  color: var(--ink-faint);
  padding: 12px 16px;
  border-top: 1px solid var(--line);
}

/* ---------- Guides teaser ---------- */
.guides-teaser {
  padding-bottom: 110px;
  border-top: 1px solid var(--line);
  padding-top: 90px;
}
.guides-teaser-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.guides-teaser-head h2 {
  font-size: 1.6rem;
}
.section-sub {
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-top: 14px;
  margin-bottom: 44px;
}
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.guide-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.guide-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 18px;
}
.guide-card .kicker { margin-bottom: 10px; font-size: 0.74rem; }
.guide-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.3;
}
.guide-card p:last-child {
  font-size: 0.92rem;
  color: var(--ink-faint);
  margin: 0;
  line-height: 1.5;
}
.guide-card:hover h3 { color: var(--accent); }

@media (max-width: 760px) {
  .guides-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Reviews ---------- */
.reviews {
  padding-bottom: 110px;
  max-width: 640px;
}
.review-score {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 5rem);
  color: var(--accent);
  line-height: 1;
}
.review-caption {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-top: 16px;
  max-width: 42ch;
}
.review-note {
  font-size: 0.96rem;
  color: var(--ink-faint);
  margin-top: 18px;
  max-width: 52ch;
  line-height: 1.6;
}

/* ---------- Closing CTA ---------- */
.cta {
  background: var(--accent);
  color: var(--paper);
  padding: 100px 0;
}
.cta-inner {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
}
.cta h2 {
  color: var(--paper);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.25;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.btn-solid {
  display: inline-block;
  background: var(--paper);
  color: var(--accent);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  padding: 16px 32px;
  transition: opacity 0.2s ease;
}
.btn-solid:hover { opacity: 0.85; }
.btn-outline-light {
  display: inline-block;
  border: 1px solid rgba(246, 242, 232, 0.4);
  color: var(--paper);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  padding: 15px 32px;
  transition: border-color 0.2s ease;
}
.btn-outline-light:hover { border-color: var(--paper); }

/* ---------- Footer ---------- */
.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--ink-faint);
}
.footer-inner a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 61, 47, 0.3);
}

@media (max-width: 480px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .wrap { padding: 0 22px; }
  .hero { padding: 64px 0 40px; }
  .hero-photo { margin-bottom: 64px; }
  .intro { padding-bottom: 64px; }
  .gallery { padding-bottom: 72px; }
  .details, .location, .host, .reviews { padding-bottom: 64px; }
  .cta { padding: 72px 0; }
}
