@font-face {
  font-family: "Morganite";
  src: url("../assets/fonts/Morganite-Book.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Morganite";
  src: url("../assets/fonts/Morganite-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Morganite";
  src: url("../assets/fonts/Morganite-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}

:root {
  --gunmetal: #4d566e;
  --sky: #9ac7e8;
  --ink: #3c4356;
  --melon: #f6775a;
  --slate: #6a849c;
  --paper: #f5f7f5;
  --cream: #ece9e1;
  --white: #fff;
  --text: #343b4c;
  --muted: #65707a;
  --line: rgba(60, 67, 86, 0.17);
  --display: "Morganite", "Arial Narrow", sans-serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: min(1180px, calc(100% - 40px));
  --radius: 26px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 24px 70px rgba(60, 67, 86, .13);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

::selection {
  color: var(--white);
  background: var(--melon);
}

.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s;
}

.skip-link:focus { transform: translateY(0); }

.section { padding: 120px 0; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--slate);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 2px;
  background: var(--melon);
}

.eyebrow--light { color: rgba(255, 255, 255, .68); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }

h1, h2 {
  margin-bottom: 28px;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .005em;
  line-height: .81;
  text-transform: uppercase;
}

h1 { font-size: clamp(5.3rem, 10vw, 9rem); }
h2 { font-size: clamp(4rem, 7.4vw, 7rem); }
h1 em, h2 em { color: var(--slate); font-style: normal; }

.lead {
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  font-weight: 600;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 25px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(60, 67, 86, .18);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform .35s var(--ease), color .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform .35s var(--ease);
}

.button:hover {
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  transform: translateY(-2px);
}

.button:hover svg { transform: translateX(4px); }
.button--small { min-height: 45px; padding: 11px 19px; font-size: .72rem; }

.button--light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button--light:hover { color: var(--white); background: transparent; }

:focus-visible {
  outline: 3px solid var(--melon);
  outline-offset: 4px;
}

/* Navigation */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background .35s, border-color .35s, box-shadow .35s;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom-color: var(--line);
  background: rgba(245, 247, 245, .9);
  box-shadow: 0 10px 35px rgba(60, 67, 86, .07);
  backdrop-filter: blur(18px) saturate(140%);
}

.nav-wrap {
  display: flex;
  height: 84px;
  align-items: center;
  justify-content: space-between;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }

.brand__mark {
  display: grid;
  width: 50px;
  height: 50px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.brand__mark img { width: 48px; height: 48px; object-fit: cover; border-radius: 50%; }

.brand__name {
  color: var(--ink);
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.desktop-nav { display: flex; align-items: center; gap: 34px; }

.desktop-nav a {
  position: relative;
  color: var(--ink);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .07em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--melon);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: var(--ink);
  transition: transform .3s var(--ease);
}

.menu-toggle span:first-child { transform: translateY(-4px); }
.menu-toggle span:last-child { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 84px 0 auto;
  display: none;
  padding: 22px 20px 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 247, 245, .98);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity .3s, transform .3s;
}

.mobile-nav.is-open { opacity: 1; transform: translateY(0); }

.mobile-nav a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-nav a:last-child { margin-top: 13px; color: var(--melon); border-bottom: 0; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 134px 0 80px;
  overflow: hidden;
  background: linear-gradient(125deg, #f7f8f5 0%, #eef3f5 58%, #dcebf3 100%);
}

.hero__wash {
  position: absolute;
  top: 8%;
  left: -10%;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154, 199, 232, .22), transparent 67%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  min-height: calc(100svh - 214px);
  align-items: center;
  grid-template-columns: .94fr 1.06fr;
  gap: 64px;
}

.hero__copy { position: relative; z-index: 2; padding: 25px 0 60px; }
.hero h1 { margin-left: -3px; font-size: clamp(6rem, 10.3vw, 9.5rem); }
.hero h1 em { color: var(--melon); }

.hero__intro {
  max-width: 570px;
  margin-bottom: 35px;
  color: #59636f;
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.72;
}

.hero__actions { display: flex; align-items: center; gap: 28px; }

.text-link {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.text-link span { color: var(--melon); margin-left: 6px; }

.hero__locations {
  display: flex;
  gap: 32px;
  margin: 52px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero__locations li { display: flex; align-items: center; gap: 12px; }

.hero__locations svg {
  width: 25px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--melon);
  stroke-width: 1.5;
}

.hero__locations span { display: block; color: var(--muted); font-size: .73rem; line-height: 1.5; }
.hero__locations strong { display: block; color: var(--ink); font-size: .78rem; letter-spacing: .04em; }

.hero__visual { position: relative; padding: 0 0 44px 25px; }

.hero__image {
  position: relative;
  height: min(650px, 68vh);
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(60, 67, 86, .2);
}

.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(60, 67, 86, .22));
}

.hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: 59% center; }

