/* Komorebi — sunlight through leaves
   ------------------------------------------------------------------ */

:root {
  /* colour */
  --paper: #f7f4ec;
  --paper-deep: #efeade;
  --paper-light: #fcfaf5;
  --ink: #222b26;
  --ink-soft: #4f5a53;
  --green: #2f5d43;
  --green-mid: #4a7c59;
  --sage: #6b8f71;
  --sage-pale: #dfe6d9;
  --gold: #b08d4f;
  --gold-text: #7d6128;
  --rule: rgba(34, 43, 38, .16);

  /* type */
  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Jost", "Avenir Next", "Segoe UI", system-ui, sans-serif;

  --t-display: clamp(3.1rem, 1.6rem + 6.4vw, 7rem);
  --t-h2: clamp(2.1rem, 1.4rem + 2.6vw, 3.6rem);
  --t-h3: clamp(1.45rem, 1.3rem + .5vw, 1.75rem);
  --t-lead: clamp(1.125rem, 1.05rem + .35vw, 1.3rem);
  --t-body: 1.0625rem;
  --t-small: .9375rem;
  --t-micro: .8125rem;

  /* space (8pt-based scale) */
  --s-1: .5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4rem;
  --s-7: 6rem;
  --s-8: clamp(5rem, 3rem + 8vw, 10rem);

  --gutter: clamp(1.25rem, .5rem + 3.5vw, 4rem);
  --max: 82rem;
  --header-h: 4.75rem;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--t-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
.defs { position: absolute; }

h1, h2, h3, p, ul, ol, dl, dd, figure, blockquote, address, table { margin: 0; padding: 0; }
ul, ol { list-style: none; }
address { font-style: normal; }

h2, h3, .display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.01em;
  text-wrap: balance;
}
h2, h3, blockquote, .timeline dt, .num { font-variant-numeric: lining-nums; }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); line-height: 1.15; }

a { color: var(--green); text-underline-offset: .22em; text-decoration-thickness: 1px; }
a:hover { color: var(--ink); }

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

::selection { background: var(--sage-pale); color: var(--ink); }

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

.skip {
  position: absolute;
  left: var(--s-2);
  top: -4rem;
  z-index: 100;
  padding: .75rem 1.25rem;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: top .2s;
}
.skip:focus { top: var(--s-2); color: #fff; }

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green);
  line-height: 1.4;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1px;
  margin-right: .9rem;
  vertical-align: middle;
  background: var(--gold);
}

@media (max-width: 24em) {
  .eyebrow { letter-spacing: .14em; }
  .eyebrow::before { width: 1.25rem; margin-right: .6rem; }
}

.lead { font-size: var(--t-lead); line-height: 1.65; color: var(--ink-soft); }

/* buttons & links ---------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: .85rem 1.9rem;
  border: 1px solid var(--green);
  border-radius: 2px;
  background: var(--green);
  color: #fff;
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.4;
  text-align: center;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn:hover { background: #244a35; border-color: #244a35; color: #fff; }
.btn-ghost { background: transparent; color: var(--green); }
.btn-ghost:hover { background: var(--green); color: #fff; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding-block: .4rem;
  color: var(--ink);
  font-size: var(--t-small);
  font-weight: 400;
  letter-spacing: .04em;
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.link-arrow svg { flex: none; color: var(--green); transition: transform .4s var(--ease); }
.link-arrow:hover { border-color: var(--green); color: var(--green); }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow.small { font-size: var(--t-small); }

.actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-3) var(--s-4); }

/* header ------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 236, .9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.site-header.is-stuck { border-bottom-color: var(--rule); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  min-height: var(--header-h);
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1;
}
.brand-sub {
  margin-top: .3rem;
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.site-nav ul { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.25rem); }
.site-nav a {
  display: inline-block;
  padding: .5rem 0;
  color: var(--ink);
  font-size: var(--t-small);
  font-weight: 400;
  letter-spacing: .03em;
  text-decoration: none;
  background: linear-gradient(var(--green), var(--green)) no-repeat 0 100% / 0 1px;
  transition: background-size .4s var(--ease), color .3s;
}
.site-nav a:hover { color: var(--green); background-size: 100% 1px; }
.site-nav .nav-cta {
  padding: .6rem 1.25rem;
  border: 1px solid var(--green);
  border-radius: 2px;
  color: var(--green);
  background: none;
  transition: background-color .3s, color .3s;
}
.site-nav .nav-cta:hover { background: var(--green); color: #fff; }

.nav-toggle { display: none; }

@media (max-width: 61.99em) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    min-height: 2.75rem;
    padding: .5rem 0 .5rem .75rem;
    border: 0;
    background: none;
    color: var(--ink);
    font: 400 var(--t-small)/1 var(--sans);
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
  }
  html:not(.js) .nav-toggle { display: none; }
  .nav-toggle-icon { position: relative; width: 1.5rem; height: .625rem; }
  .nav-toggle-icon span {
    position: absolute; left: 0; width: 100%; height: 1px; background: currentColor;
    transition: transform .35s var(--ease), top .35s var(--ease);
  }
  .nav-toggle-icon span:first-child { top: 0; }
  .nav-toggle-icon span:last-child { top: 100%; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-icon span:first-child { top: 50%; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-icon span:last-child { top: 50%; transform: rotate(-45deg); }

  .site-nav { flex-basis: 100%; padding-bottom: var(--s-3); }
  .js .site-nav { display: none; }
  .js .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav li { border-top: 1px solid var(--rule); }
  .site-nav a { display: block; padding: .95rem 0; font-size: 1.0625rem; background: none; }
  .site-nav li:last-child { border-top: 0; padding-top: var(--s-2); }
  .site-nav .nav-cta { text-align: center; padding: .9rem 1rem; }
}

/* komorebi light motif ---------------------------------------------- */

