@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Dancing+Script:wght@600;700&family=Jost:wght@300;400;500;600;700&display=swap');

:root{
  --cream:#faf5e9;
  --cream-dark:#f1e9d4;
  --white:#fffdf8;
  --olive:#4a5a34;
  --olive-dark:#333f24;
  --sage:#8a9a6e;
  --sage-light:#c9d3b3;
  --honey:#d3a02c;
  --honey-dark:#b3841c;
  --ink:#2f2a1e;
  --ink-soft:#5c5646;
  --radius:18px;
  --shadow:0 10px 30px -12px rgba(51,63,36,.25);
  --container:1140px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Jost',sans-serif;
  background:var(--cream);
  color:var(--ink);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;list-style:none;}
h1,h2,h3,h4{
  font-family:'Playfair Display',serif;
  color:var(--olive-dark);
  margin:0 0 .5em;
  line-height:1.15;
  font-weight:700;
}
p{margin:0 0 1em;}
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}
.script{
  font-family:'Dancing Script',cursive;
  color:var(--honey-dark);
  font-size:1.6em;
  font-weight:600;
  display:inline-block;
}
.eyebrow{
  font-family:'Jost',sans-serif;
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:.78rem;
  font-weight:600;
  color:var(--sage);
}
.section-head{
  text-align:center;
  max-width:640px;
  margin:0 auto 3rem;
}
.section-head h2{font-size:clamp(1.8rem,3.5vw,2.6rem);}
.divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.7rem;
  margin:1rem auto;
  font-size:.95rem;
}
.divider::before,.divider::after{
  content:'-';
  color:var(--honey);
  font-weight:700;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:.5em;
  padding:.9em 1.9em;
  border-radius:100px;
  font-family:'Jost',sans-serif;
  font-weight:600;
  font-size:.95rem;
  letter-spacing:.03em;
  border:2px solid transparent;
  cursor:pointer;
  transition:all .25s ease;
}
.btn-primary{
  background:var(--honey);
  color:var(--white);
  box-shadow:0 8px 20px -6px rgba(211,160,44,.55);
}
.btn-primary:hover{background:var(--honey-dark);transform:translateY(-2px);}
.btn-outline{
  background:transparent;
  border-color:var(--olive);
  color:var(--olive);
}
.btn-outline:hover{background:var(--olive);color:var(--white);}
.btn-light{
  background:var(--white);
  color:var(--olive-dark);
}
.btn-light:hover{background:var(--cream-dark);}

/* ---------- Header ---------- */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(250,245,233,.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(74,90,52,.12);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:14px;
  padding-bottom:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img{
  width:52px;height:52px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid var(--honey);
}
.brand-text{display:flex;flex-direction:column;line-height:1.1;}
.brand-text strong{
  font-family:'Playfair Display',serif;
  font-size:1.15rem;
  color:var(--olive-dark);
}
.brand-text span{
  font-family:'Dancing Script',cursive;
  color:var(--honey-dark);
  font-size:1rem;
}
.nav-links{
  display:flex;
  gap:2rem;
}
.nav-links a{
  font-size:.92rem;
  font-weight:500;
  color:var(--ink-soft);
  position:relative;
  padding:6px 2px;
  transition:color .2s ease;
}
.nav-links a::after{
  content:'';
  position:absolute;left:0;bottom:0;
  width:0;height:2px;
  background:var(--honey);
  transition:width .25s ease;
}
.nav-links a:hover,.nav-links a.active{color:var(--olive-dark);}
.nav-links a:hover::after,.nav-links a.active::after{width:100%;}
.nav-toggle{
  display:none;
  background:none;border:none;
  flex-direction:column;gap:5px;
  cursor:pointer;padding:6px;
}
.nav-toggle span{
  width:26px;height:2px;background:var(--olive-dark);
  border-radius:2px;
}

@media (max-width:860px){
  .nav-links{
    position:fixed;
    top:80px;left:0;right:0;
    background:var(--cream);
    flex-direction:column;
    gap:0;
    max-height:0;
    overflow:hidden;
    border-bottom:1px solid rgba(74,90,52,.12);
    transition:max-height .3s ease;
  }
  .nav-links.open{max-height:420px;}
  .nav-links a{
    padding:16px 24px;
    border-top:1px solid rgba(74,90,52,.08);
  }
  .nav-toggle{display:flex;}
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:78vh;
  display:flex;
  align-items:center;
  color:var(--white);
  overflow:hidden;
}
.hero-page{min-height:46vh;}
.hero-bg{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center;
}
.hero-bg::after{
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(47,42,30,.55),rgba(51,63,36,.78));
}
.hero-content{
  position:relative;z-index:2;
  max-width:680px;
  padding-top:80px;
  padding-bottom:80px;
}
.hero .eyebrow{color:var(--sage-light);}
.hero h1{
  color:var(--white);
  font-size:clamp(2.4rem,5vw,3.6rem);
  margin-top:.3em;
}
.hero p.lead{
  font-size:1.15rem;
  color:#f3ecd9;
  max-width:520px;
}
.hero-actions{
  display:flex;gap:14px;flex-wrap:wrap;
  margin-top:1.6rem;
}

