/* ============================================================
   LISBON GARDEN — Boutique Guest House
   Design system: deep forest green + cream/white, botanical luxury
   ============================================================ */

:root {
  /* Greens (deep, elegant, botanical) */
  --green-900: #11281f;
  --green-800: #1b4332;
  --green-700: #245741;
  --green-600: #2d6a4f;
  --green-500: #3a8366;
  --green-300: #9ec6ad;
  --green-150: #d8e6dc;

  /* Neutrals — warm, low-saturation whites */
  --paper:  #fbfaf5;
  --cream:  #f3f0e7;
  --sand:   #e9e4d6;
  --ink:    #18241e;
  --muted:  #5d6a61;

  /* Accent — subtle brass hairline for luxury */
  --brass:  #b08d57;

  /* Theme-tunable (Tweaks bridge) */
  --green: var(--green-800);
  --green-soft: var(--green-600);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 80px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

/* Eyebrow / kicker labels */
.kicker {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--green-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--brass);
}
.kicker.center::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--brass);
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--green);
  --fg: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bg);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--green-900); border-color: var(--green-900); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--green); }
.btn--ghost:hover { background: var(--green); color: #fff; }
.btn--light { background: #fff; color: var(--green-900); border-color: #fff; }
.btn--light:hover { background: var(--brass); border-color: var(--brass); color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--outline-light:hover { background: #fff; color: var(--green-900); border-color: #fff; }

/* Text link with underline grow */
.link-ul {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px; color: var(--green);
  padding-bottom: 4px; border-bottom: 1px solid currentColor;
  transition: gap 0.3s var(--ease), color 0.3s;
}
.link-ul:hover { gap: 16px; color: var(--green-900); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s;
  color: #fff;
}
.nav.scrolled {
  background: var(--paper);
  color: var(--ink);
  padding-block: 14px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 18px 40px -28px rgba(0,0,0,0.4);
}
.nav__brand { display: flex; align-items: center; line-height: 1; position: relative; }
.nav__logo {
  height: 60px; width: auto; display: block;
  transition: height 0.5s var(--ease), opacity 0.4s var(--ease);
}
.nav__logo--white { filter: drop-shadow(0 2px 10px rgba(11,26,20,0.4)); }
.nav__logo--green { position: absolute; left: 0; top: 0; opacity: 0; pointer-events: none; }
.nav.scrolled .nav__logo { height: 48px; }
.nav.scrolled .nav__logo--white { opacity: 0; }
.nav.scrolled .nav__logo--green { opacity: 1; }
.nav__brand .mark {
  font-family: var(--font-display); font-size: 26px; font-weight: 600; letter-spacing: 0.02em;
}
.nav__brand .sub {
  font-family: var(--font-body); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.42em; text-transform: uppercase; opacity: 0.7; margin-top: 4px;
}
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  position: relative; opacity: 0.92;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--brass); transition: width 0.35s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 22px; }
.nav__contact { font-size: 12.5px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.92; position: relative; }
.nav__contact::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0; background: var(--brass); transition: width 0.35s var(--ease); }
.nav__contact:hover::after { width: 100%; }
.nav__phone { font-size: 12.5px; letter-spacing: 0.04em; opacity: 0.9; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; color: inherit; }
.nav__toggle svg { width: 26px; height: 26px; }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 70; background: var(--green-900); color: #fff;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: var(--gutter); transform: translateY(-100%);
  transition: transform 0.6s var(--ease); visibility: hidden;
}
.drawer.open { transform: translateY(0); visibility: visible; }
.drawer a { font-family: var(--font-display); font-size: clamp(34px, 9vw, 60px); padding: 6px 0; }
.drawer__close { position: absolute; top: 22px; right: var(--gutter); background: none; border: 0; color: #fff; cursor: pointer; }
.drawer__close svg { width: 30px; height: 30px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,26,20,0.55) 0%, rgba(11,26,20,0.20) 32%, rgba(11,26,20,0.55) 62%, rgba(11,26,20,0.92) 100%),
    linear-gradient(75deg, rgba(11,26,20,0.72) 0%, rgba(11,26,20,0.30) 42%, rgba(11,26,20,0) 70%);
}
.hero__inner {
  position: relative; z-index: 2; width: 100%; max-width: var(--maxw);
  margin: 0 auto; padding: clamp(110px, 15vh, 160px) var(--gutter) clamp(40px, 7vh, 90px);
}
.hero__kicker { color: rgba(255,255,255,0.96); text-shadow: 0 1px 12px rgba(11,26,20,0.6); }
.hero__kicker::before { background: var(--brass); }
.hero h1 {
  font-size: clamp(40px, 6.4vw, 94px); font-weight: 500; margin: 18px 0 18px;
  max-width: 15ch; text-wrap: balance;
  text-shadow: 0 2px 30px rgba(11,26,20,0.45);
}
.hero h1 em { font-style: italic; color: #cfe6d4; text-shadow: 0 2px 24px rgba(11,26,20,0.6); }
.hero__lead { font-size: clamp(16px, 1.5vw, 20px); max-width: 48ch; opacity: 0.96; font-weight: 300; text-shadow: 0 1px 16px rgba(11,26,20,0.5); }
.hero__cta { margin-top: 34px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.8;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll .line { width: 1px; height: 46px; background: rgba(255,255,255,0.6); animation: scrollLine 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes scrollLine { 0%,100% { transform: scaleY(0.3); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* Hero layout variants (driven by [data-hero]) */
/* default = A: bottom-left over full-bleed image */
[data-hero="b"] .hero { align-items: center; }
[data-hero="b"] .hero__media { left: auto; right: 0; width: 50%; }
[data-hero="b"] .hero__media::after { background: linear-gradient(90deg, rgba(17,40,31,0.0) 0%, rgba(17,40,31,0.0) 100%); }
[data-hero="b"] .hero { background: var(--green-900); }
[data-hero="b"] .hero__inner { max-width: var(--maxw); }
[data-hero="b"] .hero__text { max-width: 50%; padding-right: 5%; }
[data-hero="b"] .hero h1 em { color: var(--green-300); }

[data-hero="c"] .hero { align-items: center; text-align: center; }
[data-hero="c"] .hero__inner { padding-bottom: clamp(40px,7vh,90px); display: flex; flex-direction: column; align-items: center; }
[data-hero="c"] .hero__kicker { justify-content: center; }
[data-hero="c"] .hero__lead { margin-inline: auto; }
[data-hero="c"] .hero__cta { justify-content: center; }
[data-hero="c"] .hero h1 { margin-inline: auto; }

/* ============================================================
   RESERVATION BAR
   ============================================================ */
.resv {
  position: relative; z-index: 20; max-width: var(--maxw); margin: -46px auto 0;
  padding-inline: var(--gutter);
}
.resv__card {
  background: var(--paper); border: 1px solid var(--sand);
  box-shadow: 0 40px 80px -50px rgba(17,40,31,0.55);
  display: grid; grid-template-columns: repeat(4, 1fr) auto; align-items: stretch;
}
.resv__field { padding: 20px 24px; border-right: 1px solid var(--sand); display: flex; flex-direction: column; gap: 6px; position: relative; }
.resv__field label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.resv__field input, .resv__field select {
  font-family: var(--font-body); font-size: 16px; color: var(--ink); border: 0; background: transparent;
  outline: none; cursor: pointer; width: 100%; appearance: none;
}
.resv__field input::-webkit-calendar-picker-indicator { opacity: 0.5; cursor: pointer; }
.resv__submit { padding: 0; }
.resv__submit .btn { height: 100%; border-radius: 0; padding-inline: 38px; }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding-block: clamp(80px, 12vh, 150px); }
.section__head { max-width: 760px; }
.section__head.center { margin-inline: auto; text-align: center; }
.section__head h2 { font-size: clamp(36px, 5vw, 68px); margin: 18px 0 0; }
.section__head h2 em { font-style: italic; color: var(--green-soft); }
.section__head p { margin-top: 20px; color: var(--muted); font-size: 18px; font-weight: 300; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--paper); }
.about__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.about__media { position: relative; }
.about__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about__media .badge {
  position: absolute; bottom: -28px; left: -28px; background: var(--green); color: #fff;
  padding: 26px 30px; text-align: center; box-shadow: 0 30px 60px -40px rgba(0,0,0,0.6);
}
.about__media .badge .n { font-family: var(--font-display); font-size: 52px; line-height: 1; }
.about__media .badge .l { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.8; margin-top: 6px; }
.about__body h2 { font-size: clamp(32px, 4vw, 56px); }
.about__body p { margin-top: 22px; color: var(--muted); font-size: 17px; }
.about__body .lead { color: var(--ink); font-size: 20px; font-weight: 400; }
.about__feats { display: flex; gap: 36px; margin: 34px 0; flex-wrap: wrap; }
.about__feats .f { display: flex; flex-direction: column; }
.about__feats .f .ft { font-family: var(--font-display); font-size: 30px; color: var(--green); }
.about__feats .f .fl { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   ROOMS
   ============================================================ */
.rooms { background: var(--green-900); color: var(--cream); }
.rooms .kicker { color: var(--green-300); }
.rooms .section__head h2 { color: #fff; }
.rooms .section__head h2 em { color: var(--green-300); }
.rooms .section__head p { color: rgba(255,255,255,0.7); }
.rooms__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.room { background: var(--green-800); border: 1px solid rgba(255,255,255,0.08); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.5s var(--ease), border-color 0.5s; }
.room:hover { transform: translateY(-8px); border-color: var(--brass); }
.room__img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.room__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.room:hover .room__img img { transform: scale(1.07); }
.room__price { position: absolute; top: 14px; right: 14px; background: var(--paper); color: var(--green-900); font-family: var(--font-display); font-size: 20px; padding: 6px 14px; }
.room__price span { font-family: var(--font-body); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; }
.room__body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.room__body h3 { font-size: 28px; color: #fff; }
.room__meta { display: flex; gap: 16px; margin: 10px 0 14px; font-size: 12px; letter-spacing: 0.06em; color: var(--green-300); text-transform: uppercase; }
.room__body p { color: rgba(255,255,255,0.72); font-size: 15px; font-weight: 300; flex: 1; }
.room__body .link-ul { color: #fff; margin-top: 20px; align-self: flex-start; border-color: rgba(255,255,255,0.4); }
.room__body .link-ul:hover { color: var(--green-300); }

/* ============================================================
   PRIVATE APARTMENT
   ============================================================ */
.apt { background: var(--cream); }
.apt__head { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(30px, 5vw, 70px); align-items: end; margin-bottom: 44px; }
.apt__intro h2 { font-size: clamp(34px, 4.4vw, 58px); margin-top: 16px; }
.apt__intro h2 em { font-style: italic; color: var(--green-soft); }
.apt__intro > p { margin-top: 20px; color: var(--muted); font-size: 16.5px; }
.apt__stats { display: flex; flex-wrap: wrap; gap: 24px 30px; padding-bottom: 26px; border-bottom: 1px solid var(--sand); }
.apt__stat { display: flex; flex-direction: column; }
.apt__stat .n { font-family: var(--font-display); font-size: 32px; line-height: 1; color: var(--green); }
.apt__stat .l { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.apt__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 26px; }
.apt__super { font-size: 12.5px; letter-spacing: 0.04em; color: var(--muted); }
.apt__gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 12px; }
.apt__photo { position: relative; overflow: hidden; background: var(--sand); margin: 0; }
.apt__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.apt__photo:hover img { transform: scale(1.06); }
.apt__photo figcaption { position: absolute; left: 0; bottom: 0; right: 0; padding: 22px 16px 12px; font-size: 12px; letter-spacing: 0.04em; color: #fff; background: linear-gradient(180deg, transparent, rgba(17,40,31,0.72)); opacity: 0; transform: translateY(6px); transition: all 0.4s var(--ease); }
.apt__photo:hover figcaption { opacity: 1; transform: none; }
.apt__photo--big { grid-column: span 2; grid-row: span 2; }
.apt__photo--tall { grid-row: span 2; }

@media (max-width: 900px) {
  .apt__head { grid-template-columns: 1fr; align-items: start; }
  .apt__gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
}
@media (max-width: 560px) {
  .apt__photo--big { grid-column: span 2; grid-row: span 1; }
}

/* ============================================================
   DINING / RESTAURANT
   ============================================================ */
.dining { background: var(--green-900); color: var(--cream); }
.dining .kicker { color: var(--green-300); }
.dining__top { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.dining__intro h2 { color: #fff; font-size: clamp(34px, 4.4vw, 58px); margin-top: 16px; }
.dining__intro h2 em { font-style: italic; color: var(--green-300); }
.dining__intro > p { margin-top: 20px; color: rgba(255,255,255,0.74); font-size: 16.5px; }
.dining__intro strong { color: #fff; font-weight: 600; }
.dining__feats { display: flex; gap: 34px; flex-wrap: wrap; margin-top: 28px; }
.dining__feats .df { display: flex; flex-direction: column; }
.dining__feats .dft { font-family: var(--font-display); font-size: 26px; color: var(--green-300); }
.dining__feats .dfl { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 2px; }
.dining__hero { position: relative; margin: 0; overflow: hidden; aspect-ratio: 4/3; }
.dining__hero img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.dining__hero:hover img { transform: scale(1.05); }
.dining__hero figcaption, .dining__photo figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 18px 14px; font-size: 12.5px; color: #fff; background: linear-gradient(180deg, transparent, rgba(11,26,20,0.8)); }
.dining__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 14px; }
.dining__photo { position: relative; margin: 0; overflow: hidden; aspect-ratio: 3/2; background: var(--green-800); }
.dining__photo--wide { aspect-ratio: auto; }
.dining__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.dining__photo:hover img { transform: scale(1.05); }

@media (max-width: 900px) {
  .dining__top { grid-template-columns: 1fr; }
  .dining__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .dining__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   AMENITIES
   ============================================================ */
.amen { background: var(--cream); }
.amen__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--sand); border: 1px solid var(--sand); margin-top: 56px; }
.amen__item { background: var(--paper); padding: 44px 34px; transition: background 0.4s var(--ease); }
.amen__item:hover { background: #fff; }
.amen__item .ico { width: 40px; height: 40px; color: var(--green); margin-bottom: 22px; }
.amen__item .ico svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.3; fill: none; }
.amen__item h3 { font-size: 26px; }
.amen__item p { margin-top: 12px; color: var(--muted); font-size: 15px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--paper); }
.gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; margin-top: 56px;
  grid-auto-flow: dense;
}
.gallery__item { overflow: hidden; cursor: pointer; position: relative; background: var(--cream); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item::after {
  content: "＋"; position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(17,40,31,0.0); color: rgba(255,255,255,0); font-size: 30px; font-weight: 200;
  transition: all 0.4s var(--ease);
}
.gallery__item:hover::after { background: rgba(17,40,31,0.35); color: rgba(255,255,255,0.95); }
.gallery__item.tall { grid-row: span 2; }
.gallery__item.wide { grid-column: span 2; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(11,26,20,0.94); display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s; }
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 88vw; max-height: 84vh; object-fit: contain; box-shadow: 0 40px 90px -40px #000; }
.lightbox__btn { position: absolute; background: none; border: 1px solid rgba(255,255,255,0.3); color: #fff; width: 56px; height: 56px; cursor: pointer; font-size: 22px; display: grid; place-items: center; transition: background 0.3s, border-color 0.3s; }
.lightbox__btn:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.lightbox__prev { left: 4%; } .lightbox__next { right: 4%; } .lightbox__close { top: 4%; right: 4%; }
.lightbox__count { position: absolute; bottom: 5%; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.8); font-size: 12px; letter-spacing: 0.2em; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--green-900); color: var(--cream); }
.contact .kicker { color: var(--green-300); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); margin-top: 56px; align-items: center; }
.contact__logo { display: flex; justify-content: center; align-items: center; }
.contact__logo img { width: auto; max-height: 340px; max-width: 100%; opacity: 0.96; }
.contact h2 { color: #fff; font-size: clamp(34px, 4.5vw, 60px); }
.contact__info { margin-top: 26px; display: flex; flex-direction: column; gap: 26px; }
.contact__info .row .l { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-300); margin-bottom: 6px; }
.contact__info .row .v { font-family: var(--font-display); font-size: 24px; color: #fff; }
.contact__info .row .v a:hover { color: var(--green-300); }
.contact__socials { display: flex; gap: 14px; margin-top: 34px; }
.contact__socials a { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,0.2); display: grid; place-items: center; transition: all 0.3s; }
.contact__socials a:hover { background: #fff; color: var(--green-900); }
.contact__socials svg { width: 18px; height: 18px; fill: currentColor; }

.form { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); padding: clamp(28px, 4vw, 46px); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-300); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,0.25);
  color: #fff; font-family: var(--font-body); font-size: 16px; padding: 10px 0; outline: none; transition: border-color 0.3s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.35); }
.field input:focus, .field textarea:focus { border-color: var(--brass); }
.field textarea { resize: vertical; min-height: 90px; }
.form__note { font-size: 12px; color: rgba(255,255,255,0.5); margin: 4px 0 22px; }
.form__ok { color: var(--green-300); font-size: 14px; margin-top: 16px; display: none; }
.form__ok.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-900); color: rgba(255,255,255,0.7); border-top: 1px solid rgba(255,255,255,0.1); padding-block: 60px 40px; }
.footer__top { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 30px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer__brand .mark { font-family: var(--font-display); font-size: 34px; color: #fff; }
.footer__logo { height: 92px; width: auto; display: block; }
.footer__brand .sub { font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; opacity: 0.6; margin-top: 6px; }
.footer__links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer__links a { font-size: 13px; letter-spacing: 0.04em; }
.footer__links a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-top: 30px; font-size: 12px; opacity: 0.6; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll .line { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .rooms__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .nav__links, .nav__phone, .nav__contact { display: none; }
  .nav__toggle { display: block; }
  .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__media .badge { left: auto; right: -10px; }
  .resv__card { grid-template-columns: 1fr 1fr; }
  .resv__submit { grid-column: 1 / -1; }
  .resv__submit .btn { width: 100%; padding-block: 18px; }
  [data-hero="b"] .hero__media { position: relative; width: 100%; height: 50vh; }
  [data-hero="b"] .hero__text { max-width: 100%; }
}
@media (max-width: 620px) {
  .rooms__grid, .amen__grid, .gallery__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .resv__card { grid-template-columns: 1fr; }
  .resv__field { border-right: 0; border-bottom: 1px solid var(--sand); }
  .gallery__item.wide, .gallery__item.tall { grid-column: auto; grid-row: auto; }
}

/* Hero breathing room on phones */
@media (max-width: 700px) {
  .hero__inner { padding-top: clamp(120px, 16vh, 150px); padding-bottom: 120px; }
  .hero h1 { font-size: clamp(42px, 11vw, 60px); line-height: 1.08; margin: 26px 0 24px; }
  .hero__kicker { font-size: 11px; letter-spacing: 0.2em; }
  .hero__lead { font-size: 16px; line-height: 1.7; }
  .hero__cta { margin-top: 40px; gap: 14px; }
  .hero__cta .btn { width: 100%; }
  /* keep the Scroll indicator clear of the buttons */
  .hero__scroll { bottom: 18px; }
  .hero__scroll .line { height: 32px; }
}
