:root {
  --wine: #9b715d;
  --wine-strong: #5f4134;
  --wine-soft: #f1e2d8;
  --sage: #b48a70;
  --sage-soft: #f3e7dc;
  --ink: #30241f;
  --muted: #7a6a60;
  --line: #dccdc0;
  --surface: #fffaf6;
  --soft: #f2ebe4;
  --gold: #bf9275;
  --skin: #e8d9cd;
  --cream: #fbf4ed;
  --shadow: 0 20px 60px rgba(95, 65, 52, 0.13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--soft);
}

body.is-menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 12px clamp(18px, 3vw, 48px);
  border-bottom: 1px solid rgba(218, 201, 187, 0.82);
  background: rgba(255, 250, 246, 0.92);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--wine), #c49a82);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(155, 113, 93, 0.24);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 16px;
  letter-spacing: 0;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f0e8;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 11px;
  border-radius: 6px;
  color: #66534a;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: #fffaf6;
  color: var(--wine-strong);
  box-shadow: 0 6px 14px rgba(95, 65, 52, 0.08);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.header-cta,
.btn-primary {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 12px 30px rgba(155, 113, 93, 0.22);
}

.btn-secondary {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 12px 30px rgba(180, 138, 112, 0.2);
}

.btn-light {
  border-color: rgba(255, 250, 246, 0.72);
  background: rgba(255, 250, 246, 0.88);
  color: var(--wine-strong);
}

.btn-whatsapp,
.whatsapp-link {
  gap: 9px;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: #1fa463;
}

.whatsapp-link .whatsapp-icon {
  fill: #fff;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf6;
}

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

.mobile-action-bar {
  display: none;
}

.hero-section {
  position: relative;
  min-height: min(820px, calc(100svh - 34px));
  display: grid;
  grid-template-columns: minmax(340px, 48vw) minmax(280px, 1fr);
  align-items: end;
  gap: 32px;
  padding: 132px clamp(22px, 5vw, 78px) clamp(32px, 6vh, 70px);
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background-image: url("images/hero-regenera-atendimento.jpeg");
  background-size: cover;
  background-position: center right;
  background-color: #e9ddd2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0;
  transform: scale(1.055);
  transition: opacity 1.2s ease, transform 6.8s ease;
}

.hero-slide-feature {
  object-position: 72% 54%;
}

.hero-slide-portrait {
  object-position: center center;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(250, 243, 236, 0.90) 0%, rgba(250, 243, 236, 0.72) 33%, rgba(250, 243, 236, 0.18) 62%, rgba(95, 65, 52, 0.12) 100%),
    linear-gradient(180deg, rgba(255, 250, 246, 0.08) 0%, rgba(155, 113, 93, 0.12) 100%);
}

.hero-content {
  align-self: center;
  max-width: 760px;
}

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

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--wine-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6.2vw, 108px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 600px;
  color: #59483f;
  font-size: clamp(18px, 1.4vw, 23px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span,
.result-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(155, 113, 93, 0.18);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 250, 246, 0.76);
  color: #6d4b3d;
  font-size: 13px;
  font-weight: 800;
}

.hero-panel {
  justify-self: end;
  width: min(360px, 100%);
  border: 1px solid rgba(255, 250, 246, 0.68);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 250, 246, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  color: var(--wine-strong);
  font-size: 24px;
  line-height: 1.12;
}

.hero-panel p {
  margin: 12px 0 0;
  color: #6f5d53;
  line-height: 1.55;
}

.section {
  width: 100%;
  padding: clamp(64px, 8vw, 118px) clamp(22px, 5vw, 78px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(320px, 0.7fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 40px;
}

.section-head h2,
.appointment-intro h2,
.results-copy h2,
.contact-main h2 {
  margin-bottom: 14px;
  color: var(--wine-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-head p:not(.eyebrow),
.appointment-intro p,
.results-copy p,
.contact-main p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.procedure-section {
  background: linear-gradient(180deg, #fffaf6 0%, #f3ebe3 100%);
}

.procedure-grid {
  display: grid;
  grid-template-columns: minmax(360px, 46vw) 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: stretch;
}

.image-frame,
.results-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fffaf6;
  box-shadow: var(--shadow);
}

.image-frame img,
.results-visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.steps-panel {
  display: grid;
  gap: 14px;
}

.step-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 34px);
  background: #fffaf6;
  box-shadow: 0 14px 36px rgba(95, 65, 52, 0.06);
}

.step-card span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--sage-soft);
  color: var(--sage);
  font-size: 14px;
  font-weight: 900;
}

