/* Komorebi Jewelry – concept 01 "Warm editorial" */

:root {
  --cream: #fbf6ec;
  --cream-deep: #f4ead9;
  --sand: #eadcc3;
  --paper: #fffdf8;
  --sage: #e6ecdf;
  --ink: #1f2a24;
  --ink-soft: #4f5a53;
  --green: #2f5d43;
  --green-dark: #234733;
  --gold: #b08d4f;
  --line: rgba(31, 42, 36, .16);

  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Jost", "Avenir Next", "Segoe UI", system-ui, sans-serif;

  --s-1: .25rem; --s-2: .5rem; --s-3: .75rem; --s-4: 1rem; --s-5: 1.5rem;
  --s-6: 2rem; --s-7: 3rem; --s-8: 4rem; --s-9: 6rem; --s-10: 8rem;

  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section: clamp(4.5rem, 10vw, 8.5rem);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, p, ul, dl, dd, figure, blockquote, address { margin: 0; }
ul { padding: 0; list-style: none; }
address { font-style: normal; }
a { color: var(--green); text-underline-offset: .2em; text-decoration-thickness: 1px; }
a:hover { color: var(--green-dark); }

:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }

.sprite { position: absolute; }

.container { width: 100%; max-width: 80rem; margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: var(--s-4); top: -4rem; z-index: 100;
  background: var(--green); color: #fff; padding: var(--s-3) var(--s-5);
  border-radius: 999px; text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: var(--s-4); color: #fff; }

/* ---------- Type ---------- */
h1, h2, h3, .brand-name, blockquote { font-family: var(--serif); font-weight: 400; font-optical-sizing: auto; }

h1 {
  font-size: clamp(2.75rem, 6.4vw, 5.75rem);
  line-height: 1.04;
  letter-spacing: -.02em;
  font-weight: 400;
  font-optical-sizing: none;
  font-variation-settings: "opsz" 48;
}
h2 {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  font-weight: 380;
  text-wrap: balance;
}
h2 em { display: block; font-style: italic; font-weight: 340; color: var(--green); }
h3 { font-size: 1.5rem; line-height: 1.2; letter-spacing: -.01em; }

.eyebrow {
  display: flex; align-items: center; gap: var(--s-3);
  font-size: .8125rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--green); margin-bottom: var(--s-5);
}
.eyebrow--center { justify-content: center; }
.eyebrow .sparkle { width: .8rem; height: .8rem; fill: var(--gold); }

.lead, .section-intro { font-size: clamp(1.0625rem, 1.3vw, 1.1875rem); color: var(--ink-soft); max-width: 34rem; }
.small { font-size: .9375rem; color: var(--ink-soft); }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 3.25rem; padding: 0 1.9rem;
  border-radius: 999px; border: 1px solid var(--green);
  font: 500 .9375rem/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  transition: background-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-small { min-height: 2.75rem; padding: 0 1.4rem; font-size: .8125rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-weight: 500; font-size: .875rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); text-decoration: none;
  padding-block: var(--s-2);
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat;
  transition: background-size .35s var(--ease);
}
.link-arrow svg { width: 1.15rem; height: 1.15rem; transition: transform .35s var(--ease); flex: none; }
.link-arrow:hover { background-size: 100% 1px; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Ornaments ---------- */
.sparkle { width: 1.5rem; height: 1.5rem; fill: currentColor; }
.sparkle-gold { color: var(--gold); }
.sparkle-ink { color: var(--ink); }
.leaf { color: var(--green); opacity: .38; pointer-events: none; }

@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(0); opacity: 1; }
  50% { transform: scale(.72) rotate(18deg); opacity: .55; }
}
@keyframes sway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}
@keyframes tick { to { transform: rotate(360deg); } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background-color .3s;
}
.site-header.is-stuck, html:not(.js) .site-header {
  background: rgba(251, 246, 236, .92);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
@media (max-width: 56rem) { .site-header:has(.site-nav.is-open) { background: var(--cream); } }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-5); min-height: 5rem; flex-wrap: wrap; }

.brand { display: inline-flex; flex-direction: column; color: var(--ink); text-decoration: none; line-height: 1; }
.brand:hover { color: var(--ink); }
.brand-name { font-size: 1.75rem; letter-spacing: -.01em; font-weight: 420; }
.brand-sub { font-size: .625rem; letter-spacing: .32em; text-transform: uppercase; color: var(--ink-soft); margin-top: .35rem; }