.light {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.shade {
  position: absolute;
  color: var(--green);
  opacity: .075;
  filter: blur(7px);
  transform-origin: 0 0;
  will-change: transform;
}
.sun {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 236, 190, .85), rgba(255, 240, 205, .35) 55%, rgba(255, 240, 205, 0));
  will-change: transform, opacity;
}

.shade-a { width: min(62rem, 95vw); top: -7rem; left: -6rem; animation: sway-a 26s ease-in-out infinite alternate; }
.shade-b { width: min(44rem, 80vw); right: -12rem; bottom: -12rem; opacity: .05; filter: blur(12px); transform: rotate(168deg); transform-origin: 50% 50%; animation: sway-b 34s ease-in-out infinite alternate; }
.sun-a { width: 34rem; height: 34rem; top: -8rem; left: 22%; animation: drift 30s ease-in-out infinite alternate; }
.sun-b { width: 22rem; height: 22rem; bottom: -4rem; left: -6rem; animation: drift 38s ease-in-out -12s infinite alternate-reverse; }

.shade-c { width: min(58rem, 110vw); top: -6rem; right: -10rem; transform: scaleX(-1); transform-origin: 50% 50%; opacity: .07; animation: sway-c 30s ease-in-out infinite alternate; }
.shade-d { width: min(36rem, 80vw); bottom: -10rem; left: -8rem; opacity: .045; filter: blur(14px); transform: rotate(-150deg); transform-origin: 50% 50%; animation: sway-d 40s ease-in-out infinite alternate; }
.sun-c { width: 38rem; height: 38rem; top: 10%; left: 38%; animation: drift 36s ease-in-out infinite alternate; }

@keyframes sway-a {
  from { transform: rotate(-1.5deg) translate3d(0, 0, 0); }
  to   { transform: rotate(2.5deg) translate3d(1.5rem, .75rem, 0); }
}
@keyframes sway-b {
  from { transform: rotate(168deg) translate3d(0, 0, 0); }
  to   { transform: rotate(172deg) translate3d(-1.25rem, 1rem, 0); }
}
@keyframes sway-c {
  from { transform: scaleX(-1) rotate(-2deg) translate3d(0, 0, 0); }
  to   { transform: scaleX(-1) rotate(2deg) translate3d(1.5rem, 1rem, 0); }
}
@keyframes sway-d {
  from { transform: rotate(-150deg) translate3d(0, 0, 0); }
  to   { transform: rotate(-146deg) translate3d(1rem, -1rem, 0); }
}
@keyframes drift {
  from { transform: translate3d(-2rem, 0, 0) scale(1); opacity: .7; }
  to   { transform: translate3d(3rem, 2rem, 0) scale(1.12); opacity: 1; }
}

.glint { position: absolute; color: var(--gold); fill: currentColor; animation: twinkle 7s ease-in-out infinite; }
.glint-b { animation-delay: -3.5s; }
@keyframes twinkle {
  0%, 100% { opacity: .25; transform: scale(.8) rotate(0deg); }
  50%      { opacity: 1;   transform: scale(1) rotate(12deg); }
}

