/* =========================================
   LUMINASKIN MEDICAL SPA
   VERSION 2 — LUXURY BLACK / WHITE / GOLD
========================================= */

:root {
  --black: #090909;
  --deep-black: #050505;
  --ink: #151515;

  --white: #ffffff;
  --cream: #faf8f3;

  --gold: #c7a15a;
  --gold-light: #e0c27d;
  --gold-dark: #9a7435;

  --line: #ded7ca;
}


/* =========================================
   RESET
========================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.65;
}

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


/* =========================================
   HEADER
========================================= */

header {
  height: 105px;

  padding: 0 6%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #ffffff;

  border-bottom: 1px solid var(--line);

  position: sticky;
  top: 0;

  z-index: 100;
}


/* LOGO */

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-image {
  display: block;
  width: 200px;
  height: auto;
  max-height: 82px;
  object-fit: contain;
}


/* MOBILE LOGO */

@media (max-width: 700px) {

  .logo-image {
    width: 155px;
    max-height: 65px;
  }

}


/* NAVIGATION */

nav {
  display: flex;
  align-items: center;

  gap: 27px;

  font-size: 10px;
  letter-spacing: 1.5px;

  text-transform: uppercase;
}

nav a {
  transition: color 0.25s ease;
}

nav a:hover {
  color: var(--gold);
}


/* BOOK BUTTON */

.nav-book {
  padding: 13px 21px;

  color: white !important;
  background: var(--black);

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.nav-book:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}


/* MOBILE MENU BUTTON */

.menu-button {
  display: none;

  border: none;
  background: transparent;

  font-size: 25px;

  cursor: pointer;
}


/* =========================================
   GENERAL
========================================= */

.eyebrow {
  margin-bottom: 22px;

  color: var(--gold-dark);

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 3px;

  text-transform: uppercase;
}

.section {
  padding: 105px 7%;
}


/* =========================================
   HERO
========================================= */

.hero {
  min-height: 730px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  background: var(--cream);
}


/* HERO TEXT */

.hero-content {
  padding: 90px 11%;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  margin: 0 0 30px;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(58px, 6vw, 86px);

  font-weight: 500;

  line-height: 0.88;

  letter-spacing: -1px;
}

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

  font-style: italic;
}

.hero-description {
  max-width: 520px;

  color: #5d5952;

  font-size: 16px;
}

.hero-actions {
  margin-top: 35px;

  display: flex;
  align-items: center;

  gap: 25px;
}


/* PRIMARY BUTTON */

.primary-button {
  padding: 16px 25px;

  color: white;

  background: var(--black);

  font-size: 10px;

  letter-spacing: 1.7px;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.primary-button:hover {
  background: var(--gold-dark);

  transform: translateY(-2px);
}


/* TEXT LINK */

.text-link {
  padding-bottom: 3px;

  border-bottom: 1px solid var(--gold);

  font-size: 11px;

  letter-spacing: 1.2px;
}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {
  min-height: 730px;

  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 70% 30%,
      #4a3a25 0%,
      #1d1a16 35%,
      #080808 75%
    );
}


/* Gold circular detail */

.hero-circle {
  position: absolute;

  width: 76%;
  height: 116%;

  right: -18%;
  top: -8%;

  border-left: 1px solid rgba(224, 194, 125, 0.75);

  border-radius: 50%;

  transform: rotate(8deg);
}


/* Gold diagonal */

.hero-diagonal {
  position: absolute;

  width: 45%;
  height: 1px;

  left: 15%;
  top: 38%;

  background: var(--gold);

  transform: rotate(-28deg);

  box-shadow:
    0 0 18px rgba(224, 194, 125, 0.25);
}


/* subtle glow */

.hero-glow {
  position: absolute;

  width: 300px;
  height: 300px;

  right: 18%;
  top: 18%;

  border-radius: 50%;

  background: rgba(199, 161, 90, 0.08);

  filter: blur(40px);
}


/* HERO CAPTION */

.hero-caption {
  position: absolute;

  left: 9%;
  bottom: 9%;

  color: white;

  z-index: 2;
}

.hero-caption span {
  display: block;

  margin-bottom: 9px;

  color: var(--gold-light);

  font-size: 9px;

  letter-spacing: 3px;
}

