/* ---------------------------------------------------------------
   LOV. by Jack Lovelle — design tokens
   Sacred geometry: 3-6-9 woven through spacing, sizing, timing
   --------------------------------------------------------------- */
:root {
  /* Brand colors */
  --ink: #1f2a33;
  --ink-soft: #2a3741;
  --moss: #3a6b5e;
  --moss-deep: #2c5249;
  --paper: #f4f1ec;
  --paper-deep: #ece7df;
  --paper-warm: #e6e1d6;
  --stone: #8a9099;
  --stone-soft: #b5b8bc;
  --line: rgba(31, 42, 51, 0.09);
  --line-soft: rgba(31, 42, 51, 0.06);

  /* Typography */
  --font-display: 'Newsreader', 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'DM Mono', 'SF Mono', monospace;
  --font-hand: 'Caveat', cursive;

  /* Spacing scale — multiples of 3, 6, 9, 27, 108 */
  --s-3: 3px;
  --s-6: 6px;
  --s-9: 9px;
  --s-12: 12px;
  --s-18: 18px;
  --s-27: 27px;
  --s-36: 36px;
  --s-54: 54px;
  --s-72: 72px;
  --s-108: 108px;
  --s-144: 144px;
  --s-216: 216px;

  /* Container — 1296 = 144 × 9 */
  --container: 1296px;

  /* Animation timings — 369ms / 690ms / 990ms (3·6·9 lineage) */
  --t-369: 369ms;
  --t-690: 690ms;
  --t-990: 990ms;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a {
  color: var(--ink);
  text-decoration: none;
  transition: color var(--t-369) ease;
}

a:hover { color: var(--moss); }

::selection { background: var(--moss); color: var(--paper); }

/* Section numbering — magazine-style */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

.script {
  font-family: var(--font-hand);
  font-style: normal;
}

/* ---------------------------------------------------------------
   Top navigation
   --------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--s-18) var(--s-36);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(244, 241, 236, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-369) ease;
}

.nav.scrolled {
  border-bottom-color: var(--line);
}

.nav-mark {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.nav-mark .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--moss);
  display: inline-block;
  margin-left: 2px;
  margin-bottom: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-36);
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav-link:hover { color: var(--moss); }

.lang-toggle {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  gap: 6px;
  align-items: center;
}

.lang-toggle button {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  padding: 3px 6px;
  transition: color var(--t-369) ease;
}

.lang-toggle button.active {
  color: var(--ink);
  font-weight: 500;
}

.lang-toggle .sep { color: var(--stone-soft); }

.nav-mobile-toggle { display: none; }

/* ---------------------------------------------------------------
   Layout primitives
   --------------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-36);
}

.section {
  padding: var(--s-144) 0;
  position: relative;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 6fr;
  gap: var(--s-72);
  margin-bottom: var(--s-72);
  align-items: baseline;
}

.section-head .num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--stone);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.8vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-head h2 em {
  font-style: italic;
  color: var(--moss);
}

/* ---------------------------------------------------------------
   HERO
   --------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  padding: 144px var(--s-36) var(--s-72);
  display: flex;
  align-items: center;
  position: relative;
  background: var(--paper);
}

.hero-grid {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: var(--s-36);
  align-items: end;
}

.hero-mark {
  grid-column: 1 / span 9;
  margin-bottom: var(--s-54);
}

.hero-mark-text {
  font-family: var(--font-display);
  font-size: clamp(108px, 22vw, 288px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
}

.hero-mark-text .dot {
  width: clamp(18px, 3vw, 36px);
  height: clamp(18px, 3vw, 36px);
  border-radius: 50%;
  background: var(--moss);
  display: inline-block;
  margin-left: clamp(6px, 1vw, 12px);
  margin-bottom: clamp(12px, 2vw, 24px);
}

.hero-byline {
  font-family: var(--font-hand);
  font-size: clamp(24px, 2.6vw, 36px);
  color: var(--moss-deep);
  margin-top: var(--s-9);
  font-weight: 400;
}

.hero-byline .by-label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-right: var(--s-9);
  vertical-align: middle;
}

.hero-tagline {
  grid-column: 1 / span 6;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.8vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--s-27);
}

.hero-tagline em {
  font-style: italic;
  color: var(--moss);
}

.hero-sub {
  grid-column: 1 / span 5;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: var(--s-36);
  max-width: 480px;
}

.hero-cta {
  grid-column: 1 / span 6;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-18);
  align-items: center;
}

.hero-meta {
  grid-column: 7 / span 3;
  align-self: end;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  line-height: 1.8;
}

.hero-meta span { display: block; }
.hero-meta .moss-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--moss);
  margin: 0 6px;
  vertical-align: middle;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 18px 27px;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--t-369) ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--moss-deep);
  color: var(--paper);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn .arrow {
  transition: transform var(--t-369) ease;
  font-size: 18px;
  line-height: 1;
}

.btn:hover .arrow { transform: translateX(3px); }

/* Hero corner ornament — subtle alpine reference */
.hero-corner {
  position: absolute;
  top: 144px;
  right: var(--s-36);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  text-align: right;
  line-height: 1.8;
  opacity: 0.7;
}

.hero-corner::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--stone);
  margin-left: auto;
  margin-bottom: 9px;
}

