:root {
  color-scheme: light;
  --ink: #1f1b1d;
  --muted: #746b70;
  --line: #eadfe3;
  --shell: #fff9fb;
  --blush: #f8d8e4;
  --rose: #d96f9a;
  --wine: #6a1f3a;
  --plum: #8c385d;
  --sage: #242021;
  --cream: #fffdf9;
  --pink: #fbd8e8;
  --accent: #ef8db7;
  --sticky-header-height: 5rem;
  --chrome: linear-gradient(105deg, #9a3f66 0%, #ef8db7 24%, #6a1f3a 48%, #d45f91 72%, #8d3158 100%);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 6.5rem;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    linear-gradient(90deg, rgba(239, 141, 183, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(248, 216, 228, 0.5), transparent 24rem),
    var(--shell);
  background-size: 4.6rem 4.6rem, auto, auto;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.scroll-wave {
  --wave-x: 18%;
  --wave-y: 12%;
  position: fixed;
  inset: -22vh -12vw;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(38rem 26rem at var(--wave-x) var(--wave-y), rgba(239, 141, 183, 0.28), transparent 68%),
    radial-gradient(30rem 20rem at calc(var(--wave-x) + 42%) calc(var(--wave-y) + 8%), rgba(251, 216, 232, 0.42), transparent 72%),
    linear-gradient(115deg, transparent 0 38%, rgba(239, 141, 183, 0.12) 48%, transparent 62%),
    transparent;
  filter: blur(2px);
  transition: background-position 120ms linear;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.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;
}

.notice-bar {
  overflow: hidden;
  background: var(--blush);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.notice-track {
  display: flex;
  width: max-content;
  animation: notice-slide 28s linear infinite;
}

.notice-track span {
  min-width: max-content;
  padding: 0.72rem 2.25rem;
}

@keyframes notice-slide {
  from {
    transform: translateX(0);
  }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto minmax(12rem, 1fr);
  align-items: center;
  gap: 1.5rem;
  padding: 1.15rem clamp(1rem, 4vw, 4.5rem);
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: 0;
}

.brand strong {
  color: var(--rose);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 1.8vw, 1.4rem);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a:hover,
.text-link:hover {
  color: var(--rose);
}

.nav-item {
  position: relative;
  padding: 0.85rem 0;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

.nav-trigger::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-0.12rem) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-item:hover .nav-trigger::after,
.nav-item:focus-within .nav-trigger::after {
  transform: translateY(0.08rem) rotate(225deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 15.5rem;
  padding: 0.7rem;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 22px 55px rgba(31, 27, 29, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.75rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown-right {
  left: auto;
  right: 0;
  transform: translate(0, 0.75rem);
}

.nav-dropdown a {
  padding: 0.72rem 0.85rem;
  color: var(--ink);
  font-size: 0.86rem;
}

.nav-dropdown a:hover {
  background: var(--blush);
  color: var(--wine);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-item:hover .nav-dropdown-right,
.nav-item:focus-within .nav-dropdown-right {
  transform: translate(0, 0);
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
}

.tool-link {
  display: inline-flex;
  width: 2.45rem;
  height: 2.45rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.tool-link svg {
  width: 1.08rem;
  height: 1.08rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.google-tool {
  width: auto;
  min-width: 4.3rem;
  padding: 0 0.72rem;
  font-size: 0.78rem;
}

.instagram-tool {
  color: #d62976;
}

.tiktok-tool {
  color: #111111;
}

.tiktok-tool svg {
  filter: drop-shadow(1px 0 0 #25f4ee) drop-shadow(-1px 0 0 #fe2c55);
}

.tool-link:hover {
  background: var(--blush);
  border-color: var(--accent);
  color: var(--wine);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.35rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 22px rgba(31, 27, 29, 0.1);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--wine);
  border-color: var(--wine);
  transform: translateY(-1px);
}

.button-small {
  min-height: 2.5rem;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
}

.button-ghost {
  background: transparent;
  color: var(--ink);
}

.button-ghost:hover {
  background: var(--wine);
  color: white;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(20rem, 0.97fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(1.5rem, 3.2vw, 3.4rem) clamp(1rem, 4vw, 4.5rem) clamp(2.8rem, 6vw, 5.4rem);
  position: relative;
  overflow: hidden;
}

.hero-copy {
  max-width: 48rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 14ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 5.8vw, 5.6rem);
  line-height: 0.94;
}

.chrome-word,
.chrome-label {
  background: var(--chrome);
  background-size: 260% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 20px rgba(90, 31, 50, 0.16));
  animation: chrome-shift 7s ease-in-out infinite alternate;
}

@keyframes chrome-shift {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 100% 50%;
  }
}

@supports (animation-timeline: scroll()) {
  .chrome-word {
    animation: chrome-shift 1s linear both;
    animation-timeline: scroll(root);
  }
}

@supports (animation-timeline: view()) {
  .quick-card,
  .visual-card,
  .service-card,
  .training-card,
  .team-member,
  figure,
  .shop-card,
  .parking-panel {
    animation: card-rise both ease-out;
    animation-timeline: view();
    animation-range: entry 0% cover 28%;
  }

  @keyframes card-rise {
    from {
      opacity: 0.72;
      transform: translateY(18px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.15rem, 4.5vw, 4.6rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
  line-height: 1.15;
}

.hero-text {
  max-width: 40rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 40rem;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  padding: 1rem 1rem 1rem 0;
}

.proof-strip dt {
  font-size: 1.35rem;
  font-weight: 900;
}

.proof-strip dd {
  margin: 0.22rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-panel {
  display: grid;
  gap: 1rem;
  align-self: start;
  padding: clamp(1rem, 2vw, 1.5rem);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.92), transparent 16rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(248, 216, 228, 0.82));
  border: 1px solid var(--line);
  box-shadow: 0 24px 68px rgba(90, 31, 50, 0.1);
}

.hero-image,
.section-image,
.visual-card img {
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(90, 31, 50, 0.12);
}

.hero-image {
  aspect-ratio: 16 / 9;
  height: clamp(15rem, 23vw, 20rem);
  min-height: 0;
  object-position: center;
}

.panel-kicker {
  width: max-content;
  margin: 0;
  padding: 0.45rem 0.7rem;
  background: white;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rating-card,
.hero-note {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(90, 31, 50, 0.12);
}

.rating-card strong {
  display: block;
  margin: 0.6rem 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 0.98;
}

.rating-card p,
.hero-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.stars {
  display: inline-flex;
  color: var(--accent);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.hero-service-list {
  display: grid;
  gap: 0.75rem;
}

.hero-service-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: white;
  color: var(--ink);
  border: 1px solid rgba(90, 31, 50, 0.12);
  transition: background 180ms ease, transform 180ms ease;
}

.hero-service-list a:hover {
  background: var(--ink);
  color: white;
  transform: translateX(4px);
}

.hero-service-list span {
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-service-list strong {
  font-size: 1rem;
  text-align: right;
}

@media (min-width: 1180px) {
  .hero {
    padding-bottom: clamp(1.5rem, 2.8vw, 3rem);
  }

  .hero-panel {
    gap: 0.85rem;
  }

  .hero-service-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .hero-service-list a {
    min-height: 5.4rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.9rem;
  }

  .hero-service-list strong {
    margin-top: 0.35rem;
    text-align: left;
  }

  .rating-card,
  .hero-note {
    padding: 1rem;
  }
}

.category-band {
  position: relative;
  top: auto;
  z-index: 8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.category-scroll {
  display: flex;
  overflow: visible;
}

.category-hint {
  display: none;
}

.category-scroll a {
  flex: 1 1 0;
  min-width: 0;
  padding: 1rem 1.1rem;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.category-scroll a:hover {
  background: var(--blush);
  color: var(--wine);
}

.category-scroll a:last-child {
  border-right: 0;
}

.visual-story {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 4vw, 4.5rem);
  background: rgba(255, 255, 255, 0.64);
  border-bottom: 1px solid var(--line);
}

.visual-card {
  position: relative;
  display: block;
  min-height: 18rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 16px 38px rgba(90, 31, 50, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.visual-card-large {
  min-height: 24rem;
}

.visual-card img {
  height: 100%;
  min-height: inherit;
  transition: transform 450ms ease;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(31, 27, 29, 0.58));
}

.visual-card span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: white;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.visual-card:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 48px rgba(90, 31, 50, 0.1);
  transform: translateY(-2px);
}

.visual-card:hover img {
  transform: scale(1.035);
}

.section,
.reviews-section,
.team-section,
.faq-section {
  padding: clamp(2.8rem, 5.5vw, 4.75rem) clamp(1rem, 4vw, 4.5rem);
}

.compact-section {
  padding-top: clamp(2.75rem, 5vw, 4rem);
  padding-bottom: clamp(2.75rem, 5vw, 4rem);
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.quick-card {
  display: flex;
  min-height: 12rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(90, 31, 50, 0.045);
}

.quick-card span,
.training-card span {
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-badge {
  width: max-content;
  max-width: 100%;
  margin-bottom: 0.9rem;
  padding: 0.42rem 0.6rem;
  background: var(--blush);
  color: var(--wine);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.quick-card strong {
  display: block;
  margin: 1.5rem 0 1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.05;
}

.quick-card small {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.quick-card:hover,
.service-card:hover,
.training-card:hover,
.team-member:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 45px rgba(90, 31, 50, 0.08);
  transform: translateY(-2px);
}

.service-card {
  display: flex;
  min-height: 17rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(90, 31, 50, 0.04);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.service-card p:not(.service-type) {
  color: var(--muted);
  line-height: 1.55;
}

.featured-service {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(248, 216, 228, 0.92)),
    white;
  color: var(--ink);
  border-color: rgba(239, 141, 183, 0.65);
}

.featured-service p,
.featured-service .service-type {
  color: var(--rose);
}

.service-card.featured-service p:not(.service-type) {
  color: var(--muted);
}

.service-type {
  margin-bottom: 2.1rem;
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid currentColor;
}

.service-meta span {
  color: inherit;
  font-size: 0.9rem;
  font-weight: 800;
}

.service-meta strong {
  font-size: 1.05rem;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 4vw, 4.5rem) clamp(1.5rem, 2.4vw, 2.2rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(248, 216, 228, 0.84)),
    var(--blush);
}

.training-copy {
  color: #4f4748;
  font-size: 1.08rem;
  line-height: 1.75;
}

.section-image {
  aspect-ratio: 4 / 3;
  max-height: 32rem;
  margin-bottom: 1.2rem;
  object-position: center;
  box-shadow: 0 16px 38px rgba(90, 31, 50, 0.08);
}

.split-section > .section-image {
  aspect-ratio: 16 / 9;
  max-height: clamp(17rem, 22vw, 22rem);
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.training-card {
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(90, 31, 50, 0.045);
}

.training-card h3 {
  margin: 1.4rem 0 0.8rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
}

.training-card p {
  color: var(--muted);
  line-height: 1.58;
}

.training-card strong {
  display: block;
  margin-top: 1.2rem;
  color: var(--wine);
}

.training-commerce {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(2.4rem, 5vw, 4rem) clamp(1rem, 4vw, 4.5rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(251, 216, 232, 0.58)),
    var(--shell);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 1180px) {
  .split-section {
    padding-top: clamp(1.5rem, 2.8vw, 2.4rem);
    padding-bottom: clamp(1.25rem, 2.2vw, 2rem);
  }

  .split-section > .section-image {
    max-height: clamp(15rem, 17vw, 19rem);
  }

  .compact-section {
    padding-top: clamp(2rem, 3.4vw, 3.1rem);
    padding-bottom: clamp(2rem, 3.4vw, 3.1rem);
  }

  .training-card {
    min-height: 15rem;
  }

  .training-commerce {
    padding-top: clamp(1.9rem, 3.4vw, 3rem);
    padding-bottom: clamp(1.9rem, 3.4vw, 3rem);
  }

  .training-product-grid article {
    min-height: 13.5rem;
  }
}

.training-commerce p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.training-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0;
}

.training-product-grid article {
  display: flex;
  min-height: 16rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(90, 31, 50, 0.04);
}

.training-product-grid span {
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.training-product-grid h3 {
  margin-top: 0.8rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
}

.training-product-grid strong {
  display: block;
  margin-top: 0.8rem;
  color: var(--wine);
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--wine);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.28rem;
}

.reviews-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(248, 216, 228, 0.72)),
    var(--shell);
  color: var(--ink);
}

.reviews-section .eyebrow,
.reviews-section .section-heading p {
  color: var(--muted);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.google-review-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
  padding: 1.35rem;
  background:
    linear-gradient(90deg, #4285f4 0 25%, #ea4335 25% 50%, #fbbc05 50% 75%, #34a853 75% 100%) top / 100% 0.35rem no-repeat,
    white;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(90, 31, 50, 0.06);
}

.award-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(90, 31, 50, 0.04);
}

.award-strip span {
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.award-strip strong {
  display: inline-flex;
  min-width: 4.2rem;
  justify-content: center;
  padding: 0.45rem 0.7rem;
  background: var(--blush);
  color: var(--wine);
  font-weight: 900;
}

.google-review-panel strong {
  display: block;
  margin: 0.45rem 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: 1;
}

.google-review-panel p {
  max-width: 44rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.review-source,
.chrome-label {
  display: inline-flex;
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.google-stars {
  display: inline-flex;
  gap: 0.08em;
  margin-right: 0.25rem;
}

.google-word {
  white-space: nowrap;
}

.google-blue {
  color: #4285f4;
}

.google-red {
  color: #ea4335;
}

.google-yellow {
  color: #fbbc05;
}

.google-green {
  color: #34a853;
}

figure {
  min-height: 14rem;
  margin: 0;
  padding: 1.4rem;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(90, 31, 50, 0.045);
}

blockquote {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.14;
}

figcaption {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

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

.button-light:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--wine);
}

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

.button-light-outline:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--wine);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.team-grid + .team-group-title {
  margin-top: 2rem;
}

.team-group-title {
  width: max-content;
  max-width: 100%;
  margin: 0 0 0.85rem;
  padding: 0.55rem 0.75rem;
  background: var(--blush);
  color: var(--wine);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-member {
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  padding: 1rem;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(90, 31, 50, 0.04);
}

.team-member.text-member {
  grid-template-columns: 1fr;
  min-height: 11rem;
  align-items: start;
}

.team-member-featured {
  background:
    linear-gradient(135deg, rgba(233, 152, 186, 0.2), rgba(255, 253, 249, 0.95)),
    var(--cream);
}

.team-member p {
  margin-bottom: 0.5rem;
  color: var(--rose);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-member span {
  display: block;
  color: var(--muted);
  line-height: 1.5;
}

.specialist-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.specialist-services li {
  padding: 0.38rem 0.55rem;
  background: var(--shell);
  border: 1px solid rgba(233, 152, 186, 0.45);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.team-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 1.2rem;
}

.social-icon {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--wine);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-icon svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--wine);
  transform: translateY(-2px);
}

.team-book-link {
  display: inline-flex;
  min-height: 2.35rem;
  align-items: center;
  padding: 0.62rem 0.82rem;
  border: 1px solid var(--line);
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.team-book-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--wine);
  transform: translateY(-2px);
}

.shop-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(2.2rem, 4.6vw, 4rem) clamp(1rem, 4vw, 4.5rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(248, 216, 228, 0.64)),
    var(--pink);
}

.shop-section p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.countdown {
  display: grid;
  max-width: 42rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.countdown-title {
  margin: 1.6rem 0 -0.9rem;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.countdown div {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(90, 31, 50, 0.14);
  box-shadow: 0 12px 30px rgba(90, 31, 50, 0.05);
}

.countdown strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.92;
}

.countdown span {
  display: block;
  margin-top: 0.55rem;
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stock-interest-list {
  display: grid;
  gap: 0.65rem;
  max-width: 42rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.stock-interest-list li {
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(90, 31, 50, 0.13);
  color: var(--wine);
  font-weight: 850;
  line-height: 1.42;
}

.stock-interest-list li::before {
  content: "Waitlist";
  display: inline-flex;
  margin-right: 0.6rem;
  color: var(--rose);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.shop-card {
  padding: 1.5rem;
  border: 1px solid rgba(90, 31, 50, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 253, 249, 0.62)),
    var(--cream);
  box-shadow: 0 22px 55px rgba(90, 31, 50, 0.12);
}

.shop-card .section-image {
  aspect-ratio: 4 / 3;
  max-height: 30rem;
}

.shop-card strong {
  display: block;
  margin: 1rem 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1;
}

.visit-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 4.5rem);
  background: var(--ink);
  color: white;
}

.visit-section .eyebrow,
.visit-section p {
  color: rgba(255, 255, 255, 0.78);
}

.visit-section .contact-line {
  margin: 0.85rem 0 0;
  color: white;
}

.visit-section .hours-title {
  margin: 1.4rem 0 0.65rem;
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.opening-hours {
  display: grid;
  max-width: 42rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1.4rem;
  margin: 0;
}

.opening-hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.opening-hours dt,
.opening-hours dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 800;
}

.opening-hours dd {
  text-align: right;
}

.visit-section h2 {
  max-width: 11ch;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-end;
}

.visit-actions .button {
  border-color: white;
}

.visit-actions .button-ghost {
  color: white;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem clamp(1rem, 4vw, 4.5rem);
  background: var(--ink);
  color: white;
}

.site-footer p {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
  gap: 1rem;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 4.5rem);
  background: var(--cream);
}

.map-wrap {
  min-height: 28rem;
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(90, 31, 50, 0.08), rgba(233, 152, 186, 0.14)),
    var(--shell);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  border: 0;
}

.parking-panel {
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--shell);
}

.parking-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.parking-panel ul {
  margin: 1.25rem 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.65;
}

.faq-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(248, 216, 228, 0.62)),
    var(--shell);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.faq-grid article {
  padding: 1.25rem;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(90, 31, 50, 0.04);
}

.faq-grid h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.cookie-banner {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  width: min(44rem, calc(100vw - 2rem));
  padding: 1rem;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 22px 55px rgba(31, 27, 29, 0.16);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.48;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.cookie-actions button {
  min-height: 2.55rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--ink);
  background: white;
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.cookie-actions button:last-child {
  background: var(--ink);
  color: white;
}

.legal-page {
  background: var(--shell);
}

.legal-content {
  max-width: 52rem;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 4vw, 2rem);
}

.legal-content .brand {
  margin-bottom: 2rem;
}

.legal-content h1 {
  max-width: none;
  font-size: clamp(3rem, 6vw, 5.2rem);
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.legal-content p {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 980px) {
  :root {
    --sticky-header-height: 4.6rem;
  }

  .hero,
  .visual-story,
  .split-section,
  .training-commerce,
  .shop-section,
  .quick-grid,
  .service-grid,
  .review-grid,
  .training-grid,
  .training-product-grid,
  .team-grid,
  .faq-grid,
  .location-section {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
  }

  .tool-link {
    display: none;
  }

  .team-member {
    grid-template-columns: 8rem minmax(0, 1fr);
  }

}

@media (max-width: 640px) {
  :root {
    --sticky-header-height: 4.95rem;
  }

  .site-header {
    gap: 0.8rem;
  }

  .brand {
    font-size: 1.18rem;
  }

  .button-small {
    padding-inline: 0.8rem;
  }

  .hero {
    padding-top: 1.6rem;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 3.55rem);
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .category-band {
    width: 100%;
    max-width: 100vw;
    position: relative;
  }

  .category-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
  }

  .google-review-panel {
    display: grid;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .category-scroll a {
    flex: 0 0 10rem;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .category-hint {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0.55rem 1rem;
    background: var(--blush);
    color: var(--wine);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
  }

  .service-card {
    min-height: 14.5rem;
  }

  .team-member,
  .visit-section,
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .visit-actions,
  .site-footer div {
    justify-content: flex-start;
  }

  .opening-hours {
    grid-template-columns: 1fr;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
