/* ============================================================
   Oakline Joinery — Bespoke Carpentry Design System
   Warm wood · cream · deep forest · heritage craft
   ============================================================ */

:root {
  /* Palette — timber, cream, forest, charcoal */
  --forest-900: #18241c;
  --forest-800: #1f2f24;
  --forest-700: #2c4133;
  --forest-600: #3a5444;
  --oak-700: #7a4f25;
  --oak-600: #95612f;
  --oak-500: #b07a3f;
  --oak-400: #c79a5f;
  --honey-300: #e0bd86;
  --honey-200: #ecd4a8;
  --cream-100: #f7efe1;
  --cream-50: #fbf6ec;
  --paper: #fdfaf3;
  --charcoal: #221d18;
  --ink: #2a241d;
  --ink-soft: #5c5247;
  --muted: #8a7e70;
  --line: rgba(42, 36, 29, 0.12);
  --line-soft: rgba(42, 36, 29, 0.07);

  /* Type */
  --display: "Marcellus", "Cormorant Garamond", Georgia, serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;

  /* Shape & motion */
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 6px 22px rgba(42, 36, 29, 0.08);
  --shadow: 0 22px 54px rgba(42, 36, 29, 0.14);
  --shadow-lg: 0 40px 90px rgba(24, 36, 28, 0.24);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1240px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.72;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.08; letter-spacing: 0.005em; color: var(--ink); }
h1 { font-size: clamp(2.7rem, 6.2vw, 5.1rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.1vw, 1.7rem); }
h4 { font-size: 1.12rem; letter-spacing: 0.01em; }
em { font-style: italic; font-family: var(--serif); font-weight: 500; color: var(--oak-600); }

.wrap { width: min(100% - 2.6rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.cream { background: linear-gradient(180deg, var(--cream-50), var(--cream-100)); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.74rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--oak-600);
  margin-bottom: 1.2rem;
}
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: var(--honey-300); }
.eb-line { width: 30px; height: 1.5px; background: currentColor; display: inline-block; opacity: 0.7; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.02em; padding: 0.95rem 1.8rem; border-radius: var(--radius);
  cursor: pointer; border: 1.5px solid transparent; position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn .arr { transition: transform 0.4s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn-solid {
  background: linear-gradient(135deg, var(--forest-700), var(--forest-800));
  color: var(--cream-50); box-shadow: var(--shadow-sm);
}
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(24,36,28,0.28); }
.btn-wood {
  background: linear-gradient(135deg, var(--oak-600), var(--oak-700));
  color: var(--cream-50); box-shadow: var(--shadow-sm);
}
.btn-wood:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(122,79,37,0.32); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--forest-700); color: var(--forest-700); transform: translateY(-3px); }
.btn-light { background: var(--cream-50); color: var(--forest-800); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,0.22); }
.btn-outline-light { background: transparent; color: var(--cream-50); border-color: rgba(247,239,225,0.4); }
.btn-outline-light:hover { border-color: var(--cream-50); transform: translateY(-3px); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 250, 243, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.shrink {
  background: rgba(253, 250, 243, 0.95);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 6px 24px rgba(42,36,29,0.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.35rem 0; transition: padding 0.4s var(--ease); }
.site-header.shrink .nav { padding: 0.85rem 0; }
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-mark { width: 38px; height: 38px; color: var(--oak-600); flex-shrink: 0; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-words { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--display); font-size: 1.5rem; color: var(--forest-800); letter-spacing: 0.02em; }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--oak-600); font-weight: 600; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 2.1rem; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: 0.3rem 0; transition: color 0.3s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--oak-600); transition: width 0.35s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--forest-800); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 1.4rem; }
.nav-phone { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; font-weight: 600; color: var(--forest-800); }
.nav-phone svg { width: 17px; height: 17px; color: var(--oak-600); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: transparent; border: none; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--forest-800); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.3s; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(3rem, 6vw, 5.5rem) 0 0; background: linear-gradient(170deg, var(--cream-50) 0%, var(--paper) 55%); overflow: hidden; }
.hero-grain { position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(circle at 18% 20%, rgba(176,122,63,0.10), transparent 45%), radial-gradient(circle at 90% 80%, rgba(58,84,68,0.08), transparent 50%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; position: relative; }
.hero-copy { max-width: 600px; }
.hero h1 { margin-bottom: 1.4rem; }
.hero-tag { font-size: 1.12rem; color: var(--ink-soft); max-width: 50ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.2rem; }
.hero-trust { display: flex; align-items: center; gap: 0.8rem; font-size: 0.92rem; color: var(--ink-soft); }
.hero-trust b { color: var(--ink); }
.stars { color: var(--oak-500); letter-spacing: 2px; font-size: 0.95rem; }

.hero-media { position: relative; }
.hero-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; border: 1px solid var(--line-soft); }
.hero-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, transparent 60%, rgba(24,36,28,0.18)); }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.hero-badge { position: absolute; top: 1.6rem; left: -1.4rem; background: var(--forest-800); color: var(--cream-50); padding: 1.1rem 1.4rem; border-radius: var(--radius); box-shadow: var(--shadow); text-align: center; }
.hero-badge .n { font-family: var(--display); font-size: 2.2rem; line-height: 1; }
.hero-badge .yr { font-size: 0.55em; margin-left: 2px; color: var(--honey-300); }
.hero-badge .l { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 4px; color: var(--honey-200); }
.hero-float { position: absolute; bottom: 1.8rem; right: -1.5rem; display: flex; align-items: center; gap: 0.75rem; background: var(--cream-50); padding: 0.85rem 1.1rem; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line-soft); }
.hero-float .dot { width: 38px; height: 38px; border-radius: 50%; background: var(--honey-200); color: var(--oak-700); display: grid; place-items: center; flex-shrink: 0; }
.hero-float .dot svg { width: 19px; height: 19px; }
.hero-float .t { display: flex; flex-direction: column; line-height: 1.2; }
.hero-float .t b { font-size: 0.95rem; }
.hero-float .t span { font-size: 0.74rem; color: var(--muted); }

