/* Komorebi Jewelry – concept 03 "Botanical cards" */

:root {
  --forest: #24452f;
  --green: #2f5d43;
  --fern: #4a7c59;
  --sage: #6b8f71;
  --mist: #dfe9e0;
  --tint: #eef3ee;
  --paper: #fbfaf6;
  --white: #ffffff;
  --ink: #17241c;
  --muted: #536058;
  --line: #dde4dd;
  --gold: #ecd093;
  --on-green: #e4eee5;

  --font-head: "Outfit", "DM Sans", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px;

  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-pill: 999px;

  --shadow: 0 1px 2px rgba(23, 36, 28, .04), 0 12px 32px -16px rgba(23, 36, 28, .18);
  --gap: 16px;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--font-head); font-weight: 400; line-height: 1.12; letter-spacing: -.015em; margin: 0; text-wrap: balance; }
h2 { font-size: clamp(1.85rem, 1.2rem + 2.2vw, 2.9rem); }
h3 { font-size: 1.35rem; line-height: 1.2; letter-spacing: -.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
a { color: var(--green); text-underline-offset: 3px; }
strong { font-weight: 600; }

:focus-visible { outline: 3px solid var(--fern); outline-offset: 3px; border-radius: 6px; }
.hero__panel :focus-visible,
.card--feature :focus-visible,
.card--green :focus-visible,
.topbar :focus-visible,
.footer :focus-visible { outline-color: var(--gold); }

.container { width: 100%; max-width: 1272px; margin-inline: auto; padding-inline: clamp(16px, 4vw, 32px); }
.center { text-align: center; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 100;
  background: var(--forest); color: var(--white); padding: 12px 20px;
  border-radius: var(--r-pill); text-decoration: none; font-weight: 500;
}
.skip-link:focus { top: 12px; }

.icon {
  width: 1.25em; height: 1.25em; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ---------- Eyebrow, buttons, chips ---------- */

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8125rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); margin-bottom: var(--s-4);
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: currentColor; border-radius: 2px; }
.eyebrow--light { color: var(--on-green); }
.eyebrow--light::before { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 24px;
  font: 500 .9375rem/1.2 var(--font-body);
  border-radius: var(--r-pill); border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn .icon { transition: transform .2s ease; }
.btn:hover .icon { transform: translateX(3px); }
.btn--primary { background: var(--green); color: var(--white); }
.btn--primary:hover { background: var(--forest); }
.btn--light { background: var(--white); color: var(--forest); }
.btn--light:hover { background: var(--mist); }
.btn--ghost-light { color: var(--white); border-color: rgba(255, 255, 255, .45); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .1); border-color: var(--white); }
.btn--outline { color: var(--forest); border-color: var(--green); background: transparent; }
.btn--outline:hover { background: var(--green); color: var(--white); }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); }

.chip {
  display: inline-grid; place-items: center; flex: none;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--mist); color: var(--green);
}
.chip .icon { width: 22px; height: 22px; }
.chip--glass { background: rgba(255, 255, 255, .16); color: var(--white); backdrop-filter: blur(6px); }

/* ---------- Top bar ---------- */

.topbar { background: var(--forest); color: var(--on-green); font-size: .8125rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); min-height: 40px; }
.topbar__text { display: flex; align-items: center; gap: 8px; min-width: 0; }
.topbar__text .icon { width: 16px; height: 16px; }
.topbar__sep { opacity: .5; }

.social { display: flex; gap: 4px; }
.social a {
  display: grid; place-items: center; width: 36px; height: 36px;
  color: inherit; border-radius: 50%; transition: background-color .2s ease;
}
.social a:hover { background: rgba(255, 255, 255, .14); }
.social .icon { width: 18px; height: 18px; }

/* ---------- Header ---------- */

.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 246, .92);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-5); min-height: 76px; flex-wrap: wrap; }