.hero__seal {
  position: absolute;
  bottom: 5px;
  left: -24px;
  display: grid;
  width: 155px;
  height: 155px;
  place-content: center;
  border: 8px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  color: var(--white);
  background: var(--gunmetal);
  box-shadow: 0 18px 45px rgba(60, 67, 86, .25);
  text-align: center;
}

.hero__seal-number { font-family: var(--display); font-size: 4.3rem; font-weight: 700; line-height: .65; }
.hero__seal-unit { margin-bottom: 8px; font-size: .58rem; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.hero__seal-label { font-size: .61rem; line-height: 1.35; text-transform: uppercase; }

.hero__caption {
  position: absolute;
  right: 20px;
  bottom: 8px;
  margin: 0;
  color: var(--slate);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero__ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 11px 0 9px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__ticker > div {
  display: flex;
  width: max-content;
  align-items: center;
  animation: ticker 25s linear infinite;
}

.hero__ticker span {
  padding-inline: 27px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.hero__ticker i { width: 5px; height: 5px; border-radius: 50%; background: var(--melon); }

@keyframes ticker { to { transform: translateX(-50%); } }

/* Section heading */
.section-heading h2 { margin-bottom: 0; }

.section-heading--row {
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  margin-bottom: 65px;
}

.section-heading--row > p {
  max-width: 480px;
  margin: 0 0 10px auto;
  color: var(--muted);
}

/* Welcome */
.welcome { background: var(--white); }
.welcome__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.welcome__content { padding-top: 42px; }
.welcome__content > p:not(.lead) { color: var(--muted); }

.welcome__pillars { margin-top: 52px; border-top: 1px solid var(--line); }

.welcome__pillars article {
  display: grid;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 52px 1fr;
  column-gap: 20px;
}

.welcome__pillars article > span {
  grid-row: 1 / span 2;
  color: var(--melon);
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}

.welcome__pillars h3 { margin: 0 0 4px; color: var(--ink); font-size: .95rem; }
.welcome__pillars p { margin: 0; color: var(--muted); font-size: .88rem; }

/* Practices */
.practices { background: #eef2f3; }
.practice-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.practice-card {
  position: relative;
  min-height: 525px;
  padding: 25px 28px 30px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--gunmetal);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.practice-card:hover { box-shadow: var(--shadow); transform: translateY(-8px); }
.practice-card--blue { color: var(--ink); background: var(--sky); }
.practice-card--coral { color: var(--ink); background: var(--melon); }

.practice-card__number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
}

.practice-card__body { position: relative; z-index: 2; margin-top: 116px; }
.practice-card__tempo { margin-bottom: 9px; font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; opacity: .68; }

.practice-card h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 5.2rem;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: .85;
  text-transform: uppercase;
}

.practice-card__body > p:not(.practice-card__tempo) { margin-bottom: 22px; font-size: .92rem; line-height: 1.6; opacity: .8; }
.practice-card ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.practice-card li { padding: 7px 10px; border: 1px solid currentColor; border-radius: 999px; font-size: .61rem; font-weight: 700; letter-spacing: .05em; opacity: .75; text-transform: uppercase; }

.practice-card__symbol {
  position: absolute;
  top: -35px;
  right: -9px;
  color: currentColor;
  font-family: var(--display);
  font-size: 19rem;
  font-weight: 800;
  line-height: .8;
  opacity: .07;
  pointer-events: none;
}

/* Quote */
.quote-band {
  padding: 65px 0;
  color: var(--white);
  background: var(--slate);
  text-align: center;
}

.quote-band p,
.quote-band strong {
  display: block;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6.5vw, 6.7rem);
  font-weight: 700;
  letter-spacing: .025em;
  line-height: .8;
  text-transform: uppercase;
}

.quote-band strong { color: var(--sky); }

/* Story */
.story { background: var(--cream); }
.story__grid { display: grid; align-items: center; grid-template-columns: .86fr 1.14fr; gap: 105px; }
.story__visual { position: relative; padding: 0 0 50px 44px; }

.story__visual > img {
  width: 100%;
  height: 670px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.story__note {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  width: 175px;
  height: 175px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--melon);
  text-align: center;
}

.story__note span,
.story__note small { font-size: .6rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.story__note strong { font-family: var(--display); font-size: 3.8rem; line-height: .8; text-transform: uppercase; }

.story__copy .lead { margin-bottom: 20px; }
.story__copy > p:not(.lead, .eyebrow) { color: var(--muted); }

.story__facts {
  display: grid;
  margin: 45px 0 42px;
  border-block: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.story__facts div { padding: 20px 12px 20px 0; border-right: 1px solid var(--line); }
.story__facts div:last-child { padding-left: 18px; border-right: 0; }
.story__facts div:nth-child(2) { padding-left: 18px; }
.story__facts dt { color: var(--ink); font-family: var(--display); font-size: 2.7rem; font-weight: 700; line-height: .9; text-transform: uppercase; }
.story__facts dd { margin: 6px 0 0; color: var(--muted); font-size: .69rem; line-height: 1.4; }

.story blockquote {
  position: relative;
  margin: 0;
  padding-left: 24px;
  color: var(--gunmetal);
  font-size: 1rem;
  font-style: italic;
}

.story blockquote::before { content: ""; position: absolute; inset: 4px auto 4px 0; width: 3px; border-radius: 3px; background: var(--melon); }

/* Gallery */
.gallery { background: var(--white); }

.gallery__grid {
  display: grid;
  height: 588px;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
}

.gallery__item {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: var(--ink);
  cursor: zoom-in;
}

.gallery__item--wide { grid-row: 1 / span 2; }
.gallery__item--tall { grid-row: 1 / span 2; }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), opacity .5s;
}

.gallery__item:nth-child(1) img { object-position: 55% center; }
.gallery__item:nth-child(2) img { object-position: 52% center; }
.gallery__item:nth-child(3) img { object-position: center; }
.gallery__item:nth-child(4) img { object-position: 60% center; }

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgba(36, 41, 54, .62));
}

