:root {
  --brand-blue: #0057b8;
  --brand: var(--brand-blue);
  --brand-dark: #003e86;
  --brand-soft: #eaf3ff;
  --ink: #07162f;
  --text: #23314d;
  --muted: #69758d;
  --line: #dde7f4;
  --white: #ffffff;
  --surface: #f7fbff;
  --footer: #ffffff;
  --container-width: 1280px;
  --container-padding: clamp(20px, 4vw, 56px);
  --section-padding-desktop: 96px var(--container-padding);
  --section-padding-tablet: 72px 32px;
  --section-padding-mobile: 56px 20px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --card-padding: 32px;
  --card-radius: 16px;
  --card-border: 1px solid var(--line);
  --card-shadow: 0 16px 44px rgba(0, 53, 112, 0.06);
  --card-shadow-hover: 0 22px 56px rgba(0, 53, 112, 0.09);
  --button-height: 56px;
  --button-padding-x: 28px;
  --button-radius: 6px;
  --shadow: var(--card-shadow);
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Inter", sans-serif;
  --serif: var(--font-heading);
  --sans: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.05vw, 17px);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  height: 106px;
  padding: 0 var(--container-padding);
  color: var(--ink);
  background: #ffffff;
  border-bottom: 1px solid rgba(221, 231, 244, 0.9);
  transition: box-shadow 240ms ease;
}

.site-header.is-scrolled {
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 53, 112, 0.04);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  min-width: 310px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 44px;
  color: var(--brand);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.brand-text {
  display: grid;
  gap: 0;
}

.brand-text span {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.brand-text strong {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.75vw, 12px);
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 0.82vw, 0.94rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.main-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  color: #ffffff;
  background: var(--brand);
  border-radius: var(--button-radius);
  box-shadow: 0 12px 22px rgba(0, 87, 184, 0.18);
}

.main-nav .nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--brand);
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  height: 640px;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: stretch;
  gap: 0;
  padding: 0;
  color: var(--ink);
  background: #ffffff;
}

