:root {
  --black: #0c0c0d;
  --charcoal: #171719;
  --panel: rgba(18, 18, 20, 0.92);
  --panel-soft: rgba(18, 18, 20, 0.78);
  --gold: #d8b35a;
  --gold-light: #f1d68d;
  --ivory: #f7f3eb;
  --muted: #c8c1b5;
  --line: rgba(216, 179, 90, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 22px;
  --header-height: 82px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ivory);
  background:
    linear-gradient(rgba(247, 243, 235, 0.88), rgba(247, 243, 235, 0.94)),
    url("images/lily-background.webp") center / cover fixed;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 15%, rgba(216, 179, 90, 0.15), transparent 30%),
    radial-gradient(circle at 88% 75%, rgba(0, 0, 0, 0.10), transparent 35%);
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 10000;
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--black);
  background: var(--gold-light);
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(12, 12, 13, 0.92);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(1180px, calc(100% - 40px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  min-width: max-content;
}

.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand-text { display: grid; line-height: 1.1; }
.brand-name {
  color: var(--gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand-tagline { margin-top: 5px; color: var(--muted); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #f6f2ea;
  text-decoration: none;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--black);
  background: var(--gold-light);
}

.nav-menu a:hover { transform: translateY(-1px); }

.menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  font-weight: 700;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease;
}
.menu-toggle-lines { position: relative; }
.menu-toggle-lines::before,
.menu-toggle-lines::after { content: ""; position: absolute; left: 0; }
.menu-toggle-lines::before { top: -6px; }
.menu-toggle-lines::after { top: 6px; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after { top: 0; transform: rotate(-45deg); }

main { min-height: calc(100vh - var(--header-height)); }

.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.hero {
  min-height: min(790px, calc(100vh - var(--header-height)));
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: url("images/deep-tissue.webp") center 43% / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4,4,5,0.88) 0%, rgba(4,4,5,0.64) 48%, rgba(4,4,5,0.30) 100%),
    linear-gradient(0deg, rgba(4,4,5,0.75), transparent 45%);
}

.hero-content { width: min(1120px, calc(100% - 40px)); padding: 80px 0; }
.hero-copy { max-width: 690px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 40px; height: 1px; background: currentColor; }

h1, h2, h3 { margin-top: 0; font-family: "Cinzel", Georgia, serif; line-height: 1.18; }
h1 { margin-bottom: 22px; font-size: clamp(2.7rem, 7vw, 5.8rem); letter-spacing: -0.025em; }
h2 { margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3.3rem); color: #171719; }
h3 { margin-bottom: 12px; font-size: 1.35rem; }

.hero h1 span { color: var(--gold-light); }
.hero-lead { max-width: 620px; margin: 0; color: #f2eee7; font-size: clamp(1rem, 2vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.035em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--black); background: var(--gold-light); box-shadow: 0 13px 30px rgba(216,179,90,0.2); }
.btn-primary:hover { box-shadow: 0 17px 36px rgba(216,179,90,0.3); }
.btn-secondary { color: white; border-color: rgba(255,255,255,0.5); background: rgba(10,10,10,0.25); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); }
.btn-dark { color: white; background: var(--black); }
.btn-dark:hover { background: #28282b; }

.trust-strip { background: var(--black); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 24px; text-align: center; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--gold-light); font-family: "Cinzel", Georgia, serif; font-size: 0.95rem; letter-spacing: 0.08em; }
.trust-item span { display: block; margin-top: 4px; color: var(--muted); font-size: 0.86rem; }