/* ---------- Sections generic ---------- */
section{padding:5.5rem 0;}
.alt{background:var(--white);}

/* ---------- Cards ---------- */
.grid{
  display:grid;
  gap:2rem;
}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-2{grid-template-columns:repeat(2,1fr);}
@media (max-width:860px){
  .grid-3{grid-template-columns:1fr 1fr;}
}
@media (max-width:640px){
  .grid-3,.grid-2{grid-template-columns:1fr;}
}

.card{
  background:var(--white);
  border-radius:var(--radius);
  padding:2.2rem 1.8rem;
  box-shadow:var(--shadow);
  text-align:center;
  border:1px solid rgba(74,90,52,.08);
}
.card .icon{
  width:56px;height:56px;
  margin:0 auto 1.1rem;
  border-radius:50%;
  background:var(--sage-light);
  display:flex;align-items:center;justify-content:center;
  font-size:1.5rem;
}
.card h3{font-size:1.2rem;margin-bottom:.5rem;}
.card p{color:var(--ink-soft);font-size:.95rem;margin-bottom:0;}

/* ---------- Honey / product cards ---------- */
.product-card{
  background:var(--white);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid rgba(74,90,52,.08);
  display:flex;flex-direction:column;
}
.product-media{
  height:190px;
  background:linear-gradient(135deg,var(--sage-light),var(--honey));
  display:flex;align-items:center;justify-content:center;
  font-size:3rem;
  overflow:hidden;
}
.product-media img{
  width:100%;height:100%;object-fit:cover;
}
.product-body{padding:1.6rem 1.5rem;flex:1;display:flex;flex-direction:column;}
.product-body h3{margin-bottom:.3rem;font-size:1.25rem;}
.product-body p{color:var(--ink-soft);font-size:.92rem;flex:1;}
.price-row{
  display:flex;align-items:center;justify-content:space-between;
  margin-top:1rem;padding-top:1rem;
  border-top:1px dashed rgba(74,90,52,.25);
}
.price{
  font-family:'Playfair Display',serif;
  font-weight:700;color:var(--honey-dark);
  font-size:1.3rem;
}
.unit{font-size:.8rem;color:var(--ink-soft);}

/* ---------- Table (price list) ---------- */
.price-table{
  width:100%;
  border-collapse:collapse;
  background:var(--white);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.price-table th,.price-table td{
  padding:1rem 1.4rem;
  text-align:left;
  border-bottom:1px solid var(--cream-dark);
}
.price-table th{
  background:var(--olive);
  color:var(--white);
  font-family:'Playfair Display',serif;
  font-weight:600;
  letter-spacing:.02em;
}
.price-table tr:last-child td{border-bottom:none;}
.price-table td:last-child,.price-table th:last-child{text-align:right;font-weight:600;color:var(--honey-dark);}
.table-wrap{overflow-x:auto;}
.note{
  font-size:.85rem;
  color:var(--ink-soft);
  font-style:italic;
  margin-top:1rem;
  text-align:center;
}

/* ---------- Timeline (about beekeeping) ---------- */
.timeline{
  position:relative;
  padding-left:2.4rem;
  border-left:2px solid var(--sage-light);
}
.timeline-item{position:relative;margin-bottom:2.4rem;}
.timeline-item:last-child{margin-bottom:0;}
.timeline-item::before{
  content:'';
  position:absolute;left:-2.55rem;top:.3rem;
  width:14px;height:14px;border-radius:50%;
  background:var(--honey);
  border:3px solid var(--cream);
  box-shadow:0 0 0 2px var(--sage-light);
}
.timeline-item h3{font-size:1.1rem;margin-bottom:.35rem;}
.timeline-item p{color:var(--ink-soft);margin-bottom:0;font-size:.95rem;}

/* ---------- Split / about ---------- */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3.5rem;
  align-items:center;
}
@media (max-width:860px){.split{grid-template-columns:1fr;gap:2rem;}}
.split img{
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  width:100%;height:100%;
  object-fit:cover;
  aspect-ratio:4/3;
}
.stats{
  display:flex;
  gap:2rem;
  margin-top:2rem;
  flex-wrap:wrap;
}
.stat strong{
  display:block;
  font-family:'Playfair Display',serif;
  font-size:1.8rem;
  color:var(--honey-dark);
}
.stat span{font-size:.85rem;color:var(--ink-soft);}

