:root {
  --bg: #100c09;
  --bg-soft: #18120e;
  --panel: #211812;
  --panel-strong: #2c2018;
  --ink: #fff7ec;
  --muted: #c6b7a6;
  --line: rgba(255, 247, 236, 0.16);
  --line-strong: rgba(255, 247, 236, 0.28);
  --brass: #d0a15c;
  --brass-dark: #9b6e35;
  --red: #b93231;
  --blue: #295d86;
  --cream: #fff1dc;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --header-height: 76px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(16, 12, 9, 0.92), rgba(16, 12, 9, 1)),
    repeating-linear-gradient(90deg, rgba(255, 247, 236, 0.03) 0 1px, transparent 1px 92px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(208, 161, 92, 0.5);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-180%);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 10px 14px;
  background: var(--cream);
  color: #17100c;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 247, 236, 0.16);
  color: var(--ink);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(16, 12, 9, 0.94);
  border-color: var(--line);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  text-transform: uppercase;
}

.brand strong {
  display: block;
  color: var(--cream);
  font-size: 0.98rem;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.brand-mark {
  width: 22px;
  height: 46px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 247, 236, 0.78);
  border-radius: 999px;
  background:
    repeating-linear-gradient(
      -32deg,
      var(--red) 0 9px,
      #f7f3eb 9px 18px,
      var(--blue) 18px 27px,
      #f7f3eb 27px 36px
    );
  box-shadow: 0 0 0 4px rgba(255, 247, 236, 0.08);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 30px);
  color: var(--muted);
  font-size: 0.93rem;
}

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

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

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--cream);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 190px;
}

.quick-whatsapp,
.button,
.product-add,
.form-actions button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.quick-whatsapp {
  border-color: rgba(208, 161, 92, 0.5);
  color: var(--cream);
  background: rgba(208, 161, 92, 0.12);
}

.button-primary,
.form-actions button {
  background: var(--brass);
  color: #17100c;
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 247, 236, 0.08);
  color: var(--cream);
}

.button:hover,
.quick-whatsapp:hover,
.product-add:hover,
.form-actions button:hover {
  transform: translateY(-2px);
}

.button:active,
.quick-whatsapp:active,
.filter:active,
.product-add:active,
.form-actions button:active,
.clear-cart:active,
.menu-button:active {
  transform: scale(0.97);
}

.is-pressed {
  animation: press-pop 340ms ease;
}

.is-disabled {
  pointer-events: none;
  opacity: 0.46;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 247, 236, 0.08);
  color: var(--cream);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-active .menu-button span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-active .menu-button span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: end;
  gap: clamp(20px, 4vw, 48px);
  padding: calc(var(--header-height) + 72px) clamp(18px, 5vw, 72px) 64px;
  overflow: hidden;
}

.hero-home {
  min-height: 82vh;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 12, 9, 0.96) 0%, rgba(16, 12, 9, 0.72) 42%, rgba(16, 12, 9, 0.18) 100%),
    linear-gradient(0deg, rgba(16, 12, 9, 0.88), rgba(16, 12, 9, 0.1) 42%);
  content: "";
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  max-width: 760px;
  animation: rise-in 520ms ease both;
}

.hero-copy h1,
.hero-copy p:not(.eyebrow) {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.7rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.45rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--cream);
  font-size: 1.1rem;
  line-height: 1.22;
  letter-spacing: 0;
}

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

.hero-copy p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(255, 247, 236, 0.86);
  font-size: 1.08rem;
}

.hero-panel {
  display: grid;
  gap: 12px;
  align-self: end;
  width: min(100%, 360px);
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(16, 12, 9, 0.56);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-panel div,
.stat-card,
.route-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 247, 236, 0.06);
}

.hero-panel div {
  padding: 14px;
}

.hero-panel span,
.stat-card span,
.product-card span,
.service-price span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-panel strong,
.stat-card strong {
  display: block;
  margin-top: 4px;
  color: var(--cream);
  font-size: 1rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #15100c;
}

.trust-strip div {
  min-height: 112px;
  padding: 24px clamp(18px, 3vw, 40px);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cream);
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 86px clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.section-copy {
  max-width: 540px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--brass);
  font-weight: 800;
}

.text-link::after {
  margin-left: 8px;
  content: "->";
}

.preview-grid,
.service-grid,
.gallery-grid,
.product-grid,
.price-grid,
.faq-grid,
.values-grid {
  display: grid;
  gap: 18px;
}

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