/* ---------- Marquee ---------- */
.marquee { margin-top: clamp(3rem, 6vw, 5rem); background: var(--forest-800); color: var(--honey-200); overflow: hidden; padding: 1rem 0; }
.marquee-track { display: inline-flex; align-items: center; gap: 2.4rem; white-space: nowrap; animation: marquee 34s linear infinite; font-family: var(--display); font-size: 1.4rem; letter-spacing: 0.04em; }
.marquee-track span { display: inline-block; }
.marquee .sep { color: var(--oak-500); font-size: 0.9rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats { background: var(--paper); padding: clamp(3rem, 6vw, 4.5rem) 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 1rem; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 18%; height: 64%; width: 1px; background: var(--line); }
.stat .n { font-family: var(--display); font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--forest-800); line-height: 1; display: flex; align-items: baseline; justify-content: center; }
.stat .suf { color: var(--oak-600); margin-left: 2px; }
.stat .l { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 0.7rem; }

/* ---------- Section heads ---------- */
.sec-head { margin-bottom: 3.2rem; }
.sec-head.center { text-align: center; max-width: 640px; margin-inline: auto; }
.sec-head.split-head { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2rem; align-items: end; }
.sec-head.split-head p { color: var(--ink-soft); }
.light-h { color: var(--cream-50) !important; }
.sec-foot { text-align: center; margin-top: 3rem; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.flip .split-media { order: 2; }
.split-media { position: relative; }
.frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line-soft); aspect-ratio: 4/3; }
.frame-tall { aspect-ratio: 4/5; }
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.hover-zoom:hover img { transform: scale(1.06); }
.tab { position: absolute; bottom: 1.3rem; left: 1.3rem; display: flex; align-items: center; gap: 0.75rem; background: rgba(253,250,243,0.94); backdrop-filter: blur(6px); padding: 0.75rem 1.1rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.tab svg { width: 24px; height: 24px; color: var(--oak-600); flex-shrink: 0; }
.tab b { display: block; font-size: 0.92rem; }
.tab span { font-size: 0.74rem; color: var(--muted); }

.split-copy .lead { font-size: 1.15rem; color: var(--ink-soft); margin-bottom: 1.6rem; }
.muted-p { color: var(--ink-soft); margin-bottom: 1.8rem; }
.feature-list { display: flex; flex-direction: column; gap: 1.5rem; }
.feature-list li { display: flex; gap: 1.1rem; }
.feature-list .ico { width: 44px; height: 44px; border-radius: var(--radius); background: var(--cream-100); color: var(--oak-600); display: grid; place-items: center; flex-shrink: 0; border: 1px solid var(--line-soft); }
.feature-list .ico svg { width: 22px; height: 22px; }
.feature-list h4 { margin-bottom: 0.25rem; color: var(--forest-800); }
.feature-list p { font-size: 0.95rem; color: var(--ink-soft); }

.maker-sign { display: flex; flex-direction: column; }
.sign-name { font-family: var(--serif); font-style: italic; font-size: 1.9rem; color: var(--oak-600); line-height: 1; }
.sign-role { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 0.4rem; }

/* ---------- Craft grid ---------- */
.craft-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.craft { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 2rem 1.7rem; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s; position: relative; overflow: hidden; }
.craft::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--oak-500), var(--honey-300)); transition: width 0.5s var(--ease); }
.craft:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: var(--line); }
.craft:hover::before { width: 100%; }
.craft-ico { width: 54px; height: 54px; border-radius: var(--radius); background: linear-gradient(140deg, var(--forest-700), var(--forest-800)); color: var(--honey-200); display: grid; place-items: center; margin-bottom: 1.3rem; }
.craft-ico svg { width: 27px; height: 27px; }
.craft h3 { margin-bottom: 0.6rem; color: var(--forest-800); }
.craft p { font-size: 0.93rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
.craft-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--oak-600); }
.craft-link svg { transition: transform 0.4s var(--ease); }
.craft:hover .craft-link svg { transform: translateX(4px); }

