/* =========================================================
   EDGE OF EDEN LANDSCAPING — design tokens & base styles
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap');

:root{
  /* ---- color ---- */
  --forest:        #1E3A2B;   /* deep forest green — primary dark */
  --forest-2:       #142A1D;   /* darker forest for gradients/depth */
  --sage:           #7C9B7E;   /* fern sage — secondary accent */
  --sage-light:     #A9C4A4;
  --sage-pale:      #E3EBDF;
  --linen:          #FBF9F3;   /* warm off-white — main background */
  --stone:          #EAE3D4;   /* warm putty — alt section background */
  --clay:           #B5675A;   /* dusty clay/rose — CTA accent */
  --clay-dark:      #9A5449;
  --ink:            #232B24;   /* warm near-black — headings/body */
  --ink-soft:       #58635A;   /* muted text */
  --line:           #D9D2C1;   /* hairline borders on light bg */
  --white:          #ffffff;

  /* ---- type ---- */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ---- layout ---- */
  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-sm: 8px;

  /* ---- motion ---- */
  --ease: cubic-bezier(.22,.9,.32,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family: inherit; cursor:pointer; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--font-display); font-weight: 600; margin:0; color: var(--forest); line-height:1.12; letter-spacing:-0.01em; }
p{ margin:0; }

:focus-visible{
  outline: 2.5px solid var(--clay);
  outline-offset: 3px;
  border-radius: 4px;
}

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow{
  display:inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}

.section{ padding: clamp(64px, 9vw, 112px) 0; }
.section--stone{ background: var(--stone); }
.section--forest{ background: var(--forest); color: var(--sage-pale); }
.section--forest h2, .section--forest h3{ color: var(--white); }

.section-head{
  max-width: 620px;
  margin: 0 0 44px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin-top: 10px;
}
.section-head p{
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.section--forest .section-head p{ color: #C9D6C7; }

/* ---- buttons ---- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight:600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  transition: transform .35s var(--ease), background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(181,103,90,.55);
}
.btn-primary:hover{ background: var(--clay-dark); }
.btn-outline{
  background: transparent;
  border-color: currentColor;
  color: var(--forest);
}
.btn-outline:hover{ background: var(--forest); color: var(--white); border-color: var(--forest); }
.section--forest .btn-outline{ color: var(--white); }
.section--forest .btn-outline:hover{ background: var(--white); color: var(--forest); }
.hero .btn-outline{ color: var(--white); }
.hero .btn-outline:hover{ background: var(--white); color: var(--forest); }
.btn-light{
  background: var(--white);
  color: var(--forest);
}
.btn-light:hover{ background: var(--sage-pale); }
.btn-sm{ padding: 10px 20px; font-size: 0.88rem; }

/* =========================================================
   HEADER (top bar + nav)
   ========================================================= */
.topbar{
  background: var(--forest-2);
  color: #D8E3D6;
  font-size: 0.86rem;
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
}
.topbar-links{
  display:flex;
  align-items:center;
  gap: 22px;
  flex-wrap: wrap;
}
.topbar-links a{
  display:inline-flex;
  align-items:center;
  gap: 7px;
  transition: color .25s ease;
}
.topbar-links a:hover{ color: var(--sage-light); }
.topbar-links svg{ width:15px; height:15px; flex:none; }
.topbar-social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  transition: background .25s ease;
}
.topbar-social a:hover{ background: var(--sage); }
.topbar-social svg{ width:15px; height:15px; }

.mainnav{
  background: var(--linen);
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--line);
}
.mainnav .container{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.brand{ display:flex; align-items:center; }
.brand img{ height: 150px; width:auto; transition: height .3s ease; }
.mainnav.scrolled .brand img{ height: 72px; }
.mainnav.scrolled .container{ padding-top: 10px; padding-bottom: 10px; }
.navlinks{
  display:flex;
  align-items:center;
  gap: 8px;
}
.navlinks a{
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--forest);
  transition: background .25s ease, color .25s ease;
}
.navlinks a:hover{ background: var(--sage-pale); }
.navlinks .btn{ margin-left: 8px; }

