/* =========================================================
   Bdk Food Foundry Inc. — Food Foundry Test Kitchen
   LIGHT theme: test-kitchen cream + fondant-cocoa + caramel
   ========================================================= */

:root{
  --test-kitchen:#FBF7F0;
  --fondant-cocoa:#6B4226;
  --fondant-cocoa-dark:#5C3A22;
  --apron-linen:#FFFDF8;
  --caramel-drizzle:#D9974C;
  --mint-sugar:#BFD9C2;
  --niagara-slate:#8A928B;
  --fondant-ink:#33261D;
  --body-text:#4A3B30;
  --hairline:#E8DFD2;
  --deep-cocoa:#241610;
}

*{margin:0;padding:0;box-sizing:border-box;}

html{scroll-behavior:smooth;}

body{
  font-size:16px;
  font-family:"Segoe UI","Helvetica Neue",Helvetica,Arial,sans-serif;
  background-color:var(--test-kitchen);
  color:var(--fondant-ink);
  line-height:1.75;
  overflow-x:hidden;
}

img{max-width:100%;display:block;}
a{color:var(--fondant-cocoa);text-decoration:none;}
a:hover{color:var(--fondant-cocoa-dark);}

.home-page{width:100%;overflow-x:hidden;}

/* =========================================================
   NAV — KETTLE-POUR NAV (sticky top)
   ========================================================= */
.kettlepour-nav{
  position:sticky;
  top:0;
  z-index:100;
  background-color:var(--apron-linen);
}
.kettlepour-nav .drizzle-strip{
  height:12px;
  width:100%;
  background:
    repeating-linear-gradient(
      100deg,
      var(--fondant-cocoa) 0 14px,
      var(--caramel-drizzle) 14px 24px,
      var(--fondant-cocoa) 24px 38px,
      var(--caramel-drizzle) 38px 46px
    );
}
.kettlepour-nav .nav-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 40px;
  border-bottom:1px solid var(--hairline);
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:21px;
  font-weight:700;
  letter-spacing:2px;
  color:var(--fondant-ink);
  text-transform:uppercase;
}
.kettle-glyph{
  font-size:18px;
  color:var(--fondant-cocoa);
}
.kettle-glyph .cup{
  display:inline-block;
  width:18px;height:12px;
  background:var(--caramel-drizzle);
  border-radius:40% 40% 12% 12%;
  position:relative;
  vertical-align:middle;
}
.kettle-glyph .cup::before{
  content:"";
  position:absolute;
  right:-7px;top:2px;
  width:7px;height:6px;
  border-radius:50% 3px 3px 50%;
  background:var(--caramel-drizzle);
}
.kettle-glyph .cup::after{
  content:"";
  position:absolute;
  left:2px;top:-3px;
  width:5px;height:10px;
  border-radius:4px;
  background:var(--fondant-cocoa);
}
.nav-links{
  display:flex;
  align-items:center;
  gap:16px;
  font-size:12px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--fondant-ink);
}
.nav-links a{
  position:relative;
  color:var(--fondant-ink);
  text-decoration:none;
}
.nav-links a::after{
  content:"";
  display:block;
  height:2px;
  width:0;
  background:var(--fondant-cocoa);
  transition:width .25s ease;
}
.nav-links a:hover::after{width:100%;}
.nav-links .dot{
  width:5px;height:5px;
  border-radius:50%;
  background:var(--mint-sugar);
}
.nav-toggle{
  display:none;
  background:none;
  border:1px solid var(--hairline);
  color:var(--fondant-ink);
  font-size:20px;
  padding:6px 10px;
  cursor:pointer;
  border-radius:4px;
}
@media(max-width:760px){
  .nav-toggle{display:block;}
  .nav-links{
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    padding:16px 40px 24px;
    border-bottom:1px solid var(--hairline);
  }
  .nav-links.open{display:flex;}
  .nav-links .dot{display:none;}
  .nav-row{padding:14px 20px;}
}

/* =========================================================
   HERO — BATCH-KETTLE HERO (asymmetric)
   ========================================================= */
