/* ============================================================
   Northcote & Co. — "Organic / Warm" Design Lab concept
   Self-contained reset + tokens + components
   ============================================================ */

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body { line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; border-radius: 4px; }

/* ---------- Tokens ---------- */
:root {
  /* surfaces */
  --cream: #f6efe3;
  --cream-2: #f1e7d6;
  --sand: #e9dcc4;
  --sand-deep: #dcc9a8;

  /* ink */
  --ink: #3a2c20;
  --ink-soft: #6b5947;
  --ink-faint: #8c7960;

  /* accents */
  --clay: #c0633f;
  --clay-deep: #a44c2c;
  --terracotta: #d98452;
  --sage: #7f8d6b;
  --sage-deep: #5f6e4d;
  --apricot: #ecc093;

  /* derived */
  --line: #d9c7a8;
  --card: #fbf6ec;
  --shadow-soft: 0 18px 40px -24px rgba(58, 44, 32, 0.45);
  --shadow-lift: 0 26px 60px -30px rgba(58, 44, 32, 0.55);

  --radius-s: 14px;
  --radius-m: 24px;
  --radius-l: 40px;
  --radius-xl: 64px;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesk", "Segoe UI", Helvetica, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Base ---------- */
body {
  font-family: var(--sans);
  background-color: var(--cream);
  color: var(--ink);
  position: relative;
  overflow-x: hidden;
  background-image:
    radial-gradient(120% 90% at 12% -10%, rgba(236, 192, 147, 0.45), transparent 55%),
    radial-gradient(90% 70% at 105% 0%, rgba(127, 141, 107, 0.18), transparent 50%);
}

/* grain overlay — pure SVG, no external asset */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

.page { position: relative; z-index: 2; }

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { position: relative; padding-block: clamp(64px, 9vw, 120px); }
.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--clay);
  border-radius: 2px;
}
.heading {
  font-family: var(--serif);
  font-weight: 400;
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 60, "WONK" 1;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.h-xl { font-size: clamp(2.6rem, 7vw, 5.1rem); }
.h-l  { font-size: clamp(2rem, 4.6vw, 3.3rem); }
.h-m  { font-size: clamp(1.5rem, 2.8vw, 2rem); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-soft); max-width: 56ch; }
.italic-serif { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* ---------- Blobs ---------- */
.blob {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: blur(0.5px);
}
.blob svg { width: 100%; height: 100%; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--clay);
  --fg: #fff7ee;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  padding: 1rem 1.6rem;
  border-radius: 100px;
  background: var(--bg);
  color: var(--fg);
  border: 1.5px solid transparent;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.3s var(--ease);
  box-shadow: 0 14px 26px -16px rgba(164, 76, 44, 0.8);
  position: relative;
}
.btn .arr { transition: transform 0.4s var(--ease); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 22px 34px -18px rgba(164, 76, 44, 0.85); background: var(--clay-deep); }
.btn:hover .arr { transform: translateX(4px); }
.btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--cream-2); border-color: var(--ink-faint); transform: translateY(-3px); }
.btn--sage { --bg: var(--sage-deep); box-shadow: 0 14px 26px -16px rgba(95, 110, 77, 0.8); }
.btn--sage:hover { background: #4f5d40; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(246, 239, 227, 0.92), rgba(246, 239, 227, 0.66));
  border-bottom: 1px solid rgba(217, 199, 168, 0.55);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__mark {
  width: 38px; height: 38px;
  flex: none;
  border-radius: 50% 50% 50% 12px;
  background: radial-gradient(circle at 32% 30%, var(--terracotta), var(--clay-deep));
  display: grid; place-items: center;
  color: #fdf2e6;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  box-shadow: inset 0 -4px 10px rgba(58,44,32,0.25);
}
.brand__name { font-family: var(--serif); font-size: 1.18rem; font-weight: 500; letter-spacing: -0.01em; }
.brand__name span { color: var(--clay-deep); }

.nav__links { display: flex; align-items: center; gap: 0.4rem; }
.nav__links a {
  font-weight: 500;
  font-size: 0.96rem;
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  color: var(--ink-soft);
  transition: color 0.25s, background 0.25s;
}
.nav__links a:hover { color: var(--ink); background: rgba(220, 201, 168, 0.4); }
.nav__links a.is-active { color: var(--clay-deep); background: rgba(192, 99, 63, 0.12); }

.nav__cta { display: flex; align-items: center; gap: 0.8rem; }
.nav__toggle { display: none; }

@media (max-width: 880px) {
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 1rem var(--gutter) 1.4rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav__links a { padding: 0.85rem 1rem; font-size: 1.05rem; }
  .nav[data-open="true"] .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  .nav__cta .btn--ghost { display: none; }
  .nav__toggle {
    display: inline-grid; place-items: center;
    width: 44px; height: 44px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--card);
  }
  .nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
    content: ""; display: block;
    width: 20px; height: 2px; border-radius: 2px;
    background: var(--ink);
    transition: transform 0.3s var(--ease), opacity 0.2s;
  }
  .nav__toggle span { position: relative; }
  .nav__toggle span::before { position: absolute; top: -6px; }
  .nav__toggle span::after { position: absolute; top: 6px; }
  .nav[data-open="true"] .nav__toggle span { background: transparent; }
  .nav[data-open="true"] .nav__toggle span::before { transform: translateY(6px) rotate(45deg); }
  .nav[data-open="true"] .nav__toggle span::after { transform: translateY(-6px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(56px, 8vw, 110px) clamp(48px, 7vw, 90px); overflow: hidden; }
.hero__grid {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 0.45rem 0.9rem 0.45rem 0.5rem;
  border-radius: 100px;
  font-size: 0.84rem; font-weight: 500; color: var(--ink-soft);
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.6rem;
}
.hero__tag b { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--sage); color: #fff; font-size: 0.7rem; }
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 em { color: var(--clay-deep); }
.hero__lede { margin-bottom: 2.2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.hero__meta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1.8rem; color: var(--ink-soft); font-size: 0.9rem; }
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta b { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); font-weight: 500; }

