/* Komorebi — concept 02 "Minimal gallery" */

:root {
  --paper: #fbfaf7;
  --tint: #f4f2ec;
  --ink: #1b201d;
  --text: #3a413c;
  --muted: #5e665f;
  --line: #dedbd2;
  --green: #2f5d43;
  --green-dark: #234733;
  --green-soft: #6b8f71;
  --green-wash: #e9efe9;

  --serif: "Cormorant Garamond", "Cormorant", Garamond, "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  --s1: 0.25rem; --s2: 0.5rem; --s3: 0.75rem; --s4: 1rem; --s5: 1.5rem;
  --s6: 2rem; --s7: 3rem; --s8: 4rem; --s9: 6rem; --s10: 8rem;

  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(4.5rem, 10vw, 9rem);
  --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(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
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; }
a { color: inherit; }

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

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

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

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; color: var(--ink); text-wrap: balance; }
h1 { font-size: clamp(2.75rem, 6.2vw, 5.25rem); line-height: 1.02; letter-spacing: -0.012em; }
h2 { font-size: clamp(2rem, 3.8vw, 3.25rem); line-height: 1.1; letter-spacing: -0.008em; }
h3 { font-size: 1.5rem; line-height: 1.2; }
.amp { font-style: italic; color: var(--green); }

.eyebrow {
  display: flex; align-items: center; gap: var(--s4);
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--green); margin-bottom: var(--s5);
}
.eyebrow .rule { width: 2.5rem; height: 1px; background: var(--green-soft); flex: none; }
.eyebrow-center { justify-content: center; }

.lead { font-size: clamp(1.0625rem, 1.4vw, 1.1875rem); color: var(--ink); line-height: 1.65; }
.small { font-size: 0.9375rem; color: var(--muted); line-height: 1.6; }
.note { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--green); }

/* ---------- Links & buttons ---------- */
.link {
  color: var(--green); text-decoration: none; font-weight: 400;
  background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat;
  padding-bottom: 3px; transition: background-size .35s var(--ease), color .2s;
}
.link:hover { color: var(--green-dark); background-size: 40% 1px; }
.link-plain { color: var(--text); text-decoration: none; }
.link-plain:hover { color: var(--green); }

