/* ============================================================
   Auckland Airport Cabin — Variant C
   Design direction: warm boutique-brand — cream background,
   pill-shaped nav and buttons, rounded framed photography,
   sage + rust warmth, oversized serif footer wordmark.
   ============================================================ */

:root {
  --cream: #f4ede0;
  --cream-card: #efe4d0;
  --ink: #33291f;
  --ink-soft: rgba(51, 41, 31, 0.68);
  --ink-faint: rgba(51, 41, 31, 0.46);
  --line: rgba(51, 41, 31, 0.16);
  --sage: #8a9473;
  --sage-dark: #66704f;
  --rust: #a8643d;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

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

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  margin: 0;
  color: var(--ink);
}
h1 em, h2 em { font-style: italic; font-weight: 500; color: var(--sage-dark); }

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  padding: 28px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.wordmark {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
}
.pill-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pill {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.pill:hover { border-color: var(--ink); color: var(--ink); }
.pill-solid {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.pill-solid:hover { background: var(--sage-dark); border-color: var(--sage-dark); color: var(--cream); }

.book-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.pill-compact {
  padding: 7px 18px;
  font-size: 0.78rem;
  white-space: nowrap;
}

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding: 70px 0 44px;
  max-width: 720px;
  margin: 0 auto;
}
.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  line-height: 1.28;
}
.hero-link {
  display: inline-block;
  margin-top: 26px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

/* ---------- Hero framed photo ---------- */
.hero-frame-wrap {
  padding: 0 32px;
  margin-bottom: 90px;
}
.hero-frame {
  max-width: 1160px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}
.hero-frame img {
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  background: var(--ink);
  color: var(--cream);
  padding: 16px 22px;
  border-radius: 14px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.hero-badge-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
  white-space: nowrap;
}
.hero-badge-num small {
  font-family: var(--sans);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
  margin-left: 4px;
}
.hero-badge-label {
  font-size: 0.8rem;
  line-height: 1.3;
  max-width: 11ch;
  opacity: 0.9;
}

@media (max-width: 600px) {
  .hero-badge { left: 16px; bottom: 16px; padding: 12px 16px; gap: 8px; }
  .hero-badge-num { font-size: 1.4rem; }
}

/* ---------- Gallery ---------- */
.gallery { padding-bottom: 100px; }
.gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.gallery-row-split { grid-template-columns: 2fr 1fr; }
.gallery-item { margin: 0; }
.gallery-item-frame {
  border-radius: 18px;
  overflow: hidden;
}
.gallery-item-frame img { aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-full { margin-bottom: 24px; }
.gallery-full .gallery-item-frame img { aspect-ratio: 21 / 9; }
.gallery-item figcaption {
  padding-top: 10px;
  font-size: 0.85rem;
  color: var(--ink-faint);
}

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

/* ---------- Connect / Reserve grid ---------- */
.connect-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  padding-bottom: 100px;
}
.connect-card, .reserve-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  background: var(--cream-card);
}
.connect-card h2, .reserve-panel h2 {
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.connect-card p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-bottom: 28px;
}
.connect-facts { display: flex; flex-direction: column; gap: 16px; }
.connect-fact { display: flex; flex-direction: column; gap: 2px; }
.connect-fact .label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.connect-fact .value { font-size: 1rem; color: var(--ink); }

.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 24px;
  margin-bottom: 36px;
}
.reserve-field .label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: block;
  margin-bottom: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.reserve-field .value { font-size: 1rem; color: var(--ink); padding-top: 2px; }

.reserve-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}
.btn-pill-solid { background: var(--ink); color: var(--cream); }
.btn-pill-solid:hover { background: var(--sage-dark); }
.btn-pill-outline { border: 1px solid var(--ink); color: var(--ink); }
.btn-pill-outline:hover { background: var(--ink); color: var(--cream); }

.map-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream-card);
}
.map-card iframe {
  display: block;
  filter: grayscale(25%) contrast(1.02);
  transition: filter 0.3s ease;
}
.map-card:hover iframe { filter: grayscale(0%); }
.map-card .map-note {
  padding: 16px 20px;
  font-size: 0.82rem;
  color: var(--ink-faint);
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .connect-grid { grid-template-columns: 1fr; }
  .reserve-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .connect-card, .reserve-panel { padding: 28px 24px; }
  .reserve-grid { grid-template-columns: 1fr; }
  .reserve-actions { justify-content: flex-start; }
}

/* ---------- FAQ section ---------- */
.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  padding-bottom: 110px;
  align-items: start;
}
.faq-image {
  border-radius: 20px;
  overflow: hidden;
  position: sticky;
  top: 28px;
}
.faq-image img { aspect-ratio: 4 / 5; object-fit: cover; }

.faq-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 30px;
}
.faq-item {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.faq-list .faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.faq-item p {
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

@media (max-width: 820px) {
  .faq-section { grid-template-columns: 1fr; }
  .faq-image { position: static; aspect-ratio: 16/9; }
  .faq-image img { aspect-ratio: 16/9; }
}

/* ---------- Guides teaser ---------- */
.guides-teaser { padding-bottom: 110px; }
.guides-teaser-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.guides-teaser-head h2 { font-size: 1.6rem; }
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.guide-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--cream-card);
}
.guide-card img { aspect-ratio: 4/3; object-fit: cover; }
.guide-card-body { padding: 20px 22px 26px; }
.guide-card .kicker { margin-bottom: 8px; font-size: 0.68rem; }
.guide-card h3 {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}
.guide-card p:last-child {
  font-size: 0.88rem;
  color: var(--ink-faint);
  line-height: 1.5;
}

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

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-wordmark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.01em;
}
.footer-nav {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-col span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 4px;
}
.footer-nav-col a { font-size: 0.92rem; color: var(--ink-soft); }
.footer-nav-col a:hover { color: var(--ink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--ink-faint);
}

@media (max-width: 560px) {
  .footer-top { flex-direction: column; gap: 32px; }
  .site-header .header-inner { justify-content: center; text-align: center; }
}