.preview-card,
.service-card,
.product-card,
.price-card,
.faq-grid details,
.contact-card,
.value-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 247, 236, 0.055);
  overflow: hidden;
}

.preview-card img,
.service-card img {
  height: 280px;
  object-fit: cover;
}

.preview-card h3,
.preview-card p,
.service-card div,
.product-card,
.price-card,
.faq-grid details,
.contact-card,
.value-card {
  padding: 20px;
}

.preview-card p {
  margin-bottom: 0;
  padding-top: 0;
}

.feature-band,
.location-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 78px clamp(18px, 5vw, 72px);
  background: linear-gradient(120deg, rgba(44, 32, 24, 0.96), rgba(16, 12, 9, 0.98));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-band img,
.location-image img,
.wide-image img {
  height: min(54vw, 520px);
  min-height: 320px;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.route-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.route-card {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  padding: 38px;
  overflow: hidden;
}

.route-card .barber-pole {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 100%;
  background:
    repeating-linear-gradient(
      -35deg,
      var(--red) 0 12px,
      #f8f1e8 12px 24px,
      var(--blue) 24px 36px,
      #f8f1e8 36px 48px
    );
}

.page-hero {
  min-height: 62vh;
}

.page-hero h1 {
  font-size: 3.9rem;
}

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

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.service-card img {
  height: 230px;
}

.service-card p {
  margin-bottom: 16px;
}

.service-type {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  border: 1px solid rgba(208, 161, 92, 0.42);
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(208, 161, 92, 0.1);
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.service-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  color: var(--cream);
}

.service-price strong {
  color: var(--brass);
}

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

.price-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: start;
}

.price-card strong {
  color: var(--cream);
}

.price-card span {
  color: var(--brass);
  font-weight: 850;
}

.catalog-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.catalog-tools {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.search-box {
  display: grid;
  gap: 8px;
  min-width: min(100%, 340px);
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 750;
}

.search-box input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  background: rgba(255, 247, 236, 0.08);
  color: var(--cream);
}

.contact-form select {
  color-scheme: dark;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--brass) 50%) calc(100% - 18px) 21px / 7px 7px no-repeat,
    linear-gradient(135deg, var(--brass) 50%, transparent 50%) calc(100% - 13px) 21px / 7px 7px no-repeat,
    rgba(255, 247, 236, 0.08);
  padding-right: 42px;
}

.contact-form select option {
  background: var(--panel);
  color: var(--cream);
}

.contact-form input[type="date"],
.contact-form input[type="time"] {
  color-scheme: dark;
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator,
.contact-form input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(0.86) sepia(0.42) saturate(1.4);
  cursor: pointer;
}

.contact-form textarea {
  min-height: 130px;
  padding-top: 12px;
  resize: vertical;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 247, 236, 0.06);
  color: var(--muted);
  cursor: pointer;
}

.filter:hover,
.filter.is-active {
  border-color: rgba(208, 161, 92, 0.68);
  background: rgba(208, 161, 92, 0.16);
  color: var(--cream);
}

.catalog-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  margin-bottom: 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 247, 236, 0.05);
}

.catalog-intro img {
  height: 270px;
  object-fit: cover;
  border-radius: 6px;
}

.catalog-intro strong {
  display: block;
  margin-bottom: 10px;
  color: var(--cream);
  font-size: 1.25rem;
}

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

.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 22px;
  align-items: start;
}

.product-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
}

.pill {
  width: fit-content;
  margin-bottom: 18px;
  border: 1px solid rgba(208, 161, 92, 0.48);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(208, 161, 92, 0.12);
  color: var(--brass);
  font-weight: 850;
  text-transform: uppercase;
}

.product-card p {
  margin-bottom: 20px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.product-meta strong {
  color: var(--cream);
  white-space: nowrap;
}

.product-add {
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  padding: 0 12px;
  background: var(--brass);
  color: #17100c;
  cursor: pointer;
  font-size: 0.9rem;
}

.product-add.is-added {
  background: rgba(255, 247, 236, 0.14);
  color: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(208, 161, 92, 0.5);
}

.mini-cart {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(44, 32, 24, 0.96), rgba(20, 14, 10, 0.96)),
    repeating-linear-gradient(-35deg, rgba(185, 50, 49, 0.12) 0 10px, transparent 10px 24px);
  box-shadow: var(--shadow);
}