/* hero visual — blobbed card collage, no external image */
.hero__visual { position: relative; aspect-ratio: 4 / 4.6; }
.hero__blobcard {
  position: absolute; inset: 0;
  border-radius: 46% 54% 56% 44% / 52% 44% 56% 48%;
  background: linear-gradient(150deg, var(--sage) 0%, var(--sage-deep) 60%, #4d5a3c 100%);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.hero__blobcard::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 70% 20%, rgba(236, 192, 147, 0.5), transparent 60%);
}
.hero__chip {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.85rem 1.05rem;
  box-shadow: var(--shadow-lift);
  z-index: 4;
}
.hero__chip--tl { top: 6%; left: -6%; }
.hero__chip--br { bottom: 8%; right: -5%; }
.hero__chip h4 { font-family: var(--serif); font-weight: 500; font-size: 1rem; }
.hero__chip p { font-size: 0.8rem; color: var(--ink-soft); }
.hero__chip .stars { color: var(--clay); letter-spacing: 0.1em; font-size: 0.8rem; }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 440px; margin-inline: auto; aspect-ratio: 4 / 4; width: 100%; }
}

/* ---------- Trust strip ---------- */
.trust {
  position: relative; z-index: 3;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-l);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 52px);
  box-shadow: var(--shadow-lift);
  background-image: radial-gradient(120% 140% at 0% 0%, rgba(192,99,63,0.4), transparent 55%);
}
.trust__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); }
.trust__row div b { font-family: var(--serif); font-weight: 500; font-size: clamp(1.8rem, 3vw, 2.6rem); display: block; }
.trust__row div span { font-size: 0.86rem; color: rgba(246,239,227,0.72); }
@media (max-width: 720px) { .trust__row { grid-template-columns: repeat(2, 1fr); row-gap: 26px; } }

/* ---------- Section head ---------- */
.sec-head { max-width: 60ch; margin-bottom: clamp(36px, 5vw, 56px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .eyebrow { margin-bottom: 1rem; }
.sec-head h2 { margin-bottom: 1rem; }
.sec-head.center .eyebrow { justify-content: center; }

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 26px);
}
@media (max-width: 920px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.svc {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 1.9rem 1.7rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s;
}
.svc::before {
  content: "";
  position: absolute;
  top: -50px; right: -50px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(217, 132, 82, 0.22), transparent 68%);
  border-radius: 50%;
  transition: transform 0.6s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--apricot); }