.section { padding: clamp(72px, 9vw, 120px) 0; }
.section-white {
  color: #29282a;
  background:
    linear-gradient(rgba(255, 253, 248, 0.79), rgba(250, 247, 241, 0.88)),
    url("images/lily-background.webp") center / cover no-repeat fixed;
}
.section-dark { color: white; background: #111113; }
.section-dark h2 { color: white; }
.section-intro { max-width: 690px; margin-bottom: 38px; }
.section-intro.center { margin-inline: auto; text-align: center; }
.section-intro p { margin: 0; color: #65605a; font-size: 1.02rem; }
.section-dark .section-intro p { color: var(--muted); }
.gold-rule { width: 70px; height: 2px; margin: 18px 0 22px; background: var(--gold); }
.section-intro.center .gold-rule { margin-inline: auto; }

.split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(42px, 7vw, 90px); align-items: center; }
.image-frame {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(241, 214, 141, 0.38);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    0 0 38px rgba(216, 179, 90, 0.17);
}
.image-frame::after { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,0.38); border-radius: calc(var(--radius) - 7px); pointer-events: none; }
.image-frame img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.copy p { color: #5c5853; }
.copy .quote { color: #252428; font-family: "Cinzel", Georgia, serif; font-size: 1.28rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  overflow: hidden;
  border: 1px solid rgba(216,179,90,0.26);
  border-radius: var(--radius);
  color: white;
  background: var(--panel);
  box-shadow:
    0 18px 48px rgba(0,0,0,0.18),
    0 0 32px rgba(216,179,90,0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 58px rgba(0,0,0,0.28),
    0 0 42px rgba(216,179,90,0.17);
}
.card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-media img { transform: scale(1.045); }
.card-body { padding: 27px; }
.card-body h3 { color: var(--gold-light); }
.card-body .treatment-price {
  min-height: 0;
  margin: -2px 0 15px;
  color: #fff;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.card-body .treatment-price span {
  margin-right: 5px;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.treatment-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 3px 0 18px;
}
.treatment-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 11px;
  border: 1px solid rgba(216,179,90,0.22);
  border-radius: 10px;
  background: rgba(255,255,255,0.035);
}
.treatment-price-row span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.treatment-price-row strong {
  color: #fff;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.card-body p { min-height: 5.1em; margin: 0; color: #d7d1c8; font-size: 0.94rem; }
.card-link { display: inline-flex; margin-top: 21px; color: var(--gold-light); font-weight: 800; text-decoration: none; }
.card-link::after { content: "→"; margin-left: 8px; transition: transform 0.2s ease; }
.card-link:hover::after { transform: translateX(4px); }

.cta-band { padding: 54px 0; color: white; background: linear-gradient(110deg, #151517, #27231b); border-block: 1px solid var(--line); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.cta-inner h2 { margin-bottom: 8px; color: white; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.cta-inner p { margin: 0; color: var(--muted); }

.page-hero {
  padding: clamp(82px, 11vw, 150px) 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  background: url("images/treatment-room.webp") center / cover no-repeat;
}
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(rgba(6,6,7,0.64), rgba(6,6,7,0.83)); }
.page-hero h1 { margin-bottom: 12px; font-size: clamp(2.6rem, 7vw, 5rem); }
.page-hero p { max-width: 680px; margin: 0 auto; color: #eee9e0; font-size: 1.08rem; }
.page-hero .eyebrow { justify-content: center; }

.services-page .card-grid { grid-template-columns: repeat(3, 1fr); }
.services-page .card-body p { min-height: 8.1em; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { padding: 34px 26px; border: 1px solid var(--line); border-radius: var(--radius); text-align: center; background: #161618; box-shadow: var(--shadow); }
.team-photo { width: 174px; aspect-ratio: 1; margin: 0 auto 24px; overflow: hidden; border: 3px solid var(--gold); border-radius: 50%; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { margin-bottom: 5px; color: white; }
.team-role { margin: 0 0 16px; color: var(--gold-light); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.team-card p:last-child { margin: 0; color: var(--muted); font-size: 0.92rem; }

.slider-shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0d0d0e;
  box-shadow: var(--shadow);
  touch-action: pan-y;
}
.slides { display: flex; height: 100%; transition: transform 0.6s cubic-bezier(.2,.7,.2,1); will-change: transform; }
.slide { flex: 0 0 100%; position: relative; margin: 0; }
.slide img { width: 100%; height: 100%; object-fit: cover; user-select: none; -webkit-user-drag: none; }
.slide figcaption { position: absolute; left: 24px; bottom: 22px; padding: 10px 16px; border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; color: white; background: rgba(7,7,8,0.72); backdrop-filter: blur(10px); font-weight: 700; }
.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: white;
  background: rgba(8,8,9,0.62);
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.35rem;
}
.slider-btn:hover { color: var(--black); background: var(--gold-light); }
.prev-btn { left: 18px; }
.next-btn { right: 18px; }
.slider-dots { display: flex; justify-content: center; gap: 9px; margin-top: 22px; }
.slider-dot { width: 11px; height: 11px; padding: 0; border: 0; border-radius: 50%; background: #9a958e; cursor: pointer; }
.slider-dot[aria-current="true"] { background: var(--gold); transform: scale(1.25); }

.contact-layout { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 34px; align-items: start; }
.contact-cards { display: grid; gap: 17px; }
.contact-card { display: flex; align-items: center; gap: 18px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; color: white; background: #161618; text-decoration: none; transition: transform 0.2s ease, border-color 0.2s ease; }
.contact-card:hover { transform: translateX(5px); border-color: var(--gold); }
.contact-icon { width: 50px; height: 50px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--black); background: var(--gold-light); font-size: 1.2rem; font-weight: 900; }
.contact-card strong { display: block; font-family: "Cinzel", Georgia, serif; color: var(--gold-light); }
.contact-card span { color: var(--muted); font-size: 0.93rem; }

.form-card, .hours-card { padding: clamp(27px, 5vw, 44px); border: 1px solid var(--line); border-radius: var(--radius); color: white; background: #161618; box-shadow: var(--shadow); }
.form-card h2, .hours-card h2 { color: white; font-size: clamp(1.7rem, 4vw, 2.4rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--gold-light); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 13px;
  padding: 13px 14px;
  color: white;
  background: #0f0f11;
  outline: none;
}
.field textarea { min-height: 125px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(216,179,90,0.13); }
.form-note { margin: 14px 0 0; color: #aaa49b; font-size: 0.82rem; }

.hours-card { margin-top: 28px; }
.status { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.status.open { color: #8be5ae; background: rgba(61,190,112,0.12); }
.status.closed { color: #ff9e99; background: rgba(230,75,66,0.12); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.hours-list { margin: 26px 0 0; padding: 0; list-style: none; }
.hours-list li { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.09); color: var(--muted); }
.hours-list li:last-child { border-bottom: 0; }
.hours-list strong { color: white; }

.site-footer { padding: 52px 0 26px; border-top: 1px solid var(--line); color: var(--muted); background: #09090a; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.7fr 0.8fr; gap: 35px; }
.footer-brand { max-width: 380px; }
.footer-brand .brand { margin-bottom: 17px; }
.footer-brand p { margin: 0; color: #a9a39a; font-size: 0.9rem; }
.footer-heading { margin: 0 0 14px; color: var(--gold-light); font-family: "Cinzel", Georgia, serif; font-size: 0.96rem; }
.footer-links { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: #bdb7ad; text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { margin-top: 38px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; gap: 20px; font-size: 0.8rem; }


/* Decorative background treatment: floral light sections and subtle gold glitter. */
.hero,
.page-hero,
.section,
.trust-strip,
.cta-band,
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero > *,
.page-hero > *,
.section > *,
.trust-strip > *,
.cta-band > *,
.site-footer > * {
  position: relative;
  z-index: 1;
}

.hero::after,
.page-hero::after,
.section::after,
.trust-strip::after,
.cta-band::after,
.site-footer::after {
  content: "";
  position: absolute;
  inset: -12%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    radial-gradient(circle, rgba(255, 233, 170, 0.96) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(216, 179, 90, 0.72) 0 1.2px, transparent 2px),
    radial-gradient(circle, rgba(255, 248, 218, 0.82) 0 0.8px, transparent 1.5px);
  background-size: 210px 210px, 330px 330px;
  background-position: 20px 30px, 120px 90px;
  filter: drop-shadow(0 0 4px rgba(216, 179, 90, 0.45));
   animation: minimal-glitter 35s ease-in-out infinite alternate;
}

.section-white::after {
  opacity: 0.13;
  background-image:
    radial-gradient(circle, rgba(197, 148, 43, 0.78) 0 1px, transparent 1.9px),
    radial-gradient(circle, rgba(238, 196, 91, 0.64) 0 1.2px, transparent 2px),
    radial-gradient(circle, rgba(255, 220, 130, 0.72) 0 0.8px, transparent 1.5px);
}

.image-frame,
.card,
.team-card,
.slider,
.contact-card,
.form-card,
.hours-card {
  position: relative;
  z-index: 1;
}

.card-media,
.team-photo,
.slider {
  box-shadow: 0 0 28px rgba(216, 179, 90, 0.12);
}

@keyframes minimal-glitter {
  from {
    opacity: 0.07;
    transform: translateY(0);
  }

  to {
    opacity: 0.13;
    transform: translateY(-5px);
  }
}

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }

@media (max-width: 900px) {
  :root { --header-height: 74px; }
  .navbar { width: min(1180px, calc(100% - 28px)); min-height: var(--header-height); }
  .brand-tagline { display: none; }
  .brand img { width: 52px; height: 52px; }
  .menu-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 5px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 0 0 18px 18px;
    background: rgba(12,12,13,0.98);
    box-shadow: 0 22px 45px rgba(0,0,0,0.35);
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scaleY(0.96);
    transition: 0.2s ease;
  }
  .nav-menu.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav-menu a { width: 100%; justify-content: center; border-radius: 12px; }
  .split, .contact-layout { grid-template-columns: 1fr; }
  .image-frame { min-height: 430px; }
  .image-frame img { min-height: 430px; }
  .card-grid, .services-page .card-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  .treatment-prices { grid-template-columns: 1fr; }
  body { background-attachment: scroll; }
  .section-white { background-attachment: scroll; background-position: center top; }
  .container, .hero-content, .slider-shell { width: min(100% - 28px, 1120px); }
  .brand-name { font-size: 1.02rem; letter-spacing: 0.08em; }
  .menu-toggle { padding-inline: 13px; }
  .menu-toggle-label { display: none; }
  .hero { min-height: 620px; background-position: 61% center; }
  .hero::before { background: linear-gradient(90deg, rgba(4,4,5,0.88), rgba(4,4,5,0.56)), linear-gradient(0deg, rgba(4,4,5,0.75), transparent 50%); }
  .hero-content { padding: 70px 0; }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .section { padding: 70px 0; }
  .card-grid, .services-page .card-grid, .team-grid { grid-template-columns: 1fr; }
  .card-body p, .services-page .card-body p { min-height: 0; }
  .cta-inner { align-items: stretch; flex-direction: column; }
  .image-frame, .image-frame img { min-height: 360px; }
  .slider { aspect-ratio: 4 / 3; border-radius: 16px; }
  .slider-btn { width: 42px; height: 42px; }
  .prev-btn { left: 9px; }
  .next-btn { right: 9px; }
  .slide figcaption { left: 12px; right: 12px; bottom: 12px; width: max-content; max-width: calc(100% - 24px); }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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