:root {
  --ink: #2c2624;
  --muted: #756b62;
  --soft: #f8f2e9;
  --cream: #fbf8f2;
  --paper: #fffdf8;
  --line: #e8d9c7;
  --gold: #bd8638;
  --gold-2: #d5a34b;
  --gold-dark: #8d5b1d;
  --shadow: 0 18px 46px rgba(86, 62, 34, 0.13);
  --radius: 8px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 10% 0%, rgba(222, 184, 121, 0.18), transparent 25rem),
    linear-gradient(180deg, #fffdf9 0%, #f9f4ec 44%, #fffaf3 100%);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(189, 134, 56, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.6rem;
  width: min(100%, 1600px);
  margin: 0 auto;
  min-height: 90px;
  padding: 1.05rem clamp(1rem, 4vw, 4.5rem);
  background: rgba(255, 253, 248, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: max-content;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand span {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 700;
  line-height: 0.85;
}

.brand small {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: #7f756d;
}

.brand.dark {
  color: var(--gold-2);
}

.brand.dark small {
  color: #d8c3a5;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.2rem);
  font-size: 0.9rem;
  font-weight: 700;
  color: #4e4945;
}

.main-nav a {
  position: relative;
  padding: 0.7rem 0;
}

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

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

.main-nav a.active {
  color: var(--gold-dark);
}

.header-cta,
.btn,
.mini-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 0.5rem;
  border-radius: 6px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
  cursor: pointer;
}

.header-cta {
  padding: 0.75rem 1.15rem;
  color: #fff;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-dark));
  box-shadow: 0 10px 22px rgba(141, 91, 29, 0.22);
  font-size: 0.9rem;
}

.header-cta:hover,
.btn:hover,
.mini-cta:hover {
  transform: translateY(-1px);
}

.header-cta svg,
.btn svg,
.mini-cta svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke-width: 2.4;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--gold-dark);
  background: #fffaf4;
  cursor: pointer;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(520px, 1.2fr);
  min-height: clamp(560px, 76vh, 760px);
  width: min(100%, 1600px);
  margin: 0 auto;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.9) 37%, rgba(255, 253, 248, 0.04) 63%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(125, 84, 34, 0.03), rgba(125, 84, 34, 0.06));
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(2rem, 6vw, 5rem) clamp(1.2rem, 5.4vw, 5.2rem);
}

.hero-kickers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
  margin-bottom: 1.2rem;
  color: var(--gold-dark);
  font-size: 0.96rem;
  font-weight: 700;
}

.hero-kickers span,
.trust-row article {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

.hero-kickers svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
}

.hero h1 {
  max-width: 13.8ch;
  margin: 0 0 1.25rem;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 5.4vw, 5.65rem);
  font-weight: 600;
  line-height: 0.95;
}

.hero h1::first-line {
  color: var(--ink);
}

.hero h1 {
  color: var(--gold-dark);
}

.hero p {
  max-width: 39rem;
  margin: 0;
  color: #4c4540;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  border: 1px solid transparent;
  padding: 0.85rem 1.55rem;
  font-size: 0.92rem;
  min-width: 0;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #d4a04d 0%, #a66c24 100%);
  box-shadow: 0 14px 24px rgba(141, 91, 29, 0.23);
}

.btn-primary:hover {
  box-shadow: 0 17px 30px rgba(141, 91, 29, 0.28);
}

.btn-outline {
  color: #292421;
  border-color: #2e2925;
  background: rgba(255, 253, 248, 0.84);
}

.btn-outline:hover {
  border-color: var(--gold-dark);
  background: #fff8ed;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.4rem);
  margin-top: 4rem;
  max-width: 46rem;
}

.trust-row article {
  color: #6b625d;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
}

.trust-row svg {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  color: var(--gold);
  stroke-width: 1.6;
}

.hero-media {
  position: relative;
  min-height: 100%;
}

.hero-media > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 42% center;
  filter: saturate(0.95) contrast(0.97);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 253, 248, 0.35), rgba(255, 253, 248, 0));
}

.phone-preview {
  position: absolute;
  right: clamp(1.1rem, 4vw, 5rem);
  bottom: 2.2rem;
  width: clamp(180px, 16vw, 255px);
  aspect-ratio: 0.54;
  z-index: 3;
  border: 9px solid #111;
  border-radius: 34px;
  background: #111;
  box-shadow: 0 24px 50px rgba(31, 27, 23, 0.38);
}

.phone-top {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 2;
  width: 34%;
  height: 13px;
  border-radius: 999px;
  background: #0a0a0a;
  transform: translateX(-50%);
}