.mini-cart h3 {
  margin-bottom: 14px;
}

.mini-cart-items {
  display: grid;
  gap: 10px;
  min-height: 86px;
  margin-bottom: 18px;
}

.mini-cart-empty {
  margin: 0;
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  padding: 14px;
  font-size: 0.92rem;
}

.mini-cart-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 247, 236, 0.06);
}

.mini-cart-line strong {
  display: block;
  color: var(--cream);
  font-size: 0.95rem;
}

.mini-cart-line span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.mini-cart-line button,
.clear-cart {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 10px;
  background: rgba(255, 247, 236, 0.08);
  color: var(--cream);
  cursor: pointer;
}

.mini-cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0 16px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.mini-cart-total span {
  color: var(--muted);
}

.mini-cart-total strong {
  color: var(--brass);
}

.mini-cart .button {
  width: 100%;
}

.clear-cart {
  width: 100%;
  margin-top: 10px;
}

.clear-cart:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.empty-state {
  margin: 26px 0 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

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

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 247, 236, 0.055);
}

.gallery-grid img {
  height: 380px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-grid figcaption {
  padding: 16px 18px;
  color: var(--cream);
  font-weight: 800;
}

.reviews-grid,
.before-after-grid,
.team-grid,
.promo-grid,
.care-grid {
  display: grid;
  gap: 18px;
}

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

.review-card,
.before-after-card,
.team-card,
.promo-card,
.care-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 247, 236, 0.055);
  overflow: hidden;
}

.review-card,
.promo-card,
.care-card {
  padding: 22px;
}

.review-stars {
  display: block;
  margin-bottom: 16px;
  color: var(--brass);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.review-card p {
  color: rgba(255, 247, 236, 0.86);
}

.review-card strong {
  display: block;
  color: var(--cream);
}

.review-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

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

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

.compare-images figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.compare-images img {
  height: 330px;
  object-fit: cover;
}

.compare-images figcaption {
  position: absolute;
  top: 12px;
  left: 12px;
  border: 1px solid rgba(255, 247, 236, 0.28);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(16, 12, 9, 0.72);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.before-after-card h3,
.before-after-card p {
  padding-inline: 20px;
}

.before-after-card h3 {
  margin-top: 20px;
}

.before-after-card p {
  padding-bottom: 20px;
}

.team-band {
  align-items: start;
}

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

.team-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.team-card img {
  height: 240px;
  object-fit: cover;
}

.team-card > div {
  padding: 18px;
}

.team-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.team-specialties span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.promo-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
}

.promo-card h3 {
  font-size: 1.18rem;
}

.promo-meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: auto;
  margin-bottom: 18px;
}

.promo-meta strong {
  color: var(--brass);
  font-size: 1.3rem;
}

.promo-meta del {
  color: var(--muted);
}

.care-section {
  padding-top: 72px;
}

.care-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  border: 1px solid rgba(208, 161, 92, 0.42);
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(208, 161, 92, 0.1);
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.care-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

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

.value-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--cream);
}

.legal-section {
  padding-top: 72px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.legal-index {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 247, 236, 0.055);
}

.legal-index a {
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  color: var(--muted);
  font-weight: 760;
}

.legal-index a:last-child {
  border-bottom: 0;
}

.legal-index a:hover {
  color: var(--brass);
}

.legal-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 247, 236, 0.04);
}

.legal-block {
  border-bottom: 1px solid var(--line);
  padding: clamp(22px, 4vw, 40px);
}

.legal-block:last-child {
  border-bottom: 0;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-data {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.legal-data div {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.legal-data div:last-child {
  border-bottom: 0;
}

.legal-data dt {
  color: var(--muted);
  font-weight: 850;
}

.legal-data dd {
  margin: 0;
  color: var(--cream);
}

.legal-data a,
.legal-block a {
  color: var(--brass);
}

.legal-reference {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 247, 236, 0.055);
}

.legal-reference strong {
  color: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.contact-card {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.contact-card img {
  height: 320px;
  margin-bottom: 22px;
  border-radius: 6px;
  object-fit: cover;
}

.contact-list,
.hours-grid {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.contact-list a,
.hours-grid div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.hours-grid span {
  color: var(--muted);
}

.hours-grid strong {
  color: var(--cream);
}

.schedule-section {
  padding-top: 72px;
}

.schedule-section .section-heading {
  margin-bottom: 24px;
}

.schedule-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.35fr);
  gap: 18px;
  align-items: stretch;
}

.schedule-section .hours-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.schedule-section .hours-grid div {
  position: relative;
  display: grid;
  min-height: 132px;
  align-content: space-between;
  border: 1px solid rgba(208, 161, 92, 0.28);
  border-radius: 8px;
  padding: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 247, 236, 0.08), rgba(16, 12, 9, 0.55));
}

.schedule-section .hours-grid div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background:
    repeating-linear-gradient(
      -35deg,
      var(--red) 0 9px,
      #f8f1e8 9px 18px,
      var(--blue) 18px 27px,
      #f8f1e8 27px 36px
    );
}