.batchhero{
  background-color:var(--test-kitchen);
  padding:70px 40px 90px;
  display:flex;
  gap:40px;
  align-items:center;
  max-width:1280px;
  margin:0 auto;
}
.batchhero .text-col{flex:1 1 55%;}
.batchhero .scene-col{flex:1 1 45%;}
.eyebrow-chip{
  display:inline-block;
  background-color:var(--fondant-cocoa);
  color:var(--apron-linen);
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  padding:8px 16px;
  border-radius:20px;
  margin-bottom:22px;
}
.batchhero h1{
  font-size:46px;
  line-height:1.15;
  color:var(--fondant-ink);
  margin-bottom:20px;
  letter-spacing:-.5px;
}
.batchhero h1 .accent{color:var(--fondant-cocoa);}
.batchhero p.sub{
  font-size:17px;
  color:var(--niagara-slate);
  max-width:600px;
  margin-bottom:28px;
}
.hero-ctas{display:flex;gap:16px;flex-wrap:wrap;}
.btn{
  display:inline-block;
  padding:14px 28px;
  font-weight:700;
  font-size:15px;
  border-radius:4px;
  cursor:pointer;
  text-align:center;
}
.btn-primary{background:var(--fondant-cocoa);color:var(--apron-linen);}
.btn-primary:hover{background:var(--fondant-cocoa-dark);color:var(--apron-linen);}
.btn-outline{background:transparent;color:var(--fondant-cocoa);border:1px solid var(--fondant-cocoa);}
.btn-outline:hover{background:var(--fondant-cocoa);color:var(--apron-linen);}

/* CSS test kitchen scene */
.kitchen-scene{position:relative;padding:20px 0 10px;}
.stove{
  width:220px;height:34px;
  background:var(--fondant-ink);
  border-radius:6px;
  margin:0 auto;
  position:relative;
}
.stove::before{
  content:"";
  position:absolute;
  bottom:34px;left:50%;
  transform:translateX(-50%);
  width:60px;height:22px;
  background:linear-gradient(transparent,var(--caramel-drizzle));
  border-radius:100% 100% 0 0;
  opacity:.8;
}
.kettle{
  width:190px;height:70px;
  background:var(--caramel-drizzle);
  border-radius:220px 220px 30px 30px;
  position:relative;
  margin:30px auto 0;
  box-shadow:inset 0 6px 10px rgba(107,66,38,.25);
}
.kettle::before{
  content:"";
  position:absolute;
  left:14px;top:14px;
  width:16px;height:6px;
  border-radius:10px;
  background:var(--fondant-cocoa);
  box-shadow:34px 0 0 var(--fondant-cocoa),68px 0 0 var(--fondant-cocoa),102px 0 0 var(--fondant-cocoa),136px 0 0 var(--fondant-cocoa);
}
.kettle .spout{
  position:absolute;
  right:-22px;top:16px;
  width:26px;height:12px;
  border-radius:50% 2px 2px 50%;
  background:var(--caramel-drizzle);
  border:3px solid var(--fondant-cocoa);
}
.kettle .handle{
  position:absolute;
  top:-16px;left:50%;
  transform:translateX(-50%);
  width:90px;height:18px;
  border:5px solid var(--fondant-cocoa);
  border-bottom:none;
  border-radius:40px 40px 0 0;
}
.paddle{
  position:absolute;
  left:50%;top:-10px;
  transform:translateX(10px);
  width:12px;height:92px;
  background:var(--fondant-cocoa);
  border-radius:6px;
}
.paddle::before{
  content:"";
  position:absolute;
  bottom:-12px;left:50%;
  transform:translateX(-50%);
  width:44px;height:16px;
  border-radius:40px;
  background:var(--fondant-cocoa);
}
.steam{
  position:absolute;
  left:30%;top:8px;
  width:20px;height:40px;
  border-left:3px dashed var(--niagara-slate);
  border-radius:50%;
  opacity:.5;
  animation:steam 3s infinite;
}
.steam.s2{left:55%;animation-delay:1s;}
.steam.s3{left:70%;animation-delay:2s;}
@keyframes steam{
  0%{transform:translateY(6px);opacity:.2;}
  50%{opacity:.5;}
  100%{transform:translateY(-8px);opacity:.2;}
}

.clipboard{
  position:absolute;
  right:8px;top:0;
  width:120px;height:150px;
  background:var(--apron-linen);
  border:1px solid var(--hairline);
  border-radius:4px;
  box-shadow:0 4px 10px rgba(51,38,29,.08);
  padding:12px;
}
.clipboard::before{
  content:"";
  position:absolute;
  top:20px;left:50%;
  transform:translateX(-50%);
  width:26px;height:10px;
  background:var(--fonant-ink);
}
.clipboard::before{background:var(--fondant-ink);}
.clipboard .line{
  height:4px;background:var(--hairline);margin-bottom:9px;border-radius:2px;
}
.clipboard .line.fonda{background:var(--fondant-cocoa);}