.step-card h3 {
  margin-bottom: 8px;
  color: #372a24;
  font-size: 21px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.procedure-moments {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.procedure-moments img {
  width: 100%;
  height: clamp(150px, 13vw, 230px);
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(95, 65, 52, 0.08);
}

.results-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(360px, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  background: #eee3d9;
}

.results-copy {
  max-width: 690px;
}

.results-collage {
  position: relative;
  min-height: 560px;
}

.result-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.result-insta {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(220, 205, 192, 0.92);
  border-radius: 8px;
  background: #fffaf6;
  box-shadow: 0 18px 42px rgba(95, 65, 52, 0.16);
}

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

.result-insta figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 8px;
  padding: 0 10px;
  background: rgba(255, 250, 246, 0.9);
  color: var(--wine-strong);
  font-size: 12px;
  font-weight: 900;
}

.result-insta-left {
  left: 18px;
  bottom: 22px;
  width: min(34%, 190px);
  height: 270px;
}

.result-insta-right {
  right: 18px;
  top: 24px;
  width: min(32%, 178px);
  height: 250px;
}

.metric-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.metric-strip article {
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fffaf6;
}

.metric-strip strong {
  display: block;
  margin-bottom: 7px;
  color: var(--wine);
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1;
}

.metric-strip span {
  color: var(--muted);
  font-weight: 700;
}

.instagram-section {
  background:
    linear-gradient(135deg, rgba(155, 113, 93, 0.10), transparent 32%),
    linear-gradient(180deg, #fffaf6 0%, #f2ebe4 100%);
}

.instagram-head {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: end;
  margin-bottom: 34px;
}

.instagram-head h2 {
  margin-bottom: 0;
  color: var(--wine-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.02;
}

.instagram-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.instagram-gallery {
  display: grid;
  grid-template-columns: 1.05fr 0.82fr 0.82fr 1.05fr;
  grid-auto-rows: minmax(240px, 18vw);
  gap: 14px;
}

.instagram-feature {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(280px, 0.78fr) minmax(220px, 0.62fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 250, 246, 0.86);
  box-shadow: 0 14px 36px rgba(95, 65, 52, 0.08);
}

.instagram-feature figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.instagram-feature img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.instagram-feature > div {
  display: grid;
  align-content: center;
  padding: 14px;
}

.instagram-feature h3 {
  margin-bottom: 12px;
  color: var(--wine-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.04;
}

.instagram-feature p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.insta-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf6;
  box-shadow: 0 16px 40px rgba(95, 65, 52, 0.08);
}

.insta-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.62));
}

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

.insta-card figcaption {
  position: absolute;
  z-index: 1;
  left: 14px;
  bottom: 12px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--wine-strong);
  font-size: 12px;
  font-weight: 900;
}

.insta-tall {
  grid-row: span 2;
}

.insta-wide {
  grid-column: span 2;
}

.instagram-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 18px;
  border: 1px solid rgba(155, 113, 93, 0.22);
  border-radius: 8px;
  padding: 0 16px;
  background: #fffaf6;
  color: var(--wine);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(95, 65, 52, 0.08);
}

.appointment-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(520px, 1fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(155, 113, 93, 0.10), transparent 34%),
    linear-gradient(180deg, #fffaf6 0%, #f4ece4 100%);
}

.appointment-intro {
  position: sticky;
  top: 104px;
}

.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 2.4vw, 32px);
  background: rgba(255, 250, 246, 0.94);
  box-shadow: var(--shadow);
}

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

.lead-form label {
  display: grid;
  gap: 8px;
  color: #4a3930;
  font-size: 13px;
  font-weight: 900;
}

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

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d7c7ba;
  border-radius: 8px;
  padding: 12px 13px;
  background: #fffaf6;
  color: var(--ink);
  outline: none;
}

.lead-form textarea {
  resize: vertical;
  min-height: 112px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(155, 113, 93, 0.14);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.consent-line {
  display: flex !important;
  grid-template-columns: auto 1fr;
  gap: 10px !important;
  align-items: flex-start;
  margin-top: 16px;
  color: var(--muted) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.consent-line input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--wine);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.form-status {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.form-status.is-ok {
  color: #087443;
}

.form-status.is-error {
  color: #b42318;
}

.client-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(480px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(180, 138, 112, 0.14), transparent 38%),
    linear-gradient(180deg, #f4ece4 0%, #fffaf6 100%);
}

.client-copy h2 {
  margin-bottom: 14px;
  color: var(--wine-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.02;
}

.client-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.secure-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.secure-list span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(155, 113, 93, 0.2);
  border-radius: 8px;
  padding: 0 12px;
  background: #fffaf6;
  color: #6d4b3d;
  font-size: 13px;
  font-weight: 900;
}

.client-access-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.88fr) minmax(280px, 1fr);
  gap: 16px;
}

