/* ============================================================
   D2 Nails & Spa — landing demo
   Palette built from the brand's real assets (stone logo,
   warm cream studio, dusty-rose accents).
   ============================================================ */

:root {
  --ink: #211c17;
  --ink-2: #3b332b;
  --paper: #faf6ef;
  --cream: #f2e9da;
  --stone: #d3cec3;
  --accent: #c06b5e;
  --accent-deep: #a14f44;
  --accent-soft: #ecd2c8;
  --gold: #b98a5e;
  --white: #fffdf9;
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --font-script: 'Great Vibes', cursive;
  --ease: cubic-bezier(.19, 1, .22, 1);
  --shadow: 0 30px 60px -20px rgba(33, 28, 23, .28);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--accent); color: var(--white); }

/* ---------- Film grain ---------- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 2000;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -8%); }
  30% { transform: translate(4%, 6%); }
  50% { transform: translate(-6%, 3%); }
  70% { transform: translate(6%, -5%); }
  90% { transform: translate(-3%, 8%); }
}

/* ---------- Custom cursor ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 3000;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease),
              background .3s, opacity .3s;
  opacity: 0;
}
.cursor::after {
  content: '';
  position: absolute;
  inset: -18px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  opacity: .6;
  transform: scale(.4);
  transition: transform .3s var(--ease), opacity .3s;
}
@media (hover: hover) and (pointer: fine) {
  body.has-cursor .cursor { opacity: 1; }
  body.has-cursor .cursor.cursor--active {
    width: 52px; height: 52px;
    background: transparent;
  }
  body.has-cursor .cursor.cursor--active::after {
    transform: scale(1); opacity: .9;
  }
  body.has-cursor .cursor.cursor--down::after {
    transform: scale(1.25);
  }
}
@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 4000;
  display: grid;
  place-items: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; }
.preloader__logo {
  width: 92px; height: 92px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  animation: logoPulse 1.6s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(192, 107, 94, .45); }
  50% { transform: scale(1.06); box-shadow: 0 0 0 22px rgba(192, 107, 94, 0); }
}
.preloader__name {
  margin-top: 18px;
  font-family: var(--font-display);
  letter-spacing: .24em;
  color: var(--white);
  font-size: 1.15rem;
}
.preloader__name span { color: var(--accent); }
.preloader__bar {
  width: 160px; height: 2px;
  background: rgba(255,255,255,.15);
  margin: 16px auto 0;
  overflow: hidden;
}
.preloader__bar span {
  display: block; height: 100%;
  width: 40%;
  background: var(--accent);
  animation: slideBar 1.1s var(--ease) infinite;
}
@keyframes slideBar {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(420%); }
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  transition: color .35s var(--ease), background .35s var(--ease),
              transform .35s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.btn--accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 14px 30px -12px rgba(192, 107, 94, .7);
}
.btn--accent:hover {
  background: var(--accent-deep);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -14px rgba(161, 79, 68, .75);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,253,249,.5);
}
.btn--ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--ghost-light { border-color: rgba(33,28,23,.3); color: var(--ink); }
.btn--ghost-light:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--white); }
.btn--sm { padding: .8rem 1.4rem; font-size: .75rem; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 1.4rem;
  transition: background .4s, box-shadow .4s, padding .4s;
}
.nav.is-solid {
  background: rgba(250, 246, 239, .9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -18px rgba(33,28,23,.25);
  padding: .7rem 1.4rem;
}
.nav__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.nav__brand img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.nav__brand-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: .1em;
  color: var(--ink);
  line-height: 1;
}
.nav__brand-text span { display: block; font-size: .82rem; letter-spacing: .3em; color: var(--accent); }
.nav__links { display: none; align-items: center; gap: 2rem; }
.nav__link {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  position: relative;
  padding: .3rem 0;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__menu {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 2px solid var(--accent);
}
.nav__menu-logo {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
body.menu-open .nav__menu-logo { transform: rotate(360deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 900;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  text-align: center;
}
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: .12em;
  color: var(--white);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s;
}
.mobile-menu.is-open .mobile-menu__link { opacity: 1; transform: translateY(0); }
.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: .08s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: .14s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: .2s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: .26s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: .32s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(6) { transition-delay: .38s; }
.mobile-menu__link:hover { color: var(--accent); }
.mobile-menu__book { transition-delay: .44s !important; opacity: 0; }
.mobile-menu.is-open .mobile-menu__book { opacity: 1; }
.mobile-menu__phone {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .08em;
  opacity: 0;
  transition: opacity .5s ease .5s;
}
.mobile-menu.is-open .mobile-menu__phone { opacity: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 2.4s var(--ease) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(33,28,23,.28) 0%, rgba(33,28,23,.15) 40%, rgba(33,28,23,.55) 100%),
    radial-gradient(80% 60% at 50% 45%, transparent 0%, rgba(33,28,23,.35) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 7rem 1.4rem 5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.hero__eyebrow {
  color: rgba(255,253,249,.85);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero__title {
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 400;
  line-height: .9;
  letter-spacing: .01em;
}
.hero__line { display: block; }
.hero__line:first-child {
  font-size: clamp(6rem, 26vw, 17rem);
  text-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.hero__line:last-child {
  font-size: clamp(2.4rem, 9vw, 6.5rem);
  color: var(--accent-soft);
  letter-spacing: .04em;
}
.hero__line em { font-style: normal; color: var(--accent); }
.hero__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  margin: 1.6rem auto 1.2rem;
  max-width: 420px;
}
.hero__rule-bar { height: 1px; width: 100%; background: linear-gradient(90deg, transparent, rgba(255,253,249,.8)); }
.hero__rule-bar:last-child { background: linear-gradient(90deg, rgba(255,253,249,.8), transparent); }
.hero__rule-flourish { color: var(--accent); font-size: .85rem; }
.hero__script {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 5.5vw, 2.8rem);
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.hero__actions {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
}
.hero__stamp {
  position: absolute;
  top: 6.2rem; right: 1.2rem;
  z-index: 3;
  width: 92px; height: 92px;
  color: var(--white);
  animation: spin 22s linear infinite;
}
.hero__stamp svg { width: 100%; height: 100%; }
.hero__stamp text {
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  fill: rgba(255,253,249,.9);
}
.hero__stamp-star {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: var(--accent);
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.hero__scroll {
  position: absolute;
  bottom: 1.6rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,253,249,.75);
}
.hero__scroll-text {
  font-size: .66rem;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: rgba(255,253,249,.4);
  overflow: hidden;
  position: relative;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--accent);
  animation: scrollDrop 1.8s var(--ease) infinite;
}
@keyframes scrollDrop {
  to { top: 100%; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,253,249,.08);
}
.marquee__track {
  display: flex;
  gap: 2.4rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 26s linear infinite;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .14em;
}
.marquee__track span:nth-child(odd) { color: var(--accent); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: 5.5rem 1.4rem;
  overflow: hidden;
}
.section__head { margin-bottom: 3rem; }
.section__kicker {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .8rem;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.section__kicker::before {
  content: '';
  width: 34px; height: 1px;
  background: var(--accent);
}
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.9rem, 9vw, 5.4rem);
  line-height: .94;
  letter-spacing: .01em;
  color: var(--ink);
}
.section__title .accent-line {
  color: var(--accent);
  display: inline-block;
  position: relative;
}
.section__watermark {
  position: absolute;
  top: 1.5rem; right: -0.1em;
  font-family: var(--font-display);
  font-size: clamp(7rem, 24vw, 18rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(33,28,23,.1);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.section > *:not(.section__watermark) { position: relative; z-index: 1; }

/* ---------- About ---------- */
.about { background: var(--paper); }
.about__grid {
  display: grid;
  gap: 2.6rem;
  align-items: center;
}
.about__copy p {
  color: var(--ink-2);
  font-size: 1.02rem;
  margin-bottom: 1.1rem;
  max-width: 52ch;
}
.about__sig {
  margin-top: 1.6rem;
  font-family: var(--font-script);
  font-size: 1.9rem;
  color: var(--accent);
}
.about__fig { position: relative; }
.about__img-frame {
  border-radius: 4px 60px 4px 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about__img-frame img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.about__fig:hover .about__img-frame img { transform: scale(1.05); }
.about__badge {
  position: absolute;
  bottom: -1.4rem; left: -0.6rem;
  background: var(--ink);
  color: var(--white);
  padding: .9rem 1.3rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: .8rem;
  box-shadow: var(--shadow);
}
.about__badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
}
.about__badge-txt {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.4;
}
.stats {
  margin-top: 3.6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.stat {
  background: var(--white);
  border: 1px solid rgba(33,28,23,.08);
  border-radius: 14px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--accent);
  line-height: 1;
}
.stat__small { font-size: 1.2rem; color: var(--ink-2); }
.stat__txt {
  display: block;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: .4rem;
}