.schedule-section .hours-grid span {
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.schedule-section .hours-grid strong {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.schedule-note {
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 247, 236, 0.055);
}

.schedule-note strong {
  margin-bottom: 8px;
  color: var(--cream);
}

.schedule-note p {
  margin: 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-message {
  margin: 0;
  color: var(--brass);
}

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

.faq-accordion {
  max-width: 920px;
  grid-template-columns: 1fr;
}

.faq-accordion details {
  overflow: clip;
}

.faq-grid summary {
  position: relative;
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  color: var(--cream);
  font-weight: 850;
  list-style: none;
}

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

.faq-grid summary::after {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brass);
  content: "+";
  display: inline-grid;
  place-items: center;
}

.faq-grid details[open] summary::after {
  content: "-";
}

.faq-grid p {
  margin: 14px 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 42px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #0b0806;
}

.site-footer p {
  max-width: 440px;
  margin: 16px 0 0;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: end;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--brass);
}

[hidden] {
  display: none !important;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes press-pop {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(208, 161, 92, 0);
  }
  45% {
    transform: scale(0.97);
    box-shadow: 0 0 0 6px rgba(208, 161, 92, 0.18);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(208, 161, 92, 0);
  }
}

@media (max-width: 1120px) {
  .service-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-grid,
  .values-grid,
  .reviews-grid,
  .promo-grid,
  .care-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand,
  .header-actions {
    min-width: 0;
  }

  .quick-whatsapp {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    max-height: calc(100vh - var(--header-height));
    padding: 12px 16px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(16, 12, 9, 0.98);
    transform: translateY(-120%);
    transition: transform 200ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    border-bottom: 1px solid var(--line);
    padding: 18px 4px;
    font-size: 1.02rem;
  }

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

  .hero,
  .page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--header-height) + 58px);
  }

  .hero-panel {
    width: 100%;
  }

  h1,
  .page-hero h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2rem;
  }

  .trust-strip,
  .split-section,
  .feature-band,
  .location-band,
  .catalog-intro,
  .shop-layout,
  .schedule-panel,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .mini-cart {
    position: static;
  }

  .legal-index {
    position: static;
  }

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

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .catalog-heading {
    display: grid;
    align-items: start;
  }

  .catalog-tools,
  .filters {
    justify-items: start;
    justify-content: flex-start;
  }

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

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .brand small {
    font-size: 0.64rem;
  }

  .brand-mark {
    width: 18px;
    height: 40px;
  }

  .hero,
  .section,
  .feature-band,
  .location-band {
    padding-inline: 16px;
  }

  h1,
  .page-hero h1 {
    font-size: 2.56rem;
  }

  h2 {
    font-size: 1.74rem;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .button-row,
  .form-actions {
    display: grid;
  }

  .button,
  .product-add,
  .form-actions button {
    width: 100%;
  }

  .trust-strip,
  .preview-grid,
  .service-grid,
  .product-grid,
  .price-grid,
  .values-grid,
  .reviews-grid,
  .promo-grid,
  .care-grid,
  .team-grid,
  .schedule-section .hours-grid,
  .faq-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
  }

  .preview-card img,
  .service-card img,
  .gallery-grid img,
  .compare-images img,
  .team-card img {
    height: 270px;
  }

  .feature-band img,
  .location-image img,
  .wide-image img {
    min-height: 260px;
    height: 320px;
  }

  .route-card {
    padding: 28px 22px;
  }

  .contact-list a,
  .hours-grid div,
  .product-meta,
  .price-card,
  .legal-data div {
    align-items: start;
    flex-direction: column;
    grid-template-columns: 1fr;
  }
}