.mould-tray{
  position:absolute;
  left:6px;bottom:56px;
  display:grid;
  grid-template-columns:repeat(3,44px);
  grid-template-rows:repeat(2,36px);
  gap:6px;
  padding:8px;
  background:var(--apron-linen);
  border:1px solid var(--hairline);
  border-radius:6px;
}
.mould-tray .block{
  background:var(--mint-sugar);
  border-radius:5px;
}
.mould-tray .block.pop{
  background:var(--caramel-drizzle);
  transform:translateY(-6px);
  box-shadow:0 4px 8px rgba(51,38,29,.15);
}
.mould-tray .block.pour{
  background:var(--caramel-drizzle);
  background-image:linear-gradient(160deg,var(--caramel-drizzle) 30%,var(--fondant-cocoa) 31% 60%,var(--caramel-drizzle) 61%);
}

.drizzle-spoon{
  position:absolute;
  right:20px;bottom:70px;
  width:70px;height:6px;
  background:var(--fondant-cocoa);
  border-radius:4px;
  transform:rotate(-28deg);
}
.drizzle-spoon::after{
  content:"";
  position:absolute;
  right:-10px;top:-12px;
  width:18px;height:26px;
  background:var(--caramel-drizzle);
  border-radius:60px 60px 10px 10px;
}
.cooling-slab{
  position:absolute;
  right:6px;bottom:30px;
  width:130px;height:126px;
  background:var(--fondant-cocoa);
  border-radius:6px;
  transform:rotate(8deg);
}
.cooling-slab::after{
  content:"";
  position:absolute;
  top:20px;left:20px;right:20px;
  height:4px;
  background:var(--caramel-drizzle);
  box-shadow:0 24px 0 var(--caramel-drizzle),0 48px 0 var(--caramel-drizzle);
}
.slab-rack{
  position:absolute;
  right:4px;bottom:24px;
  width:140px;height:8px;
  background:var(--niagara-slate);
  border-radius:4px;
}
.slab-rack::before{
  content:"";
  position:absolute;
  bottom:0;left:0;right:0;height:4px;
  background:var(--caramel-drizzle);
}

.scale{
  position:absolute;
  left:44%;bottom:6px;
  width:70px;height:60px;
  background:var(--niagara-slate);
  border-radius:6px;
}
.scale .dial{
  position:absolute;
  top:6px;left:50%;
  transform:translateX(-50%);
  width:34px;height:34px;
  border-radius:50%;
  background:var(--apron-linen);
  border:2px solid var(--caramel-drizzle);
}
.scale .needle{
  position:absolute;
  top:50%;left:50%;
  width:14px;height:2px;
  background:var(--fondant-cocoa);
  transform:translate(-50%,-50%) rotate(35deg);
  transform-origin:left center;
}
.scale .bowl{
  position:absolute;
  top:-16px;left:50%;
  transform:translateX(-50%);
  width:46px;height:24px;
  background:var(--mint-sugar);
  border-radius:0 0 60px 60px;
}

.canisters{
  position:absolute;
  left:8px;bottom:0;
  display:flex;
  gap:8px;
}
.canisters .jar{
  width:40px;height:54px;
  background:var(--apron-linen);
  border:1px solid var(--hairline);
  border-radius:4px 4px 8px 8px;
  position:relative;
}
.canisters .jar small{
  position:absolute;
  bottom:4px;left:0;right:0;
  text-align:center;
  font-size:7px;
  color:var(--fondant-cocoa);
  background:var(--caramel-drizzle);
  padding:2px 0;
}
.canisters .jar.cocoa{background:var(--fondant-ink);}
.canisters .jar.cocoa small{background:var(--caramel-drizzle);color:var(--fondant-ink);}
.canisters .jar.sugar{background:var(--apron-linen);}
.canisters .jar.flour{background:var(--mint-sugar);}
.canisters .jar.flour small{background:var(--fondant-cocoa);color:var(--apron-linen);}

