:root {
  --charcoal: #1a1a1a;
  --black: #0f0f0f;
  --gold: #c8a15a;
  --gold-dark: #a77a2d;
  --beige: #f4e8d2;
  --paper: #fffaf1;
  --white: #ffffff;
  --ink: #181511;
  --muted: #6d655b;
  --line: rgba(26, 26, 26, 0.13);
  --shadow: 0 20px 60px rgba(16, 13, 10, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.22, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fdfbf8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(13, 13, 13, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  letter-spacing: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(200, 161, 90, 0.75);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  box-shadow: inset 0 0 0 4px rgba(200, 161, 90, 0.08);
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding-block: 10px;
  transition: color 180ms ease;
}

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

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background-image: url("assets/awa-barbershop-hero.png");
  background-position: 70% center;
  background-size: cover;
  filter: saturate(0.82) contrast(1.05);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.98) 0%, rgba(15, 15, 15, 0.9) 34%, rgba(15, 15, 15, 0.38) 71%),
    linear-gradient(180deg, rgba(15, 15, 15, 0.52) 0%, rgba(15, 15, 15, 0.12) 42%, rgba(15, 15, 15, 0.88) 100%);
}

.hero-content {
  position: relative;
  padding-top: 96px;
  min-height: 760px;
}

.hero-copy {
  width: min(620px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: clamp(44px, 5.8vw, 76px);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 3.6vw, 50px);
}

h3 {
  font-size: 18px;
}

.hero-subtitle {
  max-width: 560px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 1.8vw, 22px);
}

.hero-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #d0a75c, #ad7930);
  box-shadow: 0 12px 24px rgba(200, 161, 90, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 34px rgba(200, 161, 90, 0.34);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(15, 15, 15, 0.38);
}

.btn-icon,
.btn-icon svg {
  width: 18px;
  height: 18px;
}

.btn-icon svg,
.icon svg,
.social-icon svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--gold);
  background: rgba(200, 161, 90, 0.11);
}

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

.btn-dark {
  color: var(--white);
  border-color: var(--charcoal);
  background: var(--charcoal);
}

.btn-outline-dark {
  color: var(--ink);
  border-color: rgba(26, 26, 26, 0.32);
  background: transparent;
}

.btn-whatsapp {
  color: var(--white);
  border-color: #1f8f55;
  background: #1f8f55;
}

.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.hero-details span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.hero-socials {
  position: absolute;
  right: 0;
  bottom: 84px;
  display: flex;
  gap: 12px;
}

.hero-socials a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(15, 15, 15, 0.66);
  backdrop-filter: blur(12px);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-socials a:hover,
.hero-socials a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(200, 161, 90, 0.72);
  background: rgba(15, 15, 15, 0.84);
}

.stars {
  color: #f7bd2b;
  letter-spacing: 0.04em;
}

.benefits {
  position: relative;
  z-index: 5;
  padding: 34px 0 0;
  background: #fdfbf8;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 0;
  border: 1px solid rgba(200, 161, 90, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(90deg, #fffaf1, #f5ead7);
  box-shadow: 0 18px 52px rgba(16, 13, 10, 0.16);
  overflow: hidden;
}

.benefit {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 34px;
  border-right: 1px solid rgba(26, 26, 26, 0.11);
}

.benefit:last-child {
  border-right: 0;
}

.icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  border: 1px solid rgba(167, 122, 45, 0.3);
  border-radius: 50%;
  font-size: 0;
}

.icon svg {
  width: 24px;
  height: 24px;
}

.benefit h2 {
  margin-bottom: 4px;
  font-size: 21px;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 92px 0;
}

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

.section-heading.centered {
  text-align: center;
}

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

.price-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.price-panel {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 241, 0.92)),
    var(--white);
  box-shadow: 0 18px 42px rgba(20, 16, 11, 0.08);
}

.featured-price {
  border-color: rgba(200, 161, 90, 0.45);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(244, 232, 210, 0.74)),
    var(--white);
}

