@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Work+Sans:wght@400;500;600&display=swap');

:root{
  --green: #22392B;
  --green-deep: #172719;
  --ivory: #F2ECDA;
  --sage-tint: #EAE8D6;
  --ochre: #A8622A;
  --sage: #8A9A7E;
  --sage-dark: #5B6B52;
  --ink: #241F1A;
  --line: rgba(36,31,26,0.14);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Work Sans', -apple-system, sans-serif;
  --maxw: 1160px;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  background:var(--ivory);
  color:var(--ink);
  font-family:var(--sans);
  font-size:17px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; }
.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 40px; }
a:focus-visible, button:focus-visible{ outline:2px solid var(--ochre); outline-offset:3px; }

@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; }
}

/* ---- Nav: logo pinned flush to the extreme left edge ---- */
header.site{
  position:sticky; top:0; z-index:50;
  background:rgba(242,236,218,0.94);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
nav.navbar{
  display:flex; align-items:center; justify-content:space-between;
  padding:6px 28px 6px 0;
}
.brand{
  display:flex; align-items:center; text-decoration:none;
  padding:4px 0 4px 14px;
}
.brand img{ height:76px; width:auto; display:block; }
.navlinks{ display:flex; gap:36px; font-size:15px; }
.navlinks a{ text-decoration:none; color:var(--ink); padding-bottom:3px; border-bottom:2px solid transparent; letter-spacing:0.01em; }
.navlinks a:hover{ color:var(--ochre); }
.navlinks a.active{ border-bottom-color:var(--ochre); color:var(--ochre); }
.navcta{
  background:var(--green-deep); color:var(--ivory);
  padding:11px 22px; border-radius:2px; font-size:14px;
  text-decoration:none; white-space:nowrap;
  box-shadow:0 2px 0 rgba(0,0,0,0.1);
  transition:transform 0.15s ease, background 0.15s ease;
}
.navcta:hover{ background:var(--ochre); transform:translateY(-1px); }

@media (max-width:900px){
  .navlinks{ gap:18px; font-size:14px; }
  nav.navbar{ flex-wrap:wrap; gap:12px; padding:6px 20px 10px 0; }
  .brand img{ height:56px; }
  .brand{ padding-left:10px; }
}

/* ---- Decorative botanical accents (eucalyptus-style sprig) ---- */
.leaf-decor{ position:absolute; pointer-events:none; z-index:0; }
.pagehead{ position:relative; overflow:hidden; }
.pagehead .leaf-decor.tl{ top:-30px; left:-30px; width:190px; opacity:0.4; }
.pagehead .leaf-decor.br{ bottom:-40px; right:-20px; width:220px; opacity:0.3; transform:rotate(15deg); }
.pagehead-inner, .pagehead > .wrap{ position:relative; z-index:1; }
footer{ position:relative; overflow:hidden; }
footer .leaf-decor{ opacity:0.15; bottom:-40px; left:-30px; width:230px; }
footer .wrap{ position:relative; z-index:1; }
section.with-leaf{ position:relative; overflow:hidden; }
section.with-leaf .leaf-decor{ opacity:0.22; top:-10px; right:-40px; width:180px; }
section.with-leaf > .wrap{ position:relative; z-index:1; }

/* ---- Section divider (ornamental rule between bands) ---- */
.divider{
  display:flex; align-items:center; justify-content:center; gap:14px;
  padding:0 0 8px 0;
}
.divider .rule{ height:1px; width:64px; background:var(--line); }
.divider svg{ width:22px; height:22px; opacity:0.55; }

/* ---- Page hero (small, per-page) ---- */
.pagehead{
  background:
    radial-gradient(ellipse at 20% 0%, rgba(138,154,126,0.35), transparent 55%),
    linear-gradient(180deg, var(--green) 0%, var(--green-deep) 100%);
  color:var(--ivory);
  padding:80px 0 64px;
}
.pagehead .kicker-rule{ width:40px; height:2px; background:var(--ochre); margin-bottom:16px; }
.pagehead .eyebrow{ color:var(--sage); font-size:14px; margin-bottom:6px; letter-spacing:0.04em; text-transform:uppercase; }
.pagehead h1{
  font-family:var(--serif); font-weight:600; font-size:clamp(36px,4.8vw,58px);
  line-height:1.06; letter-spacing:-0.01em; max-width:18ch;
}
.pagehead p.lede{
  margin-top:20px; font-size:17px; max-width:52ch; color:rgba(242,236,218,0.85);
}
.pagehead-inner{
  display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:center;
}
.pagehead-figure{
  aspect-ratio:4/3.4; border-radius:3px; overflow:hidden;
  border:6px solid rgba(242,236,218,0.92);
  box-shadow:0 18px 40px -12px rgba(0,0,0,0.45), 0 2px 8px rgba(0,0,0,0.2);
}
.pagehead-figure img{ width:100%; height:100%; object-fit:cover; }
@media (max-width:820px){
  .pagehead-inner{ grid-template-columns:1fr; }
  .pagehead-figure{ order:-1; aspect-ratio:16/10; }
}

/* ---- Alternating image/text bands ---- */
section.tint{ background:var(--sage-tint); }
.band{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.band.reverse .figure{ order:2; }
.band .index{
  font-family:var(--serif); font-size:15px; color:var(--ochre);
  letter-spacing:0.08em; margin-bottom:10px; display:block;
}
.figure{
  aspect-ratio:5/4; border-radius:3px; overflow:hidden;
  border:6px solid var(--ivory);
  box-shadow:0 14px 32px -10px rgba(23,39,25,0.28), 0 1px 4px rgba(23,39,25,0.12);
  transition:transform 0.35s ease, box-shadow 0.35s ease;
}
.figure:hover{ transform:translateY(-3px); box-shadow:0 20px 40px -10px rgba(23,39,25,0.32), 0 2px 6px rgba(23,39,25,0.14); }
.figure img{ width:100%; height:100%; object-fit:cover; display:block; }
section.tint .figure{ border-color:var(--ivory); }
@media (max-width:820px){
  .band, .band.reverse{ grid-template-columns:1fr; }
  .band.reverse .figure{ order:0; }
}

/* ---- Section shared ---- */
section{ padding:88px 0; }
section + section{ padding-top:0; }
.eyebrow{ font-size:14px; color:var(--ochre); margin-bottom:12px; letter-spacing:0.03em; }
h2{
  font-family:var(--serif); font-weight:600; font-size:clamp(28px,3.4vw,40px);
  max-width:18ch; letter-spacing:-0.01em; color:var(--green-deep);
}
h2 .rule-under{ display:block; width:48px; height:2px; background:var(--ochre); margin-top:16px; }
h3.small-serif{ font-family:var(--serif); font-weight:500; font-size:22px; color:var(--green-deep); }
.lede-body{ max-width:62ch; font-size:16px; color:#4a443c; margin-top:16px; }
.btn{
  display:inline-block; padding:15px 28px; font-size:15px; text-decoration:none;
  border-radius:2px; font-weight:500; transition:transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary{ background:var(--ochre); color:var(--ivory); box-shadow:0 4px 14px -4px rgba(168,98,42,0.5); }
.btn-primary:hover{ background:#8f5223; transform:translateY(-2px); box-shadow:0 8px 20px -4px rgba(168,98,42,0.55); }
.btn-outline{ border:1px solid var(--green-deep); color:var(--green-deep); }
.btn-outline:hover{ background:var(--green-deep); color:var(--ivory); transform:translateY(-2px); }

/* ---- Amenity list rows (About page lineup) ---- */
.amenity-row{
  padding:13px 0; border-bottom:1px solid var(--line);
  display:flex; align-items:baseline; gap:12px;
}
.amenity-row::before{
  content:"—"; color:var(--ochre); font-size:14px; flex-shrink:0;
}

/* ---- placeholder blocks (legacy, kept for safety) ---- */
.ph{
  background:linear-gradient(155deg, #d8d0b8, #b7ac86);
  border:1px solid var(--line); border-radius:2px;
  display:flex; align-items:center; justify-content:center; text-align:center;
  font-size:12px; color:#5c5340; padding:10px;
}

/* ---- Gallery masonry ---- */
.masonry{ column-count:3; column-gap:18px; margin-top:44px; }
.masonry figure{
  break-inside:avoid; margin:0 0 18px 0; border-radius:3px; overflow:hidden;
  border:6px solid var(--ivory);
  box-shadow:0 12px 28px -10px rgba(23,39,25,0.28), 0 1px 4px rgba(23,39,25,0.12);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}
.masonry figure:hover{ transform:translateY(-3px) scale(1.01); box-shadow:0 18px 36px -10px rgba(23,39,25,0.32); }
.masonry img{ width:100%; display:block; }
@media (max-width:900px){ .masonry{ column-count:2; } }
@media (max-width:560px){ .masonry{ column-count:1; } }

/* ---- Footer ---- */
footer{ background:var(--green-deep); color:rgba(242,236,218,0.7); padding:64px 0 40px; margin-top:0; position:relative; overflow:hidden; }
footer::before{
  content:""; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--ochre), var(--sage), var(--ochre));
}
footer .wrap{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:32px; position:relative; z-index:1; }
footer .brand img{ height:58px; }
footer a{ text-decoration:none; }
footer a:hover{ color:var(--ivory); }
.foot-links{ display:flex; gap:28px; font-size:14px; flex-wrap:wrap; }
.foot-bottom{ margin-top:40px; padding-top:22px; border-top:1px solid rgba(242,236,218,0.12); font-size:13px; position:relative; z-index:1; }