.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--forest); }
.logo__mark { width: 40px; height: 40px; flex: none; }
.logo__disc { fill: var(--green); }
.logo__leaf { fill: var(--white); }
.logo__vein { fill: none; stroke: var(--green); stroke-width: 1.4; stroke-linecap: round; }
.logo__text { display: grid; line-height: 1; }
.logo__name { font-family: var(--font-head); font-size: 1.375rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; }
.logo__sub { font-size: .6875rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
.logo--light { color: var(--white); }
.logo--light .logo__disc { fill: var(--white); }
.logo--light .logo__leaf { fill: var(--green); }
.logo--light .logo__vein { stroke: var(--white); }
.logo--light .logo__sub { color: var(--on-green); }

.nav { display: flex; align-items: center; gap: var(--s-5); }
.nav__list { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.nav__list a {
  display: block; padding: 10px 16px; border-radius: var(--r-pill);
  color: var(--ink); text-decoration: none; font-weight: 500; font-size: .9375rem;
  transition: background-color .2s ease, color .2s ease;
}
.nav__list a:hover { background: var(--mist); color: var(--forest); }

.menu-toggle { display: none; }

@media (max-width: 1019px) {
  .nav { flex-basis: 100%; flex-direction: column; align-items: stretch; gap: var(--s-3); padding-bottom: var(--s-4); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__list a { padding: 14px 16px; font-size: 1.0625rem; border-radius: var(--r-sm); }

  .js .menu-toggle {
    display: inline-flex; align-items: center; gap: 10px;
    min-height: 44px; padding: 8px 18px 8px 14px;
    font: 500 .9375rem/1 var(--font-body); color: var(--white);
    background: var(--green); border: 0; border-radius: var(--r-pill); cursor: pointer;
  }
  .menu-toggle__bars { display: grid; gap: 4px; width: 18px; }
  .menu-toggle__bars span { height: 2px; border-radius: 2px; background: currentColor; transition: transform .25s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__bars span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .js .nav { display: none; }
  .js .nav.is-open { display: flex; }
}

@media (max-width: 599px) {
  .topbar__sep, .topbar__hours { display: none; }
  .header__inner { min-height: 68px; }
  .logo__name { font-size: 1.1875rem; }
}

/* ---------- Hero ---------- */

.hero { padding-top: var(--s-5); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 2.35fr) minmax(0, 1fr); gap: var(--gap); }

.hero__panel {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  min-height: clamp(520px, 44vw, 620px);
  background: var(--forest);
  background-image: radial-gradient(120% 90% at 0% 0%, #2f5d43 0%, rgba(47, 93, 67, 0) 60%);
  color: var(--white);
  border-radius: var(--r-lg);
}
.hero__copy { align-self: center; padding: clamp(28px, 4.2vw, 64px); padding-right: clamp(16px, 2vw, 32px); position: relative; z-index: 1; }
.hero h1 { display: grid; gap: var(--s-4); }
.hero__tagline { font-size: clamp(2.5rem, 1.3rem + 4vw, 4.125rem); font-weight: 300; line-height: 1; letter-spacing: -.03em; }
.hero__sub { font-size: clamp(1.25rem, 1rem + .9vw, 1.75rem); font-weight: 400; color: var(--gold); letter-spacing: 0; line-height: 1.25; }
.hero__lead { margin-top: var(--s-5); max-width: 46ch; color: var(--on-green); font-size: 1.0625rem; }
.hero .btn-row { margin-top: var(--s-6); }

.hero__photo { position: relative; margin: 12px; border-radius: 22px; overflow: hidden; min-height: 280px; }
.hero__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%; }

.hero__side {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--r-lg); background: var(--mist); color: var(--ink); text-decoration: none;
  min-height: 320px;
}
.hero__side img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; transition: transform .6s ease; }
.hero__side:hover img { transform: scale(1.03); }
.hero__side-label {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  display: grid; grid-template-columns: 1fr auto; column-gap: 12px; align-items: center;
  padding: 14px 14px 14px 20px; border-radius: 20px;
  background: rgba(255, 255, 255, .94); backdrop-filter: blur(8px);
}
.hero__side-name { font-family: var(--font-head); font-size: 1.1875rem; font-weight: 500; line-height: 1.2; }
.hero__side-role { grid-column: 1; font-size: .875rem; color: var(--muted); line-height: 1.35; }
.hero__side-arrow {
  grid-column: 2; grid-row: 1 / span 2;
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: var(--white);
}

.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap); margin-top: var(--gap); }
.fact {
  display: flex; align-items: center; gap: var(--s-4);
  padding: 18px 22px; background: var(--tint); border-radius: var(--r-md);
}
.fact .chip { background: var(--white); }
.fact > span:last-child { display: grid; line-height: 1.35; }
.fact strong { font-family: var(--font-head); font-weight: 500; font-size: 1.0625rem; }
.fact span span { font-size: .875rem; color: var(--muted); }

