:root {
  --bg: #090908;
  --panel: #1a1916;
  --panel-2: #22211d;
  --gold: #d8b72e;
  --gold-soft: #f0cf43;
  --text: #f8f5ee;
  --muted: #c7c0b3;
  --dim: #948b7b;
  --line: rgba(216, 183, 46, 0.32);
  --line-soft: rgba(255, 255, 255, 0.08);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius: 22px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(216, 183, 46, 0.16), transparent 30rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 4px),
    linear-gradient(135deg, #0c0c0b, var(--bg) 52%, #11110f);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  width: min(calc(100% - 32px), var(--max));
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(14, 14, 12, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand__mark {
  width: 48px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #000;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand__text {
  display: grid;
  gap: 4px;
  line-height: 1;
  text-transform: uppercase;
}

.brand__text span {
  color: var(--gold-soft);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.brand__text small {
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.main-nav a,
.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 800;
}

.main-nav a {
  color: var(--muted);
}

.main-nav a:hover {
  color: var(--gold-soft);
  background: rgba(216, 183, 46, 0.08);
}

.header-cta,
.button--primary {
  border: 1px solid rgba(255, 236, 128, 0.35);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #080806;
  box-shadow: 0 14px 34px rgba(216, 183, 46, 0.18);
}

.nav-toggle {
  display: none;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--gold-soft);
}

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

main {
  width: 100%;
  overflow: hidden;
}

.hero,
.section-pad,
.ticker,
.visual-strip,
.contact,
.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin-left: auto;
  margin-right: auto;
}

.hero {
  padding: 32px 0;
}

.hero__content,
.intro,
.services,
.price,
.hours,
.outlets,
.contact {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 183, 46, 0.1), transparent 18rem),
    linear-gradient(145deg, rgba(35, 34, 29, 0.96), rgba(16, 16, 14, 0.98));
  box-shadow: var(--shadow);
}

.hero__content {
  padding: clamp(36px, 6vw, 76px) clamp(18px, 5vw, 72px);
  text-align: center;
}

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

.hero__badge {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.hero__badge img {
  width: 76px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
}

.hero__badge span {
  color: var(--gold-soft);
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin: 0 0 24px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  width: 88px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  margin: 0 auto 22px;
  color: var(--text);
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 900;
}

.hero__lead {
  max-width: 740px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease;
}

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

.button--ghost,
.button--light,
.button--ghost-dark {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.hero__stats {
  max-width: 640px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 42px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--line);
}

.hero__stats div {
  padding: 18px 14px;
  background: rgba(10, 10, 9, 0.78);
}

.hero__stats dt {
  color: var(--dim);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__stats dd {
  margin: 3px 0 0;
  color: var(--gold-soft);
  font-size: 28px;
  font-weight: 900;
}

.section-pad {
  margin-top: 28px;
  padding: 28px 0;
}

.intro,
.services,
.price,
.hours,
.outlets {
  padding: clamp(28px, 5vw, 54px);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.hours h2,
.contact h2 {
  margin-bottom: 0;
  color: var(--text);
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 900;
}

.intro {
  text-align: center;
}

.intro__copy {
  max-width: 790px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.mini-proof,
.ticker,
.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.mini-proof {
  margin-top: 24px;
}

.mini-proof span,
.ticker span,
.socials a,
.service-card strong {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 183, 46, 0.28);
  border-radius: 999px;
  background: rgba(216, 183, 46, 0.07);
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
}

.mini-proof span,
.ticker span,
.socials a {
  padding: 0 15px;
}

.ticker {
  margin-top: 28px;
  padding: 6px 0 28px;
}

.visual-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 4px;
  padding: 0 0 32px;
}

.visual-strip figure,
.hours__visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 183, 46, 0.24);
  border-radius: 18px;
  background: #050505;
}

.visual-strip img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.visual-strip figure:nth-child(1) img,
.visual-strip figure:nth-child(3) img {
  object-position: center 18%;
}

.visual-strip figcaption,
.hours__stamp {
  position: absolute;
  left: 16px;
  bottom: 16px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(216, 183, 46, 0.28);
  border-radius: 999px;
  background: rgba(9, 9, 8, 0.74);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.service-grid,
.price-layout,
.outlet-grid {
  display: grid;
  gap: 16px;
}

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

.service-card,
.price-panel,
.outlet-card {
  border: 1px solid rgba(216, 183, 46, 0.22);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 183, 46, 0.08), transparent 14rem),
    rgba(12, 12, 11, 0.72);
}

.service-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  text-align: center;
}

