@font-face {
  font-family: "Recanto Serif";
  src: local("Iowan Old Style"), local("Palatino Linotype"), local("Book Antiqua");
  font-display: swap;
}

:root {
  --forest: #17372f;
  --forest-deep: #0d2923;
  --moss: #65745d;
  --sage: #a9b29c;
  --sand: #f1eadc;
  --cream: #f8f4ea;
  --paper: #fffdf8;
  --clay: #b86845;
  --gold: #d4a866;
  --ink: #1a241f;
  --muted: #66706a;
  --line: rgba(23, 55, 47, 0.16);
  --serif: "Recanto Serif", Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1240px, calc(100% - 48px));
  --shadow: 0 28px 80px rgba(22, 46, 39, 0.12);
}

* {
  box-sizing: border-box;
}

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

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

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--forest);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: color 250ms ease, background 250ms ease, box-shadow 250ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  color: var(--forest);
  background: rgba(248, 244, 234, 0.94);
  box-shadow: 0 8px 36px rgba(20, 48, 40, 0.08);
  backdrop-filter: blur(16px);
  border-color: var(--line);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  line-height: 1;
}

.brand-mark {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: grid;
  gap: 4px;
  text-transform: uppercase;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.brand-copy small {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.34em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding: 30px 0;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 22px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav > a:hover::after,
.main-nav > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 18px;
  color: var(--forest);
  background: var(--sand);
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease;
}

.site-header.is-scrolled .nav-cta,
.site-header.menu-visible .nav-cta {
  color: #fff;
  background: var(--forest);
}

.nav-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 1px;
  display: block;
  margin: 7px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

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

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

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--forest-deep);
}

.hero-media,
.closing-image {
  position: absolute;
  inset: 0;
  background-image: url("assets/recanto-hero.webp");
  background-size: cover;
  background-position: center;
}

.hero-media {
  z-index: -3;
  transform: scale(1.03);
  animation: hero-arrive 1.6s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 28, 23, 0.79) 0%, rgba(8, 28, 23, 0.47) 42%, rgba(8, 28, 23, 0.08) 72%),
    linear-gradient(0deg, rgba(9, 24, 20, 0.48) 0%, transparent 38%);
}

.hero-grain {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.26'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  padding-top: 88px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 24px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
}

.eyebrow span {
  width: 34px;
  height: 1px;
  margin: 0 13px;
  background: rgba(255, 255, 255, 0.46);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(64px, 7vw, 110px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.hero h1 em,
.experience h2 em {
  color: var(--gold);
  font-weight: 400;
}

.hero-lead {
  max-width: 520px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.79);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 42px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 25px;
  border: 0;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 39, 32, 0.18);
}

.button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.button-primary {
  color: var(--forest);
  background: var(--sand);
}

.button-primary:hover {
  background: #fff8e9;
}

.button-dark {
  color: #fff;
  background: var(--forest);
}

.text-link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link::after {
  content: "↗";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translate(3px, -3px);
}

.text-link-light {
  color: rgba(255, 255, 255, 0.9);
}

.hero-footer {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 12px;
}

.scroll-cue i {
  width: 1px;
  height: 24px;
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.26);
}

.scroll-cue i::after {
  content: "";
  width: 1px;
  height: 9px;
  display: block;
  background: #fff;
  animation: scroll-cue 1.8s infinite ease-in-out;
}

.essentials {
  color: var(--forest);
  background: var(--sand);
  border-bottom: 1px solid rgba(23, 55, 47, 0.11);
}

.essentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.essential {
  min-height: 160px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px clamp(12px, 4vw, 55px);
  border-left: 1px solid rgba(23, 55, 47, 0.11);
}

.essential:last-child {
  border-right: 1px solid rgba(23, 55, 47, 0.11);
}

.essential-number {
  font-family: var(--serif);
  font-size: 13px;
  opacity: 0.46;
}

.essential p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.22;
}

.section {
  padding: clamp(92px, 10vw, 150px) 0;
}