@media (max-width: 1099px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__side { min-height: 0; aspect-ratio: 3 / 2; }
  .hero__side img { object-position: 50% 30%; }
  .hero__panel { min-height: 480px; }
}
@media (max-width: 767px) {
  .hero { padding-top: var(--s-4); }
  .hero__panel { grid-template-columns: 1fr; border-radius: 26px; }
  .hero__copy { padding: 32px 24px 20px; }
  .hero__photo { aspect-ratio: 4 / 3; min-height: 0; margin: 10px; border-radius: 18px; }
  .hero__side { aspect-ratio: 4 / 5; border-radius: 26px; }
  .hero__side img { object-position: 50% 22%; }
  .facts { grid-template-columns: 1fr; gap: var(--s-3); }
  .hero .btn { flex: 1 1 auto; }
}

/* ---------- Sections ---------- */

.section { padding-block: clamp(72px, 9vw, 128px); }
.section--tint { background: var(--tint); }

.section__head {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: var(--s-5) var(--s-8); align-items: end;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.section__head h2 { max-width: 18ch; }
.section__intro { color: var(--muted); max-width: 52ch; font-size: 1.0625rem; }

@media (max-width: 859px) {
  .section__head { grid-template-columns: 1fr; }
  .section__head h2 { max-width: 22ch; }
}

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

.bento { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: minmax(252px, auto); gap: var(--gap); }

.card {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  scroll-margin-top: 110px;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.card:hover { box-shadow: var(--shadow); border-color: transparent; }
.card__media { position: relative; overflow: hidden; margin: 10px 10px 0; border-radius: 22px; flex: 1 1 200px; min-height: 200px; background: var(--mist); }
.card__media img, .card__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.card:hover .card__media img, .card:hover .card__bg { transform: scale(1.04); }
.card__body { display: flex; flex-direction: column; align-items: flex-start; gap: var(--s-3); padding: 22px 24px 24px; }
.card__body p, .card__overlay p { font-size: .9375rem; line-height: 1.6; color: var(--muted); }
.card .chip { margin-bottom: 2px; }
.card__media + .card__body .chip { margin-top: -44px; position: relative; z-index: 1; border: 4px solid var(--white); width: 52px; height: 52px; }

.card__link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 6px;
  font-weight: 600; font-size: .9375rem; color: var(--green); text-decoration: none;
}
.card__link::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.card__link .icon { transition: transform .2s ease; }
.card:hover .card__link .icon { transform: translateX(4px); }
.card__link:hover { text-decoration: underline; }

/* feature card */
.card--feature { border: 0; color: var(--white); justify-content: flex-end; min-height: 440px; background: var(--forest); }
.card--feature::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(20, 41, 28, 0) 30%, rgba(20, 41, 28, .62) 58%, rgba(20, 41, 28, .92) 100%);
}
.card__overlay { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; gap: var(--s-3); padding: clamp(24px, 3vw, 40px); max-width: 560px; }
.card--feature h3 { font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.125rem); }
.card--feature p { color: var(--on-green); font-size: 1rem; }
.card--feature .card__link { color: var(--white); }
.card--feature .card__link::after { z-index: 2; }

/* wide card */
.card--wide { flex-direction: row; }
.card--wide .card__media { flex: 0 0 38%; margin: 10px 0 10px 10px; min-height: 0; }
.card--wide .card__body { flex: 1; justify-content: center; padding: 24px 28px; }
.card--wide .card__media + .card__body .chip { margin-top: 0; border: 0; width: 44px; height: 44px; }