/* ---------- Process ---------- */
.process { background: linear-gradient(180deg, var(--paper), var(--cream-50)); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.step { position: relative; padding-top: 1.6rem; border-top: 2px solid var(--line); }
.step-n { font-family: var(--display); font-size: 2.6rem; color: var(--honey-300); line-height: 1; display: block; margin-bottom: 0.7rem; }
.step h3 { color: var(--forest-800); margin-bottom: 0.5rem; }
.step p { font-size: 0.94rem; color: var(--ink-soft); }

/* ---------- Workshop band ---------- */
.workshop-band { position: relative; padding: clamp(5rem, 12vw, 9rem) 0; overflow: hidden; }
.workshop-media { position: absolute; inset: 0; z-index: 0; }
.workshop-media img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.workshop-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(24,36,28,0.92) 0%, rgba(24,36,28,0.78) 42%, rgba(24,36,28,0.30) 100%); z-index: 1; }
.workshop-band .wrap { position: relative; z-index: 2; }
.workshop-card { max-width: 540px; color: var(--cream-50); }
.workshop-card .eyebrow { color: var(--honey-300); }
.workshop-card h2 { color: var(--cream-50); margin-bottom: 1.2rem; }
.workshop-card p { color: rgba(247,239,225,0.82); margin-bottom: 1.1rem; }
.workshop-card .btn { margin-top: 0.8rem; }

