/* ==========================================================================
   Sweet Talks — an initiative by Marab Exports
   Palette sampled directly from the real packaging:
     kraft pouch amber #CD7C02 · poster gold #EDA22F · roasted maroon #620800
     label olive #38471F (logo leaf) · label paper cream
   ========================================================================== */

/* === defensive base — injected by harden_css.py; do not hand-edit === */
*, *::before, *::after { box-sizing: border-box; min-width: 0; }
html { scroll-padding-top: calc(var(--nav-h, 72px) + 1rem); }
img, svg, video, iframe, canvas, table { display: block; max-width: 100%; }
p, li, h1, h2, h3, h4, blockquote, td, dd, dt { overflow-wrap: anywhere; }
form[style*="min-height"] { align-content: center; }
/* === end defensive base === */

:root {
  --cream:        #FBF6EC;
  --cream-2:      #F5EADA;
  --cream-3:      #EEDDC2;
  --jaggery:      #CD7C02;
  --jaggery-deep: #8A4B08;
  --gold:         #EDA22F;
  --roast:        #4A1206;
  --roast-2:      #2E0C04;
  --leaf:         #38471F;
  --leaf-soft:    #6E7C4A;
  --ink:          #2A1B10;
  --ink-soft:     #5B4630;
  --muted:        #806B4A;
  --line:         rgba(58, 36, 18, .14);
  --line-strong:  rgba(58, 36, 18, .28);

  --nav-h: 68px;
  --shell: 1180px;
  --pad: clamp(1.15rem, 4vw, 3rem);

  --display: "Fraunces", "Times New Roman", serif;
  --body: "Karla", "Helvetica Neue", sans-serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;

  --shadow-sm: 0 2px 10px rgba(58, 36, 18, .06);
  --shadow-md: 0 14px 34px rgba(58, 36, 18, .10);
  --shadow-lg: 0 34px 70px rgba(58, 36, 18, .20);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

@media (max-width: 720px) { :root { --nav-h: 60px; } }

/* --------------------------------------------------------------- base --- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(1rem, .96rem + .18vw, 1.075rem);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.012em;
  margin: 0;
  font-variation-settings: "SOFT" 20, "WONK" 1;
}

p { margin: 0; }
a { color: inherit; }
img, svg, picture { display: block; max-width: 100%; }

/* [hidden] loses to any rule that sets display (e.g. .field-grid{display:grid}),
   which silently turns `el.hidden = true` into a no-op. Make it win. */
[hidden] { display: none !important; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

/* paper grain — sits under everything, gives the cream some tooth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .05;
  background-image: radial-gradient(#6B3F14 .5px, transparent .6px);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}

/* --------------------------------------------------------------- type --- */

.eyebrow {
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--jaggery-deep);
  margin: 0;
}

.section-head { max-width: 44rem; }

.section-head h2 {
  font-size: clamp(1.95rem, 1.3rem + 2.4vw, 3.1rem);
  margin-top: .55rem;
}

.section-head p {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1.06rem;
  max-width: 38rem;
}

.rule {
  width: 70px;
  height: 2px;
  background: var(--jaggery);
  border: 0;
  margin: 1.6rem 0 0;
}

em.accent { font-style: italic; color: var(--jaggery-deep); }

/* ------------------------------------------------------------ buttons --- */

.btn {
  --btn-bg: var(--roast);
  --btn-fg: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .92rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--body);
  font-size: .93rem;
  font-weight: 700;
  letter-spacing: .045em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease),
              background-color .28s var(--ease), color .28s var(--ease);
  box-shadow: 0 8px 20px rgba(74, 18, 6, .18);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(74, 18, 6, .26);
}

.btn:focus-visible { outline: 2px solid var(--jaggery); outline-offset: 3px; }

.btn--amber { --btn-bg: var(--jaggery); box-shadow: 0 8px 20px rgba(205, 124, 2, .3); }
.btn--amber:hover { box-shadow: 0 14px 30px rgba(205, 124, 2, .38); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line-strong);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(205, 124, 2, .09); border-color: var(--jaggery); box-shadow: none; }

.btn--light {
  --btn-bg: var(--cream);
  --btn-fg: var(--roast);
}

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  border-color: rgba(251, 246, 236, .4);
  box-shadow: none;
}
.btn--outline-light:hover { background: rgba(251, 246, 236, .12); box-shadow: none; }