.btn {
  display: inline-flex; align-items: center; gap: var(--s3);
  min-height: 3.25rem; padding: 0 var(--s6);
  font-family: var(--sans); font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none;
  border: 1px solid var(--green); transition: background .25s, color .25s, border-color .25s;
}
.btn-solid { background: var(--green); color: #fff; }
.btn-solid:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn-line { color: var(--green); background: transparent; }
.btn-line:hover { background: var(--green); color: #fff; }
.btn span { transition: transform .3s var(--ease); }
.btn:hover span { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 247, .92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent; transition: border-color .3s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s5); min-height: 5rem; flex-wrap: wrap; }

.brand { display: inline-flex; flex-direction: column; text-decoration: none; color: var(--ink); line-height: 1; padding: var(--s2) 0; }
.brand-name { font-family: var(--serif); font-size: 1.625rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; }
.brand-sub { font-size: 0.5625rem; font-weight: 500; letter-spacing: 0.36em; text-transform: uppercase; color: var(--green); margin-top: 0.4rem; }

.nav ul { display: flex; align-items: center; gap: clamp(1.25rem, 2.4vw, 2.5rem); }
.nav a {
  display: inline-block; padding: var(--s3) 0;
  font-size: 0.8125rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
  background: linear-gradient(var(--green), var(--green)) 0 calc(100% - 6px) / 0 1px no-repeat;
  transition: background-size .35s var(--ease), color .2s;
}
.nav a:hover { color: var(--green); background-size: 100% 1px; }
.nav a.nav-cta { border: 1px solid var(--green); color: var(--green); padding: 0.7rem 1.25rem; background: none; font-weight: 500; }
.nav a.nav-cta:hover { background: var(--green); color: #fff; }

.nav-toggle { display: none; }

@media (max-width: 62rem) {
  .header-inner { min-height: 4.25rem; }
  .brand-name { font-size: 1.375rem; }
  /* Without JS the menu stays visible as a plain list under the logo */
  .nav { flex-basis: 100%; padding-bottom: var(--s5); }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav li { border-top: 1px solid var(--line); }
  .nav a { display: block; padding: var(--s4) 0; background: none; }
  .nav li:last-child { border-top: 0; padding-top: var(--s3); }
  .nav a.nav-cta { text-align: center; padding: var(--s4); }

  .js .nav-toggle {
    display: inline-flex; align-items: center; gap: var(--s3);
    background: none; border: 0; padding: var(--s3) 0; min-height: 2.75rem; cursor: pointer;
    font-family: var(--sans); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--ink);
  }
  .nav-toggle-icon { position: relative; width: 1.5rem; height: 0.625rem; }
  .nav-toggle-icon i { position: absolute; left: 0; right: 0; height: 1px; background: var(--ink); transition: transform .3s var(--ease), top .3s var(--ease); }
  .nav-toggle-icon i:first-child { top: 0; }
  .nav-toggle-icon i:last-child { top: 100%; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-icon i { top: 50%; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-icon i:first-child { transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-icon i:last-child { transform: rotate(-45deg); }
  .js .nav { display: none; }
  .js .nav.is-open { display: block; }
}

/* ---------- Hero ---------- */
.hero { padding-top: clamp(2rem, 5vw, 4.5rem); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.hero-text { padding-bottom: var(--s6); }
.tagline { font-family: var(--serif); font-style: italic; font-size: clamp(1.5rem, 2.4vw, 2rem); color: var(--green); margin-top: var(--s5); line-height: 1.2; }
.hero .lead { margin-top: var(--s5); max-width: 33rem; color: var(--text); }
.actions { display: flex; flex-wrap: wrap; gap: var(--s4); margin-top: var(--s7); }

.hero-visual { position: relative; padding: 0 0 var(--s8) clamp(2rem, 5vw, 4.5rem); }
.hero-main { position: relative; z-index: 1; aspect-ratio: 4 / 5; overflow: hidden; background: var(--tint); }
.hero-main img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.hero-detail { position: absolute; z-index: 2; left: 0; bottom: 0; width: 38%; background: var(--paper); padding: var(--s3) var(--s3) 0 0; }
.hero-detail img { aspect-ratio: 4 / 5; width: 100%; object-fit: cover; }
.hero-detail figcaption { font-size: 0.75rem; letter-spacing: 0.04em; color: var(--muted); padding: var(--s3) 0 0; line-height: 1.4; }

.orn { position: absolute; pointer-events: none; fill: none; stroke: var(--green-soft); }
.orn-circles { z-index: 0; width: 130%; left: -32%; top: -12%; stroke-width: 0.6; opacity: .75; }
.orn-circles circle, .orn-circles path { vector-effect: non-scaling-stroke; stroke-width: 1; }
.sparkle { z-index: 3; width: 2.25rem; right: -1.1rem; top: 12%; fill: var(--paper); stroke: var(--green); stroke-width: 1.2; animation: twinkle 5s ease-in-out infinite; transform-origin: center; }

.facts { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(3rem, 6vw, 5.5rem); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.facts li { padding: var(--s5) var(--s5) var(--s5) 0; display: flex; flex-direction: column; gap: var(--s1); }
.facts li + li { border-left: 1px solid var(--line); padding-left: var(--s5); }
.facts-k { font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green); }
.facts-v { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); line-height: 1.25; }

/* ---------- Sections ---------- */
.section { padding-block: var(--section); }
.section-tint { background: var(--tint); }
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.section-intro { margin-top: var(--s5); max-width: 40rem; }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 3.5vw, 3.5rem); }
.service { display: flex; flex-direction: column; scroll-margin-top: 6.5rem; }
.service-img { aspect-ratio: 4 / 5; overflow: hidden; background: var(--tint); }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.service:hover .service-img img { transform: scale(1.035); }
.service-img--art { display: grid; place-items: center; background: var(--green-wash); }
.service-body { border-top: 1px solid var(--line); margin-top: var(--s5); padding-top: var(--s4); display: flex; flex-direction: column; align-items: flex-start; flex: 1; }
.service-no { font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.22em; color: var(--green); }
.service h3 { margin-top: var(--s2); font-size: clamp(1.5rem, 2vw, 1.75rem); }
.service p { margin: var(--s3) 0 var(--s5); font-size: 1rem; line-height: 1.65; }
.service .link { margin-top: auto; font-size: 0.9375rem; }

.watch { width: 46%; fill: none; stroke: var(--green); stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.watch-dot { fill: var(--green); stroke: none; }
.watch-s { stroke-width: 0.7; transform-origin: 100px 125px; animation: spin 60s linear infinite; }
.watch-m { transform-origin: 100px 125px; animation: spin 3600s linear infinite; }

/* ---------- Image / text rows ---------- */
.row { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: center; }
.row-flip .row-img { order: 2; }
.row-img { position: relative; }
.row-img > img:first-child { aspect-ratio: 4 / 5; width: 100%; object-fit: cover; }
.row-flip .row-img { padding: 0 0 var(--s8) var(--s8); }
.row-img-small { position: absolute; left: 0; bottom: 0; width: 40%; aspect-ratio: 4 / 5; object-fit: cover; border: solid var(--tint); border-width: var(--s3) var(--s3) 0 0; }
.row-text > p + p { margin-top: var(--s4); }
.row-text h2 + .lead { margin-top: var(--s5); }
.row-text .btn { margin-top: var(--s6); }
.row-text .note { margin-top: var(--s6); }

.timeline { margin: var(--s6) 0 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; column-gap: var(--s6); }
.timeline div { display: flex; gap: var(--s4); align-items: baseline; padding: var(--s3) 0; border-bottom: 1px solid var(--line); }
.timeline dt { font-family: var(--serif); font-size: 1.125rem; color: var(--green); flex: 0 0 5.5rem; white-space: nowrap; }
.timeline dd { font-size: 0.9375rem; line-height: 1.45; }

/* ---------- Meaning ---------- */
.meaning-inner { max-width: 52rem; text-align: center; }
.leaf { position: static; width: 9rem; margin: 0 auto var(--s6); fill: none; stroke: var(--green); stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; animation: sway 9s ease-in-out infinite; transform-origin: 10% 90%; }
.meaning-quote { font-style: italic; font-size: clamp(2rem, 4.4vw, 3.5rem); line-height: 1.15; }
.meaning-quote::before { content: "“"; }
.meaning-quote::after { content: "”"; }
.meaning-text { margin: var(--s6) auto 0; max-width: 40rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2.4vw, 2rem); }
.g-item figure { display: flex; flex-direction: column; height: 100%; }
.g-frame { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--tint); }
.g-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.g-frame img.zoom { transform: scale(1.14); }
.g-item:hover .g-frame img { transform: scale(1.04); }
.g-item:hover .g-frame img.zoom { transform: scale(1.18); }
.g-large { grid-column: span 2; grid-row: span 2; }
.g-wide { grid-column: span 2; }
.g-large .g-frame, .g-wide .g-frame { aspect-ratio: auto; flex: 1; min-height: 14rem; }
.g-item figcaption { display: flex; gap: var(--s3); align-items: baseline; padding-top: var(--s3); font-size: 0.875rem; line-height: 1.45; color: var(--muted); }
.g-item figcaption span { font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.18em; color: var(--green); }
.gallery-more { margin-top: clamp(2.5rem, 5vw, 4rem); text-align: center; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.review blockquote p { quotes: "“" "”"; }
.review blockquote p::before { content: open-quote; }
.review blockquote p::after { content: close-quote; }
.review figcaption { margin-top: var(--s4); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green); }
.review figcaption::before { content: ""; display: inline-block; width: 1.5rem; height: 1px; background: var(--green-soft); vertical-align: middle; margin-right: var(--s3); }
.review-lead { position: relative; padding-top: var(--s8); }
.review-lead blockquote p { font-family: var(--serif); font-style: italic; font-size: clamp(1.625rem, 2.6vw, 2.25rem); line-height: 1.3; color: var(--ink); }
.sparkle-sm { width: 1.75rem; left: 0; right: auto; top: 0; fill: none; }
.review-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.review-list .review { padding: var(--s6) 0; border-bottom: 1px solid var(--line); }
.review-list .review:nth-child(odd) { padding-right: var(--s6); border-right: 1px solid var(--line); }
.review-list .review:nth-child(even) { padding-left: var(--s6); }
.review-list blockquote p { font-size: 1rem; line-height: 1.65; }

/* ---------- Visit ---------- */
.visit { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.visit-block { padding: var(--s6) 0; border-top: 1px solid var(--line); }
.visit-block:last-child { border-bottom: 1px solid var(--line); }
.visit-block h3 { font-family: var(--sans); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green); margin-bottom: var(--s4); }
.visit-block address { font-family: var(--serif); font-size: 1.5rem; line-height: 1.35; color: var(--ink); margin-bottom: var(--s5); }
.contact-lines { margin-top: var(--s3); line-height: 2; }

.hours { width: 100%; border-collapse: collapse; margin-bottom: var(--s4); }
.hours th, .hours td { padding: 0.45rem 0; font-weight: 300; text-align: left; border-bottom: 1px dotted var(--line); }
.hours td { text-align: right; font-variant-numeric: tabular-nums; color: var(--ink); }
.hours .closed td, .hours .closed th { color: var(--muted); }
.hours .is-today th, .hours .is-today td { font-weight: 500; color: var(--green); }
.today { font-size: 0.625rem; letter-spacing: 0.18em; text-transform: uppercase; border: 1px solid var(--green-soft); padding: 0.1rem 0.4rem; margin-left: var(--s2); vertical-align: middle; font-weight: 500; }

.map { aspect-ratio: 4 / 3; background: var(--tint); border: 1px solid var(--line); }
.map iframe { width: 100%; height: 100%; border: 0; filter: saturate(.75); }
.storefront { margin-top: clamp(1rem, 2.4vw, 2rem); }
.storefront img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: 50% 60%; }
.storefront figcaption { font-size: 0.875rem; color: var(--muted); padding-top: var(--s3); }