.svc:hover::before { transform: scale(1.5); }
.svc__no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--clay);
}
.svc__icon {
  width: 52px; height: 52px;
  border-radius: 16px 16px 16px 6px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--apricot), var(--terracotta));
  color: var(--ink);
  margin-bottom: 0.3rem;
  box-shadow: inset 0 -3px 8px rgba(58,44,32,0.15);
}
.svc__icon svg { width: 26px; height: 26px; }
.svc h3 { font-family: var(--serif); font-weight: 500; font-size: 1.32rem; letter-spacing: -0.01em; }
.svc p { color: var(--ink-soft); font-size: 0.96rem; }
.svc__foot {
  margin-top: auto;
  padding-top: 1.1rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(217, 199, 168, 0.7);
}
.svc__price { font-family: var(--serif); font-weight: 500; font-size: 1.05rem; }
.svc__price span { font-size: 0.78rem; color: var(--ink-faint); font-family: var(--sans); display: block; }
.svc__link {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-weight: 600; font-size: 0.9rem; color: var(--clay-deep);
}
.svc__link .arr { transition: transform 0.4s var(--ease); }
.svc:hover .svc__link .arr { transform: translateX(4px); }

/* ---------- Process / why-us ---------- */
.why { position: relative; }
.why__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 860px) { .why__inner { grid-template-columns: 1fr; } }
.why__art {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 58% 42% 48% 52% / 50% 52% 48% 50%;
  background: linear-gradient(155deg, var(--terracotta), var(--clay-deep));
  box-shadow: var(--shadow-lift);
  display: grid; place-items: center;
  overflow: hidden;
}
.why__art::after { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 40% at 30% 25%, rgba(255,236,210,0.45), transparent 60%); }
.why__quote {
  position: relative; z-index: 2;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: #fff3e6;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.25;
  text-align: center;
  padding: 2rem;
  max-width: 24ch;
}
.steps { display: flex; flex-direction: column; gap: 0.4rem; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: none; }
.step__num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--sage-deep);
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--sage);
  background: rgba(127, 141, 107, 0.1);
}
.step h4 { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; margin-bottom: 0.25rem; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Testimonial ---------- */
.quote-band { position: relative; }
.quote-card {
  position: relative; z-index: 3;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(36px, 5vw, 68px);
  text-align: center;
  max-width: 880px;
  margin-inline: auto;
  box-shadow: var(--shadow-soft);
}
.quote-card .mark {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--apricot);
  margin-bottom: 0.4rem;
}
.quote-card blockquote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.quote-card cite {
  display: block;
  margin-top: 1.6rem;
  font-style: normal;
  font-weight: 600;
  color: var(--clay-deep);
  letter-spacing: 0.04em;
}
.quote-card cite span { color: var(--ink-faint); font-weight: 400; }

/* reviews grid (services/blog reuse) */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 860px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } }
.review {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 1.6rem;
}
.review .stars { color: var(--clay); letter-spacing: 0.12em; margin-bottom: 0.7rem; }
.review p { font-family: var(--serif); font-size: 1.05rem; line-height: 1.4; color: var(--ink); }
.review cite { display: block; margin-top: 1rem; font-style: normal; font-size: 0.88rem; color: var(--ink-faint); font-weight: 500; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-card {
  position: relative; z-index: 3;
  background: linear-gradient(155deg, var(--clay) 0%, var(--clay-deep) 70%, #8a3d22 100%);
  color: #fff5ea;
  border-radius: var(--radius-l);
  padding: clamp(40px, 6vw, 76px);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.cta-card::after {
  content: ""; position: absolute;
  top: -30%; right: -10%; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,236,210,0.32), transparent 60%);
  border-radius: 50%;
}
.cta-card__grid { position: relative; z-index: 2; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-card h2 { color: #fff7ee; margin-bottom: 0.8rem; }
.cta-card p { color: rgba(255,245,234,0.85); max-width: 44ch; }
.cta-card .btn { --bg: var(--cream); --fg: var(--clay-deep); box-shadow: 0 18px 30px -16px rgba(0,0,0,0.4); }
.cta-card .btn:hover { --bg: #fff; background: #fff; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  z-index: 3;
  margin-top: clamp(48px, 7vw, 96px);
  background: var(--ink);
  color: var(--cream);
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
  overflow: hidden;
  padding-top: clamp(48px, 6vw, 80px);
}
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; width: 50%; height: 100%;
  background: radial-gradient(60% 80% at 10% 10%, rgba(127,141,107,0.28), transparent 60%);
  pointer-events: none;
}
.footer__top {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(36px, 5vw, 56px);
}
@media (max-width: 820px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .footer__top { grid-template-columns: 1fr; } }
.footer__brand .brand__name { color: var(--cream); }
.footer__brand .brand__name span { color: var(--apricot); }
.footer__brand p { margin-top: 1rem; color: rgba(246,239,227,0.7); font-size: 0.95rem; max-width: 34ch; }
.footer__col h5 {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--apricot); margin-bottom: 1.1rem; font-weight: 700;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a, .footer__col li { color: rgba(246,239,227,0.78); font-size: 0.95rem; transition: color 0.25s; }
.footer__col a:hover { color: var(--cream); }
.footer__bottom {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(246,239,227,0.16);
  padding-block: 1.5rem 1.8rem;
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
  font-size: 0.85rem; color: rgba(246,239,227,0.6);
}
.footer__bottom .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); display: inline-block; margin-right: 0.5rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow-soft);
}
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.45rem; color: var(--ink-soft); }
.field input, .field textarea {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  color: var(--ink);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--clay);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(192, 99, 63, 0.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.form-card .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form-note { margin-top: 1rem; font-size: 0.82rem; color: var(--ink-faint); text-align: center; }
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  background: rgba(127, 141, 107, 0.16);
  border: 1px solid var(--sage);
  color: var(--sage-deep);
  font-weight: 600;
  font-size: 0.92rem;
}
.form-success.show { display: block; }