/* green card */
.card--green { background: var(--green); border: 0; color: var(--white); flex-direction: row; align-items: center; }
.card--green .card__body { flex: 1; padding: 24px 28px 24px 0; }
.card--green p { color: var(--on-green); }
.card--green .card__link { color: var(--white); }
.watch { flex: 0 0 38%; max-width: 190px; padding: 20px; fill: none; stroke: var(--on-green); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.watch__hand { stroke: var(--gold); stroke-width: 2.8; transform-origin: 60px 60px; }
.watch__pin { fill: var(--gold); stroke: none; }
.watch__ticks { opacity: .7; }

.card--a { grid-column: 1 / span 2; grid-row: 1 / span 2; }
.card--b { grid-column: 3; grid-row: 1 / span 2; }
.card--c { grid-column: 4; grid-row: 1 / span 2; }
.card--d { grid-column: 1 / span 2; grid-row: 3; }
.card--e { grid-column: 3 / span 2; grid-row: 3; }
.card--f { grid-column: 1; grid-row: 4 / span 2; }
.card--g { grid-column: 2; grid-row: 4 / span 2; }
.card--h { grid-column: 3 / span 2; grid-row: 4; }
.card--i { grid-column: 3 / span 2; grid-row: 5; }

@media (max-width: 1099px) {
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: auto; }
  .card--a, .card--d, .card--e, .card--h, .card--i { grid-column: 1 / -1; grid-row: auto; }
  .card--b, .card--c, .card--f, .card--g { grid-column: auto; grid-row: auto; }
  .card--tall .card__media { flex-basis: 260px; min-height: 260px; }
  .card--wide { min-height: 240px; }
}
@media (max-width: 639px) {
  .bento { grid-template-columns: 1fr; }
  .card, .card--feature { border-radius: 26px; }
  .card--feature { min-height: 460px; }
  .card--tall .card__media { flex-basis: auto; aspect-ratio: 4 / 3; min-height: 0; }
  .card--wide { flex-direction: column; min-height: 0; }
  .card--wide .card__media { flex: none; margin: 10px 10px 0; aspect-ratio: 4 / 3; }
  .card--wide .card__body { padding: 22px 24px 24px; }
  .card--wide .card__media + .card__body .chip { margin-top: -44px; border: 4px solid var(--white); width: 52px; height: 52px; }
  .card--green { flex-direction: column; align-items: flex-start; }
  .card--green .card__body { padding: 0 24px 24px; }
  .watch { flex: none; width: 132px; padding: 20px 0 12px 20px; }
}

/* ---------- About ---------- */

.about { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.about__photos { position: relative; padding: 0 12% 9% 0; }
.about__photo { border-radius: var(--r-lg); object-fit: cover; width: 100%; }
.about__photo--main { aspect-ratio: 4 / 5; object-position: 50% 60%; }
.about__photo--inset {
  position: absolute; right: 0; bottom: 0; width: 42%; aspect-ratio: 1;
  border: 8px solid var(--tint); border-radius: 30px; object-position: 50% 40%;
}
.about__copy h2 { max-width: 16ch; }
.lead { font-size: 1.1875rem; line-height: 1.6; margin-top: var(--s-5); }
.checklist { display: grid; gap: var(--s-3); margin: var(--s-5) 0 var(--s-6); }
.checklist li { position: relative; padding-left: 36px; color: var(--muted); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 12.500 3.500 3.500L17 9'/%3E%3C/svg%3E") center / 18px no-repeat;
}

.duo { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); gap: var(--gap); margin-top: clamp(48px, 7vw, 96px); }
.panel { position: relative; overflow: hidden; border-radius: var(--r-lg); }
.panel h3 { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); }
.panel p:not(.eyebrow) { margin-top: var(--s-4); }
.panel--green { background: var(--forest); color: var(--white); padding: clamp(28px, 4vw, 56px); padding-top: clamp(120px, 12vw, 176px); display: flex; flex-direction: column; justify-content: flex-end; }
.panel--green p:not(.eyebrow) { color: var(--on-green); }
.panel--green h3 { max-width: 18ch; }
.panel--photo { background: var(--white); display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1fr); }
.panel__media { position: relative; margin: 10px; border-radius: 22px; overflow: hidden; min-height: 280px; }
.panel__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; }
.panel__body { padding: clamp(24px, 3vw, 44px); align-self: center; }
.panel__body p { color: var(--muted); }
.panel__body .panel__note { color: var(--forest); font-weight: 500; padding-left: var(--s-4); border-left: 2px solid var(--sage); }