/* ---------- Gallery ---------- */
.gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.1rem;
}
@media (max-width:760px){.gallery{grid-template-columns:repeat(2,1fr);}}
@media (max-width:460px){.gallery{grid-template-columns:1fr;}}
.gallery-item{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  cursor:pointer;
  position:relative;
  aspect-ratio:1/1;
}
.gallery-item img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .4s ease;
}
.gallery-item:hover img{transform:scale(1.08);}
.gallery-item .tag{
  position:absolute;left:10px;bottom:10px;
  background:rgba(47,42,30,.65);
  color:var(--white);
  font-size:.72rem;
  padding:4px 10px;
  border-radius:100px;
}
.play-badge{
  position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:52px;height:52px;
  border-radius:50%;
  background:rgba(255,253,248,.9);
  color:var(--olive-dark);
  display:flex;align-items:center;justify-content:center;
  font-size:1.15rem;
  box-shadow:var(--shadow);
  pointer-events:none;
  transition:transform .25s ease;
}
.gallery-item:hover .play-badge{transform:translate(-50%,-50%) scale(1.1);}

.lightbox{
  position:fixed;inset:0;
  background:rgba(20,18,12,.9);
  display:none;
  align-items:center;justify-content:center;
  z-index:1000;
  padding:24px;
}
.lightbox.open{display:flex;}
.lightbox img{max-width:min(90vw,780px);max-height:85vh;border-radius:12px;display:none;}
.lightbox video{max-width:min(92vw,420px);max-height:85vh;border-radius:12px;display:none;}
.lightbox-close{
  position:absolute;top:24px;right:32px;
  color:var(--white);font-size:2rem;
  cursor:pointer;background:none;border:none;
}
.lightbox-nav{
  position:absolute;top:50%;
  transform:translateY(-50%);
  width:52px;height:52px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.3);
  color:var(--white);
  font-size:2rem;
  line-height:1;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  transition:background .2s ease;
  z-index:1001;
}
.lightbox-nav:hover{background:rgba(255,255,255,.25);}
.lightbox-prev{left:16px;}
.lightbox-next{right:16px;}
.lightbox-nav[hidden]{display:none;}
@media (max-width:640px){
  .lightbox-nav{width:42px;height:42px;font-size:1.6rem;}
  .lightbox-prev{left:6px;}
  .lightbox-next{right:6px;}
}

/* ---------- CTA band ---------- */
.cta-band{
  background:var(--olive);
  color:var(--white);
  text-align:center;
  border-radius:var(--radius);
  padding:3.2rem 2rem;
  position:relative;
  overflow:hidden;
}
.cta-band h2{color:var(--white);}
.cta-band p{color:#e4e8da;max-width:520px;margin-left:auto;margin-right:auto;}

/* ---------- Contact ---------- */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:3rem;
}
@media (max-width:860px){.contact-grid{grid-template-columns:1fr;}}
.contact-info{
  background:var(--white);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid rgba(74,90,52,.08);
  padding:1.6rem;
  display:flex;flex-direction:column;
  gap:1rem;
  height:100%;
}
.contact-row{
  text-align:left;display:flex;gap:1rem;align-items:center;
  padding:1rem 1.2rem;
  border:1px solid rgba(74,90,52,.14);
  border-radius:14px;
  background:var(--cream);
  transition:border-color .2s ease,background .2s ease;
}
.contact-row:hover{border-color:var(--honey);background:var(--cream-dark);}
.contact-row > div{min-width:0;}
.contact-info .icon{
  flex-shrink:0;margin:0;
  width:42px;height:42px;
  border-radius:11px;
  background:var(--sage-light);
  display:flex;align-items:center;justify-content:center;
  font-size:1.1rem;
  color:var(--olive-dark);
}
.contact-info h3{
  font-size:.68rem;
  text-transform:uppercase;
  letter-spacing:.09em;
  font-weight:600;
  color:var(--sage);
  margin-bottom:.25rem;
  font-family:'Jost',sans-serif;
}
.contact-info p{margin-bottom:0;font-size:.95rem;font-weight:600;color:var(--ink);overflow-wrap:anywhere;}
.contact-row .arrow{
  margin-left:auto;
  color:var(--sage);
  font-size:1.1rem;
  flex-shrink:0;
}