/* ---------------------------------------------------------------- nav --- */

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(251, 246, 236, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.brand {
  display: flex;
  align-items: center;
  gap: .62rem;
  text-decoration: none;
  margin-right: auto;
  min-width: 0;
}

.brand__mark { width: 34px; height: 34px; flex: none; }

.brand__word {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: .13em;
  line-height: 1;
  white-space: nowrap;
}

.brand__tag {
  display: block;
  font-family: var(--body);
  font-size: .53rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .28rem;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-size: .87rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  color: var(--ink-soft);
  position: relative;
  padding-block: .35rem;
  transition: color .22s var(--ease);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--jaggery);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { padding: .68rem 1.25rem; font-size: .84rem; }

.nav__toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  cursor: pointer;
  color: var(--ink);
}

.nav__toggle svg { width: 19px; height: 19px; }

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
}

/* mobile drawer — display:none by default so a class can't reveal it early */
.drawer {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  z-index: 55;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 1.1rem var(--pad) 1.6rem;
}

.drawer.is-open { display: block; }

.drawer ul { list-style: none; margin: 0 0 1.1rem; padding: 0; display: grid; gap: .1rem; }

.drawer a.drawer__link {
  display: block;
  padding: .82rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.drawer .btn { width: 100%; }

/* --------------------------------------------------------------- hero --- */

.hero {
  container-type: inline-size;
  position: relative;
  isolation: isolate;
  overflow-x: clip;              /* the glow ring bleeds on purpose */
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  padding-block: clamp(1.1rem, 3cqi, 3.4rem);
  background:
    radial-gradient(120% 80% at 88% 42%, rgba(205, 124, 2, .20), transparent 58%),
    radial-gradient(90% 70% at 6% 88%, rgba(110, 124, 74, .14), transparent 60%),
    linear-gradient(168deg, var(--cream) 0%, var(--cream-2) 62%, var(--cream-3) 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  align-items: center;
  gap: clamp(1.5rem, 4cqi, 4rem);
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(.6rem, 1.5cqi, 1.05rem);
  min-width: 0;
}

.hero h1 {
  font-size: clamp(2.05rem, 7.4cqi, 4.15rem);
  line-height: 1.04;
  letter-spacing: -.022em;
  margin: 0;
  text-wrap: balance;
}

.hero__sub {
  font-size: clamp(.98rem, 1.55cqi, 1.16rem);
  color: var(--ink-soft);
  max-width: 33rem;
  line-height: 1.58;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: clamp(.1rem, .6cqi, .45rem);
}

.hero__proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem .95rem;
  margin-top: clamp(.2rem, .8cqi, .6rem);
  font-size: clamp(.73rem, 1.05cqi, .81rem);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__proof span { display: inline-flex; align-items: center; gap: .42rem; }
.hero__proof svg { width: 15px; height: 15px; flex: none; color: var(--leaf); }
.hero__proof .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line-strong); }

@media (max-width: 560px) { .hero__proof .dot { display: none; } }

/* product plate */
.hero__plate {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 380px;
}

.hero__plate::before {          /* decorative ring, deliberately bleeding */
  content: "";
  position: absolute;
  inset: -9% -9% -9% -9%;
  border-radius: 50%;
  border: 1px solid rgba(205, 124, 2, .3);
  z-index: -1;
}

.hero__plate img {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(2.2deg);
}

.hero__badge {
  position: absolute;
  left: -6%;
  bottom: 7%;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: .72rem 1rem;
  box-shadow: var(--shadow-md);
  line-height: 1.25;
}

.hero__badge strong {
  display: block;
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 600;
}

.hero__badge span {
  font-size: .66rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: clamp(1rem, 3cqi, 2rem); }
  .hero__plate { max-width: min(58cqi, 260px); margin-inline: auto; }
  .hero__plate img { transform: rotate(1.6deg); }
  .hero__badge { left: -4%; padding: .55rem .8rem; }
  .hero__badge strong { font-size: .9rem; }
}

/* --------------------------------------------------------- seal strip --- */

.seals {
  background: var(--roast);
  color: var(--cream);
  padding-block: clamp(1.4rem, 3vw, 2rem);
  overflow: hidden;
}

.seals__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.1rem, 4vw, 3.4rem);
}

.seal {
  display: inline-flex;
  align-items: center;
  gap: .62rem;
  font-size: clamp(.7rem, .62rem + .3vw, .82rem);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(251, 246, 236, .92);
}

.seal svg { width: 22px; height: 22px; flex: none; color: var(--gold); }

/* ----------------------------------------------------------- sections --- */

.section { padding-block: clamp(3.6rem, 8vw, 7rem); position: relative; }
.section--tint { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }

/* ----------------------------------------------------------- products --- */

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: clamp(1.1rem, 2.4vw, 1.7rem);
  margin-top: clamp(2.2rem, 4vw, 3.2rem);
}

.product {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .38s var(--ease), box-shadow .38s var(--ease),
              border-color .38s var(--ease);
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(205, 124, 2, .45);
}

.product__media {
  position: relative;
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
  background: linear-gradient(150deg, var(--cream-2), var(--cream-3));
}

.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

/* Jaggery Coffee has no photograph yet — a type-led plate stands in rather
   than a stock stand-in that isn't their product. */
.product__media--type {
  display: grid;
  place-items: center;
  background:
    radial-gradient(80% 70% at 50% 30%, rgba(237, 162, 47, .22), transparent 60%),
    linear-gradient(155deg, var(--roast) 0%, var(--roast-2) 100%);
  text-align: center;
  padding: 1.4rem;
}

.product__media--type .plate-word {
  font-family: var(--display);
  font-size: clamp(1.4rem, 1.1rem + 1.1vw, 1.85rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.15;
}

.product__media--type .plate-note {
  margin-top: .7rem;
  font-size: .64rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: rgba(251, 246, 236, .62);
}

.product__media--type svg { width: 34px; height: 34px; color: var(--gold); margin: 0 auto .9rem; }

.product__body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }

.product__kicker {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--jaggery-deep);
}

.product h3 { font-size: 1.42rem; margin-top: .5rem; }

.product p { margin-top: .6rem; color: var(--ink-soft); font-size: .96rem; }

.product__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: 1.05rem;
  padding-top: 1.05rem;
  border-top: 1px solid var(--line);
}

.tag {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--leaf);
  background: rgba(110, 124, 74, .12);
  border-radius: 999px;
  padding: .3rem .68rem;
}

.product__link {
  margin-top: 1.15rem;
  align-self: flex-start;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--jaggery-deep);
  border-bottom: 1.5px solid rgba(205, 124, 2, .45);
  padding-bottom: .18rem;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}

.product__link:hover { color: var(--roast); border-color: var(--roast); }

.price-note {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.6rem;
  padding: 1.2rem 1.45rem;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-md);
  background: rgba(205, 124, 2, .05);
}

.price-note p { color: var(--ink-soft); font-size: .96rem; max-width: 44rem; }
.price-note strong { color: var(--ink); }

/* ---------------------------------------------------------------- why --- */

.why {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 232px), 1fr));
  gap: clamp(1.4rem, 3vw, 2.6rem);
  margin-top: clamp(2.2rem, 4vw, 3.2rem);
}

.why__item { min-width: 0; }

.why__num {
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--jaggery);
  letter-spacing: .1em;
}

.why__item h3 {
  font-size: 1.24rem;
  margin-top: .7rem;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
}

.why__item p { margin-top: .55rem; color: var(--ink-soft); font-size: .97rem; }

/* -------------------------------------------------------------- story --- */

.story {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(1.8rem, 5vw, 4.4rem);
}

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

.story__media { position: relative; min-width: 0; }

.story__media img {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

.story__stamp {
  position: absolute;
  right: -14px;
  top: -18px;
  width: clamp(78px, 12vw, 104px);
  height: clamp(78px, 12vw, 104px);
  border-radius: 50%;
  background: var(--roast);
  color: var(--cream);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  line-height: 1.5;
  box-shadow: var(--shadow-md);
  padding: .5rem;
}

.story__copy { min-width: 0; }
.story__copy h2 { font-size: clamp(1.9rem, 1.3rem + 2.2vw, 2.9rem); margin-top: .55rem; }
.story__copy p { margin-top: 1.05rem; color: var(--ink-soft); }

.pull {
  margin-top: 1.6rem;
  padding: 1.15rem 0 1.15rem 1.35rem;
  border-left: 2px solid var(--jaggery);
  font-family: var(--display);
  font-size: clamp(1.12rem, 1rem + .6vw, 1.42rem);
  font-style: italic;
  line-height: 1.42;
  color: var(--ink);
}

/* ----------------------------------------------------------- cta band --- */

.cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(90% 120% at 82% 20%, rgba(205, 124, 2, .34), transparent 62%),
    linear-gradient(150deg, var(--roast) 0%, var(--roast-2) 100%);
  color: var(--cream);
  padding-block: clamp(3.4rem, 7vw, 6rem);
}