.canopy { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.canopy__leaf path { fill: var(--fern); opacity: .55; }
.canopy__leaf--2 path { fill: var(--sage); opacity: .4; }
.canopy__leaf--3 path { fill: #356b4c; opacity: .9; }
.canopy__rays path { stroke: var(--gold); stroke-width: 26; opacity: .07; fill: none; }
.panel--green > :not(.canopy) { position: relative; }

@media (max-width: 959px) {
  .about { grid-template-columns: 1fr; }
  .about__photos { max-width: 520px; }
  .duo { grid-template-columns: 1fr; }
}
@media (max-width: 639px) {
  .panel { border-radius: 26px; }
  .panel--photo { grid-template-columns: 1fr; }
  .panel__media { aspect-ratio: 4 / 3; min-height: 0; }
  .about__photo--inset { border-width: 6px; border-radius: 24px; }
}

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

.masonry { columns: 3; column-gap: var(--gap); }
.tile {
  position: relative; display: block; margin: 0 0 var(--gap); overflow: hidden;
  border-radius: var(--r-md); break-inside: avoid; background: var(--mist);
}
.tile img { width: 100%; transition: transform .7s ease; }
.tile:hover img { transform: scale(1.04); }
.tile figcaption {
  position: absolute; left: 12px; bottom: 12px; max-width: calc(100% - 24px);
  padding: 7px 14px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .92); color: var(--ink);
  font-size: .8125rem; font-weight: 500; line-height: 1.3;
}
.tile--cta {
  display: flex; flex-direction: column; justify-content: flex-end; gap: 6px;
  min-height: 260px; padding: 28px;
  background: var(--green); color: var(--white); text-decoration: none;
  transition: background-color .2s ease;
}
.tile--cta:hover { background: var(--forest); }
.tile--cta .icon { width: 32px; height: 32px; margin-bottom: auto; }
.tile__title { font-family: var(--font-head); font-size: 1.5rem; line-height: 1.2; max-width: 14ch; }
.tile__handle { font-size: .875rem; color: var(--on-green); overflow-wrap: anywhere; }

@media (max-width: 859px) { .masonry { columns: 2; } }
@media (max-width: 479px) {
  .masonry { column-gap: 10px; }
  .tile { margin-bottom: 10px; border-radius: 18px; }
  .tile figcaption { left: 8px; bottom: 8px; padding: 5px 10px; font-size: .75rem; }
  .tile--cta { padding: 18px; min-height: 200px; }
  .tile__title { font-size: 1.1875rem; }
  .tile__handle { display: none; }
}

/* ---------- Reviews ---------- */

.reviews { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--gap); margin-bottom: var(--s-7); }
.quote {
  position: relative; margin: 0; display: flex; flex-direction: column; gap: var(--s-5);
  padding: 28px; background: var(--white); border-radius: var(--r-lg);
}
.quote blockquote { margin: 0; }
.quote blockquote p { font-size: 1rem; line-height: 1.65; }
.quote blockquote strong { display: block; font-family: var(--font-head); font-weight: 500; font-size: 1.1875rem; line-height: 1.3; margin-bottom: 8px; color: var(--forest); }
.quote figcaption { margin-top: auto; display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .9375rem; color: var(--forest); }
.quote figcaption::before { content: ""; width: 22px; height: 1.5px; background: var(--sage); }
.quote--feature { grid-column: span 2; background: var(--green); color: var(--white); padding: clamp(28px, 3.4vw, 48px); }
.quote--feature blockquote p { font-family: var(--font-head); font-weight: 300; font-size: clamp(1.3rem, 1rem + 1vw, 1.75rem); line-height: 1.4; }
.quote--feature figcaption { color: var(--white); }
.quote--feature figcaption::before { background: var(--gold); }
.quote__mark { width: 40px; height: 30px; fill: var(--gold); }
.quote--photo { grid-column: 4; grid-row: 1 / span 2; padding: 0; overflow: hidden; min-height: 320px; }
.quote--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 70%; }