.gallery__item:hover img { transform: scale(1.045); }

.gallery__label {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: var(--white);
  font-size: .79rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-align: left;
}

.gallery__label small { margin-right: 8px; color: var(--sky); }

.gallery__open {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  color: var(--white);
  background: rgba(60, 67, 86, .22);
  backdrop-filter: blur(8px);
  transition: color .3s, background .3s, transform .3s;
}

.gallery__item:hover .gallery__open { color: var(--ink); background: var(--white); transform: rotate(45deg); }

/* Lightbox */
.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  padding: 30px;
  border: 0;
  color: var(--white);
  background: rgba(40, 46, 60, .94);
  opacity: 0;
  transition: opacity .25s;
}

.lightbox[open] { display: grid; place-items: center; opacity: 1; }
.lightbox::backdrop { background: rgba(25, 29, 38, .76); backdrop-filter: blur(9px); }
.lightbox figure { display: flex; width: min(100%, 1100px); height: min(82vh, 760px); margin: 0; flex-direction: column; align-items: center; justify-content: center; }
.lightbox img { max-width: 100%; max-height: calc(100% - 48px); border-radius: 12px; object-fit: contain; box-shadow: 0 30px 100px rgba(0, 0, 0, .35); }
.lightbox figcaption { margin-top: 14px; font-size: .8rem; letter-spacing: .08em; }