.site-nav ul { display: flex; align-items: center; gap: clamp(1rem, 2.6vw, 2.5rem); flex-wrap: wrap; }
.site-nav a:not(.btn) {
  display: inline-block; padding: var(--s-3) 0; color: var(--ink); text-decoration: none; font-size: 1rem;
  background: linear-gradient(var(--green), var(--green)) 0 85% / 0 1px no-repeat;
  transition: background-size .3s var(--ease), color .3s;
}
.site-nav a:not(.btn):hover { color: var(--green); background-size: 100% 1px; }

.nav-toggle { display: none; }

@media (max-width: 56rem) {
  .js .nav-toggle {
    display: inline-flex; align-items: center; gap: var(--s-3);
    min-height: 2.75rem; padding: 0 var(--s-4);
    background: none; border: 1px solid var(--line); border-radius: 999px;
    font: 500 .8125rem/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--ink); cursor: pointer;
  }
  .nav-toggle-bars, .nav-toggle-bars::before {
    display: block; width: 1.1rem; height: 1.5px; background: currentColor; content: "";
    transition: transform .3s var(--ease);
  }
  .nav-toggle-bars { transform: translateY(-3px); }
  .nav-toggle-bars::before { transform: translateY(6px); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars { transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: rotate(-90deg); }

  .site-nav { width: 100%; }
  .js .site-nav { display: none; padding-bottom: var(--s-6); }
  .js .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav li:not(.nav-cta) { border-top: 1px solid var(--line); }
  .site-nav a:not(.btn) { display: block; padding: var(--s-4) 0; font-family: var(--serif); font-size: 1.5rem; }
  .nav-cta { margin-top: var(--s-4); }
  .nav-cta .btn { width: 100%; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(2.5rem, 6vw, 5rem) var(--section);
  background:
    radial-gradient(60rem 36rem at 85% 0%, rgba(234, 220, 195, .75), transparent 70%),
    linear-gradient(180deg, #f8ecd7 0%, var(--cream) 78%);
  margin-top: -5rem; padding-top: calc(5rem + clamp(2.5rem, 6vw, 5rem));
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }

.hero-sparkle { margin-bottom: var(--s-5); animation: twinkle 5s ease-in-out infinite; }
.tagline { font-family: var(--serif); font-style: italic; font-size: clamp(1.25rem, 2vw, 1.5rem); color: var(--green); margin-bottom: var(--s-4); }

.h1-line { display: block; white-space: nowrap; }
.h1-pill {
  display: inline-block; vertical-align: middle;
  width: 1.9em; height: .8em; margin: -.12em .12em 0 0;
  object-fit: cover; border-radius: 999px;
}
.hero .lead { margin-top: var(--s-6); }

.hero-pills { display: flex; gap: var(--s-4); margin-top: var(--s-7); }
.hero-pills li { flex: 0 1 9.5rem; min-width: 0; }
.hero-pills a { display: block; border-radius: 999px; overflow: hidden; aspect-ratio: 3 / 2; }
.hero-pills img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.hero-pills a:hover img { transform: scale(1.06); }

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-5) var(--s-6); margin-top: var(--s-7); }

.hero-visual { position: relative; justify-self: end; width: 100%; max-width: 30rem; }

.arch-frame { position: relative; padding: clamp(.75rem, 1.4vw, 1.25rem); border: 1px solid rgba(31, 42, 36, .45); border-radius: 999px 999px 0 0; }
.arch { border-radius: 999px 999px 0 0; overflow: hidden; aspect-ratio: 4 / 5; background: var(--sand); }
.arch img { width: 100%; height: 100%; object-fit: cover; }
.arch-sparkle {
  position: absolute; top: 0; left: 50%; width: 2rem; height: 2rem; translate: -50% -50%;
  padding: .3rem; box-sizing: content-box;
  background: #f8ecd7; border-radius: 50%;
  animation: twinkle 6s ease-in-out 1s infinite;
}

.hero-note {
  position: absolute; left: -2.5rem; bottom: 2.5rem;
  background: var(--paper); border-radius: 999px; padding: .8rem 1.5rem;
  font-size: .9375rem; line-height: 1.3; color: var(--ink);
  box-shadow: 0 1rem 2.5rem -1rem rgba(31, 42, 36, .25);
}
.hero-note span { display: block; font-size: .6875rem; letter-spacing: .18em; text-transform: uppercase; color: var(--green); font-weight: 500; }