.info-stack { display: flex; flex-direction: column; gap: 1.2rem; }
.info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 1.5rem 1.6rem;
}
.info-card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; margin-bottom: 0.9rem; }
.nap-row { display: flex; gap: 0.8rem; padding: 0.5rem 0; align-items: flex-start; }
.nap-row .ic {
  flex: none; width: 38px; height: 38px; border-radius: 12px;
  background: rgba(217, 132, 82, 0.16); color: var(--clay-deep);
  display: grid; place-items: center;
}
.nap-row .ic svg { width: 18px; height: 18px; }
.nap-row b { display: block; font-weight: 600; color: var(--ink); }
.nap-row span { color: var(--ink-soft); font-size: 0.92rem; }
.hours { display: flex; flex-direction: column; gap: 0.55rem; }
.hours li { display: flex; justify-content: space-between; font-size: 0.94rem; padding-bottom: 0.55rem; border-bottom: 1px dashed var(--line); }
.hours li:last-child { border-bottom: none; }
.hours li span:first-child { color: var(--ink-soft); }
.hours li span:last-child { font-weight: 600; }
.hours li.closed span:last-child { color: var(--clay-deep); }

.map-box {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  min-height: 240px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(127,141,107,0.18), rgba(217,132,82,0.12)),
    var(--sand);
  display: grid; place-items: center;
}
.map-box::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(58,44,32,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,44,32,0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 78%);
}
.map-pin {
  position: relative; z-index: 2;
  text-align: center;
}
.map-pin .pin {
  width: 46px; height: 46px; margin: 0 auto 0.7rem;
  border-radius: 50% 50% 50% 6px;
  transform: rotate(-45deg);
  background: linear-gradient(150deg, var(--terracotta), var(--clay-deep));
  box-shadow: var(--shadow-lift);
}
.map-pin .pin::after { content: ""; position: absolute; inset: 0; margin: auto; width: 14px; height: 14px; border-radius: 50%; background: var(--cream); transform: rotate(45deg); }
.map-pin b { font-family: var(--serif); font-weight: 500; display: block; }
.map-pin span { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- Blog ---------- */
.featured {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 3.5vw, 48px);
  align-items: stretch;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 800px) { .featured { grid-template-columns: 1fr; } }