.hero-caption strong {
  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 38px;

  font-weight: 500;

  line-height: 1;
}


/* VERTICAL BRAND */

.hero-vertical {
  position: absolute;

  right: 7%;
  bottom: 8%;

  color: var(--gold-light);

  font-size: 10px;

  letter-spacing: 5px;

  writing-mode: vertical-rl;
}


/* =========================================
   GOLD DIVIDER
========================================= */

.gold-divider {
  height: 5px;

  background:
    linear-gradient(
      90deg,
      #a97d32,
      #d5b66f,
      #a97d32
    );
}

 /* =========================================
   STATEMENT — EDITORIAL IMAGE
========================================= */

.statement {
  padding: 0;

  display: grid;

  grid-template-columns: 1fr 1fr;

  min-height: 620px;

  text-align: left;

  background: var(--cream);
}

.statement-image {
  position: relative;

  min-height: 620px;

  overflow: hidden;
}

.statement-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

.statement-content {
  padding: 80px 10%;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.statement-content h2 {
  max-width: 520px;
}

@media (max-width: 700px) {

  .statement {
    display: block;
  }

  .statement-image {
    min-height: 470px;
  }

  .statement-content {
    padding: 75px 8%;
  }

  .statement-content h2 {
    font-size: 48px;
  }

}


/* =========================================
   SECTION HEADINGS
========================================= */

.section-heading {
  margin-bottom: 48px;

  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  gap: 50px;
}

.section-heading h2 {
  margin: 0;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 60px;

  font-weight: 500;

  line-height: 1;
}

.section-heading > p {
  max-width: 430px;

  margin: 0;

  color: #6b665e;
}


/* =========================================
   TREATMENTS
========================================= */

.treatment-grid {
  display: grid;

  grid-template-columns: 1.15fr 0.85fr;

  grid-template-rows: 1fr 1fr;

  gap: 18px;
}


/* CARD */

.treatment-card {
  min-height: 290px;

  padding: 36px;

  position: relative;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.treatment-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.14);
}


/* LARGE CARD */

.treatment-large {
  grid-row: span 2;

  min-height: 598px;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;
}


/* CARD COLORS */

.treatment-dark {
  color: white;

  background: var(--black);
}

.treatment-light {
  background: var(--cream);

  border: 1px solid var(--line);
}

.treatment-gold {
  color: white;

  background: var(--gold);
}

.treatment-white {
  background: white;

  border: 1px solid var(--line);
}


/* DECORATION ON LARGE CARD */

.treatment-large::after {
  content: "";

  position: absolute;

  width: 350px;
  height: 350px;

  right: -90px;
  top: 50px;

  border: 1px solid rgba(224, 194, 125, 0.45);

  border-radius: 50%;
}


/* CARD NUMBER */

.treatment-number {
  color: var(--gold-light);

  font-size: 9px;

  letter-spacing: 3px;
}

.treatment-light .treatment-number,
.treatment-white .treatment-number {
  color: var(--gold-dark);
}


/* CARD TITLE */

.treatment-card h3 {
  margin: 20px 0 12px;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 43px;

  font-weight: 600;

  line-height: 1;
}


/* CARD DESCRIPTION */

.treatment-card p {
  max-width: 420px;

  font-size: 13px;

  opacity: 0.82;
}


/* TREATMENT LIST */

.treatment-card ul {
  margin: 20px 0 0;

  padding: 0;

  display: flex;
  flex-wrap: wrap;

  gap: 8px 18px;

  list-style: none;

  font-size: 11px;
}

.treatment-card li::before {
  content: "✦ ";

  color: var(--gold);
}

.treatment-gold li::before {
  color: white;
}


/* =========================================
   PHILOSOPHY
========================================= */

.philosophy {
  padding: 115px 10%;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 90px;

  color: white;

  background: var(--black);
}

.philosophy h2 {
  margin: 0;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 64px;

  font-weight: 500;

  line-height: 0.95;
}

.philosophy h2 em {
  color: var(--gold-light);

  font-style: italic;
}

.philosophy-copy {
  max-width: 500px;

  color: #c9c5bd;
}

.gold-line {
  width: 70px;
  height: 2px;

  margin: 25px 0;

  background: var(--gold);
}

.philosophy-copy p {
  margin-bottom: 20px;
}
/* =========================================
   ABOUT — EDITORIAL IMAGE
========================================= */