/* ---------- Quote band ---------- */
.quote-band { background: linear-gradient(160deg, var(--forest-800), var(--forest-900)); position: relative; overflow: hidden; }
.quote-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 10%, rgba(176,122,63,0.18), transparent 50%); }
.quote-band .wrap { position: relative; }
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.qcard { background: rgba(247,239,225,0.05); border: 1px solid rgba(247,239,225,0.12); border-radius: var(--radius-lg); padding: 2rem 1.8rem; position: relative; transition: transform 0.5s var(--ease), background 0.4s; }
.qcard:hover { transform: translateY(-6px); background: rgba(247,239,225,0.09); }
.qmark { position: absolute; top: 0.6rem; right: 1.4rem; font-family: var(--display); font-size: 4.5rem; color: var(--oak-500); opacity: 0.4; line-height: 1; }
.qcard .stars { display: block; margin-bottom: 1rem; }
.qcard blockquote { font-family: var(--serif); font-size: 1.18rem; line-height: 1.5; color: var(--cream-50); font-style: italic; margin-bottom: 1.5rem; }
.qmeta { display: flex; align-items: center; gap: 0.8rem; }
.qmeta .av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(140deg, var(--oak-500), var(--oak-700)); color: var(--cream-50); display: grid; place-items: center; font-family: var(--display); font-size: 1.1rem; flex-shrink: 0; }
.qmeta b { display: block; color: var(--cream-50); font-size: 0.95rem; }
.qmeta span { font-size: 0.8rem; color: var(--honey-300); }

/* ---------- Journal ---------- */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.post { border-top: 2px solid var(--line); padding-top: 1.4rem; }
.post .meta { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: var(--muted); margin-bottom: 0.8rem; }
.post .type { color: var(--oak-600); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.post .mdot { width: 4px; height: 4px; border-radius: 50%; background: var(--oak-400); }
.post h3 { margin-bottom: 0.6rem; line-height: 1.18; }
.post h3 a { transition: color 0.3s; }
.post h3 a:hover { color: var(--oak-600); }
.post p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 1rem; }
.more { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--oak-600); }
.more svg { transition: transform 0.4s var(--ease); }
.more:hover svg { transform: translateX(4px); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; padding: clamp(4.5rem, 9vw, 7rem) 0; background: linear-gradient(135deg, var(--oak-700), var(--oak-600)); color: var(--cream-50); text-align: center; overflow: hidden; }
.cta-grain { position: absolute; inset: 0; background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.10), transparent 45%), radial-gradient(circle at 85% 75%, rgba(24,36,28,0.25), transparent 50%); }
.cta-band .wrap { position: relative; max-width: 720px; }
.cta-band h2 { color: var(--cream-50); margin-bottom: 1rem; }
.cta-band p { color: rgba(247,239,225,0.88); margin-bottom: 2rem; max-width: 52ch; margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-900); color: rgba(247,239,225,0.7); padding-top: clamp(3.5rem, 7vw, 5rem); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(247,239,225,0.12); }
.footer-brand .brand-mark { color: var(--oak-500); }
.footer-brand .brand-name { color: var(--cream-50); }
.footer-brand p { margin-top: 1.1rem; font-size: 0.93rem; max-width: 38ch; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(247,239,225,0.2); display: grid; place-items: center; color: var(--honey-200); transition: background 0.3s, transform 0.3s, border-color 0.3s; }
.footer-social a:hover { background: var(--oak-600); border-color: var(--oak-600); transform: translateY(-3px); color: var(--cream-50); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color: var(--cream-50); margin-bottom: 1.1rem; font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; font-family: var(--sans); font-weight: 600; }
.footer-col a { display: block; font-size: 0.93rem; padding: 0.32rem 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--honey-200); }
.footer-nap { font-style: normal; font-size: 0.93rem; line-height: 1.9; }
.footer-nap a:hover { color: var(--honey-200); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem; padding: 1.6rem 0; font-size: 0.82rem; color: rgba(247,239,225,0.5); }
.footer-disclaimer { background: var(--forest-900); border-top: 1px solid rgba(247,239,225,0.08); padding: 1rem 1.3rem; text-align: center; font-size: 0.76rem; color: rgba(247,239,225,0.4); line-height: 1.6; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3rem, 5vw, 4.5rem); background: linear-gradient(170deg, var(--cream-50), var(--paper)); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 88% 12%, rgba(176,122,63,0.10), transparent 45%); }
.page-hero .wrap { position: relative; max-width: 760px; }
.page-hero h1 { margin: 1rem 0; }
.page-hero p { font-size: 1.12rem; color: var(--ink-soft); max-width: 56ch; }
.crumbs { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; }
.crumbs a:hover { color: var(--oak-600); }