/* ---------------------------------------------------------------
   PILLARS — 3 (sacred number)
   --------------------------------------------------------------- */
.pillars {
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.pillar {
  padding: var(--s-54) var(--s-36);
  border-right: 1px solid var(--line);
  position: relative;
  transition: background var(--t-369) ease;
}

.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--paper); }

.pillar-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--stone);
  margin-bottom: var(--s-27);
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--s-18);
  line-height: 1;
  display: flex;
  align-items: baseline;
}

.pillar-title::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--moss);
  margin-left: 6px;
  display: inline-block;
  flex-shrink: 0;
}

.pillar-text {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: var(--s-27);
}

.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  line-height: 2.2;
}

.pillar-list li::before {
  content: "—";
  margin-right: 9px;
  color: var(--moss);
}

/* ---------------------------------------------------------------
   ABOUT
   --------------------------------------------------------------- */
.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: var(--s-108);
  align-items: start;
}

.about-text p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: var(--s-27);
  max-width: 60ch;
}

.about-text p:first-of-type {
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--ink);
}

.about-text p:first-of-type em {
  font-style: italic;
  color: var(--moss);
}

.about-pull {
  font-family: var(--font-hand);
  font-size: 54px;
  line-height: 1.1;
  color: var(--moss-deep);
  margin: var(--s-54) 0;
  font-weight: 500;
  position: relative;
  padding-left: var(--s-27);
  border-left: 2px solid var(--moss);
}

.about-side {
  position: sticky;
  top: 144px;
}

.about-card {
  background: var(--paper-deep);
  padding: var(--s-36);
  border-radius: 6px;
  margin-bottom: var(--s-27);
}

.about-card h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: var(--s-18);
  font-weight: 400;
}

.about-card ul {
  list-style: none;
  padding: 0;
}

.about-card li {
  font-size: 15px;
  color: var(--ink);
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 9px;
}

.about-card li:last-child { border-bottom: none; }

.about-card li .dot-sm {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--moss);
  flex-shrink: 0;
}

.about-card-tools {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  line-height: 2;
}

.about-card-tools .sep {
  color: var(--moss);
  margin: 0 6px;
}

/* Portrait card */
.about-card.about-portrait {
  padding: 0;
  overflow: hidden;
  background: var(--ink);
}

.portrait-img {
  width: 100%;
  display: block;
  filter: contrast(1.02);
}

.portrait-caption {
  padding: var(--s-18) var(--s-27) var(--s-27);
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: var(--ink);
  color: var(--paper);
}

.portrait-caption .script {
  font-family: var(--font-hand);
  font-size: 28px;
  line-height: 1;
  color: var(--paper);
}

.portrait-caption .loc {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.55);
  margin-top: 6px;
}

/* ---------------------------------------------------------------
   SERVICES — detailed list of 9
   --------------------------------------------------------------- */
.services {
  background: var(--ink);
  color: var(--paper);
}

.services .section-head h2,
.services .section-head .num {
  color: var(--paper);
}