.philosophy-image {
  min-height: 560px;

  position: relative;

  overflow: hidden;
}

.philosophy-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}


/* ABOUT CONTENT */

.philosophy-content {
  display: flex;

  flex-direction: column;

  justify-content: center;
}


/* MOBILE */

@media (max-width: 700px) {

  .philosophy-image {
    min-height: 470px;

    margin-bottom: 55px;
  }

  .philosophy-content {
    display: block;
  }

}

/* =========================================
   RESULTS
========================================= */

.results {
  background: #f4f1e9;
}


.result-placeholder {
  aspect-ratio: 1 / 1;

  display: flex;

  align-items: flex-end;

  padding: 24px;

  position: relative;

  overflow: hidden;

  color: white;

  background:
    linear-gradient(
      135deg,
      #d6cfc0,
      #a79b87
    );
}

.result-placeholder::after {
  content: "";

  position: absolute;

  inset: 0;

  border: 1px solid rgba(255,255,255,0.3);
}

.result-placeholder span {
  position: relative;

  z-index: 2;

  font-size: 10px;

  letter-spacing: 2px;
}


/* =========================================
   BOOKING
========================================= */

.booking {
  padding: 110px 20px;

  text-align: center;

  color: white;

  background: var(--gold);
}

.booking h2 {
  margin: 0 0 38px;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 68px;

  font-weight: 500;

  line-height: 0.95;
}

.booking h2 em {
  color: white;

  font-style: italic;
}


/* BLACK BUTTON */

