:root {
  --bg: #f6f1ea;
  --surface: #fffdf9;
  --surface-strong: #ffffff;
  --text: #2e241d;
  --muted: #6f6158;
  --line: #e2d8cb;
  --accent: #6f4e37;
  --accent-dark: #543926;
  --shadow: 0 18px 50px rgba(60, 38, 22, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(151, 111, 81, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(111, 78, 55, 0.08), transparent 22%),
    var(--bg);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--accent-dark); }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}
.narrow {
  width: min(760px, 100%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(246, 241, 234, 0.92);
  border-bottom: 1px solid rgba(111, 97, 88, 0.10);
  box-shadow: 0 8px 24px rgba(60, 38, 22, 0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
}
.brand img {
  height: 58px;
  width: auto;
}
.site-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.site-nav a:hover {
  color: var(--accent);
  border-color: rgba(111, 78, 55, 0.45);
}

.hero {
  padding: 0 0 4rem;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  margin: 0 0 2.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ddd;
}
.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.56) 0%, rgba(0,0,0,0.34) 34%, rgba(0,0,0,0.12) 62%, rgba(0,0,0,0.18) 100%);
}
.hero-image {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
}
.hero-layout {
  width: 100%;
  display: grid;
  grid-template-columns: 40% 60%;
}
.hero-copy {
  display: grid;
  gap: 1rem;
}
.hero-copy-overlay {
  color: #fff;
  max-width: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 100px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}
.hero-copy-overlay .eyebrow,
.hero-copy-overlay .lead,
.hero-copy-overlay h1 {
  color: #fff;
}
.eyebrow,
.section-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
}
.section-label {
  display: inline-block;
  margin-bottom: 0.45rem;
}
h1, h2, h3 {
  font-family: "Roboto Slab", Georgia, serif;
  line-height: 1.1;
  margin: 0;
}
h1 { font-size: clamp(1.65rem, 3vw, 2.7rem); }
h2 { font-size: clamp(1.425rem, 2.625vw, 2.175rem); margin-bottom: 0.9rem; }
h3 { font-size: 1.16rem; margin-bottom: 0.7rem; }
.lead,
.intro-text {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 760px;
}
.hero-actions,
.inline-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-weight: 700;
}
.button:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.button-secondary {
  background: rgba(255,255,255,0.72);
  color: var(--accent-dark);
  border-color: rgba(111, 78, 55, 0.35);
}
.button-secondary:hover {
  background: rgba(111, 78, 55, 0.10);
  color: var(--accent-dark);
  border-color: rgba(111, 78, 55, 0.55);
}
.button-light {
  color: #fff;
  border-color: rgba(255,255,255,0.8);
}
.button-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.section {
  padding: 4rem 0;
}
.section-alt {
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-note {
  padding-top: 0.5rem;
}
.section-note .narrow {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 1fr);
  gap: 2rem;
  align-items: start;
}
.two-col-photo { align-items: center; }
.photo-stack {
  display: grid;
  gap: 0.75rem;
}
.photo-stack img,
.boarding-gallery img {
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--shadow);
  object-fit: cover;
}
.photo-stack img:first-child { aspect-ratio: 4 / 3; }
.photo-stack img:last-child { aspect-ratio: 4 / 3; }

.feature-box,
.contact-card,
.card,
.testimonial-list blockquote {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.feature-box p,
.contact-card p,
.testimonial-list p { margin-bottom: 0; }

.boarding-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  margin-top: 1.5rem;
}
.boarding-copy {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,245,239,0.96) 100%);
  border-color: rgba(111, 78, 55, 0.16);
  padding: 1.5rem;
}
.boarding-copy h3 {
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}
.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(111, 78, 55, 0.10);
  color: var(--accent-dark);
}
.large-card ul {
  margin: 1rem 0 1.25rem;
  padding-left: 1.2rem;
}
.boarding-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.boarding-gallery img {
  aspect-ratio: 4 / 3;
}
.boarding-gallery img:nth-child(2),
.boarding-gallery img:nth-child(3) {
  transform: translateY(0.65rem);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
.testimonials .testimonial-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.testimonial-list blockquote {
  margin: 0;
  border-left: 4px solid rgba(111, 78, 55, 0.18);
}
.testimonial-list footer {
  margin-top: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.section-contact {
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.65) 100%);
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}
.footer-note { max-width: 580px; }

@media (max-width: 980px) {
  .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .boarding-highlight,
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  .hero { padding-bottom: 3rem; }
  .hero-image { aspect-ratio: 4 / 5; }
  .hero-image-wrap::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.38) 45%, rgba(0,0,0,0.62) 100%);
  }
  .hero-overlay {
    align-items: flex-end;
  }
  .hero-layout {
    grid-template-columns: 1fr;
  }
  .hero-copy-overlay {
    max-width: 28rem;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
    padding-bottom: 2rem;
  }
  .site-nav {
    gap: 0.8rem;
  }
  h1 {
    font-size: clamp(1.35rem, 6vw, 1.84rem);
    line-height: 1.05;
  }
  h2 {
    font-size: clamp(1.24rem, 5.25vw, 1.65rem);
    line-height: 1.08;
  }
  h3 {
    font-size: 1.01rem;
  }
  .lead,
  .intro-text {
    font-size: 1.02rem;
  }
  .section { padding: 3.25rem 0; }
  .boarding-gallery,
  .features-grid { grid-template-columns: 1fr; }
  .boarding-gallery img:nth-child(2),
  .boarding-gallery img:nth-child(3) {
    transform: none;
  }
}