.piping-bag-scene{
  position:absolute;
  right:34%;bottom:0;
  width:34px;height:52px;
  background:var(--apron-linen);
  border:1px solid var(--hairline);
  clip-path:polygon(50% 0,94% 70%,72% 100%,28% 100%,6% 70%);
}
.piping-bag-scene .tip{
  position:absolute;
  bottom:0;left:50%;
  transform:translateX(-50%);
  width:14px;height:10px;
  background:var(--caramel-drizzle);
  border-radius:2px 2px 6px 6px;
}
.piping-bag-scene::after{
  content:"";
  position:absolute;
  top:34px;left:50%;
  transform:translateX(-50%);
  width:12px;height:10px;
  background:var(--mint-sugar);
  border-radius:50%;
  box-shadow:14px 6px 0 var(--mint-sugar),-14px 6px 0 var(--mint-sugar);
}

.temp-probe{
  position:absolute;
  left:40%;top:8px;
  width:6px;height:90px;
  background:var(--niagara-slate);
  border-radius:3px;
  transform:rotate(18deg);
}
.temp-probe::before{
  content:"";
  position:absolute;
  bottom:-6px;left:50%;
  transform:translateX(-50%);
  width:16px;height:16px;
  background:var(--caramel-drizzle);
  border-radius:50%;
  border:2px solid var(--apron-linen);
}
.temp-probe .dial-num{
  position:absolute;
  top:22px;left:12px;
  font-size:10px;
  color:var(--fondant-cocoa);
  background:var(--apron-linen);
  border:1px solid var(--hairline);
  padding:2px 6px;
  border-radius:8px;
}

/* =========================================================
   MOULD-TRAY ROWS
   ========================================================= */
.mouldrows{
  background-color:var(--test-kitchen);
  padding:60px 40px 20px;
}
.mouldrows .wrap{max-width:1280px;margin:0 auto;}
.mouldrows .section-head h2{
  color:var(--fondant-cocoa);
  font-size:34px;
  letter-spacing:-.5px;
  margin-bottom:8px;
}
.mouldrows .section-head p{
  color:var(--niagara-slate);
  max-width:620px;
  margin-bottom:34px;
}
.mould-row{
  display:flex;
  align-items:center;
  gap:28px;
  background:var(--apron-linen);
  border:1px solid var(--hairline);
  border-radius:10px;
  padding:30px 34px;
  margin-bottom:12px;
}
.mould-cluster{
  flex:0 0 120px;
  display:grid;
  grid-template-columns:repeat(2,48px);
  grid-template-rows:repeat(2,40px);
  gap:8px;
  padding:10px;
  background:var(--apron-linen);
  border:1px solid var(--hairline);
  border-radius:8px;
}
.mould-cluster .sq{
  background:var(--mint-sugar);
  border-radius:6px;
}
.mould-cluster .sq.pour{
  background:var(--caramel-drizzle);
  background-image:linear-gradient(135deg,var(--caramel-drizzle) 30%,var(--fondant-cocoa) 31% 55%,var(--caramel-drizzle) 56%);
}
.mould-cluster.p1 .sq:nth-child(1){background:var(--caramel-drizzle);background-image:linear-gradient(135deg,var(--caramel-drizzle) 30%,var(--fondant-cocoa) 31% 55%,var(--caramel-drizzle) 56%);}
.mould-cluster.p2 .sq:nth-child(2){background:var(--caramel-drizzle);background-image:linear-gradient(135deg,var(--caramel-drizzle) 30%,var(--fondant-cocoa) 31% 55%,var(--caramel-drizzle) 56%);}
.mould-cluster.p3 .sq:nth-child(3){background:var(--caramel-drizzle);background-image:linear-gradient(135deg,var(--caramel-drizzle) 30%,var(--fondant-cocoa) 31% 55%,var(--caramel-drizzle) 56%);}
.mould-cluster.p4 .sq:nth-child(4){background:var(--caramel-drizzle);background-image:linear-gradient(135deg,var(--caramel-drizzle) 30%,var(--fondant-cocoa) 31% 55%,var(--caramel-drizzle) 56%);}
.mould-cluster.p5 .sq:nth-child(1),
.mould-cluster.p5 .sq:nth-child(4){background:var(--caramel-drizzle);}
.mould-row .text{flex:1 1 auto;}
.mould-row h3{
  color:var(--fondant-ink);
  font-size:22px;
  margin-bottom:8px;
}
.mould-row p{
  color:var(--niagara-slate);
  max-width:640px;
}
.temp-dial{
  flex:0 0 74px;
  width:74px;height:74px;
  border-radius:50%;
  border:4px solid var(--caramel-drizzle);
  background:var(--apron-linen);
  position:relative;
}
.temp-dial::after{
  content:"";
  position:absolute;
  top:9px;left:9px;
  width:44px;height:44px;
  border-radius:50%;
  background:var(--mint-sugar);
}
.temp-dial .needle{
  position:absolute;
  top:50%;left:50%;
  width:4px;height:26px;
  background:var(--fondant-cocoa);
  border-radius:2px;
  transform-origin:bottom center;
  transform:translate(-50%,-100%) rotate(var(--needle-angle,0deg));
  z-index:2;
}
.temp-dial.t1{--needle-angle:10deg;}
.temp-dial.t2{--needle-angle:55deg;}
.temp-dial.t3{--needle-angle:95deg;}
.temp-dial.t4{--needle-angle:140deg;}
.temp-dial.t5{--needle-angle:180deg;}