.sprig { color: var(--sage); }
.js .draw path { stroke-dasharray: 1; stroke-dashoffset: 1; }

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

.section { position: relative; padding-block: var(--s-8); }
.section > .wrap { position: relative; z-index: 1; }

.section-head { max-width: 46rem; margin-bottom: var(--s-7); }
.section-head h2 { margin-top: var(--s-3); }
.section-intro { margin-top: var(--s-3); max-width: 38rem; color: var(--ink-soft); font-size: var(--t-lead); line-height: 1.65; }

.section-head-split { max-width: none; display: grid; gap: var(--s-3) var(--s-6); }
.section-head-split .section-intro { margin-top: 0; }
@media (min-width: 56em) {
  .section-head-split { grid-template-columns: 1fr 1fr; align-items: end; }
}

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

.hero { position: relative; padding-block: clamp(2.5rem, 5vw, 5rem) var(--s-7); }
.hero-grid { position: relative; z-index: 1; display: grid; gap: var(--s-6); }

.hero h1 { font-weight: 400; }
.hero .display {
  display: block;
  margin-top: var(--s-4);
  font-size: var(--t-display);
  line-height: .98;
  letter-spacing: -.02em;
}
.hero .display em { font-style: italic; color: var(--green); }
.hero .lead { margin-top: var(--s-4); max-width: 34rem; }
.hero .actions { margin-top: var(--s-5); }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem var(--s-4);
  margin-top: var(--s-6);
  padding-top: var(--s-3);
  border-top: 1px solid var(--rule);
  max-width: 40rem;
  font-size: var(--t-small);
  color: var(--ink-soft);
}
.hero-facts li { position: relative; padding-left: 1.1rem; }
.hero-facts li::before {
  content: ""; position: absolute; left: 0; top: .72em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}

.hero-visual { position: relative; width: min(100%, 26rem); margin-inline: auto; }
.arch {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px 3px 3px;
  overflow: hidden;
  background: var(--paper-deep);
}
.arch img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -1rem -1rem 1rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 999px 999px 3px 3px;
  opacity: .7;
}
.hero-inset {
  position: absolute;
  left: -1.25rem;
  bottom: -2rem;
  width: 38%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--paper);
  background: var(--paper-deep);
}
.hero-inset img { width: 100%; height: 100%; object-fit: cover; }
.glint-a { top: 4%; left: -1.5rem; }
.glint-b { top: 15%; left: .25rem; }

@media (min-width: 62em) {
  .hero-grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: center;
    gap: var(--s-7);
    min-height: min(calc(100svh - var(--header-h) - 8rem), 46rem);
  }
  .hero-visual { width: 100%; max-width: 30rem; margin-inline: auto 1rem; }
  .hero-inset { left: -3.5rem; bottom: -2.5rem; }
}

/* services ----------------------------------------------------------- */

.services { background: var(--paper-light); }

.service-grid { display: grid; gap: var(--s-5); counter-reset: none; }

.service { display: grid; grid-template-columns: 6.5rem minmax(0, 1fr); gap: var(--s-3); align-items: start; }
.service-img {
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px 3px 3px;
  overflow: hidden;
  background: var(--paper-deep);
}
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.service:hover .service-img img { transform: scale(1.04); }

.service-body { display: flex; flex-direction: column; align-items: flex-start; }
.num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--gold-text);
  line-height: 1;
}
.service h3 { margin-top: .5rem; }
.service p { margin-top: .75rem; color: var(--ink-soft); font-size: var(--t-body); line-height: 1.65; }
.service .link-arrow { margin-top: var(--s-2); }

@media (min-width: 40em) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-6) var(--s-5); }
  .service { grid-template-columns: 1fr; gap: var(--s-3); }
  .service-img { width: 100%; max-width: 20rem; }
  .service:nth-child(even) { margin-top: var(--s-6); }
}
@media (min-width: 64em) {
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-7) clamp(2.5rem, 5vw, 5.5rem); }
  .service:nth-child(even) { margin-top: 0; }
  .service:nth-child(3n + 2) { margin-top: var(--s-7); }
  .service:nth-child(3n) { margin-top: var(--s-5); }
  .service-img { max-width: none; width: 82%; }
}

/* meaning ------------------------------------------------------------ */