.cta__inner { max-width: 46rem; }
.cta h2 { font-size: clamp(2rem, 1.35rem + 2.6vw, 3.3rem); color: var(--cream); }
.cta p { margin-top: 1.05rem; color: rgba(251, 246, 236, .8); font-size: 1.06rem; max-width: 36rem; }
.cta .eyebrow { color: var(--gold); }
.cta .hero__actions { margin-top: 1.9rem; }

/* ------------------------------------------------------------- footer --- */

.footer {
  background: var(--roast-2);
  color: rgba(251, 246, 236, .74);
  padding-block: clamp(2.6rem, 5vw, 3.8rem);
  font-size: .92rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
  gap: clamp(1.8rem, 4vw, 3.4rem);
}

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

.footer .brand__word { color: var(--cream); }
.footer .brand__tag { color: rgba(251, 246, 236, .55); }
.footer__blurb { margin-top: 1rem; max-width: 27rem; color: rgba(251, 246, 236, .62); font-size: .93rem; }

.footer h4 {
  font-family: var(--body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .95rem;
}

.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer a { text-decoration: none; transition: color .22s var(--ease); }
.footer a:hover { color: var(--cream); }

.footer__bottom {
  margin-top: clamp(2.2rem, 4vw, 3rem);
  padding-top: 1.4rem;
  border-top: 1px solid rgba(251, 246, 236, .14);
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(251, 246, 236, .55);
}

/* credit_footer.py appends this as a sibling of .shell, directly inside
   <footer> — so it needs the shell's own gutters or it sits flush at x=0. */
.site-credit {
  max-width: var(--shell);
  margin: 1.1rem auto 0;
  padding-inline: var(--pad);
  text-align: center;
  font-size: .82rem;
  color: rgba(251, 246, 236, .5);
}

.footer .site-credit a { color: rgba(251, 246, 236, .8); text-decoration: underline; text-underline-offset: 2px; }

/* ------------------------------------------------------------ contact --- */

.contact-hero {
  background:
    radial-gradient(100% 80% at 85% 30%, rgba(205, 124, 2, .16), transparent 60%),
    linear-gradient(168deg, var(--cream) 0%, var(--cream-2) 100%);
  padding-block: clamp(2.6rem, 6vw, 4.4rem) clamp(1.6rem, 3vw, 2.2rem);
}

.contact-hero h1 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.2rem); margin-top: .6rem; }
.contact-hero p { margin-top: 1rem; color: var(--ink-soft); max-width: 38rem; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: start;
}

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

.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.3rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
}

.card h2 { font-size: 1.5rem; }
.card > p.card__lede { margin-top: .6rem; color: var(--ink-soft); font-size: .97rem; }

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

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

.field { display: flex; flex-direction: column; gap: .42rem; min-width: 0; }
.field--wide { grid-column: 1 / -1; }

.field label {
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  padding: .8rem .9rem;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), background-color .22s var(--ease);
}

.field textarea { resize: vertical; min-height: 128px; }

.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  background: #fff;
  border-color: var(--jaggery);
  box-shadow: 0 0 0 3px rgba(205, 124, 2, .16);
}

.field input::placeholder, .field textarea::placeholder { color: rgba(91, 70, 48, .45); }

#estimate-form { display: grid; gap: 1.2rem; margin-top: 1.6rem; }

.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem 1.2rem; }
.form-foot .btn { flex: none; }

.form-note { font-size: .8rem; color: var(--muted); max-width: 24rem; }

.form-status {
  margin: 0;
  padding: 1rem 1.15rem;
  border-radius: var(--r-md);
  font-size: .97rem;
  line-height: 1.5;
}

.form-status--ok {
  background: rgba(110, 124, 74, .14);
  border: 1px solid rgba(56, 71, 31, .3);
  color: var(--leaf);
}

.form-status--err {
  background: rgba(138, 75, 8, .1);
  border: 1px solid rgba(138, 75, 8, .34);
  color: var(--jaggery-deep);
}

.form-status strong { display: block; font-family: var(--display); font-size: 1.08rem; margin-bottom: .25rem; }

.turnstile-box { min-height: 65px; }

.contact-side { display: grid; gap: 1rem; }

.side-item {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: 1.05rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--cream);
  text-decoration: none;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}

a.side-item:hover { border-color: var(--jaggery); transform: translateY(-2px); }

.side-item svg { width: 20px; height: 20px; flex: none; color: var(--jaggery); margin-top: .18rem; }
.side-item strong { display: block; font-size: .96rem; }
.side-item span { display: block; font-size: .87rem; color: var(--ink-soft); margin-top: .15rem; }

/* -------------------------------------------------------- animation ----- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