.price-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px 18px 20px;
  color: var(--white);
  border-radius: 6px;
  background: linear-gradient(135deg, #171717, #2a2824);
}

.price-panel-head span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.price-panel-head strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 68px;
  padding: 18px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.25;
}

.price-row strong {
  color: var(--gold-dark);
  font-size: 22px;
  white-space: nowrap;
}

.appointment-section {
  background:
    linear-gradient(90deg, rgba(26, 26, 26, 0.04), transparent 38%),
    linear-gradient(180deg, #f7efe3, #fffaf1);
}

.appointment-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.4fr);
  gap: 44px;
  align-items: center;
}

.appointment-copy p {
  color: var(--muted);
}

.small-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--gold-dark) !important;
  font-weight: 800;
}

.small-trust::before {
  content: "✓";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(167, 122, 45, 0.35);
  border-radius: 50%;
}

.booking-form {
  padding: 24px;
  border: 1px solid rgba(200, 161, 90, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 58px rgba(48, 36, 22, 0.14);
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.full-field {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid rgba(26, 26, 26, 0.18);
  border-radius: 6px;
  background: var(--white);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 161, 90, 0.14);
}

.field-error input,
.field-error select,
.field-error textarea {
  border-color: #b53737;
}

.form-submit {
  width: 100%;
  margin-top: 16px;
  border: 0;
  cursor: pointer;
}

.form-message {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--gold-dark);
  font-weight: 800;
}

.form-message.error {
  color: #b53737;
}

.about-section {
  padding-top: 92px;
  background: #fff;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 54px;
}

.about-image {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(0.86) contrast(1.04);
  box-shadow: 0 24px 58px rgba(16, 13, 10, 0.16);
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 10px 13px;
  color: var(--gold-dark);
  border: 1px solid rgba(167, 122, 45, 0.22);
  border-radius: var(--radius);
  background: #fff7e9;
  font-size: 13px;
  font-weight: 800;
}

.gallery-section {
  background: #fdfbf8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: 0 18px 44px rgba(19, 15, 11, 0.12);
}

.gallery-wide {
  grid-row: span 2;
}

.gallery-tall {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.03);
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.02) contrast(1.05);
}

.gallery-extra {
  display: none;
}

.gallery-grid.is-expanded .gallery-extra {
  display: block;
}

.gallery-toggle {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 26px auto 0;
  padding: 13px 22px;
  color: var(--ink);
  border: 1px solid rgba(26, 26, 26, 0.22);
  border-radius: 6px;
  background: #fffdf8;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.gallery-section .shell {
  display: grid;
}

.gallery-toggle:hover,
.gallery-toggle:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(200, 161, 90, 0.58);
  box-shadow: 0 14px 30px rgba(20, 16, 11, 0.1);
}

.gallery-arrow {
  color: var(--gold-dark);
  font-size: 20px;
  transition: transform 180ms ease;
}

.gallery-toggle[aria-expanded="true"] .gallery-arrow {
  transform: rotate(180deg);
}

.reviews-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 40%),
    var(--charcoal);
  color: var(--white);
}

.review-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
}

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