.meaning { background: var(--paper-deep); overflow: hidden; }
.meaning-grid { display: grid; gap: var(--s-6); position: relative; }
.meaning-photo { max-width: 30rem; }
.meaning-photo { overflow: hidden; border-radius: 3px; aspect-ratio: 1; }
.meaning-photo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.14); }
.meaning-copy { max-width: 33rem; }
.kanji {
  margin-top: var(--s-4);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif CJK JP", "Noto Serif JP", serif;
  font-size: 1.5rem;
  letter-spacing: .4em;
  color: var(--gold-text);
  line-height: 1;
}
.meaning h2 { margin-top: var(--s-3); }
.meaning-copy > p:not(.eyebrow):not(.kanji) { margin-top: var(--s-3); color: var(--ink-soft); }
.meaning blockquote {
  margin-top: var(--s-4);
  padding-left: var(--s-3);
  border-left: 1px solid var(--gold);
}
.meaning blockquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.35rem, 1.2rem + .6vw, 1.7rem);
  line-height: 1.4;
  color: var(--ink);
}
.meaning blockquote footer {
  margin-top: var(--s-2);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.sprig-meaning { position: absolute; right: -1rem; bottom: -4rem; width: 6rem; height: 10rem; display: none; }

@media (min-width: 58em) {
  .meaning-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(3rem, 7vw, 7rem); align-items: center; }
  .meaning-photo { margin-top: var(--s-6); }
}
@media (min-width: 80em) { .sprig-meaning { display: block; } }

/* about -------------------------------------------------------------- */

.about-grid { display: grid; gap: var(--s-6); }
.about-photos { position: relative; padding-bottom: var(--s-5); padding-right: 14%; }
.about-main { aspect-ratio: 4 / 5; overflow: hidden; border-radius: 3px; background: var(--paper-deep); }
.about-main img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.about-side {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 3px;
  border: 6px solid var(--paper);
  background: var(--paper-deep);
}
.about-side img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 30%; }

.about-copy h2 { margin-top: var(--s-3); }
.about-copy .lead { margin-top: var(--s-3); color: var(--ink); }
.about-copy > p:not(.eyebrow):not(.lead) { margin-top: var(--s-3); color: var(--ink-soft); }
.about-copy .actions { margin-top: var(--s-5); }

.timeline { margin-top: var(--s-4); border-top: 1px solid var(--rule); }
.timeline div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: var(--s-2);
  padding-block: .8rem;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.timeline dt { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--gold-text); line-height: 1.2; }
.timeline dd { font-size: var(--t-small); }

@media (min-width: 58em) {
  .about-grid { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(3rem, 7vw, 7rem); align-items: center; }
  .about-photos { order: 2; }
}

/* gallery ------------------------------------------------------------ */

.work { background: var(--paper-light); }
.gallery { columns: 2; column-gap: var(--s-2); }
.gallery figure { break-inside: avoid; margin-bottom: var(--s-3); }
.gallery img { width: 100%; border-radius: 3px; background: var(--paper-deep); }
.gallery figcaption {
  margin-top: .6rem;
  font-size: var(--t-micro);
  letter-spacing: .03em;
  color: var(--ink-soft);
  line-height: 1.45;
}
.gallery .crop { display: block; overflow: hidden; border-radius: 3px; aspect-ratio: 1; }
.gallery .crop img { height: 100%; object-fit: cover; transform: scale(1.13); }
.work-more { margin-top: var(--s-5); }

@media (min-width: 48em) {
  .gallery { columns: 3; column-gap: var(--s-4); }
  .gallery figure { margin-bottom: var(--s-5); }
  .gallery figcaption { font-size: var(--t-small); }
}
@media (min-width: 72em) {
  .gallery { columns: 4; }
}

/* reviews ------------------------------------------------------------ */

.reviews-grid { display: grid; gap: var(--s-6); }
.reviews-head .sprig { margin-bottom: var(--s-3); }
.reviews-head h2 { margin-top: var(--s-3); }
.reviews-head p:not(.eyebrow) { margin-top: var(--s-3); color: var(--ink-soft); max-width: 26rem; }
.reviews-head .link-arrow { margin-top: var(--s-3); }

.quotes { display: grid; gap: var(--s-4) var(--s-5); }
.quote { padding-top: var(--s-3); border-top: 1px solid var(--rule); }
.quote blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.2rem + .4vw, 1.5rem);
  line-height: 1.45;
}
.quote figcaption {
  margin-top: var(--s-2);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
}
.quote figcaption::before { content: "— "; color: var(--gold); }
.quote-lead { border-top-color: var(--gold); }
.quote-lead blockquote p {
  font-style: italic;
  font-size: clamp(1.6rem, 1.3rem + 1.5vw, 2.5rem);
  line-height: 1.3;
}