.black-button {
  display: inline-block;

  padding: 16px 28px;

  color: white;

  background: var(--black);

  font-size: 10px;

  letter-spacing: 1.7px;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.black-button:hover {
  background: #222;

  transform: translateY(-2px);
}


/* =========================================
   CONTACT
========================================= */

.contact {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;
}

.contact-title h2 {
  margin: 0;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 60px;

  font-weight: 500;

  line-height: 1;
}

.contact-details {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 28px;
}

.contact-details strong {
  color: var(--gold-dark);

  font-size: 9px;

  letter-spacing: 2px;
}

.contact-details p {
  margin: 0;

  font-size: 12px;
}

.contact-details a {
  border-bottom: 1px solid var(--gold);
}


/* =========================================
   FOOTER
========================================= */

footer {
  padding: 40px 6%;

  display: flex;

  justify-content: space-between;

  align-items: center;

  color: #cfc9bf;

  background: var(--deep-black);
}

footer p {
  font-size: 9px;

  letter-spacing: 1px;
}

.footer-logo {
  color: white;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  nav {
    gap: 15px;
  }

  .hero h1 {
    font-size: 62px;
  }

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

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 20px;
  }

  .philosophy {
    gap: 45px;
  }

  .contact {
    gap: 45px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  header {
    height: 72px;
  }

  .menu-button {
    display: block;
  }

  nav {
    display: none;

    position: absolute;

    top: 72px;
    left: 0;
    right: 0;

    padding: 18px 7%;

    flex-direction: column;
    align-items: stretch;

    gap: 0;

    background: white;

    border-bottom: 1px solid var(--line);
  }

  nav.mobile-open {
    display: flex;
  }

  nav a {
    padding: 13px 0;
  }

  .nav-book {
    margin-top: 5px;

    text-align: center;
  }


  /* HERO */

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

  .hero-content {
    padding: 70px 8%;
  }

  .hero h1 {
    font-size: 55px;
  }

  .hero-visual {
    min-height: 500px;
  }


  /* STATEMENT */

  .statement {
    padding: 80px 7%;
  }


  /* SECTIONS */

  .section {
    padding: 75px 7%;
  }

  .section-heading h2 {
    font-size: 48px;
  }


  /* TREATMENTS */

  .treatment-grid {
    display: block;
  }

  .treatment-card {
    margin-bottom: 16px;

    min-height: 300px;
  }

  .treatment-large {
    min-height: 390px;
  }


  /* PHILOSOPHY */

  .philosophy {
    display: block;

    padding: 75px 8%;
  }

  .philosophy h2 {
    margin-bottom: 45px;

    font-size: 52px;
  }


  /* RESULTS */


  /* BOOKING */

  .booking h2 {
    font-size: 52px;
  }


  /* CONTACT */

  .contact {
    display: block;

    padding: 75px 8%;
  }

  .contact-title h2 {
    margin-bottom: 40px;

    font-size: 50px;
  }

  .contact-details {
    grid-template-columns: 1fr 1fr;
  }


  /* FOOTER */

  footer {
    display: block;
  }

}
/* =========================================
   TREATMENT SUB-CATEGORIES
========================================= */

.treatment-group {
  position: relative;
  z-index: 2;
  margin-top: 22px;
}

.treatment-group h4 {
  margin: 0 0 8px;

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 2px;

  color: var(--gold-light);
}

.treatment-light .treatment-group h4,
.treatment-white .treatment-group h4 {
  color: var(--gold-dark);
}

.treatment-group ul {
  margin-top: 0;
}


/* Make the large Injectables card easier to read */

.treatment-large {
  overflow-y: hidden;
}


/* Mobile */

@media (max-width: 700px) {

  .treatment-group {
    margin-top: 18px;
  }

  .treatment-large {
    min-height: auto;
  }

}
/* =========================================
   TREATMENTS PAGE
========================================= */

.treatment-page-hero {
  min-height: 570px;

  padding: 110px 9%;

  display: flex;
  flex-direction: column;
  justify-content: center;

  color: white;

  background:
    radial-gradient(
      circle at 75% 35%,
      #4b3b27 0%,
      #201c17 35%,
      #070707 75%
    );

  position: relative;
  overflow: hidden;
}

.treatment-page-hero::after {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  right: -120px;
  top: -100px;

  border: 1px solid rgba(224, 194, 125, 0.45);

  border-radius: 50%;
}

.treatment-page-hero h1 {
  max-width: 900px;

  margin: 0 0 30px;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size:
    clamp(58px, 7vw, 94px);

  font-weight: 500;

  line-height: 0.9;

  position: relative;
  z-index: 2;
}

.treatment-page-hero h1 em {
  color: var(--gold-light);

  font-style: italic;
}

.treatment-page-hero > p:last-child {
  max-width: 520px;

  color: #d2ccc2;

  font-size: 15px;

  position: relative;
  z-index: 2;
}


/* =========================================
   TREATMENT DETAIL SECTIONS
========================================= */

.treatment-detail-section {
  padding: 110px 8%;

  background: white;
}

.treatment-detail-section:nth-of-type(even) {
  background: var(--cream);
}


/* DARK SECTION */

.dark-section {
  color: white;

  background: var(--black) !important;
}


/* GOLD SECTION */

.gold-section {
  color: white;

  background: var(--gold) !important;
}


/* =========================================
   DETAIL HEADING
========================================= */

.treatment-detail-heading {
  max-width: 850px;

  margin-bottom: 55px;
}

.treatment-detail-heading > span {
  display: block;

  margin-bottom: 18px;

  color: var(--gold-dark);

  font-size: 9px;

  font-weight: 600;

  letter-spacing: 3px;
}

.dark-section
.treatment-detail-heading > span {
  color: var(--gold-light);
}

.gold-section
.treatment-detail-heading > span {
  color: white;
}

.treatment-detail-heading h2 {
  margin: 0;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size:
    clamp(48px, 6vw, 72px);

  font-weight: 500;

  line-height: 0.95;
}


/* =========================================
   DETAIL GRID
========================================= */

.treatment-detail-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}


/* =========================================
   DETAIL CARD
========================================= */

.detail-card {
  min-height: 330px;

  padding: 34px;

  position: relative;

  display: flex;

  flex-direction: column;

  background: white;

  border: 1px solid var(--line);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.12);
}


/* DARK / GOLD CARDS */

.dark-section .detail-card,
.gold-section .detail-card {
  color: white;

  background: rgba(255,255,255,0.06);

  border:
    1px solid
    rgba(255,255,255,0.18);
}

.gold-section .detail-card {
  background: rgba(0,0,0,0.12);

  border-color:
    rgba(255,255,255,0.35);
}


/* NUMBER */

.detail-number {
  color: var(--gold-dark);

  font-size: 9px;

  letter-spacing: 2px;
}

.dark-section .detail-number,
.gold-section .detail-number {
  color: var(--gold-light);
}


/* TITLE */