@media(max-width:760px){
  .mould-row{flex-direction:column;align-items:flex-start;}
  .temp-dial{align-self:flex-end;margin-top:8px;}
  .batchhero{flex-direction:column;padding:40px 20px 60px;}
  .batchhero h1{font-size:34px;}
}

/* =========================================================
   FOUNDRY METRIC BAND
   ========================================================= */
.metric-band{
  background-color:var(--fondant-cocoa);
  padding:56px 40px;
}
.metric-band .wrap{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.metric{
  flex:1 1 200px;
  text-align:center;
  border-right:1px solid var(--caramel-drizzle);
  padding:0 16px;
}
.metric:last-child{border-right:none;}
.metric .num{
  font-size:44px;
  font-weight:800;
  color:var(--apron-linen);
  display:block;
  font-variant-numeric:tabular-nums;
}
.metric .lab{
  display:block;
  margin-top:6px;
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--mint-sugar);
}
@media(max-width:760px){
  .metric{border-right:none;margin-bottom:20px;}
}

/* =========================================================
   STATEMENT BAND
   ========================================================= */
.statement-band{
  background-color:var(--apron-linen);
  border-top:1px solid var(--hairline);
  border-bottom:1px solid var(--hairline);
  padding:70px 40px;
}
.statement-band .inner{max-width:900px;margin:0 auto;}
.statement-band h2{
  font-size:28px;
  color:var(--fondant-ink);
  line-height:1.5;
  border-left:4px solid var(--caramel-drizzle);
  padding-left:26px;
  margin-bottom:18px;
  font-weight:600;
}
.statement-band .attr{
  margin-top:10px;
  padding-left:30px;
  color:var(--niagara-slate);
  font-size:14px;
  letter-spacing:1px;
  text-transform:uppercase;
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band{
  background-color:var(--test-kitchen);
  text-align:center;
  padding:70px 40px;
}
.cta-band h2{color:var(--fondant-cocoa);font-size:34px;margin-bottom:14px;}
.cta-band p{color:var(--niagara-slate);max-width:560px;margin:0 auto 26px;}

/* =========================================================
   FOOTER — COOLING-RACK FOOTER
   ========================================================= */
.coolingrack-footer{
  background-color:var(--deep-cocoa);
  color:var(--apron-linen);
  position:relative;
  z-index:1;
  text-align:center;
  padding:0 20px 40px;
}
.rack-bars{
  height:14px;
  width:100%;
  background:
    repeating-linear-gradient(
      90deg,
      var(--caramel-drizzle) 0 18px,
      var(--deep-cocoa) 18px 26px
    );
  position:relative;
}
.rack-bars::after{
  content:"";
  position:absolute;
  top:6px;left:0;right:0;height:3px;
  background:
    repeating-linear-gradient(
      0deg,
      var(--fondant-cocoa) 0 4px,
      var(--deep-cocoa) 4px 60px
    );
  opacity:.7;
}
.coolingrack-footer .footer-inner{position:relative;z-index:1;max-width:1000px;margin:0 auto;padding:50px 0 20px;}
.footer-brand{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  font-size:22px;
  font-weight:700;
  letter-spacing:2px;
  color:var(--apron-linen);
  text-transform:uppercase;
  margin-bottom:24px;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px;
  margin-bottom:26px;
  font-size:15px;
}
.footer-links a{color:var(--apron-linen);}
.footer-links a:hover{color:var(--caramel-drizzle);}
.piping-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-bottom:18px;
  color:var(--caramel-drizzle);
}
.piping-divider .bag{
  font-size:30px;
  line-height:1;
  transform:rotate(18deg);
}
.piping-divider .mint-dollop{
  width:16px;height:16px;
  border-radius:50%;
  background:var(--mint-sugar);
}
.piping-divider .can-dot{
  width:6px;height:6px;
  border-radius:50%;
  background:var(--caramel-drizzle);
}
.legal-line{
  font-size:13px;
  color:var(--niagara-slate);
  line-height:1.8;
}
.legal-line a{color:var(--caramel-drizzle);}