@media (min-width: 44em) {
  .quotes { grid-template-columns: 1fr 1fr; }
  .quote-lead { grid-column: 1 / -1; padding-bottom: var(--s-3); }
}
@media (min-width: 64em) {
  .reviews-grid { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(3rem, 7vw, 7rem); }
  .reviews-head { position: sticky; top: calc(var(--header-h) + 2rem); align-self: start; }
}

/* visit -------------------------------------------------------------- */

.visit { background: var(--paper-deep); }
.visit-grid { display: grid; gap: var(--s-6); }

.info-block + .info-block { margin-top: var(--s-5); padding-top: var(--s-5); border-top: 1px solid var(--rule); }
.info-block h3 { margin-bottom: var(--s-2); }
.info-block address { font-size: var(--t-lead); line-height: 1.6; }
.info-block .btn { margin-top: var(--s-3); }
.info-block p { color: var(--ink-soft); }
.mail {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.2rem + .8vw, 1.8rem);
  color: var(--green);
  overflow-wrap: anywhere;
}

.hours { width: 100%; border-collapse: collapse; font-size: var(--t-body); }
.hours th, .hours td { padding: .7rem 0; border-bottom: 1px solid var(--rule); text-align: left; font-weight: 300; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.hours tr.is-today th, .hours tr.is-today td { font-weight: 500; color: var(--green); }
.hours tr.is-today th::after {
  content: "vandaag";
  margin-left: .75rem;
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-text);
}
.note { margin-top: var(--s-2); font-size: var(--t-small); line-height: 1.6; }
.note strong { font-weight: 500; color: var(--ink); }

.map-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 3px;
  overflow: hidden;
  background: var(--sage-pale);
}
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: saturate(.75) sepia(.08); }
.facade { margin-top: var(--s-3); display: grid; grid-template-columns: minmax(0, 1fr); gap: .6rem; }
.facade img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; object-position: 50% 62%; border-radius: 3px; }
.facade figcaption { font-size: var(--t-small); color: var(--ink-soft); }

@media (min-width: 60em) {
  .visit-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(3rem, 6vw, 6rem); align-items: start; }
  .map-frame { aspect-ratio: 5 / 4; }
}

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

.site-footer { background: #24382c; color: #e9ece4; padding-block: var(--s-7) var(--s-4); font-size: var(--t-small); }
.site-footer a { color: #fff; text-decoration-color: rgba(255, 255, 255, .35); }
.site-footer a:hover { color: #fff; text-decoration-color: var(--gold); }
.site-footer :focus-visible { outline-color: #fff; }
.footer-grid { display: grid; gap: var(--s-5); }
.footer-brand .brand-name { font-size: 2.5rem; color: #fff; }
.footer-tag { margin-top: .5rem; font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: #e3cf9f; }
.footer-brand p:last-child { margin-top: var(--s-2); max-width: 22rem; color: #d3d9cf; }
.footer-title {
  margin-bottom: var(--s-2);
  font-family: var(--sans);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #e3cf9f;
  line-height: 1.4;
}
.site-footer address, .site-footer ul { line-height: 2; }
.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-1) var(--s-4);
  margin-top: var(--s-6);
  padding-top: var(--s-3);
  background: linear-gradient(rgba(255, 255, 255, .16), rgba(255, 255, 255, .16)) no-repeat var(--gutter) 0 / calc(100% - 2 * var(--gutter)) 1px;
  font-size: var(--t-micro);
  color: #d3d9cf;
}
@media (min-width: 40em) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 64em) { .footer-grid { grid-template-columns: 5fr 3fr 3fr 2fr; gap: var(--s-6); } }

/* reveal ------------------------------------------------------------- */

.js .reveal { opacity: 0; transform: translate3d(0, 1.25rem, 0); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .service.reveal:nth-child(3n + 2) { transition-delay: .12s; }
.js .service.reveal:nth-child(3n) { transition-delay: .24s; }
.js .draw path { transition: stroke-dashoffset 2.4s var(--ease); }
.js .is-in .draw path, .js .draw.is-in path { stroke-dashoffset: 0; }
.js .draw path:nth-child(n + 2) { transition-delay: .5s; }
.js .draw path:nth-child(n + 4) { transition-delay: .9s; }
.js .draw path:nth-child(n + 6) { transition-delay: 1.3s; }

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

@media print {
  .light, .site-header, .map-frame { display: none; }
  .js .reveal { opacity: 1; transform: none; }
}