.hero-media {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  margin: 0;
  align-self: stretch;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.hero-media img {
  width: calc(100% - 20px);
  height: 80%;
  object-fit: cover;
  object-position: 54% 50%;
  margin-left: 20px;
}

.hero-content {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  width: min(680px, 100%);
  padding-left: var(--container-padding);
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 var(--space-md);
  color: var(--brand);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
.section-title {
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 680px;
  margin-bottom: var(--space-md);
  font-size: clamp(72px, 5.6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-title-dark,
.hero-title-brand {
  display: block;
}

.hero-title-brand {
  white-space: nowrap;
}

.hero-title-dark {
  color: var(--ink);
}

.hero-title-brand,
.section-heading h2 span,
.dark-band h2 span {
  color: var(--brand);
}

.hero-copy {
  max-width: 540px;
  margin-bottom: var(--space-lg);
  color: var(--text);
  font-size: clamp(17px, 1.15vw, 19px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  min-height: var(--button-height);
  padding: 0 var(--button-padding-x);
  border: 1px solid currentColor;
  border-radius: var(--button-radius);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 16px 30px rgba(0, 87, 184, 0.22);
}

.button-secondary {
  color: var(--brand-blue);
  background: var(--white);
  border-color: rgba(0, 87, 184, 0.36);
}

.hero .button-primary {
  min-width: 220px;
}

.button-quiet {
  color: var(--brand-dark);
  background: var(--white);
  border-color: #b7c9e4;
}

.hero .button-quiet {
  min-width: 188px;
}

.button-icon {
  position: relative;
  width: 22px;
  height: 22px;
  margin-left: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.button-icon::before {
  position: absolute;
  left: 6px;
  top: 4px;
  width: 7px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 0 0 7px 0;
  content: "";
  transform: rotate(-28deg);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  width: 30px;
  height: 44px;
  transform: translateX(-50%);
}

.scroll-cue::before,
.scroll-cue::after {
  position: absolute;
  left: 50%;
  content: "";
}

.scroll-cue::before {
  top: 4px;
  width: 1px;
  height: 28px;
  background: var(--ink);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

.scroll-cue::after {
  top: 24px;
  width: 11px;
  height: 11px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transform: translateX(-48%) rotate(45deg);
}

.hero-services-band {
  width: 100%;
  padding: var(--section-padding-desktop);
  background: #ffffff;
  scroll-margin-top: 106px;
}

.hero-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-lg);
  max-width: var(--container-width);
  margin: 0 auto;
}

.hero-service-item {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 170px;
  padding: 0 var(--space-md);
  text-align: center;
}

.hero-service-item + .hero-service-item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  width: 1px;
  background: #eaeaea;
  content: "";
}

.hero-service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-md);
  color: var(--brand);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.hero-service-item h3 {
  margin: 0 0 var(--space-sm);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.hero-service-item p {
  max-width: 255px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.hero-service-item:hover .hero-service-icon {
  transform: scale(1.08);
}

.hero-service-item:hover h3 {
  color: var(--brand);
}

.intro-section,
.services-section,
.stories-section,
.brands-section,
.local-section,
.contact-location-section {
  padding: var(--section-padding-desktop);
}

.section-heading {
  width: min(900px, 100%);
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading h2,
.dark-band h2,
.contact-location-section h2 {
  margin-bottom: 0;
  font-size: clamp(52px, 4.7vw, 64px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.services-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--container-width);
  margin: 0 auto;
  border: var(--card-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.service-columns article {
  min-height: 230px;
  padding: var(--card-padding);
  border-right: 1px solid var(--line);
  background: var(--white);
}

.service-columns article:last-child {
  border-right: 0;
}

.service-icon {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--brand-soft);
}

.service-eye::before {
  position: absolute;
  inset: 13px 8px;
  border: 3px solid var(--brand);
  border-radius: 50% 50% 45% 45%;
  content: "";
}

.service-eye::after {
  position: absolute;
  left: 19px;
  top: 19px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.service-lenses::before,
.service-lenses::after {
  position: absolute;
  top: 13px;
  width: 17px;
  height: 17px;
  border: 3px solid var(--brand);
  border-radius: 50%;
  content: "";
}

.service-lenses::before {
  left: 7px;
}

.service-lenses::after {
  right: 7px;
}

.service-care::before {
  position: absolute;
  left: 21px;
  top: 8px;
  width: 4px;
  height: 30px;
  border-radius: 999px;
  background: var(--brand);
  content: "";
  transform: rotate(42deg);
}

.service-care::after {
  position: absolute;
  right: 8px;
  top: 9px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--brand);
  border-radius: 50%;
  background: var(--brand-soft);
  content: "";
}

.intro-section {
  background: linear-gradient(180deg, #fff, #f9fcff);
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
  max-width: var(--container-width);
  margin: 0 auto;
}

.feature-tile {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(240px, 0.78fr);
  align-items: stretch;
  min-width: 0;
  overflow: hidden;
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.feature-tile.wide,
.feature-tile.tall {
  grid-column: auto;
}

.product-grid .feature-tile:last-child {
  grid-column: 1 / -1;
}

.tile-visual {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background: var(--surface);
}

.tile-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.feature-tile:hover .tile-visual img {
  transform: scale(1.04);
}

.tile-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--card-padding);
}

.tile-text h3,
.method-list h3,
.service-columns h3 {
  margin-bottom: var(--space-xs);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  font-weight: 700;
  line-height: 1.1;
}

.tile-text p,
.service-columns p,
.method-list p,
.site-footer p {
  color: var(--muted);
}

.tile-text a {
  margin-top: auto;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tile-text a::after {
  content: " ->";
}

.dark-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(410px, 0.9fr);
  gap: clamp(var(--space-lg), 7vw, var(--space-xl));
  align-items: start;
  padding: var(--section-padding-desktop);
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 87, 184, 0.07), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  overflow: hidden;
  isolation: isolate;
}

.band-copy {
  max-width: 610px;
  align-self: start;
  position: sticky;
  top: 132px;
  z-index: 1;
}

.band-copy h2 {
  font-size: clamp(58px, 5.4vw, 78px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.method-list {
  --timeline-progress: 0;
  position: relative;
  display: grid;
  gap: var(--space-md);
  padding-left: 0;
  border-left: 0;
}

.method-list::before,
.method-list::after {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 84px;
  width: 1px;
  content: "";
  border-radius: 999px;
}

.method-list::before {
  background: var(--line);
}

.method-list::after {
  bottom: auto;
  height: calc((100% - 68px) * var(--timeline-progress));
  background: linear-gradient(180deg, var(--brand-blue), rgba(0, 87, 184, 0.38));
  transition: height 0.25s ease;
}

.method-list article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42px 68px 1fr;
  gap: var(--space-sm);
  align-items: center;
  padding: var(--card-padding);
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--card-shadow);
  opacity: 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.method-list article.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.method-list article:nth-child(2) {
  transition-delay: 0.08s;
}

.method-list article:nth-child(3) {
  transition-delay: 0.16s;
}

.method-list article.is-active {
  border-color: rgba(0, 87, 184, 0.18);
  box-shadow: var(--card-shadow-hover);
}

.method-number {
  color: var(--brand);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.method-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid rgba(0, 87, 184, 0.18);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.75);
  transition:
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.method-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.method-list article.is-active .method-icon {
  color: var(--white);
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  box-shadow: 0 18px 34px rgba(0, 87, 184, 0.2);
  transform: scale(1.08);
}

.method-copy {
  min-width: 0;
}

.method-list h3 {
  margin-bottom: 4px;
}

.method-list p {
  margin-bottom: 0;
}

.brands-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-top: 1px solid var(--line);
}

.brands-heading {
  width: min(760px, 100%);
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.brands-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(52px, 4.8vw, 64px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.brands-heading p:last-child {
  max-width: 650px;
  margin: 0 auto;
  color: #526283;
  font-size: clamp(17px, 1.15vw, 19px);
  line-height: 1.6;
}

.brands-rule {
  display: block;
  width: 76px;
  height: 3px;
  margin: var(--space-md) auto var(--space-md);
  background: var(--brand-blue);
  border-radius: 999px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-sm);
  max-width: var(--container-width);
  margin: 0 auto;
}

.brand-card {
  display: grid;
  place-items: center;
  min-height: 122px;
  padding: var(--space-md);
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.brand-card:hover,
.brand-card:focus-within {
  border-color: rgba(0, 87, 184, 0.16);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.brand-logo {
  display: grid;
  place-items: center;
  color: #111827;
  filter: grayscale(1);
  text-align: center;
  text-transform: none;
  white-space: nowrap;
}

.brand-logo small {
  display: block;
  margin-top: 1px;
  color: inherit;
  font-family: var(--sans);
  font-size: 0.36em;
  font-weight: 700;
  letter-spacing: 0.32em;
  line-height: 1;
}

.brand-logo-rayban {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(2rem, 2.2vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  transform: rotate(-8deg);
}

.brand-logo-vogue {
  font-family: var(--sans);
  font-size: clamp(1.6rem, 1.7vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.34em;
  line-height: 0.9;
  text-transform: lowercase;
}

.brand-logo-tous {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 1.9vw, 2.45rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-logo-police {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(1.35rem, 1.5vw, 1.95rem);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.brand-logo-tommy {
  font-family: var(--sans);
  font-size: clamp(0.82rem, 1vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.22em;
}

.brand-logo-carolina {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.15vw, 1.4rem);
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand-logo-guess {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 1.85vw, 2.35rem);
  letter-spacing: 0.22em;
  line-height: 0.95;
}

.brand-logo-carrera {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(1.15rem, 1.3vw, 1.7rem);
  font-style: italic;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.brand-logo-oakley {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(1.1rem, 1.2vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.36em;
}

.brand-logo-dolce {
  font-family: Arial, sans-serif;
  font-size: clamp(1.1rem, 1.25vw, 1.6rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.local-card h2 {
  margin-bottom: 10px;
  color: var(--ink);
}

.local-section {
  background: var(--white);
}

.local-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.95fr);
  gap: var(--space-xl);
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--space-xl);
  border: var(--card-border);
  border-radius: var(--card-radius);
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 87, 184, 0.12), transparent 30%),
    linear-gradient(145deg, #ffffff, #f1f7ff);
  box-shadow: var(--card-shadow);
}

.local-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(46px, 4vw, 60px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.local-list {
  display: grid;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
  list-style: none;
}

.local-list li {
  position: relative;
  padding: var(--space-sm) 18px var(--space-sm) 48px;
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-weight: 650;
}

.local-list li::before {
  position: absolute;
  left: 18px;
  top: 19px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--brand);
  border-radius: 50%;
  content: "";
}

.stories-section {
  background: var(--surface);
}

.story-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-md);
  max-width: var(--container-width);
  margin: 0 auto;
}

.story-item {
  display: grid;
  gap: var(--space-sm);
  overflow: hidden;
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.story-item:hover,
.story-item:focus-visible {
  border-color: rgba(0, 87, 184, 0.24);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.story-item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.story-item small {
  justify-self: start;
  margin: 0 18px;
  padding: 5px 9px;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-item strong {
  min-height: 56px;
  padding: 0 18px var(--space-md);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
}

.blog-hero,
.blog-index-section,
.article-hero-section,
.article-body-section {
  padding: var(--section-padding-desktop);
}

.blog-hero {
  min-height: 420px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 87, 184, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border-bottom: 1px solid rgba(221, 231, 244, 0.72);
}

.blog-hero-inner,
.article-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.blog-hero h1,
.article-hero-inner h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(54px, 6vw, 76px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.blog-hero p:not(.eyebrow),
.article-intro {
  max-width: 680px;
  margin: var(--space-md) auto 0;
  color: #405173;
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-md);
  max-width: var(--container-width);
  margin: 0 auto;
}

.blog-card {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.blog-card:hover,
.blog-card:focus-visible {
  border-color: rgba(0, 87, 184, 0.24);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-content {
  display: grid;
  align-content: start;
  gap: var(--space-sm);
  padding: var(--card-padding);
}

.blog-card small,
.article-category {
  justify-self: start;
  padding: 5px 10px;
  color: var(--brand-blue);
  background: var(--brand-soft);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  font-weight: 700;
  line-height: 1.22;
}

.blog-card p {
  margin: 0;
  color: #526283;
  font-size: 0.98rem;
  line-height: 1.6;
}

.blog-card-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
}

.blog-card-meta span + span,
.article-meta span + span {
  position: relative;
}

.blog-card-meta span + span::before,
.article-meta span + span::before {
  position: absolute;
  left: -10px;
  color: #b8c6d8;
  content: "/";
}

.article-hero-section {
  background:
    radial-gradient(circle at 50% 8%, rgba(0, 87, 184, 0.07), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.article-hero-inner {
  display: grid;
  justify-items: center;
}

.article-category {
  margin-bottom: var(--space-md);
}

.article-meta {
  justify-content: center;
  margin-top: var(--space-md);
}

.article-featured {
  overflow: hidden;
  max-width: var(--container-width);
  margin: 0 auto;
  border: var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
}

.article-featured img {
  width: 100%;
  height: min(52vw, 520px);
  min-height: 320px;
  object-fit: cover;
}

.article-body-section {
  padding-top: var(--space-xl);
}

.article-content {
  max-width: 820px;
  margin: 0 auto;
}

.article-content h2 {
  margin: var(--space-xl) 0 var(--space-sm);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content p,
.article-content li {
  color: #354461;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.75;
}

.article-content p {
  margin: 0 0 var(--space-md);
}

.article-content ul {
  display: grid;
  gap: 12px;
  margin: 0 0 var(--space-md);
  padding-left: 1.2em;
}

.article-content a:not(.button) {
  color: var(--brand-blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article-cta {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding: var(--card-padding);
  border: var(--card-border);
  border-radius: var(--card-radius);
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 87, 184, 0.08), transparent 36%),
    #ffffff;
  box-shadow: var(--card-shadow);
}

.article-cta h2 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 44px);
}

.article-cta p {
  max-width: 640px;
  margin: 0;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.article-back-link {
  justify-self: center;
  margin-top: var(--space-lg);
}

.service-page-hero,
.service-detail-section,
.service-process-section,
.service-final-section {
  padding: var(--section-padding-desktop);
}

.service-page-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 87, 184, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-bottom: 1px solid rgba(221, 231, 244, 0.72);
}

.service-page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 0.82fr);
  gap: clamp(var(--space-lg), 6vw, var(--space-xl));
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
}

.service-page-copy {
  max-width: 700px;
}

.service-page-copy h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(56px, 6vw, 82px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.service-page-copy p:not(.eyebrow) {
  max-width: 610px;
  margin: var(--space-md) 0 0;
  color: #405173;
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.65;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.service-page-media {
  overflow: hidden;
  min-height: 440px;
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: var(--surface);
  box-shadow: var(--card-shadow);
}

.service-page-media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.08fr);
  gap: var(--space-xl);
  align-items: start;
  max-width: var(--container-width);
  margin: 0 auto;
}

.service-detail-intro {
  position: sticky;
  top: 132px;
}

.service-detail-intro h2,
.service-process-heading h2,
.service-final-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(44px, 4.6vw, 62px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.service-detail-intro p {
  max-width: 540px;
  margin: var(--space-md) 0 0;
  color: #526283;
  font-size: clamp(17px, 1.15vw, 19px);
  line-height: 1.65;
}

.service-info-grid {
  display: grid;
  gap: var(--space-md);
}

.service-info-card {
  padding: var(--card-padding);
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.service-info-card h3 {
  margin: 0 0 var(--space-xs);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.service-info-card p {
  margin: 0;
  color: #526283;
  line-height: 1.65;
}

.service-info-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-info-card li {
  position: relative;
  padding-left: 22px;
  color: #526283;
  line-height: 1.6;
}

.service-info-card li::before {
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-blue);
  content: "";
}

.service-process-section {
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 87, 184, 0.07), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.service-process-heading {
  width: min(760px, 100%);
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.service-process-heading p {
  max-width: 620px;
  margin: var(--space-md) auto 0;
  color: #526283;
  font-size: clamp(17px, 1.15vw, 19px);
  line-height: 1.6;
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
  max-width: var(--container-width);
  margin: 0 auto;
}

.service-process-card {
  display: grid;
  gap: var(--space-md);
  min-height: 100%;
  padding: var(--card-padding);
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--card-shadow);
  opacity: 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.service-process-card:nth-child(2) {
  transition-delay: 0.08s;
}

.service-process-card:nth-child(3) {
  transition-delay: 0.16s;
}

.service-process-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-process-card:hover,
.service-process-card:focus-within {
  border-color: rgba(0, 87, 184, 0.2);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.service-process-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--brand-blue);
  border: 1px solid rgba(0, 87, 184, 0.18);
  border-radius: 50%;
  background: var(--brand-soft);
}

.service-process-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.service-process-card small {
  color: var(--brand-blue);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-process-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  font-weight: 700;
  line-height: 1.2;
}

.service-process-card p {
  margin: 0;
  color: #526283;
  line-height: 1.65;
}

.service-final-section {
  background: var(--white);
}

.service-final-card {
  display: grid;
  justify-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 64px);
  border: var(--card-border);
  border-radius: var(--card-radius);
  background:
    radial-gradient(circle at 85% 12%, rgba(0, 87, 184, 0.08), transparent 34%),
    #ffffff;
  box-shadow: var(--card-shadow);
  text-align: center;
}

.service-final-card p {
  max-width: 650px;
  margin: var(--space-md) auto 0;
  color: #526283;
  font-size: clamp(17px, 1.15vw, 19px);
  line-height: 1.6;
}

.service-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.brand-page-hero,
.brand-models-section,
.brand-note-section {
  padding: var(--section-padding-desktop);
}

.brand-page-hero {
  background:
    radial-gradient(circle at 75% 15%, rgba(0, 87, 184, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-bottom: 1px solid rgba(221, 231, 244, 0.72);
}

.brand-page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.82fr);
  gap: clamp(var(--space-lg), 6vw, var(--space-xl));
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
}

.brand-page-copy h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(58px, 7vw, 92px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.92;
}

.brand-page-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: var(--space-md) 0 0;
  color: #405173;
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.65;
}

.brand-page-media {
  overflow: hidden;
  min-height: 440px;
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: var(--surface);
  box-shadow: var(--card-shadow);
}

.brand-page-media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.brand-models-heading {
  width: min(780px, 100%);
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.brand-models-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(48px, 4.8vw, 66px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.brand-models-heading p {
  max-width: 680px;
  margin: var(--space-md) auto 0;
  color: #526283;
  font-size: clamp(17px, 1.15vw, 19px);
  line-height: 1.6;
}

.brand-model-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-md);
  max-width: var(--container-width);
  margin: 0 auto;
}

.brand-model-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.brand-model-card:nth-child(2) {
  transition-delay: 0.05s;
}

.brand-model-card:nth-child(3) {
  transition-delay: 0.1s;
}

.brand-model-card:nth-child(4) {
  transition-delay: 0.15s;
}

.brand-model-card:nth-child(5) {
  transition-delay: 0.2s;
}

.brand-model-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.brand-model-card:hover,
.brand-model-card:focus-within {
  border-color: rgba(0, 87, 184, 0.22);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.brand-model-card figure {
  overflow: hidden;
  margin: 0;
  background: var(--surface);
}

.brand-model-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.brand-model-card:hover img,
.brand-model-card:focus-within img {
  transform: scale(1.04);
}

.brand-model-content {
  display: grid;
  gap: var(--space-sm);
  padding: var(--card-padding);
}

.brand-model-type {
  justify-self: start;
  padding: 5px 10px;
  color: var(--brand-blue);
  background: var(--brand-soft);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand-model-content h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.brand-model-content p {
  margin: 0;
  color: #526283;
  font-size: 0.96rem;
  line-height: 1.6;
}

.brand-model-content .button {
  align-self: end;
  justify-self: stretch;
  margin-top: var(--space-xs);
  text-align: center;
}

.brand-note-card {
  display: grid;
  justify-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 64px);
  border: var(--card-border);
  border-radius: var(--card-radius);
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 87, 184, 0.08), transparent 34%),
    #ffffff;
  box-shadow: var(--card-shadow);
  text-align: center;
}

.brand-note-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(40px, 4.4vw, 58px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.brand-note-card p {
  max-width: 680px;
  margin: var(--space-md) auto 0;
  color: #526283;
  font-size: clamp(17px, 1.15vw, 19px);
  line-height: 1.6;
}

.brand-note-card .button {
  margin-top: var(--space-lg);
}

.contact-location-section {
  width: 100%;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 87, 184, 0.07), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  scroll-margin-top: 106px;
}

.contact-location-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: var(--space-xl);
  align-items: start;
  max-width: var(--container-width);
  margin: 0 auto;
}

.contact-location-info h2 {
  max-width: 700px;
  margin: 0 0 var(--space-md);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(52px, 4.8vw, 64px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.contact-location-info h2 span {
  color: var(--brand-blue);
}

.contact-location-copy {
  max-width: 610px;
  margin: 0 0 var(--space-lg);
  color: var(--text);
  font-size: clamp(17px, 1.15vw, 19px);
  line-height: 1.6;
}

.contact-info-list {
  display: grid;
  max-width: 560px;
  margin: 0;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--space-md);
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #eaeaea;
}

.contact-info-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--brand-blue);
  background: var(--brand-soft);
  border-radius: 50%;
}

.contact-info-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.contact-info-item h3 {
  margin: 0 0 6px;
  color: var(--brand-blue);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-info-item p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-info-item a {
  color: inherit;
}

.contact-route-button {
  min-width: 220px;
  color: var(--brand-blue);
  background: var(--white);
  border-color: var(--brand-blue);
  box-shadow: none;
}

.contact-route-button svg {
  width: 22px;
  height: 22px;
  margin-right: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.contact-route-button:hover,
.contact-route-button:focus-visible {
  color: var(--white);
  background: var(--brand-blue);
}

.contact-location-card {
  overflow: hidden;
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--card-shadow-hover);
}

.contact-location-form {
  display: grid;
  gap: var(--space-md);
  padding: var(--space-lg);
}

.contact-location-form h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 2.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

.contact-location-form label {
  display: grid;
  gap: var(--space-xs);
}

.contact-location-form span {
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-location-form input,
.contact-location-form select,
.contact-location-form textarea {
  width: 100%;
  border: 1px solid #c8d9ee;
  border-radius: var(--button-radius);
  background: var(--white);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-location-form input {
  min-height: 56px;
  padding: 0 15px;
}

.contact-location-form select {
  min-height: 56px;
  padding: 0 42px 0 15px;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--brand-blue) 50%), linear-gradient(135deg, var(--brand-blue) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-location-form textarea {
  min-height: 96px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-location-form input:focus,
.contact-location-form select:focus,
.contact-location-form textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(0, 87, 184, 0.09);
}

.contact-location-form .button {
  width: 100%;
}

.contact-location-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-feedback {
  margin: 0;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.45;
}

.form-feedback.is-success {
  color: #075f38;
  background: #eaf8f0;
  border: 1px solid #bde8cf;
}

.form-feedback.is-error {
  color: #8a1f28;
  background: #fff1f2;
  border: 1px solid #f3c2c8;
}

.availability-feedback {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.45;
}

.availability-feedback.is-error {
  color: #8a1f28;
}

.availability-feedback.is-empty {
  color: #7c5300;
}

.contact-map {
  overflow: hidden;
  width: 100%;
  height: 390px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-map-actions {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  background: var(--white);
}

.contact-map-actions .contact-route-button {
  width: 100%;
  justify-content: center;
}

.site-footer {
  width: 100%;
  padding: var(--section-padding-desktop);
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 22%, rgba(0, 87, 184, 0.05), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.footer-shell {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(180px, 0.8fr) minmax(230px, 0.95fr) minmax(310px, 1.45fr);
  gap: 0;
}

.footer-column {
  min-width: 0;
}

.footer-column + .footer-column {
  padding-left: var(--space-lg);
  border-left: 1px solid var(--line);
}

.footer-column h2 {
  margin: 0 0 var(--space-lg);
  color: var(--brand-blue);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin: var(--space-md) 0 var(--space-lg);
}

.footer-logo-mark {
  color: var(--brand-blue);
  font-size: 2.45rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.footer-logo-text {
  display: grid;
}

.footer-logo-text span,
.footer-logo-text strong {
  color: var(--ink);
  font-family: var(--font-heading);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.footer-logo-text span {
  font-size: 1.05rem;
}

.footer-logo-text strong {
  font-size: 1.45rem;
  font-weight: 600;
}

.footer-company p {
  max-width: 330px;
  margin: 0 0 var(--space-xs);
  color: #405173;
  font-size: 1.06rem;
  line-height: 1.6;
}

.footer-accent {
  display: block;
  width: 44px;
  height: 2px;
  margin: var(--space-lg) 0;
  background: var(--brand-blue);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--brand-blue);
  border: 1px solid #c9dbf1;
  border-radius: 50%;
  background: var(--white);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--white);
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.footer-social a:nth-child(2) svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-navigation ul,
.footer-services ul {
  display: grid;
  gap: var(--space-md);
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-navigation a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-navigation a::before {
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--brand-blue);
  border-right: 2px solid var(--brand-blue);
  content: "";
  transform: rotate(45deg);
}

.footer-navigation a:hover,
.footer-navigation a:focus-visible {
  color: var(--brand-blue);
  transform: translateX(2px);
}

.footer-services li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: var(--space-sm);
  align-items: center;
  min-height: 58px;
  padding-bottom: var(--space-sm);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
}

.footer-services li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.footer-services svg,
.footer-reason-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-services svg {
  color: var(--brand-blue);
}

.footer-reasons {
  display: grid;
  gap: var(--space-md);
}

.footer-reasons article {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: var(--space-md);
  align-items: start;
}

.footer-reason-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--brand-blue);
  background: var(--brand-soft);
  border-radius: 50%;
}

.footer-reasons h3 {
  margin: 4px 0 6px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.footer-reasons p {
  max-width: 310px;
  margin: 0;
  color: #526283;
  font-size: 0.94rem;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid #cfdced;
}

.footer-bottom p {
  margin: 0;
  color: #526283;
  font-size: 0.94rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0;
}

.footer-legal a {
  color: var(--brand-blue);
  font-size: 0.94rem;
  line-height: 1.3;
  transition: color 0.25s ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--brand-dark);
}

.footer-legal a + a {
  margin-left: 30px;
  padding-left: 30px;
  border-left: 1px solid #b8cce6;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #ffffff;
  background: var(--brand-blue);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(7, 22, 47, 0.18), 0 8px 18px rgba(0, 87, 184, 0.24);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.whatsapp-float.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation: whatsAppFadeIn 0.3s ease forwards;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 22px 46px rgba(7, 22, 47, 0.22), 0 12px 28px rgba(0, 87, 184, 0.32);
}

.whatsapp-tooltip {
  position: absolute;
  right: 76px;
  bottom: 50%;
  width: max-content;
  max-width: 320px;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--brand-blue);
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.25;
  opacity: 0;
  pointer-events: none;
  transform: translateY(50%) translateX(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 14px 28px rgba(0, 87, 184, 0.18);
}

.whatsapp-tooltip::before {
  position: absolute;
  right: -6px;
  top: 50%;
  width: 12px;
  height: 12px;
  background: var(--brand-blue);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.whatsapp-float:hover .whatsapp-tooltip,
.whatsapp-float:focus-visible .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(50%) translateX(0);
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.38;
  }
  50% {
    transform: translate(-50%, 8px);
    opacity: 1;
  }
}

@keyframes whatsAppFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1180px) {
  :root {
    --card-padding: 28px;
    --space-xl: 56px;
  }

  .site-header {
    padding: 0 24px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 22;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: grid;
    place-content: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.97);
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 5vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

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

  .main-nav .nav-cta {
    justify-self: center;
  }

  .hero-services-band,
  .intro-section,
  .services-section,
  .stories-section,
  .brands-section,
  .local-section,
  .contact-location-section,
  .dark-band,
  .site-footer {
    padding: var(--section-padding-tablet);
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-lg) 0;
  }

  .footer-column + .footer-column {
    padding-left: 0;
    border-left: 0;
  }

  .footer-column:nth-child(odd) {
    padding-right: var(--space-lg);
    border-right: 1px solid var(--line);
  }

  .footer-column:nth-child(even) {
    padding-left: var(--space-lg);
  }
}

@media (max-width: 1040px) {
  .site-header {
    height: 86px;
    padding: 0 32px;
  }

  .hero {
    height: auto;
    max-width: none;
    grid-template-columns: 1fr;
    align-items: start;
    gap: var(--space-lg);
    padding: 48px 32px 64px;
  }

  .hero-media {
    grid-column: 1;
    grid-row: auto;
    order: -1;
  }

  .hero-media img {
    height: 46vh;
    min-height: 300px;
  }

  .hero-content {
    grid-column: 1;
    grid-row: auto;
    padding-left: 0;
    padding-top: 0;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .hero-services-band,
  .intro-section,
  .services-section,
  .stories-section,
  .brands-section,
  .local-section,
  .contact-location-section,
  .dark-band,
  .site-footer {
    padding: var(--section-padding-tablet);
  }

  .site-header {
    padding: 0 24px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 22;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: grid;
    place-content: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.97);
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 5vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

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

  .main-nav .nav-cta {
    justify-self: center;
  }

  .dark-band,
  .local-card,
  .contact-location-inner {
    grid-template-columns: 1fr;
  }

  .band-copy {
    position: relative;
    top: auto;
    max-width: 760px;
  }

  .contact-location-card {
    order: 1;
  }

  .contact-location-info {
    order: 2;
  }

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

  .method-list {
    gap: var(--space-md);
    border-left: 0;
    padding-left: 0;
  }

  .hero-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: var(--space-xl);
  }

  .hero-service-item {
    padding: 0 28px;
  }

  .hero-service-item::before,
  .hero-service-item + .hero-service-item::before {
    display: none;
  }

  .hero-service-item:nth-child(even)::before {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -20px;
    width: 1px;
    background: #eaeaea;
    content: "";
  }

  .service-columns,
  .story-row,
  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  :root {
    --card-padding: 24px;
    --space-md: 20px;
    --space-lg: 32px;
    --space-xl: 40px;
  }

  .site-header {
    height: 74px;
    padding: 0 18px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-mark {
    width: 36px;
    height: 30px;
    font-size: 1rem;
  }

  .brand-text span {
    font-size: 0.82rem;
  }

  .brand-text strong {
    font-size: 0.9rem;
  }

  .hero {
    padding: 24px 18px 54px;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-media img {
    height: 300px;
    min-height: 300px;
  }

  h1 {
    font-size: clamp(44px, 13vw, 52px);
  }

  .section-heading h2,
  .brands-heading h2,
  .local-card h2,
  .contact-location-info h2,
  .contact-location-section h2 {
    font-size: clamp(36px, 11vw, 42px);
    line-height: 1;
    letter-spacing: -0.025em;
  }

  .hero-title-brand {
    white-space: normal;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-services-band,
  .intro-section,
  .services-section,
  .stories-section,
  .brands-section,
  .local-section,
  .contact-location-section,
  .dark-band,
  .site-footer {
    padding: var(--section-padding-mobile);
  }

  .contact-location-form {
    padding: var(--card-padding);
  }

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

  .contact-map-actions {
    padding: var(--space-md) var(--card-padding) var(--card-padding);
  }

  .contact-map {
    height: 330px;
  }

  .contact-info-item {
    grid-template-columns: 58px 1fr;
    gap: 16px;
  }

  .contact-info-icon {
    width: 48px;
    height: 48px;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .hero-services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .hero-service-item {
    min-height: 0;
    padding: 0 18px;
  }

  .hero-service-item:nth-child(even)::before {
    display: none;
  }

  .feature-tile {
    grid-template-columns: 1fr;
  }

  .product-grid .feature-tile:last-child {
    grid-column: auto;
  }

  .tile-visual,
  .tile-visual img {
    min-height: 230px;
  }

  .service-columns,
  .story-row,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .service-columns article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-columns article:last-child {
    border-bottom: 0;
  }

  .band-copy h2 {
    font-size: clamp(36px, 11vw, 42px);
  }

  .method-list::before,
  .method-list::after {
    left: 67px;
  }

  .method-list article {
    grid-template-columns: 36px 54px 1fr;
    gap: 12px;
    padding: var(--card-padding) var(--space-sm);
    border-radius: var(--card-radius);
  }

  .method-number {
    font-size: 1.05rem;
  }

  .method-icon {
    width: 48px;
    height: 48px;
  }

  .method-icon svg {
    width: 23px;
    height: 23px;
  }

  .footer-shell {
    padding: 0;
    border-radius: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-column:nth-child(odd),
  .footer-column:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .footer-column + .footer-column {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--line);
  }

  .footer-logo {
    margin: 0 0 var(--space-lg);
  }

  .footer-column h2 {
    margin-bottom: var(--space-md);
  }

  .footer-bottom {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
  }

  .footer-legal {
    display: grid;
    gap: var(--space-sm);
  }

  .footer-legal a + a {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 1180px) {
  .blog-hero,
  .blog-index-section,
  .article-hero-section,
  .article-body-section,
  .service-page-hero,
  .service-detail-section,
  .service-process-section,
  .service-final-section,
  .brand-page-hero,
  .brand-models-section,
  .brand-note-section {
    padding: var(--section-padding-tablet);
  }

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

  .service-page-hero-inner,
  .brand-page-hero-inner,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-page-media,
  .brand-page-media {
    min-height: 360px;
  }

  .service-page-media img,
  .brand-page-media img {
    min-height: 360px;
  }

  .service-detail-intro {
    position: static;
  }

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

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

@media (max-width: 680px) {
  .blog-hero,
  .blog-index-section,
  .article-hero-section,
  .article-body-section,
  .service-page-hero,
  .service-detail-section,
  .service-process-section,
  .service-final-section,
  .brand-page-hero,
  .brand-models-section,
  .brand-note-section {
    padding: var(--section-padding-mobile);
  }

  .blog-hero {
    min-height: 340px;
  }

  .blog-hero h1,
  .article-hero-inner h1 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card img {
    height: 240px;
  }

  .article-featured img {
    height: 300px;
    min-height: 300px;
  }

  .article-content h2 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .article-actions .button {
    width: 100%;
  }

  .service-page-copy h1 {
    font-size: clamp(42px, 12vw, 52px);
  }

  .brand-page-copy h1 {
    font-size: clamp(44px, 13vw, 56px);
  }

  .service-page-copy p:not(.eyebrow),
  .brand-page-copy p:not(.eyebrow),
  .service-detail-intro p,
  .service-process-heading p,
  .service-final-card p,
  .brand-models-heading p,
  .brand-note-card p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .service-page-media,
  .service-page-media img,
  .brand-page-media,
  .brand-page-media img {
    min-height: 300px;
  }

  .service-detail-intro h2,
  .service-process-heading h2,
  .service-final-card h2,
  .brand-models-heading h2,
  .brand-note-card h2 {
    font-size: clamp(36px, 11vw, 42px);
  }

  .service-hero-actions,
  .service-final-actions {
    width: 100%;
  }

  .service-hero-actions .button,
  .service-final-actions .button {
    width: 100%;
  }

  .brand-model-grid {
    grid-template-columns: 1fr;
  }

  .brand-model-card img {
    height: 240px;
  }
}

.admin-page,
.admin-login-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 87, 184, 0.08), transparent 34rem),
    var(--white);
  color: var(--text);
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: 92px;
  padding: 0 var(--container-padding);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.admin-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--ink);
}

.admin-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-sm);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-nav a:not(.button) {
  padding: 10px 0;
}

.admin-shell {
  width: min(100%, var(--container-width));
  margin: 0 auto;
  padding: 72px var(--container-padding) 96px;
}

.admin-hero {
  max-width: 760px;
  margin-bottom: var(--space-lg);
}

.admin-hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-lg);
  max-width: none;
}

.admin-hero h1,
.admin-panel h2,
.admin-login-card h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.admin-hero h1 {
  font-size: clamp(48px, 6vw, 72px);
}

.admin-panel h2,
.admin-login-card h1 {
  font-size: clamp(32px, 4vw, 44px);
}

.admin-hero p:not(.section-kicker),
.admin-login-card p:not(.section-kicker),
.admin-panel-header p {
  max-width: 680px;
  margin: var(--space-sm) 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.admin-stat-card,
.admin-panel,
.admin-login-card {
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--card-shadow);
}

.admin-stat-card {
  display: grid;
  gap: var(--space-xs);
  padding: var(--space-md);
}

.admin-stat-card span {
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-stat-card strong {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 600;
  line-height: 1;
}

.admin-panel {
  padding: var(--space-lg);
}

.admin-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.admin-table th,
.admin-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  color: var(--brand-blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.admin-table td {
  color: var(--text);
  font-size: 0.95rem;
}

.admin-table td strong,
.admin-table td span {
  display: block;
}

.admin-table td a {
  color: var(--brand-blue);
  font-weight: 800;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--brand-blue);
  background: var(--brand-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-confirmada {
  color: #075f38;
  background: #eaf8f0;
}

.status-reprogramada {
  color: #7c5300;
  background: #fff7df;
}

.status-cancelada {
  color: #8a1f28;
  background: #fff1f2;
}

.status-completada {
  color: #40506b;
  background: #edf2f7;
}

.admin-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) minmax(180px, 1fr) minmax(170px, 1fr) auto;
  gap: var(--space-md);
  align-items: end;
  margin-bottom: var(--space-md);
}

.admin-form,
.admin-filters {
  color: var(--text);
}

.admin-form {
  display: grid;
  gap: var(--space-md);
}

.admin-form label,
.admin-filters label {
  display: grid;
  gap: var(--space-xs);
}

.admin-form span,
.admin-filters span {
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.admin-form input,
.admin-form select,
.admin-form textarea,
.admin-filters input,
.admin-filters select {
  width: 100%;
  min-height: 52px;
  border: 1px solid #c8d9ee;
  border-radius: var(--button-radius);
  background: var(--white);
  color: var(--text);
  padding: 0 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-form textarea {
  min-height: 120px;
  padding: 14px 15px;
  resize: vertical;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus,
.admin-filters input:focus,
.admin-filters select:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(0, 87, 184, 0.09);
}

.admin-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: var(--space-md);
}

.admin-detail-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.admin-detail-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--space-md);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.admin-detail-list dt {
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-detail-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

.admin-reschedule-form {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--line);
}

.admin-action-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--line);
}

.admin-delete-form {
  margin-top: var(--space-sm);
}

.admin-delete-form .button {
  width: 100%;
}

.admin-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--line);
}

.admin-page-indicator {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.button.is-disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.admin-danger-button {
  color: #8a1f28;
  background: #fff1f2;
  border-color: #f3c2c8;
}

.admin-alert {
  margin: 0 0 var(--space-md);
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 700;
}

.admin-alert-success {
  color: #075f38;
  background: #eaf8f0;
  border: 1px solid #bde8cf;
}

.admin-alert-error {
  color: #8a1f28;
  background: #fff1f2;
  border: 1px solid #f3c2c8;
}

.admin-alert-warning {
  color: #7c5300;
  background: #fff7df;
  border: 1px solid #f3dda1;
}

.admin-login-shell {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: var(--section-padding-mobile);
}

.admin-login-card {
  width: min(100%, 520px);
  padding: clamp(32px, 5vw, 52px);
}

.admin-login-card .admin-brand {
  margin-bottom: var(--space-lg);
}

.admin-login-card .admin-form {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

@media (max-width: 980px) {
  .admin-topbar,
  .admin-hero-row,
  .admin-panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .admin-stats-grid,
  .admin-detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .admin-filters {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .admin-shell {
    padding: 56px 20px 72px;
  }

  .admin-stats-grid,
  .admin-detail-grid,
  .admin-filters,
  .admin-detail-list div {
    grid-template-columns: 1fr;
  }

  .admin-panel {
    padding: var(--space-md);
  }
}

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

a.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  min-height: 64px !important;
  max-width: 64px !important;
  max-height: 64px !important;
  border-radius: 50%;
  background: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

a.whatsapp-float svg {
  width: 34px !important;
  height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  display: block;
  fill: currentColor;
}

@media (max-width: 768px) {
  a.whatsapp-float {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    min-height: 58px !important;
    max-width: 58px !important;
    max-height: 58px !important;
  }

  a.whatsapp-float svg {
    width: 31px !important;
    height: 31px !important;
    max-width: 31px !important;
    max-height: 31px !important;
  }
}