.services .section-head h2 em { color: #6fb09e; }

.services-list {
  display: grid;
  grid-template-columns: 1fr;
}

.service-row {
  display: grid;
  grid-template-columns: 60px 3fr 6fr 1fr;
  gap: var(--s-36);
  padding: var(--s-36) 0;
  border-top: 1px solid rgba(244, 241, 236, 0.12);
  align-items: baseline;
  transition: padding var(--t-369) ease;
}

.service-row:last-child { border-bottom: 1px solid rgba(244, 241, 236, 0.12); }

.service-row:hover {
  padding-left: var(--s-12);
}

.service-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--stone-soft);
  opacity: 0.6;
}

.service-title {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--paper);
}

.service-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244, 241, 236, 0.65);
  max-width: 54ch;
}

.service-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6fb09e;
  text-align: right;
}

/* ---------------------------------------------------------------
   WHY LOV — 6 differentiators
   --------------------------------------------------------------- */
.why {
  background: var(--paper);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.why-item {
  padding: var(--s-36);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  min-height: 216px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background var(--t-369) ease;
}

.why-item:hover { background: var(--paper-deep); }

.why-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  font-style: italic;
  color: var(--moss);
  line-height: 1;
  margin-bottom: var(--s-27);
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: var(--s-9);
}

.why-item p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ---------------------------------------------------------------
   FAQ
   --------------------------------------------------------------- */
.faq { background: var(--paper-deep); }

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: var(--s-27) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color var(--t-369) ease;
}

.faq-q:hover { color: var(--moss); }

.faq-q::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 300;
  color: var(--moss);
  transition: transform var(--t-369) ease;
  margin-left: var(--s-18);
  display: inline-block;
  line-height: 1;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-690) ease, padding var(--t-690) ease;
}

.faq-item.open .faq-a {
  max-height: 600px;
  padding-bottom: var(--s-27);
}

.faq-a p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 70ch;
}

/* ---------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------- */
.contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: var(--s-108);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: var(--s-18);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

.field input,
.field textarea,
.field select {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  outline: none;
  border-radius: 0;
  transition: border-color var(--t-369) ease;
}

.field textarea {
  resize: vertical;
  min-height: 108px;
  border: 1px solid var(--ink);
  padding: 12px;
}

.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--moss); }

.contact-aside h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: var(--s-12);
  font-weight: 400;
}

.contact-aside .info-block {
  margin-bottom: var(--s-36);
}

.contact-aside .info-line {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 3px;
}

.contact-aside .info-line a:hover { color: var(--moss); }

.contact-aside .info-sub {
  font-size: 14px;
  color: var(--stone);
}

.contact-cal {
  background: var(--ink);
  color: var(--paper);
  padding: var(--s-27);
  border-radius: 6px;
}

.contact-cal h5 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 6px;
}

.contact-cal p {
  font-size: 14px;
  color: rgba(244, 241, 236, 0.7);
  margin-bottom: var(--s-18);
}

.contact-cal .btn {
  background: var(--paper);
  color: var(--ink);
  width: 100%;
  justify-content: center;
}

.contact-cal .btn:hover {
  background: var(--moss);
  color: var(--paper);
}

/* ---------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: var(--s-72) 0 var(--s-36);
}

.footer-grid {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr 2fr;
  gap: var(--s-36);
  margin-bottom: var(--s-72);
}

.footer-mark {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: baseline;
}

.footer-mark .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--moss);
  margin-left: 4px;
  margin-bottom: 6px;
}

.footer-mark + .script {
  font-family: var(--font-hand);
  font-size: 22px;
  color: rgba(244, 241, 236, 0.7);
  margin-top: 6px;
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.55);
  margin-bottom: var(--s-18);
  font-weight: 400;
}

.footer-col ul { list-style: none; padding: 0; }

.footer-col li {
  font-size: 14px;
  line-height: 2;
}

.footer-col a {
  color: rgba(244, 241, 236, 0.85);
}

.footer-col a:hover { color: var(--moss); }

.footer-col a:hover { color: #6fb09e; }

.footer-bottom {
  border-top: 1px solid rgba(244, 241, 236, 0.12);
  padding-top: var(--s-27);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.09em;
  color: rgba(244, 241, 236, 0.5);
  text-transform: uppercase;
}

.footer-bottom .made {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-bottom .made .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--moss);
}

/* ---------------------------------------------------------------
   Animations
   --------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--t-990) ease, transform var(--t-990) ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------------
   Responsive — mobile-first below 900px
   --------------------------------------------------------------- */
