:root {
  --forest: #173527;
  --forest-deep: #10271d;
  --cream: #fffaf0;
  --sand: #fbf7ee;
  --coral: #b84930;
  --muted: #5d6f65;
  --line: rgba(23, 53, 39, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--sand);
  color: var(--forest);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; }
a:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
.skip-link { position: fixed; top: .75rem; left: .75rem; z-index: 20; padding: .7rem 1rem; background: var(--forest-deep); color: var(--cream); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.site-header {
  min-height: 76px;
  padding: .65rem clamp(1rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 247, 238, .94);
}
.site-header img { width: 54px; height: 54px; display: block; }
.site-header nav { display: flex; align-items: center; gap: clamp(.75rem, 2.5vw, 2rem); }
.site-header a { color: inherit; font-size: .84rem; font-weight: 700; text-decoration: none; }
.site-header .header-cta { padding: .75rem 1rem; border-radius: 999px; background: var(--coral); color: var(--cream); }
.detail-main { overflow: hidden; }
.detail-hero {
  width: min(100%, 1440px);
  margin-inline: auto;
  padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem) clamp(4rem, 9vw, 8rem);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}
.eyebrow { margin: 0 0 1rem; color: var(--coral); font-size: .73rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
h1, h2 { margin: 0; font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; letter-spacing: -.05em; line-height: .9; text-wrap: balance; }
h1 { max-width: 8ch; font-size: clamp(4.4rem, 9vw, 8.6rem); }
.lead { max-width: 48ch; margin: 2rem 0 0; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.button { min-height: 50px; padding: .85rem 1.2rem; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--forest); border-radius: 999px; color: var(--forest); font-size: .86rem; font-weight: 700; text-decoration: none; }
.button-primary { border-color: var(--coral); background: var(--coral); color: var(--cream); }
.hero-photo { margin: 0; overflow: hidden; border-radius: 30px; box-shadow: 0 32px 80px rgba(23, 53, 39, .18); }
.hero-photo img { width: 100%; aspect-ratio: 4 / 5; display: block; object-fit: cover; }
.detail-section { padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 5rem); background: var(--forest-deep); color: var(--cream); }
.detail-section-inner { width: min(100%, 1240px); margin-inline: auto; display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(3rem, 8vw, 8rem); }
.detail-section h2 { max-width: 8ch; font-size: clamp(3.5rem, 6vw, 6rem); }
.detail-copy { color: rgba(255, 250, 240, .78); }
.legal-copy { color: var(--muted); }
.detail-copy p { max-width: 66ch; margin: 0 0 1.25rem; }
.features { margin: 2rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem 2rem; list-style: none; }
.features li { padding-top: .7rem; border-top: 1px solid rgba(255, 250, 240, .16); color: var(--cream); font-size: .9rem; }
.gallery { width: min(100%, 1240px); margin-inline: auto; padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 5rem); display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 1rem; }
.gallery img { width: 100%; height: 100%; min-height: 320px; display: block; border-radius: 24px; object-fit: cover; }
.closing { padding: clamp(4rem, 8vw, 7rem) 1rem; text-align: center; }
.closing h2 { margin-inline: auto; max-width: 12ch; font-size: clamp(3.3rem, 6vw, 6rem); }
.closing .button { margin-top: 2rem; }
.site-footer { padding: 1.5rem clamp(1rem, 4vw, 3rem); display: flex; justify-content: space-between; gap: 1rem; background: var(--forest-deep); color: rgba(255, 250, 240, .66); font-size: .75rem; }
.site-footer a { color: var(--cream); }

@media (max-width: 760px) {
  .site-header nav a:not(.header-cta) { display: none; }
  .detail-hero, .detail-section-inner { grid-template-columns: 1fr; }
  .detail-hero { padding-top: 2.5rem; }
  h1 { font-size: clamp(4rem, 22vw, 6rem); }
  .hero-photo { order: -1; }
  .hero-photo img { aspect-ratio: 4 / 3; }
  .features { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery img { min-height: 260px; aspect-ratio: 4 / 3; }
  .site-footer { align-items: flex-start; flex-direction: column; }
}