.lightbox__close,
.lightbox__nav {
  position: fixed;
  z-index: 2;
  display: grid;
  width: 50px;
  height: 50px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.lightbox__close { top: 25px; right: 25px; font-size: 1.8rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 25px; }
.lightbox__nav--next { right: 25px; }
.lightbox__close:hover, .lightbox__nav:hover { color: var(--ink); background: var(--white); }

/* Google reviews */
.reviews-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, #edf3f5 100%);
}

.reviews-band__panel {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: 46px;
  border: 1px solid rgba(60, 67, 86, .12);
  border-radius: calc(var(--radius) + 16px);
  background:
    radial-gradient(circle at 9% 12%, rgba(154, 199, 232, .24), transparent 31%),
    linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(245, 247, 245, .72));
  box-shadow: var(--shadow);
  grid-template-columns: .78fr 1.22fr;
  gap: 34px;
  isolation: isolate;
}

.reviews-band__panel::before,
.reviews-band__panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(106, 132, 156, .20);
  border-radius: 999px;
}

.reviews-band__panel::before {
  top: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
}

.reviews-band__panel::after {
  right: 28%;
  bottom: -120px;
  width: 280px;
  height: 280px;
  background: rgba(246, 119, 90, .06);
}

.reviews-band__intro {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.reviews-band__intro h2 {
  margin-bottom: 20px;
  font-size: clamp(4.8rem, 8vw, 7.1rem);
}

.reviews-band__intro h2 em { color: var(--slate); }
.reviews-band__intro p:not(.eyebrow) { max-width: 380px; margin-bottom: 34px; color: var(--muted); }

.reviews-band__main-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(60, 67, 86, .18);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 15px 35px rgba(60, 67, 86, .09);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .25s, background .25s, transform .25s;
}

.reviews-band__main-link:hover {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-2px);
}

.reviews-band__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  position: relative;
  display: flex;
  min-height: 300px;
  padding: 24px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(60, 67, 86, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(14px);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--sky), var(--slate), var(--melon));
  opacity: .8;
}

.review-card:hover {
  border-color: rgba(246, 119, 90, .32);
  box-shadow: 0 22px 55px rgba(60, 67, 86, .12);
  transform: translateY(-6px);
}

.review-card__number {
  color: rgba(77, 86, 110, .22);
  font-family: var(--display);
  font-size: 4.4rem;
  font-weight: 800;
  line-height: .8;
}

