/*
  XCELLENT Shirting & Suiting Website
  Replace the images inside /assets with your real photography using the same filenames.
  Theme changes are controlled with html[data-theme="dark"] and html[data-theme="light"].
*/

:root {
  color-scheme: dark light;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-script: "Good Vibes", cursive;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-width: 1180px;
  --radius-xs: 12px;
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 36px;
  --space-section: clamp(4.5rem, 8vw, 8rem);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, .22);
  --shadow-card: 0 18px 60px rgba(0, 0, 0, .20);
  --grad-brand: linear-gradient(135deg, #6f2cff 0%, #b2218b 45%, #ef3340 100%);
  --grad-subtle: radial-gradient(circle at top left, rgba(111, 44, 255, .26), transparent 34%), radial-gradient(circle at 85% 20%, rgba(239, 51, 64, .22), transparent 30%);
}

html[data-theme="dark"] {
  --bg: #111217;
  --bg-2: #17181f;
  --surface: #1d1e26;
  --surface-2: #25262f;
  --text: #f7f1ea;
  --muted: #b8b0aa;
  --line: rgba(255, 255, 255, .10);
  --line-strong: rgba(255, 255, 255, .18);
  --header: rgba(17, 18, 23, .78);
  --input: #16171e;
  --image-filter: none;
  --gold: #d8b76f;
}

html[data-theme="light"] {
  --bg: #f7f5f0;
  --bg-2: #ffffff;
  --surface: #ffffff;
  --surface-2: #eee9df;
  --text: #17171b;
  --muted: #665f58;
  --line: rgba(17, 18, 23, .10);
  --line-strong: rgba(17, 18, 23, .18);
  --header: rgba(247, 245, 240, .86);
  --input: #ffffff;
  --image-filter: saturate(.92) contrast(.98);
  --gold: #9f7436;
  --shadow-soft: 0 24px 90px rgba(44, 35, 22, .12);
  --shadow-card: 0 18px 55px rgba(44, 35, 22, .10);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--grad-subtle), var(--bg);
  pointer-events: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  filter: var(--image-filter);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.section-pad {
  padding-block: var(--space-section);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--text);
  color: var(--bg);
  padding: .75rem 1rem;
  border-radius: 999px;
  transition: transform .25s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: max-content;
}

.brand-logo {
  width: clamp(170px, 16vw, 235px);
  height: auto;
  display: block;
  filter: none;
}

.site-footer .brand-logo {
  width: clamp(180px, 17vw, 250px);
}

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

.brand-mark {
  display: none;
}

.brand-copy {
  display: none;
}

.nav-panel {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 2.2vw, 1.6rem);
  color: var(--muted);
  font-weight: 600;
  font-size: .88rem;
}

.nav-panel a {
  position: relative;
  padding-block: .4rem;
}

.nav-panel a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 999px;
  transition: width .25s ease;
}

.nav-panel a:hover,
.nav-panel a.active {
  color: var(--text);
}

.nav-panel a:hover::after,
.nav-panel a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: .75rem;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--text);
  border-radius: 999px;
  transition: transform .25s ease, opacity .25s ease;
}

.theme-toggle {
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface);
  padding: .45rem .65rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
}

.toggle-track {
  width: 34px;
  height: 18px;
  border-radius: 999px;
  background: var(--surface-2);
  position: relative;
  border: 1px solid var(--line);
}

.toggle-dot {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--grad-brand);
  transition: transform .25s ease;
}

html[data-theme="light"] .toggle-dot {
  transform: translateX(16px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border-radius: 999px;
  min-height: 48px;
  padding: .8rem 1.25rem;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gradient {
  color: #fff;
  background: var(--grad-brand);
  box-shadow: 0 14px 35px rgba(178, 33, 139, .28);
}

.btn-ghost {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, .02);
}

html[data-theme="light"] .btn-ghost {
  background: rgba(255, 255, 255, .78);
}

.btn-small {
  min-height: 40px;
  padding: .62rem 1rem;
  font-size: .84rem;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(17, 18, 23, .78) 42%, transparent 100%),
    radial-gradient(circle at 72% 52%, rgba(239, 51, 64, .20), transparent 32%);
}

