:root {
  --bg: #f7f4ed;
  --bg-soft: #efeae0;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --text: #171612;
  --text-soft: #69655d;
  --line: rgba(23, 22, 18, 0.12);
  --header-bg: rgba(247, 244, 237, 0.88);
  --gold: #e7ad00;
  --gold-bright: #ffc400;
  --gold-soft: #fff2bf;
  --dark: #181713;
  --dark-soft: #23211c;
  --success: #16865d;
  --danger: #b34f45;
  --shadow: 0 26px 70px rgba(26, 22, 13, 0.1);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --header-height: 82px;
}

html[data-theme="dark"] {
  --bg: #11110f;
  --bg-soft: #181714;
  --surface: #1c1b17;
  --surface-strong: #22211d;
  --text: #f8f5eb;
  --text-soft: #aaa69d;
  --line: rgba(255, 255, 255, 0.11);
  --header-bg: rgba(17, 17, 15, 0.88);
  --gold: #f0ba17;
  --gold-bright: #ffd146;
  --gold-soft: #352d12;
  --success: #56c697;
  --danger: #e48278;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background-color 220ms ease, color 220ms ease;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

::selection {
  background: var(--gold);
  color: #15130e;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: height 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  height: 72px;
  border-color: var(--line);
  background: var(--header-bg);
  box-shadow: 0 10px 40px rgba(18, 16, 11, 0.05);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  transition: width 220ms ease, height 220ms ease;
}

.is-scrolled .brand img {
  width: 46px;
  height: 46px;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong {
  font-size: 1.04rem;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 5px;
  color: var(--text-soft);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-current {
  color: var(--text);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.menu-toggle,
.slider-arrows button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.icon-button:hover,
.slider-arrows button:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.icon-button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.moon-icon,
html[data-theme="dark"] .sun-icon {
  display: none;
}

html[data-theme="dark"] .moon-icon {
  display: block;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: #18150d;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 26px rgba(230, 172, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--gold-bright);
  background: var(--gold-bright);
  box-shadow: 0 16px 32px rgba(230, 172, 0, 0.24);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 9px 17px;
  font-size: 0.84rem;
}

.button-small svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--text);
  background: var(--text);
  color: var(--bg);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  gap: 4px;
  align-content: center;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 32%, rgba(231, 173, 0, 0.13), transparent 25%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 65%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 65%, transparent 100%);
}

.hero-slider {
  position: relative;
  min-height: 720px;
}

.hero-slide {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 48px) 0 86px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(24px);
  transition: opacity 600ms ease, transform 600ms ease, visibility 600ms;
}

.hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.slide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(400px, 0.97fr);
  align-items: center;
  gap: 60px;
}

.slide-copy {
  max-width: 660px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--text-soft);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--gold);
}

.slide-copy h1,
.slide-copy h2,
.section-heading h2,
.about-copy h2,
.local-card h2,
.faq-intro h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(3.25rem, 5.4vw, 5.35rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.slide-copy h1 em,
.slide-copy h2 em,
.section-heading h2 em,
.about-copy h2 em,
.local-card h2 em,
.faq-intro h2 em {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 585px;
  margin: 28px 0 30px;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.open-note {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 24px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.open-note span,
.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--success) 13%, transparent);
}

[data-open-status].is-closed .status-dot,
.open-note.is-closed span,
.contact-card-head:has(.is-closed) .status-dot {
  background: var(--danger);
}

.slide-visual {
  position: relative;
  min-height: 490px;
  display: grid;
  place-items: center;
  color: var(--text);
}

.slide-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 78%;
  height: 16%;
  right: 8%;
  bottom: 8%;
  border-radius: 50%;
  background: rgba(20, 18, 12, 0.16);
  filter: blur(28px);
}