/* ---------- Services ---------- */
.services { background: var(--cream); }
.services__grid {
  display: grid;
  gap: 1.2rem;
}
.service {
  background: var(--white);
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  box-shadow: 0 8px 26px -18px rgba(33,28,23,.35);
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service__num {
  position: absolute;
  top: 1rem; right: 1.2rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--stone);
  letter-spacing: .08em;
}
.service__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: .03em;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: .6rem;
  padding-right: 2.4rem;
}
.service__desc {
  font-size: .92rem;
  color: var(--ink-2);
  margin-bottom: 1.2rem;
  max-width: 44ch;
}
.service__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(33,28,23,.1);
  padding-top: .9rem;
  margin-bottom: .4rem;
}
.service__time {
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.service__price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--accent);
  letter-spacing: .05em;
}
.service__book {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: .2rem 0;
}
.service__book::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.service__book:hover::after { transform: scaleX(1); transform-origin: left; }
.service--special {
  background: var(--ink);
}
.service--special .service__name { color: var(--white); }
.service--special .service__desc { color: rgba(255,253,249,.72); }
.service--special .service__num { color: rgba(255,253,249,.3); }
.service--special .service__time { color: rgba(255,253,249,.6); }
.service--special .service__price { color: var(--accent-soft); }
.service--special .service__book { color: var(--white); }
.service--special .service__meta { border-color: rgba(255,253,249,.15); }
.services__note {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  background: var(--paper);
  border: 1px dashed var(--accent);
  border-radius: 16px;
  padding: 1.8rem 1.4rem;
}
.services__note-star { color: var(--accent); font-size: 1.2rem; }
.services__note p {
  font-size: .95rem;
  color: var(--ink-2);
  max-width: 46ch;
  font-weight: 500;
}