.featured__art {
  position: relative;
  min-height: 320px;
  background: linear-gradient(155deg, var(--sage), var(--sage-deep) 70%, #46533a);
  overflow: hidden;
}
.featured__art::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 50% at 75% 15%, rgba(236,192,147,0.5), transparent 60%); }
.featured__art .float-tag {
  position: absolute; z-index: 2; top: 1.4rem; left: 1.4rem;
  background: var(--card); border-radius: 100px; padding: 0.4rem 0.95rem;
  font-size: 0.8rem; font-weight: 600; color: var(--clay-deep);
}
.featured__body { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.featured__body .eyebrow { margin-bottom: 1rem; }
.featured__body h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.7rem, 3.4vw, 2.6rem); line-height: 1.08; letter-spacing: -0.015em; margin-bottom: 1rem; }
.featured__body p { color: var(--ink-soft); margin-bottom: 1.6rem; max-width: 48ch; }
.featured__meta { display: flex; gap: 1.2rem; font-size: 0.85rem; color: var(--ink-faint); margin-bottom: 1.6rem; }
.featured__meta span { display: inline-flex; align-items: center; gap: 0.4em; }

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 26px);
}
@media (max-width: 880px) { .article-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .article-grid { grid-template-columns: 1fr; } }
.article {
  display: flex; flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.article:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.article__art {
  height: 150px;
  position: relative;
  overflow: hidden;
}
.article__art.a1 { background: linear-gradient(150deg, var(--apricot), var(--terracotta)); }
.article__art.a2 { background: linear-gradient(150deg, var(--sage), var(--sage-deep)); }
.article__art.a3 { background: linear-gradient(150deg, #d7b27e, var(--clay)); }
.article__art.a4 { background: linear-gradient(150deg, #b6c0a0, var(--sage-deep)); }
.article__art.a5 { background: linear-gradient(150deg, var(--terracotta), var(--clay-deep)); }
.article__art .tag {
  position: absolute; top: 0.9rem; left: 0.9rem;
  background: rgba(251, 246, 236, 0.92); color: var(--ink);
  border-radius: 100px; padding: 0.28rem 0.8rem; font-size: 0.74rem; font-weight: 600;
}
.article__body { padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.article__body h3 { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; line-height: 1.2; }
.article__body p { color: var(--ink-soft); font-size: 0.92rem; }
.article__meta { margin-top: auto; padding-top: 0.9rem; display: flex; gap: 1rem; font-size: 0.8rem; color: var(--ink-faint); border-top: 1px solid var(--line); }

/* newsletter */
.newsletter {
  position: relative; z-index: 3;
  background: linear-gradient(150deg, var(--sage) 0%, var(--sage-deep) 70%, #46533a 100%);
  color: #f4f6ee;
  border-radius: var(--radius-l);
  padding: clamp(36px, 5vw, 64px);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.newsletter::after { content: ""; position: absolute; bottom: -40%; left: -8%; width: 380px; height: 380px; background: radial-gradient(circle, rgba(236,192,147,0.3), transparent 60%); border-radius: 50%; }
.newsletter__inner { position: relative; z-index: 2; max-width: 640px; }
.newsletter h2 { color: #fbfdf6; margin-bottom: 0.8rem; }
.newsletter p { color: rgba(244,246,238,0.85); margin-bottom: 1.8rem; }
.newsletter form { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.newsletter input {
  flex: 1; min-width: 220px;
  background: rgba(255,255,255,0.92);
  border: 1.5px solid transparent;
  border-radius: 100px;
  padding: 0.9rem 1.3rem;
  color: var(--ink);
}
.newsletter input:focus { outline: none; border-color: var(--apricot); box-shadow: 0 0 0 4px rgba(236,192,147,0.3); }
.newsletter .btn { --bg: var(--clay); --fg: #fff7ee; }
.newsletter .btn:hover { --bg: var(--clay-deep); }

/* page intro band for inner pages */
.page-hero { position: relative; padding-block: clamp(56px, 7vw, 96px) clamp(28px, 4vw, 44px); overflow: hidden; }
.page-hero__inner { position: relative; z-index: 3; max-width: 64ch; }
.page-hero h1 { margin: 1rem 0; }
.page-hero p { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 54ch; }
.crumbs { font-size: 0.84rem; color: var(--ink-faint); display: flex; gap: 0.5rem; align-items: center; }
.crumbs a:hover { color: var(--clay-deep); }
.crumbs span { color: var(--clay); }

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .svc, .article, .hero__chip { transition: none !important; }
}

/* float idle motion on hero chips */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: no-preference) {
  .hero__chip--tl { animation: floaty 6s var(--ease) infinite; }
  .hero__chip--br { animation: floaty 7s var(--ease) infinite 0.8s; }
}
