:root {
  --forest: #1e3d36;
  --forest-deep: #152b26;
  --cream: #f4f0e6;
  --cream-dark: #e8e2d4;
  --copper: #b5651d;
  --copper-hover: #9a5518;
  --text: #1a1a1a;
  --text-muted: #4a4a4a;
  --text-on-dark: #f4f0e6;
  --text-muted-dark: rgba(244, 240, 230, 0.78);
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-card: 0 18px 50px rgba(21, 43, 38, 0.18);
  --font-display: "Literata", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 72rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  overscroll-behavior-y: none;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--copper);
  color: #fff;
}

.skip-link:focus {
  left: var(--gutter);
  top: 0.75rem;
}

/* Hero */
.hero {
  position: relative;
  background: var(--forest);
  color: var(--text-on-dark);
  padding-bottom: 0;
}

.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem var(--gutter);
  flex-wrap: wrap;
}

.hero-nav__brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.hero-nav__links {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-nav__links a {
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted-dark);
  transition: color 0.2s;
}

.hero-nav__links a:hover,
.hero-nav__links a:focus-visible {
  color: var(--text-on-dark);
}

.hero-nav__phone {
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-on-dark);
  white-space: nowrap;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) var(--gutter) clamp(3rem, 8vw, 5rem);
}

.hero__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero__lead {
  margin: 0 0 1.75rem;
  max-width: 34ch;
  color: var(--text-muted-dark);
  font-size: 1.0625rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.hero__visual {
  margin: 0;
  justify-self: end;
  width: min(100%, 22rem);
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 50% 50% 45% 55% / 48% 52% 48% 52%;
  border: 3px solid rgba(244, 240, 230, 0.15);
}

.hero__brush {
  display: block;
  width: 100%;
  height: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: -1px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8125rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--primary {
  background: var(--copper);
  color: #fff;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--copper-hover);
}

.btn--ghost {
  background: transparent;
  color: var(--text-on-dark);
  border: 1px solid rgba(244, 240, 230, 0.35);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--text-on-dark);
}

.btn--light {
  background: var(--cream);
  color: var(--forest);
}

.btn--light:hover,
.btn--light:focus-visible {
  background: #fff;
}

.btn--block {
  width: 100%;
  margin-top: 0.5rem;
}

.link-arrow {
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--forest);
  border-bottom: 1px solid var(--copper);
  padding-bottom: 0.15rem;
}

.link-arrow:hover,
.link-arrow:focus-visible {
  color: var(--copper);
}

.section-label {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
}

.section-label--light {
  color: rgba(244, 240, 230, 0.65);
}

/* Stay */
.stay {
  background: var(--cream);
  padding: clamp(3rem, 8vw, 5.5rem) var(--gutter);
}

.stay__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.stay__frame {
  position: relative;
  margin: 0;
  width: min(100%, 26rem);
}

.stay__frame-ring {
  position: absolute;
  inset: -1.25rem -1.25rem 1.25rem 1.25rem;
  border: 2px solid var(--forest);
  border-radius: 55% 45% 50% 50% / 45% 55% 45% 55%;
  pointer-events: none;
}

.stay__frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 48% 52% 50% 50% / 52% 48% 52% 48%;
}

.stay__content h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--forest);
}

.stay__content p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.stay__facts {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.stay__facts li {
  padding: 0.75rem 0;
  border-top: 1px solid var(--cream-dark);
  font-size: 0.9875rem;
  color: var(--text-muted);
}

.stay__facts strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

/* Dining */
.dining {
  position: relative;
  background: var(--forest);
  color: var(--text-on-dark);
  padding: 0;
}

.dining__brush-top,
.dining__brush-bottom {
  display: block;
  width: 100%;
  height: clamp(1.5rem, 4vw, 3rem);
}

.dining__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) var(--gutter);
}

.dining__col h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.15;
}

.dining__col--right p {
  margin: 0 0 1rem;
  color: var(--text-muted-dark);
  font-size: 0.9875rem;
}

.dining__note {
  font-size: 0.875rem !important;
  opacity: 0.85;
}

.dining__window {
  margin: 0;
  padding: 0.75rem;
  background: var(--forest-deep);
  border: 3px solid rgba(244, 240, 230, 0.2);
  border-radius: var(--radius-md);
  width: min(100%, 20rem);
}

.dining__window img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
}

/* Location */
.location {
  background: var(--cream);
  padding: clamp(3rem, 8vw, 5rem) var(--gutter);
}

.location__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.location__photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.location__photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.location__content h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--forest);
}

.location__content p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.location__address {
  margin: 1.5rem 0 0;
  font-style: normal;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.5;
}

.location__address span {
  display: block;
}

/* Contact */
.contact {
  position: relative;
  min-height: clamp(22rem, 50vw, 32rem);
  background: var(--cream-dark);
}

.contact__map {
  position: absolute;
  inset: 0;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

.contact__card {
  position: relative;
  z-index: 1;
  max-width: 22rem;
  margin: clamp(2rem, 8vw, 4rem) auto clamp(2rem, 8vw, 4rem) clamp(1.25rem, 8vw, calc((100vw - var(--max)) / 2 + var(--gutter)));
  padding: clamp(1.5rem, 4vw, 2rem);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.contact__card h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--forest);
}

.contact__card > p {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.contact__list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.contact__list li {
  padding: 0.65rem 0;
  border-top: 1px solid var(--cream-dark);
  font-size: 0.9375rem;
}

.contact__key {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact__list a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
}

.contact__list a:hover,
.contact__list a:focus-visible {
  color: var(--copper);
}

/* Footer */
.site-footer {
  padding: 2rem var(--gutter) 5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  background: var(--cream-dark);
}

.site-footer p {
  margin: 0.35rem 0;
}

.site-footer a {
  color: var(--forest);
  font-weight: 600;
}

/* Mobile call pill */
.mobile-call {
  display: none !important;
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  padding: 0.875rem 2rem;
  background: var(--copper);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(181, 101, 29, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .hero__inner,
  .stay__grid,
  .location__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    justify-self: center;
    order: -1;
    width: min(70%, 16rem);
  }

  .stay__frame {
    margin: 0 auto;
  }

  .dining__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dining__window {
    margin: 0 auto;
  }

  .dining__col--left,
  .dining__col--right {
    max-width: 32rem;
    margin: 0 auto;
  }

  .contact__card {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .hero-nav {
    justify-content: center;
    text-align: center;
  }

  .hero-nav__brand {
    width: 100%;
  }

  .hero-nav__links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero-nav__phone {
    font-size: 0.8125rem;
  }

  .hero h1 br {
    display: none;
  }

  .hero__actions {
    width: 100%;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .mobile-call {
    display: block;
  }

  .site-footer {
    padding-bottom: 5.5rem;
  }
}

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