.service-card span,
.outlet-card p {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card h3,
.outlet-card h3 {
  color: var(--text);
  font-size: 23px;
}

.service-card h3 {
  margin: 58px 0 14px;
}

.service-card p,
.outlet-card address,
.price-list small,
.schedule span,
.contact p:not(.eyebrow) {
  color: var(--muted);
}

.service-card strong {
  width: max-content;
  margin: auto auto 0;
  padding: 0 13px;
}

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

.price-panel {
  padding: clamp(22px, 4vw, 42px);
}

.price-panel h3 {
  position: relative;
  width: max-content;
  margin: 0 auto 30px;
  color: var(--text);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.price-panel h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -11px;
  width: 84px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}

.price-list,
.schedule {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li,
.schedule li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-soft);
}

.price-list span {
  display: grid;
  gap: 3px;
  color: var(--text);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.price-list small {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: none;
}

.price-list strong,
.schedule strong {
  color: var(--gold-soft);
  font-weight: 900;
  white-space: nowrap;
}

.price-list strong {
  color: var(--text);
  font-size: clamp(18px, 2vw, 24px);
}

.hours {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.hours__visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.hours__stamp {
  gap: 10px;
  color: var(--gold-soft);
}

.hours__stamp img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.hours__content {
  text-align: center;
}

.schedule {
  max-width: 560px;
  margin: 28px auto 0;
}

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

.outlet-card {
  min-height: 288px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  text-align: center;
}

.outlet-card address {
  max-width: 320px;
  font-style: normal;
}

.outlet-card a {
  width: max-content;
  margin-top: auto;
  color: var(--gold-soft);
  font-weight: 900;
}

.contact {
  margin-top: 28px;
  padding: clamp(34px, 6vw, 68px);
  text-align: center;
}

.contact__content {
  max-width: 790px;
  margin: 0 auto;
}

.contact p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  font-size: 18px;
}

.socials {
  margin-top: 26px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
  padding: 34px clamp(22px, 4vw, 44px) 108px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 183, 46, 0.09), transparent 18rem),
    linear-gradient(145deg, rgba(28, 27, 23, 0.96), rgba(12, 12, 11, 0.98));
  box-shadow: var(--shadow);
  color: var(--muted);
}

.footer-brand,
.footer-links,
.footer-contact,
.footer-outlet {
  display: grid;
  align-content: start;
  gap: 10px;
}

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

.footer-brand p,
.footer-outlet p,
.footer-bottom span {
  margin: 0;
}

.footer-links strong,
.footer-contact strong,
.footer-outlet strong {
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  width: max-content;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  color: var(--dim);
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 18px 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: #25d366;
  color: #07170c;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36), 0 12px 28px rgba(37, 211, 102, 0.26);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42), 0 14px 32px rgba(37, 211, 102, 0.3);
}

.floating-whatsapp img {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    top: 10px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.is-open {
    grid-column: 1 / -1;
    display: grid;
    justify-content: stretch;
    gap: 4px;
    padding-top: 8px;
  }

  .main-nav.is-open a {
    justify-content: flex-start;
  }

  .service-grid,
  .price-layout,
  .hours,
  .outlet-grid,
  .visual-strip {
    grid-template-columns: 1fr;
  }

  .visual-strip img,
  .hours__visual img {
    height: 360px;
  }

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

  .footer-brand,
  .footer-bottom {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .section-pad,
  .ticker,
  .visual-strip,
  .contact,
  .site-footer {
    width: min(calc(100% - 24px), var(--max));
  }

  .site-header {
    top: 8px;
    margin-top: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand__mark {
    width: 40px;
  }

  .brand__text span {
    font-size: 13px;
    letter-spacing: 0.08em;
  }

  .brand__text small {
    letter-spacing: 0.14em;
  }

  .hero {
    padding: 24px 0;
  }

  .hero__content,
  .intro,
  .services,
  .price,
  .hours,
  .outlets,
  .contact {
    border-radius: 18px;
  }

  .hero__badge img {
    width: 58px;
  }

  .hero__badge span {
    font-size: 24px;
    letter-spacing: 0.12em;
  }

  h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .button {
    width: 100%;
  }

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

  .intro,
  .services,
  .price,
  .hours,
  .outlets {
    padding: 28px 18px;
  }

  .ticker {
    gap: 8px;
  }

  .ticker span {
    min-width: auto;
    padding: 0 13px;
  }

  .visual-strip img,
  .hours__visual img {
    height: 300px;
  }

  .service-card {
    min-height: 220px;
  }

  .price-list li {
    gap: 10px;
  }

  .price-list span {
    font-size: 16px;
  }

  .price-list strong {
    font-size: 17px;
  }

  .schedule li {
    grid-template-columns: 1fr;
    gap: 3px;
    text-align: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 18px 104px;
  }

  .footer-brand,
  .footer-bottom {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .floating-whatsapp {
    left: 50%;
    right: auto;
    bottom: 16px;
    transform: translateX(-50%);
    width: min(calc(100% - 48px), 320px);
  }

  .floating-whatsapp:hover {
    transform: translateX(-50%) translateY(-3px);
  }
}