html[data-theme="light"] .hero-bg {
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(247, 245, 240, .82) 42%, transparent 100%),
    radial-gradient(circle at 72% 52%, rgba(239, 51, 64, .16), transparent 34%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 .8rem;
  color: var(--gold);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: .95;
  letter-spacing: -.035em;
  font-weight: 600;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.6rem, 8vw, 7.7rem);
}

h2 {
  font-size: clamp(2.6rem, 5.6vw, 5.6rem);
}

h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.35rem);
}

.hero-text {
  max-width: 620px;
  margin: 1.35rem 0 0;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  color: var(--muted);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 2.4rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.trust-list li {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
}

.trust-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
}

.trust-list span {
  display: block;
  margin-top: .35rem;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero-image {
  aspect-ratio: 4 / 5;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.hero-image::after,
.story-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0, 0, 0, .62), transparent);
  pointer-events: none;
}

.image-badge {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  background: rgba(17, 18, 23, .66);
  backdrop-filter: blur(12px);
  padding: .65rem .95rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
}

.floating-note {
  position: absolute;
  z-index: 3;
  padding: .8rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 18, 23, .66);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: var(--shadow-card);
  font-family: var(--font-script);
  font-size: 1.7rem;
}

.note-one {
  top: 10%;
  left: -2rem;
}

.note-two {
  right: -2rem;
  bottom: 18%;
}

.journey-strip {
  padding-block: 1.5rem;
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 72%, transparent);
}

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

.journey-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .25rem .8rem;
  align-items: start;
  padding: .85rem;
}

.journey-grid span {
  grid-row: span 2;
  color: transparent;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 700;
}

.journey-grid strong {
  font-size: .95rem;
}

.journey-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
}

.section-head {
  max-width: 820px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-head.centered {
  text-align: center;
  margin-inline: auto;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 660px;
}

.centered p:not(.eyebrow) {
  margin-inline: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.service-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 1.25rem;
  align-items: stretch;
  padding: .75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 255px;
  border-radius: calc(var(--radius-md) - .55rem);
}

.service-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.2rem .9rem 1.2rem 0;
}

.card-kicker,
.product-content span {
  margin: 0 0 .35rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  font-size: .72rem;
}

.service-card p:not(.card-kicker),
.product-content p,
.process-card p,
.story-copy p,
.contact-card p,
.site-footer p {
  color: var(--muted);
}

.text-link {
  margin-top: auto;
  width: max-content;
  color: var(--text);
  font-weight: 800;
  border-bottom: 1px solid var(--line-strong);
}

.section-panel {
  background: linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--surface) 72%, transparent) 14%, color-mix(in srgb, var(--surface) 72%, transparent) 86%, transparent 100%);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
  margin: -1.2rem 0 2rem;
}

.filter-tab {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  border-radius: 999px;
  padding: .65rem 1rem;
  font-weight: 800;
}

.filter-tab.active,
.filter-tab:hover {
  color: #fff;
  background: var(--grad-brand);
  border-color: transparent;
}

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

.product-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}

.product-card.is-hidden {
  display: none;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 360px;
}

.product-content {
  padding: 1.3rem;
}

.product-content p {
  min-height: 52px;
}

.story-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.story-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-soft);
  min-height: 560px;
}

.story-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
}

.est-card {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
  width: 165px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(17, 18, 23, .72);
  border: 1px solid rgba(216, 183, 111, .42);
  backdrop-filter: blur(12px);
}

.est-card span {
  color: var(--gold);
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 800;
}

.est-card strong {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
}