.review-card,
.review-score {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.review-card {
  background: #fffdf8;
  color: var(--ink);
}

.review-card p {
  color: #393028;
}

.review-card strong {
  color: var(--ink);
}

.review-score {
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(145deg, #101010, #222);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.03);
}

.review-score strong {
  font-size: 56px;
  font-family: Georgia, "Times New Roman", serif;
}

.review-score p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

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

details {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fffdf8;
  box-shadow: none;
}

summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 800;
}

summary::after {
  content: "+";
  color: var(--gold-dark);
  font-size: 22px;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.footer {
  color: var(--ink);
  background: #f4efe7;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(420px, 1.22fr);
  gap: 74px;
  align-items: center;
  padding: 92px 0 64px;
}

.footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

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

.footer address {
  font-style: normal;
}

.contact-copy h2 {
  max-width: 520px;
  margin-bottom: 28px;
  color: #0f0f0f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(34px, 3.7vw, 52px);
  font-weight: 900;
  line-height: 1.08;
}

.contact-list {
  display: grid;
  gap: 0;
  margin-bottom: 30px;
  border-top: 1px solid rgba(26, 26, 26, 0.13);
}

.contact-item {
  display: grid;
  gap: 5px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.13);
}

.contact-item strong {
  color: #6f655a;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-item span,
.contact-item a {
  color: #050505;
  font-size: 17px;
  font-weight: 800;
}

.map-card {
  position: relative;
  min-height: 154px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  color: var(--ink);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(244, 232, 210, 0.88)),
    repeating-linear-gradient(30deg, transparent 0 24px, rgba(26, 26, 26, 0.08) 24px 25px),
    repeating-linear-gradient(120deg, transparent 0 28px, rgba(26, 26, 26, 0.08) 28px 29px);
}

.map-card span {
  color: var(--gold-dark);
  font-weight: 900;
}

.large-map {
  min-height: 520px;
  align-content: stretch;
  padding: 0;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.15);
  box-shadow: 0 28px 64px rgba(18, 15, 11, 0.15);
  background: #ebe9e4;
}

.large-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-label {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(350px, calc(100% - 40px));
  margin: auto 0 24px 24px;
  padding: 22px;
  color: var(--white);
  border-radius: 8px;
  background: #252525;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.map-label strong {
  color: var(--gold);
  text-transform: uppercase;
}

.map-label span {
  display: block;
  color: var(--white);
  font-size: 19px;
  font-weight: 900;
}

.map-label a {
  width: fit-content;
  display: inline-flex;
  margin-top: 18px;
  color: var(--white);
  font-weight: 900;
}

.map-label a::before {
  content: "↗";
  margin-right: 8px;
  color: var(--gold);
}

.map-top-card {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  width: min(310px, calc(100% - 36px));
  padding: 16px 18px;
  color: #423a33;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 22px rgba(18, 15, 11, 0.14);
}

.map-top-card strong {
  display: block;
  margin: 0 0 3px;
  color: #222;
  font-size: 16px;
}

.map-top-card span {
  color: #716b64;
  font-weight: 600;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-icon,
.social-icon svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 18px;
  padding: 15px 20px;
  text-align: center;
  color: rgba(26, 26, 26, 0.55);
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  font-size: 13px;
}

.legal-links {
  display: inline-flex;
  gap: 18px;
}

.legal-links a {
  color: rgba(26, 26, 26, 0.72);
  font-weight: 700;
}

.legal-links a:hover {
  color: var(--gold-dark);
}

.legal {
  padding: 132px 0 72px;
  background: #fdfbf8;
}

.legal-shell {
  width: min(780px, calc(100% - 40px));
}

.legal-shell h1 {
  margin-bottom: 24px;
  font-size: clamp(34px, 5vw, 52px);
}

.legal-shell h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: clamp(20px, 2.4vw, 26px);
}

.legal-shell p {
  margin-bottom: 12px;
  color: #3b352d;
  line-height: 1.65;
}

.legal-shell a {
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: underline;
}

.legal-note {
  margin-top: 30px;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  background: #fff7e9;
  color: var(--muted) !important;
  font-size: 14px;
}

.legal-back {
  margin-top: 40px;
  font-weight: 800;
}