/* ---------- Services / filter ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.8rem; justify-content: center; }
.filter-btn { font-family: var(--sans); font-size: 0.86rem; font-weight: 500; padding: 0.55rem 1.25rem; border-radius: 100px; border: 1.5px solid var(--line); background: transparent; color: var(--ink-soft); cursor: pointer; transition: all 0.3s var(--ease); }
.filter-btn:hover { border-color: var(--oak-500); color: var(--oak-600); }
.filter-btn.active { background: var(--forest-800); border-color: var(--forest-800); color: var(--cream-50); }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.svc-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), opacity 0.4s, filter 0.4s; display: flex; flex-direction: column; }
.svc-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.svc-card.hide { display: none; }
.svc-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.svc-card:hover .svc-media img { transform: scale(1.07); }
.svc-tag { position: absolute; top: 1rem; left: 1rem; background: rgba(253,250,243,0.94); color: var(--oak-700); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 0.85rem; border-radius: 100px; }
.svc-body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { color: var(--forest-800); margin-bottom: 0.5rem; }
.svc-body p { font-size: 0.93rem; color: var(--ink-soft); margin-bottom: 1.2rem; flex: 1; }
.svc-price { display: flex; align-items: baseline; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--line-soft); }
.svc-price .from { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.svc-price .amt { font-family: var(--display); font-size: 1.5rem; color: var(--forest-800); }

/* ---------- Pricing table ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.tier { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 2.2rem 2rem; position: relative; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tier.feature { background: linear-gradient(165deg, var(--forest-800), var(--forest-900)); color: var(--cream-50); border-color: transparent; }
.tier.feature h3, .tier.feature .tier-price { color: var(--cream-50); }
.tier-flag { position: absolute; top: -0.85rem; left: 50%; transform: translateX(-50%); background: var(--oak-600); color: var(--cream-50); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 100px; }
.tier h3 { color: var(--forest-800); margin-bottom: 0.4rem; }
.tier-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.3rem; }
.tier.feature .tier-sub { color: var(--honey-200); }
.tier-price { font-family: var(--display); font-size: 2.6rem; color: var(--forest-800); line-height: 1; margin-bottom: 0.3rem; }
.tier-price small { font-size: 0.9rem; color: var(--muted); font-family: var(--sans); }
.tier ul { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.6rem 0; }
.tier li { display: flex; gap: 0.6rem; font-size: 0.93rem; align-items: flex-start; }
.tier li svg { width: 18px; height: 18px; color: var(--oak-500); flex-shrink: 0; margin-top: 3px; }
.tier.feature li svg { color: var(--honey-300); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.form-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--ink); margin-bottom: 0.45rem; }
.field input, .field select, .field textarea { width: 100%; font-family: var(--sans); font-size: 0.95rem; color: var(--ink); padding: 0.85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius); background: var(--cream-50); transition: border-color 0.3s, box-shadow 0.3s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--oak-500); box-shadow: 0 0 0 3px rgba(176,122,63,0.14); }
.field textarea { resize: vertical; min-height: 130px; }
[data-form-note] { font-size: 0.92rem; margin-top: 1rem; padding: 0.9rem 1.1rem; border-radius: var(--radius); display: none; }
[data-form-note].show { display: block; }
[data-form-note].ok { background: rgba(58,84,68,0.10); color: var(--forest-700); border: 1px solid rgba(58,84,68,0.2); }

.info-card { background: linear-gradient(165deg, var(--forest-800), var(--forest-900)); color: var(--cream-50); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.4rem); }
.info-card h3 { color: var(--cream-50); margin-bottom: 1.4rem; }
.info-row { display: flex; gap: 0.9rem; margin-bottom: 1.4rem; }
.info-row svg { width: 22px; height: 22px; color: var(--honey-300); flex-shrink: 0; margin-top: 2px; }
.info-row b { display: block; color: var(--cream-50); font-size: 0.95rem; margin-bottom: 0.15rem; }
.info-row span, .info-row a { font-size: 0.92rem; color: rgba(247,239,225,0.78); }
.info-row a:hover { color: var(--honey-200); }
.hours { border-top: 1px solid rgba(247,239,225,0.14); margin-top: 0.5rem; padding-top: 1.4rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 0.35rem 0; color: rgba(247,239,225,0.82); }
.hours-row span:last-child { color: var(--honey-200); }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); margin-top: 2rem; }
.map-wrap svg { width: 100%; height: auto; display: block; }

/* ---------- Featured / blog ---------- */
.featured-post { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.featured-media { aspect-ratio: 4/3; overflow: hidden; }
.featured-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.featured-post:hover .featured-media img { transform: scale(1.05); }
.featured-body { padding: clamp(1.5rem, 4vw, 2.6rem) clamp(1.5rem, 4vw, 2.6rem) clamp(1.5rem, 4vw, 2.6rem) 0; }
.featured-body .flag { display: inline-block; background: var(--honey-200); color: var(--oak-700); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.85rem; border-radius: 100px; margin-bottom: 1rem; }
.featured-body h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 0.8rem; }
.featured-body h2 a:hover { color: var(--oak-600); }
.featured-body p { color: var(--ink-soft); margin-bottom: 1.4rem; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.blog-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.blog-media { aspect-ratio: 16/10; overflow: hidden; background: linear-gradient(140deg, var(--cream-100), var(--honey-200)); position: relative; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.blog-card:hover .blog-media img { transform: scale(1.06); }
.blog-svg { width: 100%; height: 100%; }
.blog-body { padding: 1.5rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.blog-body h3 { margin-bottom: 0.6rem; line-height: 1.18; }
.blog-body h3 a:hover { color: var(--oak-600); }
.blog-body p { font-size: 0.93rem; color: var(--ink-soft); margin-bottom: 1.1rem; flex: 1; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); transition-delay: 0s; }
.reveal[data-d="1"] { transition-delay: 0.12s; }
.reveal[data-d="2"] { transition-delay: 0.24s; }
.reveal[data-d="3"] { transition-delay: 0.36s; }
.reveal[data-d="4"] { transition-delay: 0.48s; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-media { max-width: 480px; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.flip .split-media { order: 0; }
  .sec-head.split-head { grid-template-columns: 1fr; align-items: start; }
  .craft-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .quotes-grid, .journal-grid, .svc-grid, .pricing, .blog-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-media { aspect-ratio: 16/9; }
  .featured-body { padding: 0 1.8rem 2rem; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open { flex-wrap: wrap; }
  .nav.open .nav-links { display: flex; flex-direction: column; gap: 0; width: 100%; order: 3; padding-top: 1rem; }
  .nav.open .nav-links li { width: 100%; border-top: 1px solid var(--line-soft); }
  .nav.open .nav-links a { display: block; padding: 0.9rem 0; }
  .nav.open .nav-links a::after { display: none; }
  .nav.open .nav-cta { display: flex; flex-direction: column; align-items: stretch; gap: 0.9rem; width: 100%; order: 4; padding-top: 1rem; border-top: 1px solid var(--line-soft); }
  .nav.open .nav-cta .btn { justify-content: center; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stat:nth-child(2)::after { display: none; }
  .craft-grid, .steps, .quotes-grid, .journal-grid, .svc-grid, .pricing, .blog-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 0.6rem; }
  .hero-float { right: 0.4rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