@media (max-width: 1099px) {
  .reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote--photo { grid-column: 1 / -1; grid-row: auto; min-height: 0; aspect-ratio: 16 / 9; }
}
@media (max-width: 639px) {
  .reviews { grid-template-columns: 1fr; }
  .quote, .quote--feature { grid-column: auto; border-radius: 26px; }
  .quote--photo { aspect-ratio: 4 / 3; }
}

/* ---------- Visit ---------- */

.visit { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 4.4fr) minmax(0, 2.6fr); grid-template-rows: auto 260px; gap: var(--gap); }
.visit__info { grid-column: 1; grid-row: 1 / span 2; background: var(--tint); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 44px); display: grid; gap: var(--s-6); align-content: start; }
.visit__block { display: grid; gap: var(--s-3); justify-items: start; }
.visit__block + .visit__block { padding-top: var(--s-6); border-top: 1px solid #cfdccf; }
.visit__block h3 { font-size: 1.5rem; margin-bottom: 4px; }
.visit__block address { font-size: 1.0625rem; line-height: 1.6; margin-bottom: var(--s-2); }
.visit__note { font-size: .9375rem; color: var(--muted); }

.hours { width: 100%; border-collapse: collapse; font-size: 1.0625rem; }
.hours th, .hours td { padding: 10px 12px; text-align: left; font-weight: 400; border-bottom: 1px solid #cfdccf; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours th:first-child { padding-left: 0; }
.hours td:last-child { padding-right: 0; }
.hours .is-today th, .hours .is-today td { font-weight: 600; color: var(--forest); }
.hours__today { display: inline-block; margin-left: 6px; padding: 2px 10px; border-radius: var(--r-pill); background: var(--green); color: var(--white); font-size: .75rem; font-weight: 500; vertical-align: 2px; }

.contact-list { display: grid; gap: var(--s-2); }
.contact-list li { display: flex; align-items: center; gap: 12px; }
.contact-list .icon { color: var(--green); width: 22px; height: 22px; }
.contact-list a { font-weight: 500; font-size: 1.0625rem; overflow-wrap: anywhere; padding-block: 6px; }

.visit__map { grid-column: 2 / span 2; grid-row: 1; border-radius: var(--r-lg); overflow: hidden; background: var(--mist); min-height: 420px; border: 1px solid var(--line); }
.visit__map iframe { display: block; width: 100%; height: 100%; min-height: 420px; border: 0; }
.visit__photo { position: relative; margin: 0; border-radius: var(--r-lg); overflow: hidden; background: var(--mist); grid-row: 2; }
.visit__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.visit__photo figcaption {
  position: absolute; left: 12px; bottom: 12px; padding: 7px 14px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .92); font-size: .8125rem; font-weight: 500;
}

@media (max-width: 1019px) {
  .visit { grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); grid-template-rows: auto; }
  .visit__info { grid-column: 1 / -1; grid-row: auto; }
  .visit__map { grid-column: 1 / -1; grid-row: auto; }
  .visit__photo { grid-row: auto; height: 260px; }
}
@media (max-width: 639px) {
  .visit { grid-template-columns: 1fr; }
  .visit__info, .visit__map, .visit__photo { border-radius: 26px; }
  .visit__map, .visit__map iframe { min-height: 360px; }
  .visit__photo { height: auto; aspect-ratio: 3 / 2; }
  .visit__photo--b { display: none; }
  .visit__block .btn { width: 100%; }
}

/* ---------- Footer ---------- */