@media (max-width: 960px) {
  .shell {
    width: min(100% - 32px, 760px);
  }

  .nav {
    min-height: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 16px;
    background: rgba(15, 15, 15, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .menu-open .nav-links {
    transform: translateY(0);
  }

  .nav-links a {
    padding: 15px 8px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-media {
    background-position: 60% center;
  }

  .hero-socials {
    right: 0;
    bottom: 64px;
  }

  .benefits-grid,
  .appointment-layout,
  .about-layout,
  .price-board,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    gap: 38px;
    padding-top: 72px;
  }

  .large-map {
    min-height: 430px;
  }

  .benefit {
    border-right: 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  }

  .benefit:last-child {
    border-bottom: 0;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 260px;
  }

  .gallery-wide,
  .gallery-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 32px, 520px);
  }

  h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  h3 {
    font-size: 16px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .brand strong {
    font-size: 18px;
  }

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

  .btn {
    min-height: 46px;
    padding: 12px 20px;
    font-size: 15px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 470px;
    align-items: end;
  }

  .hero-media {
    background-position: 72% center;
    background-size: cover;
  }

  .hero-content {
    min-height: 0;
    padding: 96px 0 32px;
  }

  .benefits {
    padding-top: 12px;
  }

  .hero-subtitle {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .hero-details {
    gap: 8px;
    margin-top: 14px;
    font-size: 12px;
  }

  .hero-details span {
    padding: 6px 10px;
  }

  .hero-socials {
    position: static;
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .hero-socials a {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 14px;
  }

  .hero-socials a {
    flex: 1 1 150px;
    justify-content: center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(15, 15, 15, 0.44) 0%, rgba(15, 15, 15, 0.62) 42%, rgba(15, 15, 15, 0.96) 100%),
      linear-gradient(90deg, rgba(15, 15, 15, 0.68), rgba(15, 15, 15, 0.18));
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .footer-actions {
    gap: 10px;
  }

  .footer-actions .btn {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    padding: 12px 12px;
    font-size: 14px;
  }

  .section {
    padding: 52px 0;
  }

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

  .benefit {
    min-height: auto;
    gap: 13px;
    padding: 14px 16px;
  }

  .benefit h2 {
    margin-bottom: 2px;
    font-size: 15px;
  }

  .benefit p {
    font-size: 12px;
  }

  .icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .icon svg {
    width: 20px;
    height: 20px;
  }

  .form-grid,
  .gallery-grid,
  .reviews-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
    gap: 10px;
  }

  .price-panel {
    padding: 8px;
  }

  .price-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .price-panel {
    padding: 5px;
  }

  .price-panel-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    padding: 12px;
  }

  .price-panel-head strong {
    font-size: 15px;
    line-height: 1.15;
  }

  .price-panel-head span {
    font-size: 10px;
  }

  .price-row {
    min-height: auto;
    padding: 11px 14px;
    gap: 12px;
  }

  .price-row span {
    font-size: 14px;
  }

  .price-row strong {
    font-size: 15px;
  }

  .contact-copy h2 {
    margin-bottom: 22px;
    font-size: 27px;
  }

  .contact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
  }

  .contact-item {
    padding: 14px 0;
  }

  .contact-item strong {
    font-size: 12px;
  }

  .contact-item span,
  .contact-item a {
    font-size: 14px;
  }

  .large-map {
    min-height: 340px;
    margin-top: 20px;
  }

  .map-top-card,
  .map-label {
    display: none;
  }

  .appointment-layout {
    gap: 24px;
  }

  .about-layout {
    gap: 26px;
  }

  .about-image {
    aspect-ratio: 1.35 / 1;
  }

  .about-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .trust-list {
    margin-top: 20px;
    gap: 8px;
  }

  .booking-form {
    padding: 14px;
  }

  .form-grid {
    gap: 10px;
  }

  label {
    gap: 5px;
    font-size: 12px;
  }

  input,
  select,
  textarea {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 14px;
  }

  textarea {
    min-height: 90px;
  }

  .form-submit {
    min-height: 46px;
    margin-top: 12px;
  }

  .form-message {
    font-size: 14px;
  }

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

  .review-card,
  .review-score {
    padding: 16px;
  }

  .review-card p {
    font-size: 14px;
  }

  .review-card strong {
    font-size: 14px;
  }

  .review-score strong {
    font-size: 36px;
  }

  .review-score p {
    font-size: 13px;
  }

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

  summary {
    min-height: 46px;
    padding: 12px 14px;
    gap: 10px;
    font-size: 13px;
  }

  summary::after {
    font-size: 18px;
  }

  details p {
    padding: 0 14px 14px;
    font-size: 13px;
  }

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

  .review-heading .btn {
    width: 100%;
  }

  .review-card,
  .review-score {
    min-height: auto;
  }
}