.timeline {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.timeline div {
  position: relative;
  padding: 1.1rem 1.1rem 1.1rem 3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.timeline span {
  position: absolute;
  left: 1.1rem;
  top: 1.35rem;
  width: .8rem;
  height: .8rem;
  border-radius: 50%;
  background: var(--grad-brand);
}

.timeline strong {
  display: block;
  margin-bottom: .2rem;
}

.timeline p {
  margin: 0;
}

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

.process-card {
  padding: .75rem .75rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.process-card img {
  width: 100%;
  height: 210px;
  border-radius: calc(var(--radius-md) - .55rem);
  margin-bottom: 1.1rem;
}

.process-card span {
  display: block;
  color: transparent;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--font-display);
  font-size: 3.3rem;
  line-height: .9;
  font-weight: 700;
}

.appointment-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-mini {
  margin-top: 1.5rem;
  display: grid;
  gap: .7rem;
}

.contact-mini a {
  color: var(--text);
  font-weight: 800;
}

.booking-card {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 3vw, 2rem);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.step-indicator {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.step-indicator span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 900;
}

.step-indicator span.active {
  color: #fff;
  background: var(--grad-brand);
  border-color: transparent;
}

.booking-step {
  display: none;
  border: 0;
  padding: 0;
  margin: 0;
}

.booking-step.active {
  display: block;
}

.booking-step legend {
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}

.service-options label {
  display: block;
  cursor: pointer;
}

.service-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-options span {
  display: grid;
  min-height: 84px;
  place-items: center;
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--input);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.service-options input:checked + span {
  border-color: rgba(239, 51, 64, .72);
  box-shadow: 0 0 0 3px rgba(178, 33, 139, .18);
  background: linear-gradient(135deg, rgba(111, 44, 255, .15), rgba(239, 51, 64, .15));
}

.booking-next {
  margin-top: 1.2rem;
  width: 100%;
}

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

.form-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
}

label {
  display: grid;
  gap: .45rem;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--input);
  color: var(--text);
  border-radius: var(--radius-xs);
  padding: .9rem 1rem;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(239, 51, 64, .7);
  box-shadow: 0 0 0 3px rgba(178, 33, 139, .15);
}

textarea {
  resize: vertical;
}

.booking-actions-row {
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  margin-top: 1.2rem;
}

.booking-actions-row .btn {
  flex: 1;
}

.booking-summary {
  margin-top: 1.4rem;
  padding: 1.2rem;
  border: 1px solid rgba(239, 51, 64, .34);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(111, 44, 255, .10), rgba(239, 51, 64, .10));
}

.booking-summary h3 {
  margin-bottom: .55rem;
}

.booking-summary p {
  color: var(--muted);
}

.contact-section {
  padding-top: 0;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.4rem;
  align-items: center;
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface) 90%, transparent), color-mix(in srgb, var(--surface-2) 82%, transparent));
  box-shadow: var(--shadow-soft);
}

.contact-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.social-links {
  grid-column: 1 / -1;
  list-style: none;
  padding: 1.2rem 0 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  border-top: 1px solid var(--line);
}

.social-links a {
  display: inline-flex;
  padding: .65rem .95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
}

.social-links a:hover {
  color: var(--text);
  border-color: var(--line-strong);
}

.site-footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 62%, transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, .8fr);
  gap: 2rem;
}

.site-footer h3 {
  font-size: 1.5rem;
  margin-bottom: .8rem;
}

.site-footer a:not(.brand) {
  display: block;
  color: var(--muted);
  margin-bottom: .45rem;
}

.site-footer a:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: .86rem;
}

.back-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: #fff;
  background: var(--grad-brand);
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.back-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .nav {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  .nav-panel {
    position: fixed;
    top: 76px;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: .2rem;
    padding: .8rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    box-shadow: var(--shadow-card);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }

  .nav-panel.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-panel a {
    padding: .8rem 1rem;
    border-radius: var(--radius-xs);
  }

  .nav-panel a:hover {
    background: var(--surface-2);
  }

  .nav-panel a::after {
    display: none;
  }

  .nav-actions {
    justify-self: end;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-grid,
  .story-grid,
  .appointment-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-visual {
    max-width: 640px;
    margin-inline: auto;
  }

  .journey-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid,
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 1.1rem), var(--max-width));
  }

  .nav {
    min-height: 70px;
    grid-template-columns: auto 1fr auto;
  }

  .brand-logo {
    width: clamp(150px, 36vw, 190px);
  }

  .theme-toggle [data-theme-label] {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(3.15rem, 18vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .trust-list,
  .journey-grid,
  .service-grid,
  .collection-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card > div {
    padding: .4rem .4rem 1rem;
  }

  .product-card img {
    height: 310px;
  }

  .story-media,
  .story-media img {
    min-height: 430px;
  }

  .service-options,
  .form-grid,
  .form-grid.two-col {
    grid-template-columns: 1fr;
  }

  .booking-actions-row {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-note {
    display: none;
  }
}

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