.review-card__source {
  margin: 24px 0 14px;
  color: var(--slate);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.review-card strong {
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.55;
}

.review-card__link {
  margin-top: auto;
  padding-top: 24px;
  color: var(--melon);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Locations */
.locations { background: #edf3f5; }
.locations > .shell { display: grid; grid-template-columns: .7fr 1.3fr; gap: 75px; }
.locations__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.location-card {
  position: relative;
  min-height: 420px;
  padding: 28px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--gunmetal);
}

.location-card--nature { color: var(--ink); background: var(--sky); }

.location-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 250px;
  height: 250px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .14;
}

.location-card__index { font-family: var(--display); font-size: 3rem; font-weight: 700; opacity: .35; }
.location-card__type { margin: 110px 0 8px; font-size: .67rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; opacity: .62; }
.location-card h3 { margin: 0 0 15px; font-family: var(--display); font-size: 4.2rem; font-weight: 700; line-height: .8; text-transform: uppercase; }
.location-card > p:not(.location-card__type) { max-width: 310px; font-size: .85rem; opacity: .76; }
.location-card a { position: absolute; z-index: 2; bottom: 27px; left: 28px; border-bottom: 1px solid currentColor; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

/* Booking */
.booking {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.booking__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.booking__inner > img { width: 122px; height: 122px; margin-bottom: 25px; border: 5px solid rgba(255, 255, 255, .8); border-radius: 50%; object-fit: cover; }
.booking .eyebrow { justify-content: center; }
.booking h2 { color: var(--white); }
.booking h2 em { color: var(--sky); }
.booking p:not(.eyebrow) { max-width: 650px; margin-bottom: 30px; color: rgba(255, 255, 255, .65); }

.booking__orb { position: absolute; border: 1px solid rgba(154, 199, 232, .25); border-radius: 50%; }
.booking__orb--one { top: -35%; left: -5%; width: 520px; height: 520px; }
.booking__orb--two { right: -8%; bottom: -55%; width: 630px; height: 630px; }

/* Footer */
.site-footer { padding: 60px 0 25px; background: var(--paper); }
.footer__top { display: grid; align-items: center; grid-template-columns: 1fr 1fr 1fr; padding-bottom: 42px; }
.footer__brand { display: flex; align-items: center; gap: 15px; }
.footer__brand img { width: 76px; height: 76px; border: 1px solid var(--line); border-radius: 50%; object-fit: cover; }
.footer__brand span { display: flex; flex-direction: column; }
.footer__brand strong { font-family: var(--display); font-size: 2.2rem; line-height: .9; text-transform: uppercase; }
.footer__brand small { margin-top: 5px; color: var(--muted); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; }
.footer__top > p { margin: 0; color: var(--muted); font-size: .77rem; text-align: center; }
.footer__top nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 20px; }
.footer__top nav a { font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.footer__top nav a:hover { color: var(--melon); }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 19px; border-top: 1px solid var(--line); color: var(--muted); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; }

.noscript { margin: 0; padding: 10px; color: var(--white); background: var(--ink); text-align: center; }

/* Motion */
.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.js .reveal--delay { transition-delay: .12s; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .desktop-nav { gap: 22px; }
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero h1 { font-size: clamp(5.6rem, 10.5vw, 7.6rem); }
  .hero__locations { gap: 18px; }
  .welcome__grid, .story__grid { gap: 60px; }
  .story__visual > img { height: 610px; }
  .gallery__grid { height: 504px; }
  .reviews-band__panel { grid-template-columns: 1fr; }
  .reviews-band__intro { min-height: 0; }
  .reviews-band__intro p:not(.eyebrow) { max-width: 620px; }
  .locations > .shell { gap: 45px; }
}

@media (max-width: 880px) {
  :root { --shell: min(100% - 32px, 720px); }
  .section { padding: 90px 0; }
  .desktop-nav, .nav-book { display: none; }
  .menu-toggle { position: relative; display: inline-flex; align-items: center; justify-content: center; }
  .mobile-nav { display: block; visibility: hidden; }
  .mobile-nav.is-open { visibility: visible; }

  .hero { min-height: auto; padding-top: 120px; }
  .hero__grid { min-height: 0; grid-template-columns: 1fr; gap: 40px; }
  .hero__copy { padding: 15px 0 0; }
  .hero h1 { max-width: 630px; font-size: clamp(6rem, 17vw, 9rem); }
  .hero__intro { max-width: 620px; }
  .hero__visual { width: min(100%, 670px); margin-inline: auto; padding-left: 40px; }
  .hero__image { height: 610px; }
  .hero__seal { left: 0; }

  .welcome__grid, .story__grid { grid-template-columns: 1fr; gap: 55px; }
  .welcome__content { padding-top: 0; }
  .practice-list { grid-template-columns: 1fr; }
  .practice-card { min-height: 440px; }
  .practice-card__body { margin-top: 75px; }
  .practice-card__symbol { right: 8%; }

  .section-heading--row { grid-template-columns: 1fr; gap: 25px; }
  .section-heading--row > p { max-width: 620px; margin-left: 0; }

  .story__visual { width: min(100%, 560px); margin-inline: auto; }
  .story__visual > img { height: 700px; }

  .gallery__grid { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: 322px 231px 231px; }
  .gallery__item--wide { grid-column: 1 / span 2; grid-row: auto; }
  .gallery__item--tall { grid-row: 2 / span 2; }

  .reviews-band__panel { padding: 32px; }
  .reviews-band__cards { grid-template-columns: 1fr; }
  .review-card { min-height: 220px; }

  .locations > .shell { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer__top > p { display: none; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 24px); --radius: 21px; }
  .section { padding: 76px 0; }
  .nav-wrap { height: 72px; }
  .brand__mark { width: 43px; height: 43px; }
  .brand__mark img { width: 41px; height: 41px; }
  .brand__name { font-size: 1.8rem; }
  .mobile-nav { inset: 72px 0 auto; }

  .hero { padding: 104px 0 70px; }
  .hero h1 { font-size: clamp(5.5rem, 25vw, 7.5rem); }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero__actions .button { width: 100%; }
  .hero__locations { flex-direction: column; gap: 17px; margin-top: 38px; }
  .hero__visual { padding: 0 0 56px 18px; }
  .hero__image { height: 480px; min-height: 0; border-radius: 20px; }
  .hero__image img { object-position: 64% center; }
  .hero__seal { width: 125px; height: 125px; border-width: 6px; }
  .hero__seal-number { font-size: 3.4rem; }
  .hero__caption { right: 0; }

  h2 { font-size: clamp(4rem, 20vw, 5.6rem); }
  .welcome__grid { gap: 30px; }
  .welcome__pillars article { grid-template-columns: 42px 1fr; }

  .practice-card { min-height: 440px; padding: 23px; }
  .practice-card__body { margin-top: 85px; }
  .practice-card h3 { font-size: 4.6rem; }

  .quote-band p, .quote-band strong { font-size: clamp(3.2rem, 17vw, 4.7rem); }

  .story__visual { padding: 0 0 40px 20px; }
  .story__visual > img { height: 530px; border-radius: 18px; }
  .story__note { width: 135px; height: 135px; }
  .story__note strong { font-size: 3rem; }
  .story__facts { grid-template-columns: 1fr; }
  .story__facts div, .story__facts div:nth-child(2), .story__facts div:last-child { padding: 16px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .story__facts div:last-child { border-bottom: 0; }

  .gallery__grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, 259px); }
  .gallery__item--wide, .gallery__item--tall { grid-column: auto; grid-row: auto; }

  .reviews-band__panel { padding: 24px; border-radius: 24px; }
  .reviews-band__intro h2 { font-size: clamp(4rem, 20vw, 5.6rem); }
  .reviews-band__main-link { width: 100%; }
  .review-card { min-height: 205px; padding: 22px; border-radius: 20px; }
  .review-card__number { font-size: 3.8rem; }
  .review-card__source { margin-top: 18px; }

  .locations__cards { grid-template-columns: 1fr; }
  .location-card { min-height: 390px; }

  .booking { padding: 90px 0; }
  .booking__inner > img { width: 100px; height: 100px; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__top nav { justify-content: flex-start; }
  .footer__bottom { align-items: flex-start; flex-direction: column; gap: 7px; }

  .lightbox { padding: 18px; }
  .lightbox figure { height: 76vh; }
  .lightbox__close { top: 12px; right: 12px; }
  .lightbox__nav { top: auto; bottom: 18px; transform: none; }
  .lightbox__nav--prev { left: calc(50% - 62px); }
  .lightbox__nav--next { right: calc(50% - 62px); }
}

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