.hero-leaf { position: absolute; right: -3.5rem; bottom: -3rem; width: 9rem; height: 9rem; transform-origin: 10% 90%; animation: sway 9s ease-in-out infinite; }

@media (max-width: 56rem) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { justify-self: center; max-width: 24rem; }
  .hero-note { left: 50%; translate: -50% 0; bottom: -1.25rem; white-space: nowrap; text-align: center; }
  .hero-leaf { right: -1.5rem; width: 6rem; height: 6rem; bottom: -2rem; }
}
@media (max-width: 26rem) {
  .hero-actions .btn { width: 100%; }
}

/* ---------- Sections ---------- */
.section { padding-block: var(--section); }
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.section-head .section-intro { margin-top: var(--s-5); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--split { max-width: none; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: var(--s-6) var(--s-8); align-items: end; }
.section-head--split .section-intro { margin: 0; justify-self: end; }
@media (max-width: 48rem) {
  .section-head--split { grid-template-columns: 1fr; }
  .section-head--split .section-intro { justify-self: start; }
}

/* ---------- Services ---------- */
.services { padding-top: 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(3rem, 5vw, 4.5rem) clamp(2rem, 4vw, 4rem); }
.service { text-align: center; scroll-margin-top: 7rem; }
.service-media {
  width: min(100%, 15rem); aspect-ratio: 1; margin: 0 auto var(--s-6);
  border-radius: 50%; overflow: hidden; background: var(--sand);
  outline: 1px solid rgba(31, 42, 36, .3); outline-offset: .6rem;
}
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.service:hover .service-media img { transform: scale(1.06); }
.service-media--drawn { display: grid; place-items: center; background: var(--sage); color: var(--green); }
.service-media--drawn svg { width: 62%; height: 62%; }
.watch-hand { transform-origin: 60px 60px; animation: tick 60s steps(60) infinite; }

.service h3 { max-width: 18rem; margin-inline: auto; text-wrap: balance; }
.service p { margin: var(--s-3) auto var(--s-3); max-width: 21rem; color: var(--ink-soft); font-size: 1rem; line-height: 1.6; }

@media (max-width: 60rem) { .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 40rem) {
  .service-grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .service { display: grid; grid-template-columns: 6.5rem minmax(0, 1fr); gap: var(--s-5); text-align: left; align-items: start; }
  .service-media { width: 6.5rem; margin: .4rem 0 0; outline-offset: .3rem; }
  .service h3, .service p { margin-inline: 0; max-width: none; }
  .service h3 { font-size: 1.375rem; }
}

.materials {
  margin-top: clamp(3.5rem, 7vw, 6rem); padding: var(--s-6) clamp(1.5rem, 4vw, 3rem);
  border-block: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--s-3) var(--s-7);
}
.materials-title { font-size: 1.375rem; font-style: italic; color: var(--green); }
.materials ul { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-7); color: var(--ink); }
.materials li { position: relative; padding-left: 1.25rem; }
.materials li::before { content: ""; position: absolute; left: 0; top: .72em; width: .4rem; height: .4rem; background: var(--gold); transform: rotate(45deg); }

/* ---------- About ---------- */
.about { padding-bottom: calc(var(--section) * .5); background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 22%, var(--cream-deep) 78%, var(--cream) 100%); }
.about-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(3rem, 8vw, 7.5rem); align-items: center; }
.about-visual { position: relative; max-width: 30rem; width: 100%; padding-bottom: 3rem; }
.about-round {
  position: absolute; right: -2.5rem; bottom: 0; width: 42%; aspect-ratio: 1;
  border-radius: 50%; overflow: hidden; border: .5rem solid var(--cream-deep); background: var(--sand);
}
.about-round img { width: 100%; height: 100%; object-fit: cover; }
.about-sparkle { position: absolute; left: -2.25rem; top: 22%; width: 1.75rem; height: 1.75rem; animation: twinkle 7s ease-in-out infinite; }

.about-copy p:not(.eyebrow) { color: var(--ink-soft); max-width: 36rem; margin-top: var(--s-5); }
.about-copy h2 + p { margin-top: var(--s-6); }

.facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s-5); margin: var(--s-7) 0; padding-top: var(--s-6); border-top: 1px solid var(--line); }
.facts dt { font-family: var(--serif); font-size: clamp(1.75rem, 2.6vw, 2.25rem); line-height: 1; color: var(--green); }
.facts dd { margin-top: var(--s-2); font-size: .9375rem; line-height: 1.4; color: var(--ink-soft); }

@media (max-width: 56rem) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { margin-inline: auto; max-width: 22rem; }
  .about-round { right: -1rem; }
  .about-sparkle { left: -1rem; }
}
@media (max-width: 32rem) { .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-6) var(--s-5); } }

.meaning {
  position: relative; overflow: hidden;
  margin-top: var(--section); padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 8vw, 8rem);
  background: var(--sage); border-radius: clamp(2rem, 6vw, 5rem);
  text-align: center;
}
.meaning-ornament { width: 8.5rem; height: 8.5rem; margin: 0 auto var(--s-4); }
.meaning-ornament svg { width: 100%; height: 100%; }
.meaning blockquote { max-width: 52rem; margin-inline: auto; font-size: clamp(1.625rem, 3.4vw, 2.75rem); line-height: 1.2; letter-spacing: -.015em; font-style: italic; font-weight: 340; text-wrap: balance; }
.meaning blockquote p::before { content: "\201C"; }
.meaning blockquote p::after { content: "\201D"; }
.meaning-text { max-width: 38rem; margin: var(--s-6) auto 0; color: #3f4b44; }
.meaning-leaf { position: absolute; width: clamp(7rem, 16vw, 13rem); height: clamp(7rem, 16vw, 13rem); }
.meaning-leaf--a { left: -2rem; bottom: -2rem; transform-origin: 10% 90%; animation: sway 10s ease-in-out infinite; }
.meaning-leaf--b { right: -2rem; top: -2rem; rotate: 180deg; transform-origin: center; animation: sway 12s ease-in-out -4s infinite; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(1rem, 2.5vw, 2.25rem); align-items: start; }
.gallery-col { display: grid; gap: clamp(2rem, 3.5vw, 3rem); }
.gallery-col--offset { margin-top: clamp(2rem, 6vw, 5rem); }

.shot img { width: 100%; object-fit: cover; background: var(--sand); transition: transform .9s var(--ease); }
.shot { overflow: visible; }
.shot--arch img { aspect-ratio: 4 / 5; border-radius: 999px 999px 0 0; }
.shot--circle img { aspect-ratio: 1; border-radius: 50%; }
.shot--pill { max-width: 30rem; }
.shot--pill img { aspect-ratio: 2 / 1; border-radius: 999px; }
.crop-circle { border-radius: 50%; overflow: hidden; aspect-ratio: 1; }
.crop-circle img { display: block; height: 100%; border-radius: 0; transform: scale(1.22); }
.shot figcaption { margin-top: var(--s-4); text-align: center; font-size: .9375rem; line-height: 1.4; color: var(--ink-soft); }

.gallery-foot { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--s-7); align-items: center; margin-top: clamp(3rem, 6vw, 5rem); }
.gallery-cta p { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2.125rem); line-height: 1.2; margin-bottom: var(--s-4); max-width: 24rem; }

@media (max-width: 56rem) {
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: clamp(2rem, 3.5vw, 3rem); }
  .gallery-col--offset { margin-top: 3rem; }
  .gallery-col:nth-child(n+3) { margin-top: 0; }
  .gallery-col:nth-child(4) { margin-top: 0; }
  .gallery-foot { grid-template-columns: 1fr; gap: var(--s-6); }
}

/* ---------- Reviews ---------- */
.reviews { background: var(--cream-deep); }
.review-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.75rem); }
.review {
  grid-column: span 3; display: flex; flex-direction: column; justify-content: space-between; gap: var(--s-6);
  background: var(--paper); border-radius: 2rem; padding: clamp(1.75rem, 3vw, 2.75rem);
}
.review--feature { grid-column: span 6; border-radius: 3rem; padding: clamp(2rem, 5vw, 4.5rem); text-align: center; align-items: center; }
.review blockquote { font-size: 1.25rem; line-height: 1.45; font-weight: 360; }
.review blockquote strong { font-weight: 400; font-style: italic; color: var(--green); display: block; margin-bottom: var(--s-2); }
.review--feature blockquote { font-size: clamp(1.5rem, 2.8vw, 2.25rem); line-height: 1.28; letter-spacing: -.01em; max-width: 54rem; }
.review--feature::before { content: "\201C"; font-family: var(--serif); font-size: 5rem; line-height: .6; height: 2rem; color: var(--gold); }
.review figcaption { font-size: .8125rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--green); }
.review figcaption::before { content: "— "; }
.reviews-more { margin-top: var(--s-7); text-align: center; }