.detail-card h3 {
  margin:
    24px
    0
    15px;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 38px;

  font-weight: 600;

  line-height: 1;
}


/* DESCRIPTION */

.detail-card p {
  margin: 0;

  color: #68635b;

  font-size: 13px;

  line-height: 1.75;
}

.dark-section .detail-card p,
.gold-section .detail-card p {
  color: #d3cec5;
}


/* CONSULTATION LINK */

.detail-card a {
  margin-top: auto;

  padding-top: 28px;

  color: var(--gold-dark);

  font-size: 9px;

  font-weight: 600;

  letter-spacing: 1.8px;

  text-transform: uppercase;
}

.dark-section .detail-card a,
.gold-section .detail-card a {
  color: var(--gold-light);
}


/* =========================================
   SUB-TREATMENT LIST
========================================= */

.sub-list {
  margin-top: 20px;

  display: flex;

  flex-wrap: wrap;

  gap: 7px;
}

.sub-list span {
  padding: 6px 10px;

  color: var(--gold-dark);

  background: #f4f0e8;

  font-size: 9px;

  letter-spacing: 0.5px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

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

}


@media (max-width: 700px) {

  .treatment-page-hero {
    min-height: 500px;

    padding:
      80px 8%;
  }

  .treatment-page-hero h1 {
    font-size: 56px;
  }


  .treatment-detail-section {
    padding:
      75px 7%;
  }


  .treatment-detail-grid {
    grid-template-columns: 1fr;
  }


  .detail-card {
    min-height: 290px;

    padding: 30px;
  }


  .treatment-detail-heading h2 {
    font-size: 50px;
  }
/* =========================================
   MOBILE TREATMENT CARD FIX
========================================= */

@media (max-width: 700px) {

  .treatment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .treatment-card {
    display: block;
    width: 100%;
    min-height: auto;
    box-sizing: border-box;

    padding: 30px 26px;

    text-decoration: none;
    color: inherit;

    position: relative;
    overflow: hidden;
  }

  .treatment-card h3 {
    font-size: 38px;
    line-height: 1;
    margin-bottom: 14px;
  }

  .treatment-card p {
    font-size: 13px;
    line-height: 1.7;
  }

  .treatment-card .treatment-group {
    margin-top: 20px;
  }

  .treatment-card .treatment-group ul {
    margin-bottom: 0;
  }
/* Smooth navigation to page sections */

html {
  scroll-behavior: smooth;
}/* =========================================
   BOOK A CONSULTATION BUTTON
========================================= */

.black-button {
  display: inline-block;

  padding: 16px 30px;

  color: #111;
  background: #e2c98f;

  text-decoration: none;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 2px;

  border: 1px solid #e2c98f;

  cursor: pointer;

  position: relative;
  z-index: 10;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.black-button:hover {
  background: transparent;
  color: #111;

  transform: translateY(-2px);
}


/* Mobile */

@media (max-width: 700px) {

  .black-button {
    display: inline-block;

    padding: 15px 24px;

    font-size: 9px;
  }
   .location-link {
  display: inline-block;
  margin-top: 8px;

  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.8px;

  text-decoration: none;

  transition: opacity 0.25s ease;
}

.location-link:hover {
  opacity: 0.6;
}
   /* =========================================
   INSTAGRAM SECTION
========================================= */

.instagram-section {
  padding: 100px 7vw;
  text-align: center;
}

.instagram-section h2 {
  margin: 15px auto 35px;
}

.instagram-button {
  display: inline-block;

  padding: 15px 28px;

  border: 1px solid currentColor;

  text-decoration: none;

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 2px;

  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.instagram-button:hover {
  background: #111;
  color: #fff;
}


/* MOBILE */

@media (max-width: 700px) {

  .instagram-section {
    padding: 75px 24px;
  }

  .instagram-section h2 {
    font-size: 38px;
  }


/* =========================================
   STICKY HEADER
========================================= */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
}


/* MOBILE */

@media (max-width: 700px) {

  .logo-image {
    width: 90px;
  }

}

}

}
}/* =========================================
   FOOTER
========================================= */

footer {
  padding: 65px 6% 25px;

  background: #111;
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;

  gap: 50px;

  align-items: start;
}

.footer-brand {
  display: inline-flex;
  text-decoration: none;
}

.footer-logo-image {
  display: block;
  width: 150px;
  height: auto;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  color: #fff;

  text-decoration: none;

  font-size: 11px;
  line-height: 1.7;

  margin: 0;
}

.footer-links a:hover,
.footer-contact a:hover {
  opacity: 0.6;
}

.footer-bottom {
  margin-top: 55px;
  padding-top: 20px;

  border-top: 1px solid rgba(255,255,255,0.2);

  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;

  font-size: 9px;
  letter-spacing: 0.5px;

  opacity: 0.65;
}


/* MOBILE */

@media (max-width: 700px) {

  footer {
    padding: 50px 24px 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-logo-image {
    width: 145px;
  }

  .footer-bottom {
    margin-top: 40px;

    flex-direction: column;
    gap: 6px;
  }
/* =========================================
   TREATMENTS HERO IMAGE
========================================= */

.treatment-page-hero {
  min-height: 620px;

  padding: 0 7%;

  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: stretch;

  color: white;

  background: var(--black);

  position: relative;
  overflow: hidden;
}

.treatment-hero-content {
  padding: 100px 8% 100px 3%;

  display: flex;
  flex-direction: column;
  justify-content: center;

  position: relative;
  z-index: 2;
}

.treatment-hero-content h1 {
  max-width: 700px;

  margin: 0 0 30px;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: clamp(58px, 6vw, 88px);

  font-weight: 500;

  line-height: 0.9;
}

.treatment-hero-content h1 em {
  color: var(--gold-light);
  font-style: italic;
}

.treatment-hero-content > p:last-child {
  max-width: 500px;

  color: #d2ccc2;

  font-size: 15px;
}

.treatment-hero-image {
  min-height: 620px;

  position: relative;

  overflow: hidden;
}

.treatment-hero-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(9,9,9,0.45),
      transparent 35%
    );
}

.treatment-hero-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}


/* MOBILE */

@media (max-width: 700px) {

  .treatment-page-hero {
    display: block;

    padding: 0;

    min-height: auto;
  }

  .treatment-hero-content {
    padding: 80px 8%;
  }

  .treatment-hero-content h1 {
    font-size: 56px;
  }

  .treatment-hero-image {
    min-height: 430px;
  }

}/* =========================================
   TREATMENTS HERO IMAGE
========================================= */

.treatment-page-hero {
  min-height: 620px;
  padding: 0 7%;

  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: stretch;

  color: white;
  background: var(--black);

  position: relative;
  overflow: hidden;
}

.treatment-hero-content {
  padding: 100px 8% 100px 3%;

  display: flex;
  flex-direction: column;
  justify-content: center;

  position: relative;
  z-index: 2;
}

.treatment-hero-content h1 {
  max-width: 700px;
  margin: 0 0 30px;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(58px, 6vw, 88px);
  font-weight: 500;
  line-height: 0.9;
}

.treatment-hero-content h1 em {
  color: var(--gold-light);
  font-style: italic;
}

.treatment-hero-content > p:last-child {
  max-width: 500px;
  color: #d2ccc2;
  font-size: 15px;
}

.treatment-hero-image {
  min-height: 620px;
  position: relative;
  overflow: hidden;
}

.treatment-hero-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(9,9,9,0.45),
      transparent 35%
    );
}

.treatment-hero-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}


/* MOBILE */

@media (max-width: 700px) {

  .treatment-page-hero {
    display: block;
    padding: 0;
    min-height: auto;
  }

  .treatment-hero-content {
    padding: 80px 8%;
  }

  .treatment-hero-content h1 {
    font-size: 56px;
  }

  .treatment-hero-image {
    min-height: 430px;
  }

}

/* =========================================
   BEFORE & AFTER — COMPACT GALLERY
========================================= */

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 140px);
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 292px;
  margin: 0 auto;
}

.result-card {
  width: 140px;
  overflow: hidden;
  box-sizing: border-box;
  background: #f8f6f1;
  border: 1px solid var(--line);
}

.result-card img {
  display: block;
  width: 140px;
  height: 140px;
  max-width: 140px;
  object-fit: contain;
  object-position: center;
}

.result-card span {
  display: block;
  padding: 8px 10px;
  color: var(--gold-dark);
  background: #fff;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

}
}