.nav-toggle{
  display:none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--white);
  align-items:center;
  justify-content:center;
  flex: none;
}
.nav-toggle svg{ width:20px; height:20px; }

@media (max-width: 860px){
  .brand img{ height: 84px; }
  .topbar-links a span.full{ display:none; }
  .navlinks{
    position: fixed;
    inset: 0 0 0 auto;
    height: 100vh;
    width: min(78vw, 340px);
    background: var(--forest);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 28px 28px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
  }
  .navlinks.open{ transform: translateX(0); }
  .navlinks a{ color: var(--white); font-size: 1.1rem; padding: 14px 10px; border-bottom: 1px solid rgba(255,255,255,.1); border-radius: 0; }
  .navlinks a:hover{ background: rgba(255,255,255,.08); }
  .navlinks .btn{ margin: 18px 0 0; justify-content:center; }
  .nav-toggle{ display:flex; }
  .nav-scrim{
    position: fixed; inset:0; background: rgba(20,30,20,.45);
    opacity:0; pointer-events:none; transition: opacity .35s ease; z-index: 55;
  }
  .nav-scrim.open{ opacity:1; pointer-events:auto; }
}

/* =========================================================
   HERO — full-bleed photo with left-side gradient overlay
   ========================================================= */
.hero{
  position: relative;
  overflow:hidden;
  background: var(--forest);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero .bg-photo{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  z-index: 1;
  transform: scale(1.03);
  animation: heroZoom 1.8s var(--ease) forwards;
}
@keyframes heroZoom{ from{ transform:scale(1.1); } to{ transform:scale(1.03);} }
.hero .bg-overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Solid dark-green over the text on the left (matches the brand green
     used elsewhere on the site), fully gone by ~66% across so the right
     portion of the photo stays untouched and full-color. */
  background: linear-gradient(
    to right,
    rgba(20,42,29,0.92) 0%,
    rgba(20,42,29,0.88) 28%,
    rgba(20,42,29,0.64) 44%,
    rgba(20,42,29,0.24) 58%,
    rgba(20,42,29,0) 66%
  );
}
.hero-copy{
  position: relative;
  z-index: 3;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  padding: clamp(56px,8vw,96px) var(--pad) clamp(56px,8vw,96px);
}
.hero-copy-inner{ max-width: 560px; }
.hero-copy .badge{
  display:inline-flex;
  align-items:center;
  gap: 9px;
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 26px;
}
.hero-copy .badge svg{ width:16px; height:16px; color: var(--sage-light); }
.hero-copy h1{
  color: var(--white);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2.5rem, 5.4vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.hero-copy p.lede{
  margin-top: 22px;
  font-size: 1.15rem;
  color: #EDEFE9;
  max-width: 46ch;
}
.hero-actions{
  margin-top: 34px;
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 900px){
  .hero{ min-height: 100vh; }
  .hero .bg-overlay{
    /* Text stacks full-width on narrow screens, so a left-to-right
       gradient wouldn't cover it — switch to top-to-bottom instead. */
    background: linear-gradient(
      to bottom,
      rgba(20,42,29,0.5) 0%,
      rgba(20,42,29,0.9) 38%,
      rgba(20,42,29,0.94) 100%
    );
  }
  .hero-copy-inner{ max-width: 100%; }
}

/* =========================================================
   SERVICES
   ========================================================= */
.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-tile{
  background: var(--white);
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  opacity:0; transform: translateY(22px);
}
.service-tile.in{ opacity:1; transform: translateY(0); }
.service-tile:hover{ transform: translateY(-6px); box-shadow: 0 26px 40px -24px rgba(30,58,43,.28); }
.service-photo{ aspect-ratio: 16/10.5; overflow:hidden; }
.service-photo img{ width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.service-tile:hover .service-photo img{ transform: scale(1.06); }
.service-body{ padding: 24px 24px 26px; }
.service-icon{
  width: 46px; height:46px;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--forest);
  display:flex; align-items:center; justify-content:center;
  margin-top: -46px;
  margin-bottom: 14px;
  border: 5px solid var(--white);
  position: relative;
  z-index: 2;
}
.service-icon svg{ width:22px; height:22px; }
.service-body h3{ font-size: 1.2rem; }
.service-body p{ margin-top: 8px; color: var(--ink-soft); font-size: 0.96rem; }

@media (max-width: 920px){ .services-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .services-grid{ grid-template-columns: 1fr; } }

/* =========================================================
   GALLERY (home preview carousel)
   ========================================================= */
.gallery-head-row{
  display:flex; align-items:flex-end; justify-content:space-between; gap:24px; flex-wrap:wrap;
  margin-bottom: 40px;
}
.carousel{
  position: relative;
  border-radius: 20px;
  overflow:hidden;
  aspect-ratio: 16/8;
  background: var(--stone);
}
.carousel-track{
  display:flex;
  height:100%;
  transition: transform .8s var(--ease);
}
.carousel-slide{ min-width:100%; height:100%; position:relative; overflow:hidden; background: var(--stone); }
.carousel-slide .slide-bg{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover;
  filter: blur(32px) brightness(.72) saturate(1.15);
  transform: scale(1.18);
}
.carousel-slide .slide-fg{
  position:relative; z-index:2;
  width:100%; height:100%;
  object-fit:contain;
}
.carousel-dots{
  position:absolute; left:0; right:0; bottom:16px;
  display:flex; justify-content:center; gap:8px;
  z-index: 3;
}
.carousel-dots button{
  width:8px; height:8px; border-radius:50%;
  background: rgba(255,255,255,.55);
  border: none; padding:0;
  transition: all .3s ease;
}
.carousel-dots button.active{ width:22px; border-radius:5px; background: var(--white); }

.carousel-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  width:46px; height:46px; border-radius:50%;
  background: rgba(255,255,255,.92);
  color: var(--forest);
  border:none;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 20px -8px rgba(0,0,0,.35);
  transition: background .25s ease, transform .25s ease;
  z-index: 4;
}
.carousel-arrow:hover{ background: var(--white); transform: translateY(-50%) scale(1.06); }
.carousel-arrow svg{ width:20px; height:20px; }
.carousel-arrow.prev{ left:16px; }
.carousel-arrow.next{ right:16px; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi-wrap{
  display:grid;
  grid-template-columns: 46px 1fr 46px;
  align-items:center;
  gap: 18px;
}
.testi-viewport{ overflow:hidden; }
.testi-track{ display:flex; transition: transform .6s var(--ease); }
.testi-card{
  min-width:100%;
  padding: 8px;
}
.testi-inner{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  padding: clamp(28px,4vw,44px);
  max-width: 720px;
  margin: 0 auto;
  text-align:center;
}
.testi-stars{ display:flex; gap:5px; justify-content:center; margin-bottom:18px; }
.testi-stars svg{ width:18px; height:18px; color:#E8C468; }
.testi-quote{
  font-family: var(--font-display);
  font-style: italic;
  font-weight:400;
  font-size: clamp(1.1rem, 2.1vw, 1.45rem);
  line-height:1.5;
  color: var(--white);
}
.testi-meta{ margin-top:20px; font-size:0.86rem; color:#AFC3AC; display:flex; align-items:center; justify-content:center; gap:8px; }
.testi-meta .src-badge{
  display:inline-flex; align-items:center; gap:6px;
  background: rgba(255,255,255,.1); padding: 4px 10px; border-radius:999px;
}
.testi-meta svg{ width:13px; height:13px; }

.testi-arrow{
  width:46px; height:46px; border-radius:50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  color: var(--white);
  display:flex; align-items:center; justify-content:center;
  transition: background .25s ease;
  flex: none;
}
.testi-arrow:hover{ background: rgba(255,255,255,.22); }
.testi-arrow svg{ width:19px; height:19px; }
.testi-arrow:disabled{ opacity:.35; pointer-events:none; }

.testi-actions{
  display:flex; justify-content:center; gap:14px; margin-top:42px; flex-wrap:wrap;
}

@media (max-width: 640px){
  .testi-wrap{ grid-template-columns: 1fr; }
  .testi-wrap .testi-arrow{ display:none; }
  .testi-mobile-arrows{ display:flex !important; }
}
.testi-mobile-arrows{ display:none; justify-content:center; gap:16px; margin-top:18px; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px,5vw,64px);
  align-items:start;
}
.contact-info-card{
  background: var(--forest);
  color: var(--white);
  border-radius: 20px;
  padding: clamp(30px,4vw,42px);
}
.contact-info-card h3{ color:var(--white); font-size:1.5rem; }
.contact-info-card p{ color:#C9D6C7; margin-top:10px; }
.contact-info-list{ margin-top:28px; display:flex; flex-direction:column; gap:18px; }
.contact-info-list a, .contact-info-list div{
  display:flex; align-items:center; gap:14px;
  font-weight:600; font-size:1.02rem;
}
.contact-info-list a:hover{ color: var(--sage-light); }
.contact-info-list .ico{
  width:40px; height:40px; border-radius:50%;
  background: rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center; flex:none;
}
.contact-info-list svg{ width:18px; height:18px; }
.contact-info-card .socialrow{ margin-top:30px; display:flex; gap:12px; }
.contact-info-card .socialrow a{
  width:42px;height:42px;border-radius:50%;background:rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:center;
}
.contact-info-card .socialrow a:hover{ background: var(--sage); }
.contact-info-card .socialrow svg{ width:19px;height:19px; }

.form-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(28px,4vw,40px);
}
.field{ margin-bottom: 20px; }
.field label{
  display:block; font-weight:600; font-size:0.92rem; margin-bottom:8px; color: var(--forest);
}
.field .optional{ font-weight:400; color: var(--ink-soft); font-size:0.85rem; }
.field input, .field select, .field textarea{
  width:100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--linen);
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--sage);
  background: var(--white);
  outline: none;
}
.field textarea{ resize: vertical; min-height: 120px; }
.field small.hint{ display:block; margin-top:6px; color: var(--ink-soft); font-size:0.82rem; }
.field small.err{ display:none; margin-top:6px; color: var(--clay-dark); font-size:0.82rem; font-weight:600; }
.field.invalid input{ border-color: var(--clay-dark); }
.field.invalid small.err{ display:block; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }
.form-note{ font-size:0.85rem; color: var(--ink-soft); margin-top:14px; }
.form-status{ margin-top:16px; padding:12px 16px; border-radius: var(--radius-sm); font-size:0.92rem; font-weight:600; display:none; }
.form-status.show{ display:block; }
.form-status.ok{ background:#E4EFE1; color:#2A5A34; display:block; }
.form-status.bad{ background:#F6E4E1; color:#8A3A2C; display:block; }

@media (max-width: 900px){ .contact-grid{ grid-template-columns:1fr; } }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background: var(--forest-2);
  color: #C7D4C4;
  padding: 64px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items:start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-links{ display:flex; flex-direction:column; gap:12px; }
.footer-links a{ font-weight:600; transition: color .2s ease; }
.footer-links a:hover{ color: var(--white); }
.footer-brand{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:14px; }
.footer-brand img{ height:60px; width:auto; }
.footer-brand p{ font-size:0.85rem; color:#93A390; max-width:220px; }
.footer-contact{ display:flex; flex-direction:column; gap:14px; align-items:flex-end; text-align:right; }
.footer-contact a, .footer-contact div{ display:flex; align-items:center; gap:10px; font-weight:600; }
.footer-contact svg{ width:16px; height:16px; flex:none; }
.footer-social{ display:flex; gap:10px; margin-top:4px; }
.footer-social a{
  width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;
}
.footer-social a:hover{ background: var(--sage); }
.footer-social svg{ width:16px;height:16px; }
.footer-bottom{
  padding-top: 24px;
  display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap;
  font-size: 0.82rem; color: #7E9179;
}
@media (max-width: 760px){
  .footer-grid{ grid-template-columns:1fr; text-align:center; }
  .footer-links{ align-items:center; }
  .footer-contact{ align-items:center; text-align:center; }
  .footer-bottom{ justify-content:center; text-align:center; }
}

/* =========================================================
   HEDGE-LINE DIVIDER (signature motif)
   ========================================================= */
.hedge-divider{ display:block; width:100%; }
.hedge-divider path{ transition: d .3s ease; }
.hedge-divider .sway{ animation: sway 7s ease-in-out infinite; transform-origin: 50% 100%; }
@keyframes sway{ 0%,100%{ transform: translateX(0);} 50%{ transform: translateX(3px);} }

/* =========================================================
   PAGE HEADER (interior pages)
   ========================================================= */
.pagehead{
  background: var(--forest);
  color: var(--white);
  padding: clamp(64px,9vw,110px) 0 clamp(56px,7vw,84px);
  text-align:center;
}
.pagehead .eyebrow{ color: var(--sage-light); }
.pagehead h1{ color: var(--white); font-style:italic; font-weight:500; font-size: clamp(2.2rem,5vw,3.4rem); margin-top:10px; }
.pagehead p{ color:#C9D6C7; max-width:560px; margin: 16px auto 0; font-size:1.05rem; }

/* ---- reveal-on-scroll base ---- */
.reveal{ opacity:0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }

/* ---- utility ---- */
.mt-0{ margin-top:0 !important; }
.skip-link{
  position:absolute; left:-999px; top:auto;
  background: var(--forest); color:var(--white); padding:12px 20px; border-radius: 8px; z-index:200;
}
.skip-link:focus{ left:16px; top:16px; }

/* =========================================================
   GALLERY PAGE (masonry grid + lightbox)
   ========================================================= */
.masonry{
  columns: 3;
  column-gap: 20px;
}
.masonry-item{
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  opacity:0; transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.masonry-item.in{ opacity:1; transform:translateY(0); }
.masonry-item img{ width:100%; height:auto; display:block; transition: transform .5s var(--ease); }
.masonry-item:hover img{ transform: scale(1.045); }
.masonry-item::after{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(20,41,29,.35), transparent 40%);
  opacity:0; transition: opacity .3s ease;
}
.masonry-item:hover::after{ opacity:1; }
@media (max-width: 880px){ .masonry{ columns:2; } }
@media (max-width: 540px){ .masonry{ columns:1; } }

.lightbox{
  position:fixed; inset:0; background: rgba(15,24,17,.92);
  display:none; align-items:center; justify-content:center;
  z-index: 300; padding: 40px;
}
.lightbox.open{ display:flex; }
.lightbox img{ max-width:100%; max-height:88vh; border-radius:10px; box-shadow: 0 30px 60px rgba(0,0,0,.5); }
.lightbox-close{
  position:absolute; top:22px; right:24px;
  width:46px; height:46px; border-radius:50%;
  background: rgba(255,255,255,.12); color:var(--white); border:none;
  display:flex; align-items:center; justify-content:center;
}
.lightbox-close:hover{ background: rgba(255,255,255,.22); }
.lightbox-close svg{ width:20px; height:20px; }
.lightbox-nav{
  position:absolute; top:50%; transform:translateY(-50%);
  width:52px; height:52px; border-radius:50%;
  background: rgba(255,255,255,.12); color:var(--white); border:none;
  display:flex; align-items:center; justify-content:center;
}
.lightbox-nav:hover{ background: rgba(255,255,255,.22); }
.lightbox-nav svg{ width:22px; height:22px; }
.lightbox-nav.prev{ left:18px; }
.lightbox-nav.next{ right:18px; }

/* =========================================================
   REVIEWS LISTING PAGE
   ========================================================= */
.reviews-toolbar{
  display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
  margin-bottom: 34px;
}
.rating-summary{ display:flex; align-items:center; gap:16px; }
.rating-summary .big{ font-family: var(--font-display); font-size:3rem; color: var(--forest); line-height:1; }
.rating-summary .stars{ display:flex; gap:3px; margin-bottom:6px; }
.rating-summary .stars svg{ width:16px;height:16px; color:#E8A93A; }
.rating-summary .count{ color: var(--ink-soft); font-size:0.9rem; }

.filter-pills{ display:flex; gap:8px; flex-wrap:wrap; }
.filter-pills button{
  padding: 8px 16px; border-radius:999px; border:1.5px solid var(--line);
  background: var(--white); font-weight:600; font-size:0.86rem; color: var(--ink-soft);
  transition: all .2s ease;
}
.filter-pills button.active, .filter-pills button:hover{
  background: var(--forest); color: var(--white); border-color: var(--forest);
}

.reviews-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px){ .reviews-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .reviews-grid{ grid-template-columns: 1fr; } }

.review-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  opacity:0; transform: translateY(16px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.review-card.in{ opacity:1; transform:translateY(0); }
.review-card .stars{ display:flex; gap:4px; margin-bottom:14px; }
.review-card .stars svg{ width:16px;height:16px; color:#E8A93A; }
.review-card p.body{ color: var(--ink); font-size:0.98rem; line-height:1.6; }
.review-card .meta{
  margin-top:16px; padding-top:14px; border-top:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between;
  font-size:0.8rem; color: var(--ink-soft);
}
.review-card .meta .src{ display:flex; align-items:center; gap:6px; font-weight:600; }
.review-card .meta svg{ width:13px;height:13px; }

.load-more-wrap{ text-align:center; margin-top:40px; }

.empty-state{
  text-align:center; padding: 60px 20px; color: var(--ink-soft);
}

/* =========================================================
   STAR RATING INPUT (leave a review)
   ========================================================= */
.star-input{
  display:flex; gap:8px;
}
.star-input button{
  background:none; border:none; padding:4px;
  color: var(--line);
  transition: transform .15s ease, color .15s ease;
}
.star-input button svg{ width:36px; height:36px; }
.star-input button.filled{ color: #E8A93A; }
.star-input button:hover{ transform: scale(1.12); }
.star-input-label{ margin-top:10px; font-size:0.9rem; font-weight:600; color: var(--forest); min-height:1.2em; }

.honeypot-field{
  position:absolute !important;
  left:-9999px !important;
  width:1px; height:1px; overflow:hidden;
}

.review-form-wrap{
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(30px,5vw,48px);
}
.review-form-wrap .lead{ color: var(--ink-soft); margin-top:8px; }
.pending-note{
  margin-top:22px; padding:16px 18px; border-radius: var(--radius-sm);
  background: var(--sage-pale); color: var(--forest); font-size:0.9rem; display:flex; gap:12px; align-items:flex-start;
}
.pending-note svg{ width:20px;height:20px; flex:none; margin-top:1px; }

.thankyou-card{
  text-align:center; padding: 50px 20px; display:none;
}
.thankyou-card.show{ display:block; }
.thankyou-card .icon-circle{
  width:74px;height:74px;border-radius:50%; background: var(--sage-pale); color:var(--forest);
  display:flex; align-items:center; justify-content:center; margin: 0 auto 22px;
}
.thankyou-card .icon-circle svg{ width:34px;height:34px; }

/* =========================================================
   ADMIN
   ========================================================= */
.admin-shell{ min-height:100vh; background: var(--stone); }
.admin-topbar{
  background: var(--forest); color: var(--white); padding: 16px 0;
}
.admin-topbar .container{ display:flex; align-items:center; justify-content:space-between; }
.admin-wrap{ max-width: 900px; margin: 0 auto; padding: 40px var(--pad) 80px; }
.admin-login-card{
  max-width: 380px; margin: 90px auto; background: var(--white); border-radius:18px;
  padding: 40px; border:1px solid var(--line);
}
.admin-review-item{
  background: var(--white); border:1px solid var(--line); border-radius:14px; padding:20px 22px; margin-bottom:16px;
  display:flex; flex-direction:column; gap:10px;
}
.admin-review-item .row1{ display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; }
.admin-review-item .stars{ display:flex; gap:3px; }
.admin-review-item .stars svg{ width:15px;height:15px; color:#E8A93A; }
.admin-actions{ display:flex; gap:10px; }
.admin-actions button{
  padding:8px 16px; border-radius:8px; border:none; font-weight:600; font-size:0.85rem;
}
.btn-approve{ background:#DDEFDC; color:#286538; }
.btn-reject{ background:#F6E1DD; color:#93392A; }
.badge-status{ font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.05em; padding:4px 10px; border-radius:999px; }
.badge-status.pending{ background:#FBEBC8; color:#8A6410; }
.badge-status.approved{ background:#DDEFDC; color:#286538; }

/* =========================================================
   ADMIN — GALLERY PHOTO UPLOAD
   ========================================================= */
.upload-card{
  background: var(--white); border:1px solid var(--line); border-radius:16px; padding: 26px;
}
.upload-drop{
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px;
  border: 2px dashed var(--sage); border-radius: 14px;
  padding: 40px 20px;
  background: var(--sage-pale);
  color: var(--forest);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
  text-align:center;
}
.upload-drop:hover, .upload-drop:focus-visible{ background: #D8E6D4; }
.upload-drop svg{ width:34px; height:34px; margin-bottom:4px; }
.upload-drop-title{ font-weight:700; font-size:1.05rem; }
.upload-drop-sub{ font-size:0.85rem; color: var(--ink-soft); }

#upload-list{ margin-top:18px; display:flex; flex-direction:column; gap:10px; }
.upload-item{
  display:flex; align-items:center; gap:12px;
  background: var(--linen); border:1px solid var(--line); border-radius:10px; padding:8px 12px;
}
.upload-item img{ width:48px; height:48px; object-fit:cover; border-radius:6px; flex:none; }
.upload-item .name{ flex:1; font-size:0.86rem; color:var(--ink); overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.upload-item .state{ font-size:0.78rem; font-weight:700; color: var(--ink-soft); flex:none; }
.upload-item.done .state{ color:#2A5A34; }
.upload-item.failed .state{ color:#8A3A2C; }
.upload-item .bar-track{ position:absolute; inset:0; }
.upload-item{ position:relative; overflow:hidden; }
.upload-item .bar-fill{
  position:absolute; left:0; top:0; bottom:0; width:0%;
  background: var(--sage-pale); z-index:0; transition: width .2s ease;
}
.upload-item > *{ position:relative; z-index:1; }

.admin-photo-grid{
  display:grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap:12px;
}
.admin-photo-tile{
  position:relative; border-radius:10px; overflow:hidden; aspect-ratio:1/1; background:var(--stone);
}
.admin-photo-tile img{ width:100%; height:100%; object-fit:cover; }
.admin-photo-delete{
  position:absolute; top:6px; right:6px; width:28px; height:28px; border-radius:50%;
  background: rgba(20,30,20,.65); color:var(--white); border:none;
  display:flex; align-items:center; justify-content:center;
}
.admin-photo-delete svg{ width:15px; height:15px; }
.admin-photo-delete:hover{ background: var(--clay-dark); }
.admin-photo-tile.removing{ opacity:.35; pointer-events:none; }

/* =========================================================
   ADMIN — HOMEPAGE SLIDESHOW SELECTION
   ========================================================= */
.slideshow-summary{
  background: var(--sage-pale); border:1px solid #cde0cd; border-radius:14px;
  padding: 18px 22px; margin-top: 40px;
}
.slideshow-summary h2{ font-size: 1.15rem; }
.slideshow-summary #featured-count{ font-weight:700; color: var(--forest); }

.admin-photo-star{
  position:absolute; bottom:6px; left:6px; width:28px; height:28px; border-radius:50%;
  background: rgba(20,30,20,.55); color:var(--white); border:none;
  display:flex; align-items:center; justify-content:center;
  transition: background .2s ease, color .2s ease;
}
.admin-photo-star svg{ width:15px; height:15px; }
.admin-photo-star:hover{ background: rgba(20,30,20,.75); }
.admin-photo-star.active{ background: #E8A93A; color: #fff; }
.admin-photo-star.active:hover{ background: #d69a2e; }