@media (max-width: 40rem) {
  .review { grid-column: span 6; }
  .review--feature { border-radius: 2rem; text-align: left; align-items: flex-start; }
}

/* ---------- Visit ---------- */
.visit-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.visit-block { padding-block: var(--s-6); border-top: 1px solid var(--line); }
.visit-block:first-child { padding-top: 0; border-top: 0; }
.visit-block h3 { margin-bottom: var(--s-4); }
.visit-block address, .visit-block p { color: var(--ink-soft); }
.visit-block address { color: var(--ink); margin-bottom: var(--s-3); font-size: 1.125rem; }
.visit-block .btn { margin-top: var(--s-5); }
.contact-lines { margin-top: var(--s-3); font-size: 1.125rem; }
.contact-lines a { color: var(--ink); }
.contact-lines a:hover { color: var(--green); }

.hours { width: 100%; max-width: 24rem; border-collapse: collapse; margin-bottom: var(--s-4); font-variant-numeric: tabular-nums; }
.hours th, .hours td { padding: .55rem 0; text-align: left; font-weight: 400; border-bottom: 1px dashed var(--line); }
.hours td { text-align: right; }
.hours .closed th, .hours .closed td { color: var(--ink-soft); border-bottom: 0; }

.visit-map { position: relative; padding-bottom: 4rem; }
.map-frame { border-radius: 2rem 14rem 2rem 2rem; overflow: hidden; background: var(--sand); aspect-ratio: 5 / 5.2; border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: saturate(.85); }
.facade { position: absolute; left: -2.5rem; bottom: 0; width: 46%; border-radius: 999px; overflow: hidden; border: .5rem solid var(--cream); }
.facade img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }

@media (max-width: 56rem) {
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { order: -1; }
  .map-frame { aspect-ratio: 4 / 4.4; border-radius: 1.5rem 8rem 1.5rem 1.5rem; }
  .facade { left: 50%; translate: -50% 0; width: 60%; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--green-dark); color: #e9efe6; padding-top: clamp(3.5rem, 7vw, 6rem); font-size: 1rem; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: #fff; text-decoration-thickness: 2px; }
.site-footer :focus-visible { outline-color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr .8fr; gap: var(--s-7) var(--s-7); padding-bottom: var(--s-8); }
.brand--footer { color: #fff; }
.brand--footer .brand-name { font-size: 2.25rem; }
.brand--footer .brand-sub { color: #d5dfd2; }
.footer-tagline { font-family: var(--serif); font-style: italic; font-size: 1.375rem; color: #e6d3a8; margin: var(--s-5) 0 var(--s-3); }
.footer-brand p:last-child { max-width: 24rem; color: #d5dfd2; }
.footer-title { font: 500 .8125rem/1.2 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: #e6d3a8; margin-bottom: var(--s-4); }
.site-footer address, .site-footer p { line-height: 1.75; }
.social { display: grid; gap: var(--s-2); }
.social a { display: inline-flex; align-items: center; gap: var(--s-3); padding-block: var(--s-1); }
.social svg { width: 1.25rem; height: 1.25rem; fill: currentColor; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-3) var(--s-6); padding-block: var(--s-5); border-top: 1px solid rgba(255, 255, 255, .18); font-size: .9375rem; color: #d5dfd2; }

@media (max-width: 60rem) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 34rem) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Scroll reveal (only when JS is running) ---------- */
.js .reveal { opacity: 0; transform: translateY(1.5rem); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.service-grid .reveal:nth-child(3n+2), .review-grid .reveal:nth-child(2n) { transition-delay: .1s; }
.service-grid .reveal:nth-child(3n) { transition-delay: .2s; }

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

@media print {
  .js .reveal { opacity: 1; transform: none; }
  .site-header { position: static; }
}