.client-token-card {
  display: grid;
  gap: 16px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 2.4vw, 30px);
  background: #fffaf6;
  box-shadow: var(--shadow);
}

.client-token-card label {
  display: grid;
  gap: 8px;
  color: #4a3930;
  font-size: 13px;
  font-weight: 900;
}

.client-token-card input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d7c7ba;
  border-radius: 8px;
  padding: 12px 13px;
  outline: none;
}

.client-token-card input:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(155, 113, 93, 0.14);
}

.client-token-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.compact-form {
  box-shadow: 0 14px 36px rgba(24, 34, 51, 0.08);
}

.compact-form > label:not(.consent-line) {
  margin-bottom: 14px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(360px, 0.7fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: start;
  background: #5f4134;
  color: #fff;
}

.contact-section .eyebrow {
  color: #dfc1a8;
}

.contact-main h2,
.contact-main p {
  color: #fff;
}

.contact-main p {
  opacity: 0.82;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.instagram-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 900;
}

.whatsapp-link {
  background: rgba(255, 250, 246, 0.18);
}

.contact-form {
  display: grid;
  gap: 14px;
  box-shadow: none;
}

.contact-form .consent-line,
.contact-form .form-actions {
  margin-top: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 22px clamp(22px, 5vw, 78px);
  border-top: 1px solid var(--line);
  background: #fffaf6;
  color: var(--muted);
  font-size: 13px;
}

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

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

  .header-cta {
    display: none;
  }

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

  .site-nav {
    position: fixed;
    inset: 72px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
    min-height: 46px;
  }

  .hero-section,
  .procedure-grid,
  .results-section,
  .appointment-section,
  .contact-section,
  .client-section,
  .instagram-head,
  .section-head {
    grid-template-columns: 1fr;
  }

  .client-access-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .appointment-intro {
    position: static;
  }

  .hero-panel {
    justify-self: stretch;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 68px;
  }

  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .site-header {
    min-height: 66px;
    padding: 8px 14px;
    border-bottom-color: rgba(180, 138, 112, 0.24);
    box-shadow: 0 10px 30px rgba(95, 65, 52, 0.08);
  }

  .brand {
    min-width: 0;
  }

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

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

  .brand small {
    font-size: 11px;
  }

  .site-nav {
    inset: 66px 12px auto 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 246, 0.98);
  }

  .mobile-action-bar {
    position: fixed;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    z-index: 45;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border: 1px solid rgba(220, 205, 192, 0.94);
    border-radius: 8px;
    padding: 8px;
    background: rgba(255, 250, 246, 0.94);
    box-shadow: 0 18px 45px rgba(95, 65, 52, 0.16);
    backdrop-filter: blur(18px);
  }

  .mobile-action-bar a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(155, 113, 93, 0.18);
    border-radius: 8px;
    background: #fffaf6;
    color: var(--wine-strong);
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-action-bar .mobile-action-primary {
    border-color: transparent;
    background: var(--wine);
    color: #fff;
  }

  .hero-section {
    min-height: calc(100svh - 8px);
    padding: 96px 18px 96px;
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 0;
    height: auto;
  }

  .hero-slide {
    object-fit: cover;
    object-position: center center;
  }

  .hero-slide-feature {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(250, 243, 236, 0.94) 0%, rgba(250, 243, 236, 0.84) 42%, rgba(155, 113, 93, 0.20) 100%),
      linear-gradient(90deg, rgba(255, 250, 246, 0.82), rgba(255, 250, 246, 0.12));
  }

  h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .hero-copy,
  .section-head p:not(.eyebrow),
  .appointment-intro p,
  .client-copy p,
  .results-copy p,
  .contact-main p {
    font-size: 15px;
  }

  .section {
    padding: 56px 18px;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .form-grid,
  .metric-strip,
  .procedure-moments,
  .instagram-feature,
  .instagram-gallery {
    grid-template-columns: 1fr;
  }

  .results-collage {
    min-height: auto;
  }

  .result-insta {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    min-height: 260px;
    margin-top: 12px;
  }

  .instagram-gallery {
    grid-auto-rows: auto;
  }

  .insta-card,
  .insta-tall,
  .insta-wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .image-frame img,
  .results-visual img {
    min-height: 300px;
  }

  .lead-form {
    padding: 16px;
  }

  .client-token-card {
    padding: 16px;
  }

  .hero-actions .btn,
  .client-token-card .btn {
    width: 100%;
  }

  .form-actions {
    align-items: stretch;
  }

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

  .site-footer {
    display: grid;
  }
}