.visual-halo {
  position: absolute;
  width: min(420px, 90%);
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--gold) 50%, transparent);
  border-radius: 50%;
  background:
    radial-gradient(circle, color-mix(in srgb, var(--gold) 20%, transparent) 0 38%, transparent 39%),
    repeating-radial-gradient(circle, transparent 0 46px, color-mix(in srgb, var(--gold) 23%, transparent) 47px 48px);
  opacity: 0.9;
}

.slide-visual > svg {
  position: relative;
  z-index: 2;
  width: min(600px, 100%);
  overflow: visible;
}

.brand-seal {
  position: absolute;
  z-index: 4;
  top: 9%;
  left: 5%;
  width: 108px;
  height: 108px;
  padding: 5px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: rotate(-8deg);
}

.brand-seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.machine,
.suit,
.dress,
.curtain {
  fill: color-mix(in srgb, var(--surface-strong) 96%, var(--gold));
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 22px 26px rgba(23, 20, 12, 0.12));
}

.stitch,
.measure {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3;
  stroke-dasharray: 8 12;
  stroke-linecap: round;
}

.stitch-two {
  opacity: 0.5;
}

.measure {
  stroke-width: 25;
  stroke-dasharray: none;
  opacity: 0.42;
}

.measure-marks {
  fill: none;
  stroke: var(--text);
  stroke-width: 3;
  stroke-linecap: round;
  opacity: 0.7;
}

.detail-tag {
  position: absolute;
  z-index: 5;
  padding: 9px 15px;
  border: 1px solid color-mix(in srgb, var(--gold) 55%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  color: var(--text);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(23, 20, 12, 0.08);
  backdrop-filter: blur(10px);
}

.detail-tag::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: 1px;
}

.tag-one {
  top: 24%;
  right: -2%;
}

.tag-two {
  right: 8%;
  bottom: 15%;
}

.visual-suit .tag-one,
.visual-dress .tag-one {
  top: 20%;
}

.hero-slide.is-active .slide-copy > * {
  animation: enter-copy 650ms both;
}

.hero-slide.is-active .slide-copy > :nth-child(2) { animation-delay: 70ms; }
.hero-slide.is-active .slide-copy > :nth-child(3) { animation-delay: 130ms; }
.hero-slide.is-active .slide-copy > :nth-child(4) { animation-delay: 190ms; }
.hero-slide.is-active .slide-copy > :nth-child(5) { animation-delay: 240ms; }

.hero-slide.is-active .slide-visual > svg,
.hero-slide.is-active .brand-seal,
.hero-slide.is-active .detail-tag {
  animation: enter-visual 720ms 120ms both;
}