.section-title {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section-copy {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.about {
  overflow: hidden;
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(430px, 1.18fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}

.about-copy .section-title {
  max-width: 510px;
}

.about-copy .section-copy {
  max-width: 500px;
  margin: 32px 0 0;
}

.about-copy .text-link {
  margin-top: 35px;
}

.about-visual {
  position: relative;
  min-height: 650px;
}

.about-image {
  position: absolute;
  inset: 0 0 0 12%;
  background: url("assets/recanto-hero.webp") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(9, 35, 27, 0.32));
}

.about-stamp {
  position: absolute;
  top: 40px;
  left: 0;
  width: 145px;
  height: 145px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--sand);
  border-radius: 50%;
  box-shadow: 0 16px 40px rgba(27, 56, 47, 0.16);
}

.about-stamp svg {
  width: 122px;
  height: 122px;
}

.about-stamp text {
  fill: currentColor;
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.7px;
}

.stamp-mountain {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.about-note {
  position: absolute;
  right: 36px;
  bottom: 30px;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  line-height: 1.25;
}

.stays {
  background: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading .section-copy {
  max-width: 470px;
  margin: 0 0 8px auto;
}

.stay-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.stay-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid rgba(23, 55, 47, 0.12);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.stay-card:hover {
  z-index: 1;
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.stay-card-featured {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
}

.stay-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  color: var(--forest);
  background: var(--gold);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stay-topline {
  display: flex;
  justify-content: space-between;
  padding: 22px 24px 18px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stay-card-featured .stay-topline {
  padding-right: 132px;
  color: rgba(255, 255, 255, 0.57);
}

.stay-art {
  height: 220px;
  display: grid;
  place-items: center;
  margin: 0 20px;
  overflow: hidden;
}

.stay-art svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--forest);
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.72;
}

.stay-art-ipe {
  background: #dfddd0;
}

.stay-art-pedra {
  background: #294b42;
}

.stay-art-pedra svg {
  stroke: #d8cda9;
}

.stay-art-horizonte {
  background: #d5c5b2;
}

.stay-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 30px;
}

.stay-body h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
}

.stay-body > p {
  min-height: 76px;
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.stay-card-featured .stay-body > p {
  color: rgba(255, 255, 255, 0.64);
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.amenities li {
  padding: 6px 9px;
  color: var(--moss);
  background: rgba(101, 116, 93, 0.09);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stay-card-featured .amenities li {
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
}

.stay-action {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding: 15px 0 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.stay-card-featured .stay-action {
  border-color: rgba(255, 255, 255, 0.16);
}

.stay-action span {
  transition: transform 180ms ease;
}

.stay-action:hover span {
  transform: translate(3px, -3px);
}

.stays-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.experience {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--forest-deep);
}

.experience-glow {
  position: absolute;
  top: -230px;
  left: 47%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 150, 85, 0.14), transparent 67%);
  pointer-events: none;
}

.section-kicker-light {
  color: var(--gold);
}

.experience .section-title {
  color: #f6f1e7;
  font-size: clamp(50px, 6vw, 84px);
}

.experience-intro {
  max-width: 850px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 86px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.experience-item {
  padding: 45px 50px 10px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.experience-item + .experience-item {
  padding-left: 50px;
}

.experience-item:last-child {
  border: 0;
}

.experience-icon {
  height: 45px;
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 31px;
}

.experience-item h3 {
  margin: 18px 0 12px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.experience-item p {
  max-width: 290px;
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 13px;
  line-height: 1.75;
}

.booking {
  background: var(--paper);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.booking-copy .section-title {
  max-width: 550px;
}

.booking-copy .section-copy {
  max-width: 520px;
  margin: 28px 0 0;
}

.map-link {
  max-width: 430px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 35px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  color: var(--forest);
  font-size: 13px;
}

.map-link > span:first-child {
  font-size: 27px;
}

.map-link small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 18px;
  padding: clamp(30px, 5vw, 54px);
  background: var(--sand);
  border: 1px solid rgba(23, 55, 47, 0.1);
  box-shadow: var(--shadow);
}

.field {
  min-width: 0;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(23, 55, 47, 0.15);
  border-radius: 0;
}

.field input::placeholder {
  color: #8b918d;
  font-size: 12px;
}

.booking-form .button {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  margin: -10px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.closing {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
}

.closing-image {
  z-index: -2;
  background-position: center 48%;
  filter: saturate(0.82);
}

.closing-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(8, 31, 25, 0.57);
}

.closing-content {
  text-align: center;
}

.closing-content > p {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.closing h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.closing .button {
  margin-top: 38px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.66);
  background: #0a211c;
}

.footer-main {
  min-height: 250px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.brand-footer {
  color: #fff;
}

.footer-main > p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
}

.footer-main nav {
  display: grid;
  justify-content: end;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-align: right;
}

.footer-main nav a:hover {
  color: #fff;
}

.footer-bottom {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.summary-dialog {
  width: min(560px, calc(100% - 32px));
  padding: 44px;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  box-shadow: 0 30px 100px rgba(4, 21, 17, 0.36);
}

.summary-dialog::backdrop {
  background: rgba(5, 24, 19, 0.7);
  backdrop-filter: blur(5px);
}

.summary-dialog h2 {
  margin: 0 0 12px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
}

.summary-dialog > p:not(.section-kicker):not(.copy-status) {
  color: var(--muted);
  font-size: 13px;
}

.summary-dialog pre {
  margin: 24px 0;
  padding: 18px;
  white-space: pre-wrap;
  color: var(--forest);
  background: var(--sand);
  border-left: 3px solid var(--clay);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.7;
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  color: var(--forest);
  background: transparent;
  border: 0;
  font-size: 30px;
  font-weight: 200;
  cursor: pointer;
}

.copy-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--moss);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-arrive {
  from { opacity: 0; transform: scale(1.1); }
  to { opacity: 1; transform: scale(1.03); }
}

@keyframes scroll-cue {
  0% { transform: translateY(-10px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(24px); opacity: 0; }
}

@media (max-width: 980px) {
  :root {
    --container: min(100% - 36px, 760px);
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    height: calc(100svh - 82px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 50px max(28px, calc((100% - 724px) / 2));
    color: var(--forest);
    background: var(--cream);
    transform: translateX(100%);
    transition: transform 280ms cubic-bezier(0.2, 0.75, 0.2, 1);
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav > a:not(.nav-cta) {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -0.02em;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .main-nav .nav-cta {
    margin-top: 34px;
    color: #fff;
    background: var(--forest);
  }

  .hero-media {
    background-position: 60% center;
  }

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

  .essential {
    min-height: 105px;
    border-right: 1px solid rgba(23, 55, 47, 0.11);
    border-bottom: 1px solid rgba(23, 55, 47, 0.11);
  }

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

  .about-visual {
    min-height: 560px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading .section-copy {
    margin-left: 0;
  }

  .stay-list {
    grid-template-columns: 1fr;
  }

  .stay-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    grid-template-rows: auto 1fr;
  }

  .stay-topline {
    grid-column: 1 / -1;
  }

  .stay-art {
    height: 100%;
    min-height: 320px;
    margin: 0 0 20px 20px;
  }

  .stay-body > p {
    min-height: auto;
  }

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

  .experience-item,
  .experience-item + .experience-item {
    padding: 35px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main nav {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 32px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-mark {
    width: 37px;
    height: 37px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .main-nav {
    top: 72px;
    height: calc(100svh - 72px);
    padding: 40px 24px;
  }

  .hero {
    min-height: 680px;
    height: 100svh;
  }

  .hero-content {
    padding-top: 55px;
  }

  .hero-media {
    background-position: 66% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(7, 28, 22, 0.82), rgba(8, 28, 23, 0.25)),
      linear-gradient(0deg, rgba(7, 23, 19, 0.6), transparent 55%);
  }

  .hero h1 {
    font-size: clamp(54px, 16vw, 72px);
  }

  .hero-lead {
    max-width: 90%;
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 32px;
  }

  .hero-footer > span:first-child {
    display: none;
  }

  .hero-footer {
    justify-content: flex-end;
  }

  .section {
    padding: 84px 0;
  }

  .section-title {
    font-size: 46px;
  }

  .about-visual {
    min-height: 470px;
  }

  .about-image {
    left: 8%;
  }

  .about-stamp {
    top: 26px;
    width: 110px;
    height: 110px;
  }

  .about-stamp svg {
    width: 94px;
    height: 94px;
  }

  .about-note {
    right: 20px;
    bottom: 20px;
    font-size: 20px;
  }

  .stay-card {
    display: flex;
  }

  .stay-art {
    height: 200px;
    min-height: 0;
    margin: 0 18px;
  }

  .stay-card-featured .stay-topline {
    padding-right: 124px;
  }

  .experience-grid {
    margin-top: 55px;
  }

  .booking-form {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .field-wide {
    grid-column: 1;
  }

  .closing {
    min-height: 540px;
  }

  .closing-image {
    background-position: 60% center;
  }

  .footer-main {
    min-height: 310px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
  }

  .footer-main > p {
    margin: 15px 0 0;
  }

  .footer-bottom {
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }

  .summary-dialog {
    padding: 40px 24px 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