.phone-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
  padding: 2.1rem 1rem 1rem;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 252, 246, 0.98) 0 55%, rgba(255, 252, 246, 0.45) 73%),
    url("https://images.pexels.com/photos/4586744/pexels-photo-4586744.jpeg?auto=compress&cs=tinysrgb&w=500") center / cover;
}

.phone-brand {
  font-family: var(--serif);
  color: var(--gold-dark);
  font-size: 1.08rem;
  font-weight: 700;
}

.phone-lines {
  display: grid;
  gap: 0.22rem;
  width: 55%;
}

.phone-lines span,
.mini-benefits span {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: rgba(189, 134, 56, 0.38);
}

.phone-lines span:nth-child(2) {
  width: 80%;
}

.phone-lines span:nth-child(3) {
  width: 55%;
}

.phone-screen h2 {
  margin: 0;
  width: 72%;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.1vw, 1.22rem);
  line-height: 1.06;
}

.phone-screen p {
  width: 72%;
  color: #4c4540;
  font-size: 0.58rem;
  line-height: 1.45;
}

.phone-screen button {
  width: max-content;
  min-height: 28px;
  border: 0;
  border-radius: 5px;
  padding: 0.35rem 0.55rem;
  color: #fff;
  background: var(--gold-dark);
  font-size: 0.55rem;
  font-weight: 800;
}

.mini-benefits {
  display: grid;
  gap: 0.42rem;
  width: 76%;
  margin-top: auto;
}

.mini-benefits span {
  height: 14px;
  background: rgba(255, 253, 248, 0.85);
  border: 1px solid rgba(189, 134, 56, 0.18);
}

.section {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: clamp(2.6rem, 5vw, 4.6rem) clamp(1rem, 4.5vw, 4rem);
  background: rgba(255, 253, 248, 0.86);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.1rem;
  text-align: center;
}

.section-heading p,
.promo-header p {
  margin: 0 0 0.35rem;
  color: #63564d;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading h2,
.promo-header h2 {
  margin: 0;
  color: #70645d;
  font-size: clamp(0.95rem, 1.2vw, 1.12rem);
  font-weight: 500;
  line-height: 1.6;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, 850px);
  min-height: 54px;
  margin: 0 auto 2.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.tab {
  min-height: 52px;
  border: 0;
  color: #675d56;
  background: transparent;
  font: 800 0.96rem var(--sans);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.tab.active {
  color: #fff;
  background: linear-gradient(180deg, #d4a04d, #a66c24);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.treatment-column {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(1.1rem, 2vw, 1.55rem);
  border-right: 1px solid var(--line);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.treatment-column:last-child {
  border-right: 0;
}

.treatment-column.is-hidden {
  display: none;
}

.treatment-column header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 48px;
  margin-bottom: 0.9rem;
  color: var(--gold-dark);
}

.treatment-column header svg {
  width: 2rem;
  height: 2rem;
  stroke-width: 1.6;
}

.treatment-column h3 {
  margin: 0;
  color: #4f4742;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.6vw, 1.48rem);
  line-height: 1.08;
}

.treatment-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0 0 1.4rem;
  list-style: none;
}

.treatment-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: start;
  gap: 0.8rem;
}

.treatment-list img {
  width: 58px;
  height: 58px;
  border: 3px solid #fff;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 5px 14px rgba(71, 50, 28, 0.14);
}

.treatment-list strong {
  display: block;
  margin-bottom: 0.18rem;
  color: #3c3632;
  font-size: 0.96rem;
}

.treatment-list p {
  margin: 0;
  color: #6c625c;
  font-size: 0.84rem;
  line-height: 1.42;
}

.mini-cta {
  width: 100%;
  margin-top: auto;
  padding: 0.72rem 0.8rem;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  background: #fffaf3;
  font-size: 0.82rem;
}

.promotions {
  background:
    linear-gradient(180deg, rgba(245, 231, 211, 0.84), rgba(255, 250, 243, 0.9)),
    var(--soft);
}

.promo-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.promo-header h2 {
  text-align: left;
}

.promo-header span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(189, 134, 56, 0.55);
  border-radius: 999px;
  color: var(--gold-dark);
  background: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  font-weight: 800;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
}

.promo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fffdf9;
  box-shadow: 0 12px 32px rgba(91, 62, 32, 0.09);
}

.promo-card img {
  width: 100%;
  aspect-ratio: 1.38;
  object-fit: cover;
}

.promo-card div {
  padding: 1rem 1rem 1.15rem;
  text-align: center;
}

.promo-card h3 {
  margin: 0;
  color: #3d3733;
  font-size: 0.95rem;
}

.promo-card small {
  display: block;
  margin-top: 0.2rem;
  color: #6b615b;
  font-weight: 700;
}