@keyframes enter-copy {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes enter-visual {
  from { opacity: 0; transform: translateY(22px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.slider-controls {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.slider-dots,
.slider-arrows {
  display: flex;
  align-items: center;
  gap: 9px;
  pointer-events: auto;
}

.slider-dot {
  width: 28px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: color-mix(in srgb, var(--text) 24%, transparent);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.slider-dot.is-active {
  width: 48px;
  background: var(--gold);
}

.slider-arrows button {
  background: color-mix(in srgb, var(--surface) 90%, transparent);
}

.slider-arrows svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.trust-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

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

.trust-grid > div {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  border-right: 1px solid var(--line);
}

.trust-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.trust-grid > div > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.38rem;
  font-style: italic;
}

.trust-grid p,
.trust-grid strong,
.trust-grid small {
  display: block;
  margin: 0;
}

.trust-grid strong {
  font-size: 0.85rem;
  line-height: 1.35;
}

.trust-grid small {
  margin-top: 3px;
  color: var(--text-soft);
  font-size: 0.72rem;
  line-height: 1.45;
}

.section {
  padding: 116px 0;
}

.section-heading {
  margin-bottom: 52px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 80px;
}

.section-heading h2,
.about-copy h2,
.local-card h2,
.faq-intro h2 {
  font-size: clamp(2.65rem, 4.1vw, 4.4rem);
}

.split-heading > p {
  margin: 0 0 5px;
  color: var(--text-soft);
  font-size: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 310px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 52%, transparent);
  overflow: hidden;
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -40% -68% 20%;
  height: 180px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  filter: blur(65px);
  transition: opacity 220ms ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card:hover::before {
  opacity: 0.12;
}

.service-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--text-soft);
  font-family: Georgia, serif;
  font-size: 0.8rem;
  font-style: italic;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  border-radius: 16px;
  background: var(--gold-soft);
  color: var(--gold);
}

.service-icon svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  letter-spacing: -0.025em;
}

.service-card p {
  max-width: 290px;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.services-note {
  margin: 30px 0 0;
  color: var(--text-soft);
  text-align: center;
}

.services-note a,
.text-link {
  position: relative;
  color: var(--text);
  font-weight: 800;
}

.services-note a::after,
.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform-origin: left;
  transition: transform 180ms ease;
}

.services-note a:hover::after,
.text-link:hover::after {
  transform: scaleX(0.45);
}

.about {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 100px;
}

.about-visual {
  position: relative;
  min-height: 620px;
}

.fabric-card {
  position: absolute;
  border-radius: var(--radius-lg);
}

.fabric-back {
  inset: 2% 17% 11% 2%;
  background:
    repeating-linear-gradient(35deg, transparent 0 12px, rgba(255, 255, 255, 0.045) 13px 14px),
    linear-gradient(135deg, #2e2c27, #161511);
  transform: rotate(-6deg);
  box-shadow: var(--shadow);
}

.fabric-front {
  inset: 8% 3% 3% 14%;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 22%, rgba(255, 218, 82, 0.38), transparent 26%),
    linear-gradient(150deg, #f9c82b, #d99600);
  box-shadow: var(--shadow);
}

.fabric-front::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: repeating-linear-gradient(90deg, transparent 0 6px, rgba(70, 42, 0, 0.13) 7px 8px);
}

.fabric-front svg {
  position: absolute;
  inset: 5% 3% 10% 5%;
  width: 92%;
  height: 85%;
  fill: none;
  stroke: #29261f;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8;
  opacity: 0.9;
}

.fabric-front .dash {
  stroke: rgba(255, 255, 255, 0.78);
  stroke-width: 4;
  stroke-dasharray: 10 17;
}

.experience-label {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(25, 22, 14, 0.16);
  border-radius: 18px;
  background: rgba(255, 247, 217, 0.72);
  color: #1d1a12;
  backdrop-filter: blur(12px);
}

.experience-label strong {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
}

.experience-label span {
  max-width: 150px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: right;
  text-transform: uppercase;
}

.about-copy .lead {
  margin: 28px 0 14px;
  color: var(--text);
  font-size: 1.17rem;
  font-weight: 700;
}

.about-copy > p:not(.eyebrow):not(.lead) {
  margin: 0 0 15px;
  color: var(--text-soft);
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.about-values > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-values svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  padding: 5px;
  border-radius: 50%;
  background: var(--gold-soft);
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.2;
}

.about-values strong,
.about-values small {
  display: block;
}

.about-values strong {
  font-size: 0.85rem;
}

.about-values small {
  margin-top: 3px;
  color: var(--text-soft);
  font-size: 0.72rem;
  line-height: 1.45;
}

.process {
  background:
    radial-gradient(circle at 25% 0, color-mix(in srgb, var(--gold) 12%, transparent), transparent 30%),
    var(--bg-soft);
}

.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process-grid::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 41px;
  right: 16%;
  left: 16%;
  height: 1px;
  border-top: 1px dashed color-mix(in srgb, var(--gold) 60%, transparent);
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 0 30px;
  text-align: center;
}

.process-step > span {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto 26px;
  border: 1px solid color-mix(in srgb, var(--gold) 50%, var(--line));
  border-radius: 50%;
  background: var(--surface);
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
  box-shadow: 0 0 0 10px var(--bg-soft);
}

.process-step h3 {
  margin: 0 0 9px;
  font-size: 1.1rem;
}

.process-step p {
  max-width: 310px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.local-section {
  padding-top: 0;
  background: var(--bg-soft);
}

.local-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
  padding: 58px 64px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.local-card::after {
  content: "BIELEFELD";
  position: absolute;
  right: -30px;
  bottom: -48px;
  color: var(--text);
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
  opacity: 0.025;
  pointer-events: none;
}

.local-card .eyebrow {
  margin-bottom: 16px;
}

.local-card h2 {
  font-size: clamp(2.4rem, 3.5vw, 3.8rem);
}

.local-card > div:last-child {
  position: relative;
  z-index: 1;
}

.local-card p:not(.eyebrow) {
  margin: 0 0 24px;
  color: var(--text-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.text-link span {
  color: var(--gold);
  font-size: 1.1rem;
}

.contact {
  position: relative;
  background:
    radial-gradient(circle at 50% 5%, rgba(231, 173, 0, 0.17), transparent 31%),
    #171612;
  color: #f7f3e8;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 70px 70px;
  -webkit-mask-image: radial-gradient(circle at center, #000, transparent 75%);
  mask-image: radial-gradient(circle at center, #000, transparent 75%);
}

.contact .container {
  position: relative;
  z-index: 1;
}

.light-heading h2,
.light-heading .eyebrow {
  color: #f7f3e8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 22px;
}

.contact-card,
.hours-card {
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.contact-card-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 30px;
}

.contact-card-head p {
  margin: 0;
  color: #c8c4ba;
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-card h3,
.hours-heading h3 {
  margin: 0;
  color: #fff;
  font-size: 1.75rem;
  letter-spacing: -0.04em;
}

.contact-subtitle {
  margin: 4px 0 30px;
  color: #aaa69d;
  font-size: 0.9rem;
}

.contact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-list a {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.08);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-list a:hover {
  border-color: rgba(231, 173, 0, 0.5);
  background: rgba(231, 173, 0, 0.08);
  transform: translateY(-2px);
}

.contact-list svg {
  width: 20px;
  flex: 0 0 auto;
  margin-top: 3px;
  fill: none;
  stroke: var(--gold-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-list small,
.contact-list strong {
  display: block;
}

.contact-list small {
  color: #918d84;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list strong {
  margin-top: 3px;
  color: #f8f5ed;
  font-size: 0.84rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-buttons {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  border-color: #fff;
  background: #fff;
  color: #171612;
  box-shadow: none;
}

.hours-card {
  padding: 42px 46px;
  background: #f7f3e8;
  color: #1c1a15;
}

.hours-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.hours-heading span {
  display: block;
  margin-bottom: 4px;
  color: #8e887d;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hours-heading h3 {
  color: #1c1a15;
  font-size: 1.35rem;
}

.hours-heading svg {
  width: 38px;
  fill: none;
  stroke: #d59d00;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.hours-list {
  margin: 0;
}

.hours-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(28, 26, 21, 0.11);
  font-size: 0.88rem;
}

.hours-list > div.is-today {
  margin: 0 -14px;
  padding: 13px 14px;
  border-color: transparent;
  border-radius: 10px;
  background: #ffedac;
  font-weight: 800;
}

.hours-list dt {
  font-weight: 700;
}

.hours-list dd {
  margin: 0;
  color: #5f5b52;
  font-variant-numeric: tabular-nums;
}

.hours-list .closed dd {
  color: #a34e46;
}

.holiday-note {
  margin: 18px 0 0;
  color: #888278;
  font-size: 0.72rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 110px;
  align-self: start;
}

.faq-intro > p:not(.eyebrow) {
  margin: 24px 0 20px;
  color: var(--text-soft);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-size: 1.02rem;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.accordion summary span::before,
.accordion summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.accordion summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion details[open] summary span {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.accordion details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion details p {
  max-width: 660px;
  margin: -5px 52px 24px 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.site-footer {
  padding: 72px 0 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 0.75fr);
  gap: 60px;
  padding-bottom: 62px;
}

.footer-brand .brand img {
  width: 56px;
  height: 56px;
}

.footer-brand > p {
  max-width: 310px;
  margin: 20px 0 0;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-column h3 {
  margin: 7px 0 12px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.55;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.74rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

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

.mobile-call-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.legal-page {
  min-height: 100vh;
  padding: 150px 0 100px;
}

.legal-content {
  max-width: 820px;
}

.legal-content h1 {
  margin: 0 0 34px;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.legal-content h2 {
  margin: 38px 0 10px;
  font-size: 1.25rem;
}

.legal-content h3 {
  margin: 26px 0 8px;
  font-size: 1rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-soft);
}

.legal-content a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

.legal-warning {
  margin: 28px 0;
  padding: 20px;
  border: 1px solid #e2a99e;
  border-radius: var(--radius-sm);
  background: #fff0ed;
  color: #762d24 !important;
  font-weight: 700;
}

html[data-theme="dark"] .legal-warning {
  border-color: #75423a;
  background: #321c19;
  color: #ffb3a8 !important;
}

@media (max-width: 1050px) {
  .main-nav { gap: 21px; }
  .desktop-call { display: none; }
  .slide-grid { grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr); gap: 32px; }
  .slide-visual { min-height: 430px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(3) { border-left: 1px solid var(--line); }
  .trust-grid > div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .about-grid { gap: 60px; }
  .about-visual { min-height: 560px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-list { grid-template-columns: 1fr; }
  .footer-main { gap: 35px; }
}

@media (max-width: 820px) {
  :root { --header-height: 72px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .site-header,
  .site-header.is-scrolled { height: 72px; }
  .brand img,
  .is-scrolled .brand img { width: 46px; height: 46px; }
  .main-nav {
    position: fixed;
    z-index: -1;
    inset: 72px 0 auto;
    max-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 24px;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: max-height 260ms ease, padding 260ms ease, opacity 180ms ease, visibility 260ms;
  }
  .main-nav.is-open {
    max-height: 370px;
    padding-top: 14px;
    padding-bottom: 18px;
    visibility: visible;
    opacity: 1;
    box-shadow: 0 30px 45px rgba(20, 18, 12, 0.1);
  }
  .main-nav a { padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a::after { display: none; }
  .menu-toggle { display: inline-grid; }
  .hero,
  .hero-slider { min-height: 830px; }
  .hero-slide { padding-top: 104px; padding-bottom: 92px; align-items: start; }
  .slide-grid { grid-template-columns: 1fr; gap: 10px; }
  .slide-copy { max-width: 690px; }
  .slide-copy h1,
  .slide-copy h2 { font-size: clamp(3rem, 10vw, 4.75rem); }
  .hero-lead { max-width: 630px; margin-top: 22px; margin-bottom: 25px; }
  .slide-visual { min-height: 350px; max-width: 520px; width: 100%; margin: 0 auto; }
  .brand-seal { width: 82px; height: 82px; top: 4%; }
  .detail-tag { font-size: 0.65rem; }
  .tag-one { right: 2%; }
  .tag-two { right: 10%; bottom: 9%; }
  .slider-controls { bottom: 22px; }
  .section { padding: 88px 0; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading { margin-bottom: 42px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 55px; }
  .about-visual { min-height: 570px; max-width: 570px; width: 100%; margin-inline: auto; }
  .about-copy { max-width: 680px; }
  .process-step { padding-inline: 10px; }
  .local-card { grid-template-columns: 1fr; gap: 26px; padding: 46px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-list { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; gap: 46px; }
  .faq-intro { position: static; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main .footer-column:last-child { grid-column: 2 / 4; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand span { display: none; }
  .footer-brand .brand span { display: flex; }
  .header-actions { gap: 8px; }
  .hero,
  .hero-slider { min-height: 760px; }
  .hero-slide { padding-top: 94px; padding-bottom: 85px; }
  .slide-copy h1,
  .slide-copy h2 { font-size: clamp(2.62rem, 12vw, 3.7rem); }
  .eyebrow { margin-bottom: 15px; font-size: 0.68rem; }
  .hero-lead { margin-top: 18px; font-size: 0.95rem; line-height: 1.65; }
  .hero-buttons { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-buttons .button { min-width: 0; padding-inline: 15px; font-size: 0.8rem; }
  .open-note { margin-top: 15px; font-size: 0.72rem; }
  .slide-visual { min-height: 285px; margin-top: 3px; }
  .visual-halo { width: 270px; }
  .brand-seal { width: 64px; height: 64px; left: 2%; }
  .detail-tag { padding: 7px 10px; font-size: 0.57rem; }
  .tag-one { top: 17%; }
  .tag-two { bottom: 5%; }
  .slider-arrows { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div,
  .trust-grid > div:nth-child(3),
  .trust-grid > div:first-child { min-height: 91px; padding: 16px 20px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .section { padding: 74px 0; }
  .section-heading h2,
  .about-copy h2,
  .local-card h2,
  .faq-intro h2 { font-size: clamp(2.45rem, 11vw, 3.25rem); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; padding: 27px; }
  .service-icon { margin-bottom: 27px; }
  .about-visual { min-height: 440px; }
  .fabric-back { inset: 2% 13% 10% 2%; }
  .fabric-front { inset: 7% 1% 2% 10%; }
  .experience-label { right: 15px; bottom: 15px; left: 15px; padding: 13px; }
  .experience-label strong { font-size: 1.25rem; }
  .experience-label span { max-width: 120px; font-size: 0.61rem; }
  .about-values { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 35px; }
  .process-grid::before { top: 10%; bottom: 10%; left: 41px; width: 1px; height: auto; border-top: 0; border-left: 1px dashed color-mix(in srgb, var(--gold) 60%, transparent); }
  .process-step { display: grid; grid-template-columns: 82px 1fr; column-gap: 22px; text-align: left; }
  .process-step > span { grid-row: 1 / 3; margin: 0; box-shadow: 0 0 0 8px var(--bg-soft); }
  .process-step h3 { align-self: end; }
  .process-step p { max-width: none; margin: 0; }
  .local-card { width: min(calc(100% - 24px), var(--container)); padding: 34px 25px; }
  .contact-card,
  .hours-card { padding: 28px 22px; }
  .contact-list { grid-template-columns: 1fr; }
  .contact-buttons { display: grid; grid-template-columns: 1fr 1fr; }
  .contact-buttons .button { padding-inline: 12px; font-size: 0.78rem; }
  .hours-heading h3 { font-size: 1.15rem; }
  .hours-list > div { font-size: 0.82rem; }
  .accordion summary { font-size: 0.93rem; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-main .footer-brand { grid-column: 1 / -1; }
  .footer-main .footer-column:last-child { grid-column: 1 / -1; }
  .footer-bottom { min-height: 95px; flex-direction: column; justify-content: center; text-align: center; }
  .mobile-call-bar {
    position: fixed;
    z-index: 900;
    right: 14px;
    bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 15px 9px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: #1b1914;
    color: #fff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
  }
  .mobile-call-bar svg { width: 34px; height: 34px; padding: 8px; border-radius: 50%; background: var(--gold); fill: none; stroke: #17140d; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
  .mobile-call-bar span { display: flex; flex-direction: column; line-height: 1.15; }
  .mobile-call-bar small { color: #aaa69c; font-size: 0.58rem; font-weight: 700; text-transform: uppercase; }
  .mobile-call-bar strong { margin-top: 3px; font-size: 0.76rem; }
  .legal-page { padding-top: 120px; }
}

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