/* ---------- Gallery / coverflow ---------- */
.gallery {
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.gallery__pin {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem 0;
  position: sticky;
  top: 0;
}
.gallery__head {
  padding: 0 1.4rem 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: .6rem 1.6rem;
}
.gallery__head .section__kicker { color: var(--accent-soft); }
.gallery__head .section__kicker::before { background: var(--accent-soft); }
.gallery__head .section__title { color: var(--white); }
.gallery__hint {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,253,249,.45);
}
.gallery__track {
  display: flex;
  gap: 1.2rem;
  padding: 1.4rem 1.4rem 2.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  perspective: 1400px;
  scrollbar-width: none;
}
.gallery__track::-webkit-scrollbar { display: none; }
.card {
  flex: 0 0 78vw;
  max-width: 420px;
  scroll-snap-align: center;
  transform: rotateY(18deg) scale(.9);
  transform-origin: center;
  opacity: .45;
  transition: transform .7s var(--ease), opacity .7s var(--ease);
  cursor: grab;
}
.card.is-active { transform: rotateY(0deg) scale(1); opacity: 1; }
.card:active { cursor: grabbing; }
.card__frame {
  border-radius: 4px 26px 4px 4px;
  overflow: hidden;
  border: 1px solid rgba(255,253,249,.12);
}
.card__frame img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}
.card figcaption {
  margin-top: .8rem;
  display: flex;
  align-items: baseline;
  gap: .8rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: .08em;
}
.card__idx { color: var(--accent); font-size: .9rem; }
.card__tag {
  margin-left: auto;
  font-family: var(--font-body);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,253,249,.5);
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--paper); }
.testimonials__grid {
  display: grid;
  gap: 1.4rem;
}
.quote {
  position: relative;
  background: var(--white);
  padding: 2.2rem 1.7rem 1.8rem;
  border-radius: 6px;
  border: 1px solid rgba(33,28,23,.08);
  box-shadow: 0 12px 30px -20px rgba(33,28,23,.35);
  transition: transform .5s var(--ease);
}
.quote:hover { transform: translateY(-5px); }
.quote--lift { transform: translateY(10px); }
.quote--lift:hover { transform: translateY(4px); }
.quote__mark {
  position: absolute;
  top: -1.4rem; left: 1.4rem;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 10px 22px -10px rgba(192,107,94,.8);
}
.quote blockquote {
  font-size: 1.02rem;
  color: var(--ink-2);
  font-weight: 500;
  margin: 0 0 1.4rem;
  font-style: italic;
}
.quote figcaption { display: flex; flex-direction: column; gap: .15rem; }
.quote__stars { color: var(--gold); font-size: .85rem; letter-spacing: .2em; }
.quote__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: .06em;
  color: var(--ink);
}
.quote__role {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Contact ---------- */
.contact { background: var(--cream); }
.contact__grid {
  display: grid;
  gap: 1.4rem;
}
.contact__card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.6rem;
  box-shadow: 0 10px 30px -22px rgba(33,28,23,.4);
}
.contact__card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: .05em;
  margin-bottom: 1.2rem;
  color: var(--ink);
}
.contact__line {
  margin-bottom: 1rem;
  color: var(--ink-2);
  font-size: .98rem;
  line-height: 1.7;
}
.contact__line a {
  border-bottom: 1px solid var(--stone);
  transition: color .3s, border-color .3s;
}
.contact__line a:hover { color: var(--accent); border-color: var(--accent); }
.contact__card .btn { margin-top: .8rem; }
.hours { display: flex; flex-direction: column; }
.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px dashed rgba(33,28,23,.14);
}
.hours__day {
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
}
.hours__time {
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: .03em;
}
.hours__row--closed .hours__day { color: var(--accent); }
.hours__row--closed .hours__time { color: var(--accent); text-transform: uppercase; font-size: .78rem; letter-spacing: .16em; }
.contact__note {
  margin-top: 1.2rem;
  font-size: .84rem;
  color: var(--ink-2);
}
.contact__img-frame {
  border-radius: 4px 34px 4px 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact__img-frame img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.footer__marquee {
  background: var(--accent);
  color: var(--white);
  padding: .85rem 0;
}
.footer__marquee .marquee__track {
  font-size: 1.05rem;
  animation-duration: 20s;
}
.footer__marquee .marquee__track span:nth-child(odd) { color: var(--ink); }
.footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 4.5rem 1.4rem 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.6rem;
}
.footer__brand img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.footer__script {
  font-family: var(--font-script);
  font-size: 1.9rem;
  color: var(--accent-soft);
}
.footer__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
}
.footer__links a {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,253,249,.75);
  transition: color .3s;
}
.footer__links a:hover { color: var(--accent-soft); }
.footer__meta {
  font-size: .76rem;
  color: rgba(255,253,249,.45);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Desktop ---------- */
@media (min-width: 720px) {
  .nav__links { display: flex; }
  .nav__menu { display: none; }
  .hero__actions { flex-direction: row; justify-content: center; }
  .about__grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
  .contact__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__card--photo { grid-column: 1 / -1; }
  .contact__card--photo .contact__img-frame img { aspect-ratio: 21 / 9; }
  .card { flex-basis: 40vw; }
  .hero__stamp { width: 118px; height: 118px; top: 7rem; right: 3.4rem; }
}

@media (min-width: 1100px) {
  .section { padding: 7.5rem 3rem; }
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .services__note { flex-direction: row; justify-content: center; gap: 1.6rem; }
  .card { flex-basis: 33vw; }
  .contact__grid { grid-template-columns: 1.1fr 1fr; }
  .contact__card--photo { grid-column: auto; grid-row: span 2; }
  .contact__card--photo .contact__img-frame,
  .contact__card--photo .contact__img-frame img { height: 100%; }
  .contact__card--photo .contact__img-frame img { aspect-ratio: auto; min-height: 100%; }
}