.promo-card strong {
  display: block;
  margin-top: 0.5rem;
  color: var(--gold-dark);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 800;
}

.promo-card del {
  display: block;
  color: #7d736d;
  font-size: 0.86rem;
  font-weight: 700;
}

.promo-card p {
  min-height: 3rem;
  margin: 0.75rem 0 0;
  color: #625853;
  font-size: 0.85rem;
  line-height: 1.45;
}

.promo-action {
  width: max-content;
  margin: 2rem auto 0;
}

.why {
  background: #fffdf8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.8rem;
}

.why-grid article {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  min-height: 132px;
  padding: 1rem 0.4rem;
  color: #4e4742;
  text-align: center;
  align-content: start;
}

.why-grid svg {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--gold);
  stroke-width: 1.35;
}

.why-grid span {
  max-width: 9rem;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.35;
}

.steps {
  background: linear-gradient(180deg, #fffdf9, #f7efe5);
}

.step-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1220px;
  margin: 0 auto;
}

.step-track::before {
  position: absolute;
  top: 42px;
  left: 8%;
  right: 8%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.step-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  min-height: 210px;
  padding: 0 0.8rem;
  text-align: center;
}

.step-card b {
  display: inline-grid;
  place-items: center;
  z-index: 1;
  width: 38px;
  height: 38px;
  color: #fff;
  background: linear-gradient(180deg, #d4a04d, #a66c24);
  border-radius: 999px;
  font-size: 1rem;
  box-shadow: 0 10px 18px rgba(141, 91, 29, 0.22);
}

.step-card svg {
  width: 5.15rem;
  height: 5.15rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #2d2825;
  background: rgba(255, 253, 248, 0.88);
  stroke-width: 1.55;
}

.step-card h3 {
  margin: 0;
  color: #3e3834;
  font-size: 0.96rem;
}

.step-card p {
  margin: 0;
  max-width: 12rem;
  color: #6a625c;
  font-size: 0.82rem;
  line-height: 1.45;
}

.locations {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(249, 240, 226, 0.78)),
    var(--paper);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.location-card {
  display: grid;
  grid-template-columns: 36% 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fffdf8;
  box-shadow: 0 12px 30px rgba(82, 58, 30, 0.08);
}

.location-card > img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.location-content {
  padding: 1.2rem 1.35rem;
}

.location-content > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.25rem 0.75rem;
  color: #fff;
  background: linear-gradient(180deg, #d2a04d, #a66c24);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 800;
}

.location-content h3 {
  margin: 0.85rem 0 0.6rem;
  color: #3d3733;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.location-content p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.55rem 0;
  color: #5f554e;
  font-size: 0.91rem;
  line-height: 1.45;
}

.location-content p svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  color: var(--gold);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.05rem 0 1.15rem;
}

.location-actions .btn {
  min-height: 39px;
  padding: 0.55rem 0.82rem;
  font-size: 0.78rem;
}

.location-content h4 {
  margin: 0 0 0.55rem;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.location-content ul {
  display: grid;
  gap: 0.34rem;
  margin: 0;
  padding: 0;
  color: #5d544e;
  font-size: 0.83rem;
  list-style: none;
}

.location-content li::before {
  content: "✓";
  margin-right: 0.45rem;
  color: var(--gold-dark);
  font-weight: 900;
}

.gallery {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3.3rem) clamp(1rem, 3vw, 2.4rem);
  background: #fffdf8;
  border-bottom: 1px solid var(--line);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-strip img {
  width: 100%;
  height: clamp(130px, 13vw, 215px);
  object-fit: cover;
}

.gallery-note {
  margin: 0.9rem 0 0;
  color: #7a7069;
  text-align: center;
  font-size: 0.78rem;
}

.faq {
  background: #fffaf3;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.7rem;
  max-width: 1380px;
  margin: 0 auto;
}

details {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.68);
}

summary {
  position: relative;
  min-height: 48px;
  padding: 0.9rem 2.6rem 0.9rem 1rem;
  color: #504943;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

summary::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  color: var(--gold-dark);
  content: "+";
  font-size: 1.2rem;
  font-weight: 800;
  transform: translateY(-50%);
}

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

details p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: #675d56;
  font-size: 0.88rem;
  line-height: 1.55;
}

.cta-band {
  position: relative;
  width: min(100%, 1600px);
  min-height: 280px;
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: clamp(2.4rem, 5vw, 4.8rem) clamp(1rem, 15vw, 26rem);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(19, 15, 11, 0.82), rgba(19, 15, 11, 0.7), rgba(19, 15, 11, 0.28)),
    url("https://images.pexels.com/photos/3736520/pexels-photo-3736520.jpeg?auto=compress&cs=tinysrgb&w=1600") center / cover;
}