.form-card{
  background:var(--white);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:2.4rem;
  border:1px solid rgba(74,90,52,.08);
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;}
@media (max-width:520px){.form-row{grid-template-columns:1fr;}}
.field{margin-bottom:1.2rem;}
.field label{
  display:block;font-size:.85rem;font-weight:600;
  color:var(--olive-dark);margin-bottom:.4rem;
}
.field input,.field textarea{
  width:100%;
  border:1px solid var(--cream-dark);
  background:var(--cream);
  border-radius:10px;
  padding:.85rem 1rem;
  font-family:'Jost',sans-serif;
  font-size:.95rem;
  color:var(--ink);
}
.field textarea{resize:vertical;min-height:120px;}
.field input:focus,.field textarea:focus{outline:2px solid var(--sage);}
.form-required-note{
  margin:.7rem 0 0;
  font-size:.8rem;
  color:var(--ink-soft);
}
.form-status{
  margin:.9rem 0 0;
  font-size:.9rem;
  min-height:1.2em;
}
.form-status-ok{color:#3f6b3f;}
.form-status-error{color:#a33b3b;}
.map-wrap{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  margin-top:2rem;
}
.map-wrap iframe{width:100%;height:340px;border:0;display:block;}

/* ---------- Footer ---------- */
.site-footer{
  background:var(--olive-dark);
  color:#e4e8da;
  padding:3.5rem 0 1.5rem;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:2.5rem;
  padding-bottom:2.5rem;
  border-bottom:1px solid rgba(255,255,255,.12);
}
@media (max-width:760px){.footer-grid{grid-template-columns:1fr;}}
.footer-brand{display:flex;align-items:center;gap:12px;margin-bottom:1rem;}
.footer-brand img{width:48px;height:48px;border-radius:50%;border:2px solid var(--honey);}
.footer-brand strong{font-family:'Playfair Display',serif;font-size:1.15rem;color:var(--white);}
.site-footer h4{
  color:var(--white);
  font-family:'Jost',sans-serif;
  font-size:.85rem;
  text-transform:uppercase;
  letter-spacing:.15em;
  margin-bottom:1rem;
}
.site-footer ul li{margin-bottom:.6rem;font-size:.92rem;}
.footer-ig{display:flex;align-items:center;gap:.5rem;}
.site-footer a:hover{color:var(--honey);}
.footer-bottom{
  padding-top:1.5rem;
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:.6rem;
  font-size:.82rem;color:#b7bfa6;
}

/* ---------- Page hero small ---------- */
.crumbs{font-size:.85rem;color:var(--sage-light);margin-top:.6rem;}

/* ---------- One-page anchor offset ---------- */
section[id]{scroll-margin-top:90px;}

/* ---------- Back to top ---------- */
.back-to-top{
  position:fixed;
  right:24px;bottom:24px;
  z-index:500;
  display:inline-flex;align-items:center;gap:.6rem;
  background:var(--olive);
  color:var(--white);
  border:none;
  border-radius:100px;
  padding:.85em 1.4em;
  font-family:'Jost',sans-serif;
  font-weight:600;
  font-size:.88rem;
  letter-spacing:.01em;
  cursor:pointer;
  box-shadow:var(--shadow);
  opacity:0;
  transform:translateY(12px);
  pointer-events:none;
  transition:opacity .3s ease, transform .3s ease, background .2s ease;
}
.back-to-top.visible{opacity:1;transform:translateY(0);pointer-events:auto;}
.back-to-top:hover{background:var(--olive-dark);}
.back-to-top .arrow{font-size:1.15rem;line-height:1;}

@media (max-width:860px){
  .back-to-top{
    padding:0;
    width:48px;height:48px;
    border-radius:50%;
    justify-content:center;
    right:18px;bottom:18px;
  }
  .back-to-top .label{display:none;}
  .back-to-top .arrow{font-size:1.3rem;}
}