.footer { padding-bottom: var(--gap); }
.footer__panel { background: var(--forest); color: var(--on-green); border-radius: var(--r-lg); padding: clamp(32px, 5vw, 72px) clamp(24px, 5vw, 72px) var(--s-5); }
.footer__top { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1.1fr); gap: var(--s-7) var(--s-6); }
.footer__brand p { max-width: 34ch; font-size: .9375rem; }
.footer__brand .footer__tagline { font-family: var(--font-head); font-weight: 300; font-size: 1.75rem; line-height: 1.2; color: var(--gold); margin: var(--s-5) 0 var(--s-3); }
.footer__title { font-family: var(--font-body); font-size: .8125rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: var(--s-4); }
.footer__col { font-size: .9375rem; }
.footer__col ul { display: grid; gap: 2px; }
.footer__col address { margin-bottom: var(--s-3); line-height: 1.6; }
.footer__col address strong { color: var(--white); }
.footer a { color: var(--on-green); text-decoration: none; }
.footer__col li a:not([aria-label]), .footer__bottom a { display: inline-block; padding-block: 5px; }
.footer a:hover { color: var(--white); text-decoration: underline; }
.footer__hours li { display: flex; justify-content: space-between; gap: var(--s-4); padding-block: 5px; font-variant-numeric: tabular-nums; }
.social--footer { display: flex !important; gap: 8px !important; margin-top: var(--s-5); }
.social--footer a { width: 44px; height: 44px; border: 1px solid rgba(255, 255, 255, .28); color: var(--white); padding: 0; }
.social--footer a:hover { text-decoration: none; }
.footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-2) var(--s-5); margin-top: var(--s-7); padding-top: var(--s-5); border-top: 1px solid rgba(255, 255, 255, .16); font-size: .875rem; }
.footer__bottom ul { display: flex; gap: var(--s-5); }

@media (max-width: 1019px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 599px) {
  .footer__top { grid-template-columns: 1fr; gap: var(--s-6); }
  .footer__panel { border-radius: 26px; }
}

/* ---------- Motion ---------- */

.sparkle { width: 16px; height: 16px; fill: var(--gold); }
.sparkle--a, .sparkle--b { position: absolute; z-index: 1; pointer-events: none; }
.sparkle--a { width: 26px; height: 26px; top: 9%; left: 46%; }
.sparkle--b { width: 14px; height: 14px; top: 17%; left: 51%; }

.ring-draw { position: absolute; right: 14px; bottom: 14px; width: 84px; height: 84px; padding: 12px; border-radius: 50%; background: rgba(36, 69, 47, .78); backdrop-filter: blur(6px); fill: none; stroke: var(--white); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.ring-draw__gem { stroke: var(--gold); }
.ring-draw__facet { stroke: var(--gold); stroke-width: 2; opacity: .8; }

@media (max-width: 767px) {
  .sparkle--a { top: 20px; left: auto; right: 28px; }
  .sparkle--b { top: 52px; left: auto; right: 22px; }
  .ring-draw { width: 68px; height: 68px; padding: 10px; }
}

@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1); }
  .js .reveal.is-in { opacity: 1; transform: none; }
  .bento .reveal:nth-child(2n), .reviews .reveal:nth-child(2n), .facts .reveal:nth-child(2) { transition-delay: .08s; }
  .bento .reveal:nth-child(3n), .reviews .reveal:nth-child(3n), .facts .reveal:nth-child(3) { transition-delay: .16s; }

  .sparkle--a, .eyebrow .sparkle { animation: twinkle 4.5s ease-in-out infinite; transform-origin: center; }
  .sparkle--b { animation: twinkle 4.5s ease-in-out 1.4s infinite; transform-origin: center; }

  .ring-draw__band, .ring-draw__gem, .ring-draw__facet { stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 1.6s cubic-bezier(.6, 0, .2, 1) .5s forwards; }
  .ring-draw__gem { animation-delay: 1.5s; animation-duration: 1s; }
  .ring-draw__facet { animation-delay: 2.2s; animation-duration: .9s; }

  .canopy__leaf { transform-box: fill-box; transform-origin: 100% 0%; animation: sway 9s ease-in-out infinite alternate; }
  .canopy__leaf--2 { animation-duration: 11s; animation-delay: -3s; }
  .canopy__leaf--3 { animation-duration: 13s; animation-delay: -6s; }
  .canopy__rays { animation: shimmer 9s ease-in-out infinite alternate; }

  .watch__hand--m { animation: spin 60s steps(60) infinite; }
  .watch__hand--h { animation: spin 720s linear infinite; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation: none !important; }
}

@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(.55) rotate(45deg); opacity: .45; }
}
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes sway { from { transform: rotate(-3deg); } to { transform: rotate(4deg); } }
@keyframes shimmer { from { opacity: .6; } to { opacity: 1.6; } }
@keyframes spin { to { transform: rotate(360deg); } }
