:root {
  --ink: #1f241f;
  --muted: #687067;
  --paper: #f6f1e7;
  --paper-deep: #e8dfcf;
  --green: #26483a;
  --green-dark: #173127;
  --gold: #b98b4a;
  --white: #fffdf8;
  --radius: 1.25rem;
  --shadow: 0 18px 55px rgba(22, 35, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  min-height: 78px;
  padding: 0.55rem clamp(1rem, 4vw, 4rem);
  background: rgba(246, 241, 231, 0.96);
  border-bottom: 1px solid rgba(31, 36, 31, 0.1);
  backdrop-filter: blur(12px);
}

.brand {
  display: block;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.5rem);
  color: var(--muted);
  font-size: 0.84rem;
}

.header-contact a {
  text-decoration: none;
}

.header-contact a:hover,
nav a:hover,
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.5rem);
}

nav a {
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-book {
  padding: 0.68rem 1rem;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
}

.hero {
  width: min(1460px, 100%);
  min-height: min(76vh, 720px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  background: var(--paper);
}

.hero-copy-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(1.4rem, 5vw, 5.5rem);
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.intro h2,
.contact h2,
.feature-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
  text-wrap: balance;
}

.hero h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3.1rem, 6vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.drawbridge {
  max-width: 30ch;
  margin: 1.5rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  line-height: 1.35;
}

.hero-support {
  max-width: 48ch;
  margin: 1rem 0 0;
  color: var(--muted);
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.72rem 1.08rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  text-decoration: none;
}

.button-primary {
  color: var(--white);
  background: var(--green);
}

.button-chief {
  min-height: 3.2rem;
  padding-inline: 1.3rem;
  box-shadow: 0 10px 24px rgba(23, 49, 39, 0.16);
}

.button-secondary {
  color: var(--green-dark);
  border-color: rgba(38, 72, 58, 0.24);
  background: transparent;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--green-dark);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 43%;
  transform: scale(1.035);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(15, 27, 21, 0.42));
  pointer-events: none;
}

.hero-caption {
  position: absolute;
  right: 1.1rem;
  bottom: 0.9rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-narrow {
  width: min(820px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
}

.intro h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.intro > p:not(.eyebrow) {
  max-width: 55ch;
  margin: 1.2rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.intro .button {
  margin-top: 1.45rem;
}

.feature-grid {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto clamp(4rem, 10vw, 8rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card-stay {
  outline: 1px solid rgba(185, 139, 74, 0.26);
}

.feature-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--paper-deep);
}

.feature-body {
  padding: 1.4rem 1.4rem 1.65rem;
}

.feature-card h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
}

.feature-card p:not(.eyebrow) {
  color: var(--muted);
}

.text-link {
  color: var(--green);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.contact {
  width: min(1280px, calc(100% - 2rem));
  min-height: 460px;
  margin: 0 auto clamp(1rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  overflow: hidden;
  color: var(--white);
  background: var(--green-dark);
  border-radius: var(--radius);
}

.contact-copy {
  padding: clamp(2rem, 6vw, 5rem);
}

.contact h2 {
  margin: 0 0 1.4rem;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 500;
}

.contact address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.82);
}

.contact p {
  margin: 0.55rem 0;
}

.contact a:not(.button) {
  text-underline-offset: 0.2em;
}

.contact .button-primary {
  color: var(--green-dark);
  background: var(--white);
}

.contact .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}

.map-wrap {
  min-height: 460px;
  background: var(--paper-deep);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  filter: saturate(0.78) contrast(0.96);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.2rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

footer p {
  margin: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-brand img {
  width: 42px;
  height: 42px;
}

@media (max-width: 1050px) {
  .header-contact a:not(.header-phone) {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .header-contact {
    justify-self: end;
  }

  .header-phone {
    font-size: 0;
  }

  .header-phone::after {
    content: "Call";
    font-size: 0.84rem;
    font-weight: 750;
  }

  nav a:not(.nav-book) {
    display: none;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-copy-panel {
    order: 2;
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero-visual {
    min-height: 52vw;
    max-height: 520px;
  }

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

  .feature-card {
    display: grid;
    grid-template-columns: minmax(180px, 0.85fr) minmax(0, 1.15fr);
  }

  .feature-card > img {
    height: 100%;
    aspect-ratio: auto;
  }

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

  .map-wrap,
  .map-wrap iframe {
    min-height: 360px;
  }
}

@media (max-width: 600px) {
  .site-header {
    grid-template-columns: auto 1fr;
    min-height: 68px;
    padding-block: 0.4rem;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .header-contact {
    display: none;
  }

  nav {
    justify-self: end;
  }

  .nav-book {
    padding: 0.62rem 0.85rem;
  }

  .hero-visual {
    min-height: 65vw;
  }

  .hero-copy-panel {
    padding-inline: 1.25rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .drawbridge {
    font-size: 1.22rem;
  }

  .section-narrow {
    padding: 3.25rem 0 3.75rem;
  }

  .intro h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .feature-card {
    display: block;
  }

  .feature-card > img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .contact {
    min-height: 0;
  }

  .contact-copy {
    padding: 2.2rem 1.25rem 2.4rem;
  }

  .map-wrap {
    display: none;
  }

  footer {
    display: block;
  }

  footer > p {
    margin-top: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-visual img {
    transform: none;
  }
}