@media (max-width: 900px) {
  body { font-size: 16px; }
  .container { padding: 0 var(--s-18); }
  .nav { padding: var(--s-12) var(--s-18); }
  .nav-links { gap: var(--s-18); }
  .nav-link { display: none; }
  .lang-toggle { font-size: 11px; }

  .section { padding: var(--s-72) 0; }

  .hero { padding: 108px var(--s-18) var(--s-54); min-height: auto; }
  .hero-corner { display: none; }
  .hero-mark-text { font-size: 96px; }
  .hero-tagline { grid-column: 1 / -1; font-size: 36px; }
  .hero-sub { grid-column: 1 / -1; font-size: 16px; }
  .hero-cta { grid-column: 1 / -1; flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .hero-meta { grid-column: 1 / -1; text-align: left; margin-top: var(--s-36); }

  .section-head { grid-template-columns: 1fr; gap: var(--s-12); }
  .section-head h2 { font-size: 32px; }

  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--line); padding: var(--s-36) var(--s-18); }
  .pillar:last-child { border-bottom: none; }

  .about-grid { grid-template-columns: 1fr; gap: var(--s-36); }
  .about-side { position: static; }
  .about-pull { font-size: 36px; margin: var(--s-27) 0; }

  .service-row { grid-template-columns: 36px 1fr; gap: var(--s-12); padding: var(--s-18) 0; }
  .service-desc, .service-tag { display: none; }
  .service-title { font-size: 20px; }

  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-item { padding: var(--s-18); min-height: 162px; }
  .why-num { font-size: 27px; margin-bottom: var(--s-12); }
  .why-item h3 { font-size: 18px; }

  .faq-q { font-size: 17px; padding: var(--s-18) 0; }

  .contact-grid { grid-template-columns: 1fr; gap: var(--s-36); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-27); }
  .footer-mark { grid-column: 1 / -1; font-size: 36px; }
  .footer-bottom { flex-direction: column; gap: var(--s-12); align-items: flex-start; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Print — for tax-form-sharing-via-PDF aesthetic */
@media print {
  .nav, .hero-cta, .contact-form, .contact-cal { display: none; }
}

/* ---------------------------------------------------------------
   Legal pages (legal.html, privacy.html)
   --------------------------------------------------------------- */
.legal-page { background: var(--paper); }

.legal-main {
  padding: 144px 0 var(--s-108);
}

.legal-head {
  display: grid;
  grid-template-columns: 1fr 6fr;
  gap: var(--s-72);
  margin-bottom: var(--s-72);
  align-items: baseline;
}

.legal-head .num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--stone);
}

.legal-head h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.legal-content {
  max-width: 720px;
  margin-left: calc((100% / 7) + var(--s-72));
}

.legal-content .intro {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: var(--s-54);
  padding-bottom: var(--s-36);
  border-bottom: 1px solid var(--line);
}

.legal-content section {
  margin-bottom: var(--s-54);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: var(--s-18);
  letter-spacing: -0.01em;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: var(--s-12);
}

.legal-content p strong { color: var(--ink); font-weight: 500; }

.legal-content a {
  color: var(--moss-deep);
  border-bottom: 1px solid currentColor;
}

.legal-content a:hover { color: var(--ink); }

.legal-back {
  margin-top: var(--s-72);
  padding-top: var(--s-36);
  border-top: 1px solid var(--line);
}

.legal-back a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--moss);
  border: none;
}

.legal-back a:hover { color: var(--ink); }

.legal-page .footer { padding: var(--s-36) 0; }
.legal-page .footer .footer-grid { display: none; }

@media (max-width: 900px) {
  .legal-main { padding: 108px 0 var(--s-54); }
  .legal-head { grid-template-columns: 1fr; gap: var(--s-12); margin-bottom: var(--s-36); }
  .legal-head h1 { font-size: 48px; }
  .legal-content { margin-left: 0; }
  .legal-content .intro { font-size: 18px; }
  .legal-content h2 { font-size: 22px; }
}