/* scroll reveal */
.fade-up{opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease;}
.fade-up.visible{opacity:1;transform:translateY(0);}

/* generic page (services/contact) shared bits */
.page-hero{
  background-color:var(--test-kitchen);
  padding:70px 40px;
}
.page-hero .wrap{max-width:1100px;margin:0 auto;}
.page-hero .eyebrow-chip{margin-bottom:18px;}
.page-hero h1{font-size:40px;color:var(--fondant-ink);margin-bottom:14px;}
.page-hero p.sub{color:var(--niagara-slate);max-width:720px;font-size:17px;}

.sections-body{background-color:var(--test-kitchen);padding:20px 40px 60px;}
.sections-body .wrap{max-width:1100px;margin:0 auto;}
.service-block{
  background:var(--apron-linen);
  border:1px solid var(--hairline);
  border-radius:10px;
  padding:30px 34px;
  margin-bottom:22px;
}
.service-block h2{color:var(--fondant-cocoa);font-size:26px;margin-bottom:12px;}
.service-block p{color:#4A3B30;margin-bottom:12px;}
.service-block ul{color:#4A3B30;padding-left:22px;margin-bottom:12px;}
.service-block li{margin-bottom:6px;}
.process-block{background:var(--fondant-cocoa);border-radius:10px;padding:36px;margin-bottom:30px;}
.process-block h2{color:var(--apron-linen);font-size:26px;margin-bottom:20px;}
.process-step{display:flex;gap:14px;margin-bottom:16px;align-items:flex-start;}
.process-step .n{
  flex:0 0 34px;height:34px;
  border-radius:50%;
  background:var(--caramel-drizzle);
  color:var(--fondant-cocoa);
  font-weight:800;
  display:flex;align-items:center;justify-content:center;
}
.process-step h3{color:var(--apron-linen);font-size:18px;margin-bottom:4px;}
.process-step p{color:var(--mint-sugar);}

/* contact page */
.contact-grid{display:flex;gap:40px;}
.contact-info{flex:1 1 45%;}
.contact-form-wrap{flex:1 1 55%;}
.contact-field{margin-bottom:18px;}
.contact-field label{display:block;color:var(--fondant-ink);font-weight:700;margin-bottom:6px;font-size:14px;}
.contact-field input,.contact-field textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid var(--hairline);
  border-radius:6px;
  background:var(--apron-linen);
  color:var(--fondant-ink);
  font-size:16px;
}
.contact-field input:focus,.contact-field textarea:focus{outline:2px solid var(--caramel-drizzle);}
.info-item{display:flex;gap:14px;margin-bottom:20px;align-items:flex-start;}
.info-item .ico{
  flex:0 0 40px;height:40px;
  border-radius:50%;
  background:var(--mint-sugar);
  display:flex;align-items:center;justify-content:center;
  font-size:18px;
  color:var(--fondant-cocoa);
}
.info-item h3{color:var(--fondant-ink);font-size:16px;}
.info-item p{color:var(--niagara-slate);}
.form-note{font-size:13px;color:var(--niagara-slate);margin-top:12px;}
.faq-item{border:1px solid var(--hairline);border-radius:8px;background:var(--apron-linen);margin-bottom:14px;overflow:hidden;}
.faq-item .q{padding:18px 22px;cursor:pointer;font-weight:700;color:var(--fondant-ink);display:flex;justify-content:space-between;align-items:center;}
.faq-item .q .chev{transform:rotate(90deg);transition:transform .2s;color:var(--caramel-drizzle);}
.faq-item.open .chev{transform:rotate(270deg);}
.faq-item .a{max-height:0;overflow:hidden;transition:max-height .3s ease;color:var(--niagara-slate);}
.faq-item.open .a{max-height:300px;padding:0 22px 18px;color:#4A3B30;}
@media(max-width:760px){
  .contact-grid{flex-direction:column;}
  .page-hero{padding:50px 20px;}
  .sections-body{padding:10px 20px 50px;}
}

#formMessage{margin-top:14px;font-weight:700;}
#formMessage.ok{color:var(--fondant-cocoa-dark);}
#formMessage.err{color:#a33;}