.cta-content {
  max-width: 640px;
}

.cta-content h2 {
  margin: 0 0 0.85rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
}

.cta-content p {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.04rem;
  line-height: 1.65;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 0.8fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: clamp(2.2rem, 5vw, 4.5rem) clamp(1.2rem, 4.5vw, 5rem) 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(180deg, rgba(20, 18, 16, 0.95), rgba(11, 10, 9, 0.98)),
    #111;
}

.site-footer h2 {
  margin: 0 0 1rem;
  color: var(--gold-2);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 0.55rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  line-height: 1.5;
}

.site-footer strong {
  color: var(--gold-2);
}

.footer-brand p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold-2);
}

.whatsapp-float {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-top: 0.5rem;
  color: #12110f;
  background: #fff;
  border-radius: 999px;
}

.whatsapp-float svg {
  width: 2rem;
  height: 2rem;
  color: #161412;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
  font-size: 0.78rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

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

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

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

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    order: 3;
  }

  .main-nav {
    position: fixed;
    inset: 90px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 0.7rem clamp(1rem, 4vw, 2rem) 1.2rem;
    background: rgba(255, 253, 248, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(58, 39, 19, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px);
    transition: transform 240ms ease;
  }

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

  .main-nav a {
    min-height: 46px;
  }

  .header-cta {
    justify-self: end;
    order: 2;
  }

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

  .hero-copy {
    padding-bottom: 1.5rem;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .hero-media {
    min-height: 520px;
  }

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

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

  .treatment-column:nth-child(2) {
    border-right: 0;
  }

  .treatment-column:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

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

  .location-card {
    grid-template-columns: 1fr;
  }

  .location-card > img {
    min-height: 240px;
    max-height: 300px;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 78px;
    grid-template-columns: 1fr auto;
    gap: 0.8rem;
  }

  .brand span {
    font-size: 2.25rem;
  }

  .brand small {
    font-size: 0.6rem;
  }

  .menu-toggle {
    order: 2;
  }

  .header-cta {
    grid-column: 1 / -1;
    width: 100%;
    order: 3;
  }

  .main-nav {
    inset: 142px 0 auto 0;
  }

  .hero {
    min-height: auto;
    background: var(--paper);
  }

  .hero-copy {
    padding: 2.1rem 1.1rem 1.4rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.65rem, 10vw, 3.2rem);
    overflow-wrap: break-word;
  }

  .hero-kickers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .hero-kickers span {
    width: 100%;
  }

  .hero-actions,
  .location-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-row {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .hero-media {
    min-height: 410px;
  }

  .hero-media > img {
    min-height: 410px;
    object-position: 48% center;
  }

  .phone-preview {
    display: none;
  }

  .section {
    padding: 2.5rem 1rem;
  }

  .section-heading {
    text-align: left;
  }

  .tabs {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 9px;
  }

  .treatment-grid,
  .promo-grid,
  .why-grid,
  .step-track,
  .location-grid,
  .faq-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .treatment-column,
  .treatment-column:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .treatment-column:last-child {
    border-bottom: 0;
  }

  .promo-header {
    align-items: stretch;
    flex-direction: column;
  }

  .promo-grid {
    gap: 1rem;
  }

  .why-grid article {
    grid-template-columns: 44px 1fr;
    justify-items: start;
    align-items: center;
    min-height: auto;
    text-align: left;
  }

  .why-grid span {
    max-width: none;
  }

  .step-track::before {
    display: none;
  }

  .step-card {
    grid-template-columns: 44px 70px 1fr;
    justify-items: start;
    align-items: center;
    min-height: auto;
    padding: 0.9rem 0;
    text-align: left;
    border-bottom: 1px solid var(--line);
  }

  .step-card h3,
  .step-card p {
    grid-column: 3;
    max-width: none;
  }

  .step-card h3 {
    align-self: end;
  }

  .step-card p {
    align-self: start;
  }

  .step-card svg {
    width: 62px;
    height: 62px;
    padding: 0.9rem;
  }

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

  .gallery-strip img {
    height: 170px;
  }

  .cta-band {
    padding: 2.4rem 1rem;
  }
}

@media (max-width: 430px) {
  .hero-kickers {
    font-size: 0.82rem;
  }

  .phone-preview {
    width: 132px;
    border-width: 7px;
  }

  .phone-screen {
    padding: 1.8rem 0.75rem 0.75rem;
  }

  .phone-screen h2 {
    width: 78%;
    font-size: 0.9rem;
  }

  .phone-screen p {
    width: 78%;
  }

  .treatment-list li {
    grid-template-columns: 52px 1fr;
  }

  .treatment-list img {
    width: 52px;
    height: 52px;
  }
}