/* ---------- Footer ---------- */
.site-footer { background: var(--tint); border-top: 1px solid var(--line); padding-top: clamp(3.5rem, 7vw, 6rem); font-size: 0.9375rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1.6fr 0.8fr; gap: var(--s7) var(--s6); }
.brand-footer { margin-bottom: var(--s4); }
.footer-tag { font-family: var(--serif); font-style: italic; font-size: 1.375rem; color: var(--green); margin-bottom: var(--s3); }
.footer-brand .small { max-width: 20rem; }
.footer-h { font-family: var(--sans); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green); margin-bottom: var(--s4); }
.site-footer address, .footer-list { line-height: 2; }
.footer-list-2 { columns: 2; column-gap: var(--s6); }
.footer-list li { break-inside: avoid; }
.site-footer a { text-decoration: none; color: var(--text); background: linear-gradient(var(--green), var(--green)) 0 100% / 0 1px no-repeat; transition: background-size .3s var(--ease), color .2s; padding-bottom: 2px; }
.site-footer a:hover { color: var(--green); background-size: 100% 1px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s2) var(--s5); margin-top: clamp(3rem, 6vw, 5rem); padding-block: var(--s5); background: linear-gradient(var(--line), var(--line)) top / 100% 1px no-repeat content-box; font-size: 0.8125rem; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 68rem) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .review-lead { max-width: 40rem; }
}
@media (max-width: 62rem) {
  .services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .g-large { grid-column: span 2; }
  .g-wide { grid-column: span 3; }
  .g-wide .g-frame { aspect-ratio: 2 / 1; flex: none; min-height: 0; }
  .visit { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
}
@media (max-width: 48rem) {
  body { font-size: 1rem; }
  .hero-grid, .row { grid-template-columns: 1fr; }
  .hero-visual { padding-left: var(--s7); max-width: 32rem; }
  .orn-circles { width: 120%; left: -20%; }
  .sparkle { right: 0.75rem; top: -1.1rem; }
  .row-flip .row-img { order: 0; padding: 0 0 var(--s7) var(--s7); }
  .row-img { max-width: 32rem; }
  .facts { grid-template-columns: 1fr 1fr; }
  .facts li, .facts li + li { padding: var(--s4) var(--s4) var(--s4) 0; border-left: 0; }
  .facts li:nth-child(even) { border-left: 1px solid var(--line); padding-left: var(--s4); }
  .facts li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .facts-v { font-size: 1.0625rem; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .g-large, .g-wide { grid-column: span 2; grid-row: auto; }
  .g-large .g-frame { aspect-ratio: 1 / 1; flex: none; min-height: 0; }
  .g-wide .g-frame { aspect-ratio: 3 / 2; }
  .review-list { grid-template-columns: 1fr; }
  .review-list .review, .review-list .review:nth-child(odd), .review-list .review:nth-child(even) { padding: var(--s5) 0; border-right: 0; }
}
@media (max-width: 40rem) {
  .eyebrow { letter-spacing: 0.16em; gap: var(--s3); font-size: 0.6875rem; }
  .eyebrow .rule { width: 1.5rem; }
  .services { grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line); }
  .service { flex-direction: row; gap: var(--s5); padding: var(--s5) 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
  .service-img { flex: 0 0 31%; }
  .service-body { border-top: 0; margin-top: 0; padding-top: 0; }
  .service h3 { font-size: 1.375rem; }
  .service p { font-size: 0.9375rem; margin-bottom: var(--s4); }
  .actions .btn { flex: 1 1 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s6); }
  .footer-list-2 { columns: 1; }
  .btn { padding: 0 var(--s5); }
}

/* ---------- Motion ---------- */
@keyframes draw { to { stroke-dashoffset: 0; } }
@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(-1.5deg); } 50% { transform: rotate(2deg); } }
@keyframes spin { to { transform: rotate(360deg); } }

.anim [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.anim [data-reveal].is-in { opacity: 1; transform: none; }
.anim .services [data-reveal]:nth-child(3n+2), .anim .review-list [data-reveal]:nth-child(even) { transition-delay: .1s; }
.anim .services [data-reveal]:nth-child(3n) { transition-delay: .2s; }

.anim .draw circle, .anim .draw path { stroke-dasharray: 1; stroke-dashoffset: 1; }
.anim .draw.is-in circle, .anim .draw.is-in path { animation: draw 2.6s var(--ease) forwards; }
.anim .draw.is-in :nth-child(2) { animation-delay: .35s; }
.anim .draw.is-in :nth-child(3) { animation-delay: .7s; }
.anim .draw.is-in :nth-child(n+4) { animation-delay: 1s; }

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