/* ======================================================
   RIVIERA AESTHETICS — Design System & Global Styles
   ====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Jost:wght@300;400;500&display=swap');

/* ======================================================
   CSS CUSTOM PROPERTIES
   ====================================================== */
:root {
  --cream:        #F5F0EB;
  --cream-alt:    #EDE8DF;
  --cream-dark:   #DDD6CC;
  --dark:         #1C1B19;
  --dark-2:       #242220;
  --gold:         #A8844F;
  --gold-light:   #C4A46B;
  --text:         #2C2B29;
  --text-mid:     #5C574F;
  --text-light:   #8A837A;
  --white:        #FFFFFF;

  --container:    1180px;
  --section-v:    96px;
  --nav-h:        72px;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease:         0.3s ease;
  --ease-slow:    0.7s ease;
}

/* ======================================================
   RESET & BASE
   ====================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ======================================================
   TYPOGRAPHY
   ====================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text);
}

h1 { font-size: clamp(36px, 4.5vw, 58px); }
h2 { font-size: clamp(28px, 3.5vw, 46px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }

p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.gold-rule {
  display: block;
  width: 38px;
  height: 1px;
  background: var(--gold);
  margin: 16px 0 22px;
  flex-shrink: 0;
}

.gold-rule--center { margin-left: auto; margin-right: auto; }

/* ======================================================
   LAYOUT
   ====================================================== */
main {
  max-width: 1440px;
  margin: 0 auto;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.nav .container {
  max-width: 1440px;
  width: 100%;
  padding: 0 48px;
}

.section { padding: var(--section-v) 0; }

/* ======================================================
   NAVIGATION
   ====================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--cream);
  transition: box-shadow var(--ease), border-color var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  border-color: rgba(168,132,79,0.15);
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}

.nav__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav__logo-mark {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-left: 1px solid var(--cream-dark);
  padding-left: 12px;
}

.nav__logo-text span {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.4;
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--ease);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.nav__link:hover,
.nav__link.active { color: var(--gold); }

.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }

.nav__cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 11px 22px;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background var(--ease);
  white-space: nowrap;
}

.nav__cta:hover { background: var(--gold-light); }
.nav__cta::after { display: none; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: var(--ease);
}

.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile drawer */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--cream);
  padding: 32px 40px 40px;
  border-top: 1px solid var(--cream-dark);
  flex-direction: column;
  gap: 22px;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.nav__mobile.open { display: flex; }

.nav__mobile .nav__link {
  font-size: 13px;
  letter-spacing: 0.12em;
}

.nav__mobile .nav__sub-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 16px;
  border-left: 1px solid var(--gold);
  margin-top: -8px;
}

.nav__mobile .nav__sub-links a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-mid);
}

.nav__mobile .nav__cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  font-size: 11px;
}

/* ======================================================
   BUTTONS
   ====================================================== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
}

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

.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn--outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn--outline-dark:hover {
  background: var(--text);
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--text);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--ease);
}

.link-arrow:hover { gap: 16px; }

/* ======================================================
   HERO — Dark (Homepage)
   ====================================================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--dark);
  padding-top: var(--nav-h);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
}

.hero__content h1 {
  color: var(--white);
  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 6px;
}

.hero__content .gold-rule { margin: 22px 0 28px; }

.hero__content > p {
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  max-width: 340px;
  margin-bottom: 44px;
}

.hero__image {
  overflow: hidden;
  position: relative;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ======================================================
   PAGE HERO — Split light (About, etc.)
   ====================================================== */
.page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  padding-top: var(--nav-h);
  background: var(--cream);
}

.page-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
}

.page-hero__content .eyebrow { margin-bottom: 20px; }
.page-hero__content h1 { margin-bottom: 0; font-weight: 300; }
.page-hero__content .gold-rule { margin: 20px 0 24px; }
.page-hero__content p { max-width: 380px; }

.page-hero__image {
  overflow: hidden;
  position: relative;
}

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

/* Centred page header */
.page-header {
  padding: 120px 40px 64px;
  text-align: center;
  background: var(--cream);
}

.page-header h1 { margin-bottom: 6px; }
.page-header .eyebrow { margin-bottom: 16px; }
.page-header .gold-rule--center { margin-bottom: 0; }
.page-header p { max-width: 600px; margin: 24px auto 0; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.breadcrumb a,
.breadcrumb span {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
}

.breadcrumb .sep { color: var(--text-light); font-size: 12px; }

/* ======================================================
   PHILOSOPHY / CENTRED TEXT SECTION
   ====================================================== */
.text-center {
  padding: var(--section-v) 40px;
  text-align: center;
  background: var(--cream);
}

.text-center .inner { max-width: 680px; margin: 0 auto; }
.text-center .eyebrow { margin-bottom: 20px; }
.text-center h2 { margin-bottom: 24px; }
.text-center p { max-width: 560px; margin: 0 auto; }

/* ======================================================
   ICON GRID (4 cols)
   ====================================================== */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.icon-grid__item {
  padding: 52px 36px;
  text-align: center;
  border-right: 1px solid var(--cream-dark);
  background: var(--cream);
}

.icon-grid__item:last-child { border-right: none; }

.icon-grid__icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 22px;
  color: var(--gold);
}

.icon-grid__icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.2;
}

.icon-grid__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.5;
}

.icon-grid__text {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.75;
}

/* Trust bar */
.trust-bar {
  border-top: 1px solid var(--cream-dark);
  background: var(--cream);
}

.trust-bar .icon-grid__item { padding: 36px 28px; }
.trust-bar .icon-grid__icon { width: 34px; height: 34px; margin-bottom: 14px; }

/* ======================================================
   SPLIT SECTION
   ====================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split__image {
  overflow: hidden;
  min-height: 520px;
}

.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.split__image:hover img { transform: scale(1.03); }

.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}

.split__content--dark {
  background: var(--dark);
}

.split__content--dark .eyebrow { color: var(--gold); }
.split__content--dark h2,
.split__content--dark h3 { color: var(--white); }
.split__content--dark p { color: rgba(255,255,255,0.65); }

.split__content--cream-alt { background: var(--cream-alt); }

/* ======================================================
   TWO-COL TEXT BLOCK
   ====================================================== */
.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}

.two-col-text__col {
  padding: 72px 64px;
  border-right: 1px solid var(--cream-dark);
}

.two-col-text__col:last-child { border-right: none; }

.two-col-text__col h3 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
}

.two-col-text__col .gold-rule { margin: 10px 0 28px; }

.two-col-text__col p { margin-bottom: 20px; }
.two-col-text__col p:last-child { margin-bottom: 0; }

/* ======================================================
   TREATMENT BLOCKS (alternating image/text)
   ====================================================== */
.treatment-blocks-section {
  background: var(--cream);
  padding: 0 60px 80px;
}

.treatment-blocks {
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid var(--cream-dark);
}

.treatment-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--cream-dark);
}

.treatment-block:last-child { border-bottom: none; }

.treatment-block--reverse .treatment-block__image { order: 2; }
.treatment-block--reverse .treatment-block__content { order: 1; }

.treatment-block__image {
  overflow: hidden;
  min-height: 360px;
}

.treatment-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.treatment-block__image:hover img { transform: scale(1.04); }

.treatment-block__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
  background: var(--white);
}

.treatment-block__header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.treatment-block__icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.treatment-block__icon svg { width: 100%; height: 100%; stroke-width: 1.2; }

.treatment-block__title {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
}

.treatment-block__content p { margin-bottom: 28px; max-width: 380px; }

/* ======================================================
   PROCESS STEPS (01/02/03/04)
   ====================================================== */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  background: var(--cream);
}

.process__step {
  padding: 60px 36px;
  text-align: center;
  border-right: 1px solid var(--cream-dark);
}

.process__step:last-child { border-right: none; }

.process__number {
  font-family: var(--font-serif);
  font-size: 60px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.process__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

.process__label .gold-rule { width: 28px; margin: 10px auto 0; }

.process__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.process__icon svg { width: 100%; height: 100%; stroke-width: 1.2; }

.process__text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ======================================================
   CONSULTATION STEPS (circle icons)
   ====================================================== */
.consult-steps {
  max-width: 580px;
}

.consult-step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.consult-step:last-child { border-bottom: none; }

.consult-step__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(168,132,79,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.consult-step__icon svg { width: 22px; height: 22px; stroke-width: 1.3; }

.consult-step__label {
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.consult-step__text { font-size: 14px; color: var(--text-mid); }

/* ======================================================
   QUOTE SECTION
   ====================================================== */
.quote-section {
  background: var(--dark);
  padding: var(--section-v) 40px;
  text-align: center;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 72px;
  color: var(--gold);
  line-height: 0.6;
  display: block;
  margin-bottom: 32px;
}

blockquote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.55;
  max-width: 740px;
  margin: 0 auto 28px;
}

.signature {
  font-family: var(--font-serif);
  font-size: 28px;
  font-style: italic;
  color: var(--gold);
}

/* ======================================================
   CTA SECTIONS
   ====================================================== */
.cta-section {
  background: var(--dark);
  padding: 80px 40px;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: clamp(22px, 3vw, 38px);
}

.cta-section p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA bar (bottom strip with text + button) */
.cta-bar {
  background: var(--dark);
  padding: 44px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-bar__text {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--white);
  line-height: 1.45;
  font-weight: 300;
}

/* ======================================================
   "SAFE HANDS" SECTION
   ====================================================== */
.safe-section {
  background: var(--cream-alt);
  padding: var(--section-v) 40px;
  text-align: center;
}

.safe-section .icon-wrap {
  width: 48px;
  height: 48px;
  margin: 0 auto 28px;
  color: var(--gold);
}

.safe-section .icon-wrap svg { width: 100%; height: 100%; stroke-width: 1.2; }

.safe-section h2 { margin-bottom: 20px; }

.safe-section p {
  max-width: 540px;
  margin: 0 auto 36px;
}

/* ======================================================
   DARK SPLIT CTA SECTION
   ====================================================== */
.dark-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark);
}

.dark-split__main {
  padding: 72px 64px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.dark-split__main .eyebrow { margin-bottom: 16px; }
.dark-split__main h2 { color: var(--white); margin-bottom: 20px; }
.dark-split__main p { color: rgba(255,255,255,0.65); margin-bottom: 36px; }

.dark-split__card {
  padding: 72px 64px;
  display: flex;
  align-items: center;
}

.dark-split__card-inner {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 44px;
  width: 100%;
}

.dark-split__card .card-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 20px;
}

.dark-split__card .card-icon svg { width: 100%; height: 100%; stroke-width: 1.2; }

.dark-split__card h3 { color: var(--white); margin-bottom: 12px; font-size: 22px; }
.dark-split__card p { color: rgba(255,255,255,0.65); margin-bottom: 24px; font-size: 14px; }

/* ======================================================
   FOCUS AREAS LIST (Injectable page)
   ====================================================== */
.focus-list { display: flex; flex-direction: column; }

.focus-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.focus-item:last-child { border-bottom: none; }

.focus-item__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.focus-item__icon svg { width: 28px; height: 28px; stroke-width: 1.2; }

.focus-item__name {
  font-size: 15px;
  color: var(--text);
  font-weight: 400;
  display: block;
}

.focus-item__desc {
  font-size: 13px;
  color: var(--text-light);
  display: block;
  margin-top: 2px;
}

/* ======================================================
   CHECKLIST (Dermal Fillers page)
   ====================================================== */
.checklist { display: flex; flex-direction: column; }

.checklist__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 15px;
  color: var(--text);
}

.checklist__item:last-child { border-bottom: none; }

.check-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.check-circle svg { width: 12px; height: 12px; stroke-width: 2; }

/* ======================================================
   SKIN TREATMENT LIST
   ====================================================== */
.skin-list {
  border: 1px solid var(--cream-dark);
  background: var(--cream);
}

.skin-list__header {
  padding: 28px 32px 16px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  border-bottom: 1px solid var(--cream-dark);
}

.skin-list__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 32px;
  border-bottom: 1px solid var(--cream-dark);
  transition: background var(--ease);
  cursor: pointer;
}

.skin-list__item:last-child { border-bottom: none; }
.skin-list__item:hover { background: var(--cream-alt); }

.skin-list__icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  flex-shrink: 0;
}

.skin-list__icon svg { width: 100%; height: 100%; stroke-width: 1.3; }

.skin-list__body { flex: 1; }
.skin-list__name { font-size: 15px; color: var(--text); }
.skin-list__desc { font-size: 12.5px; color: var(--text-light); margin-top: 2px; }

.skin-list__arrow {
  color: var(--gold);
  font-size: 14px;
}

/* ======================================================
   INFO BAR
   ====================================================== */
.info-bar {
  background: var(--cream-alt);
  padding: 36px 80px;
  display: flex;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.info-bar__icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
  flex-shrink: 0;
}

.info-bar__icon svg { width: 100%; height: 100%; stroke-width: 1.2; }

.info-bar p {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}

/* ======================================================
   STANDARDS LIST (Safety page)
   ====================================================== */
.standards-list { display: flex; flex-direction: column; gap: 32px; }

.standard-item { display: flex; align-items: flex-start; gap: 24px; }

.standard-item__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.standard-item__icon svg { width: 100%; height: 100%; stroke-width: 1.2; }

.standard-item__label {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.standard-item__text { font-size: 14px; color: var(--text-mid); line-height: 1.75; }

/* Safe hands pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 60px;
  padding-top: 48px;
}

.pillar {
  text-align: center;
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.pillar:last-child { border-right: none; }

.pillar__icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 16px;
  color: var(--gold);
}

.pillar__icon svg { width: 100%; height: 100%; stroke-width: 1.2; }

.pillar__label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.pillar__text { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ======================================================
   CONTACT DETAILS
   ====================================================== */
.contact-details { display: flex; flex-direction: column; gap: 0; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.contact-detail:last-child { border-bottom: none; }

.contact-detail__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(168,132,79,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-detail__icon svg { width: 18px; height: 18px; stroke-width: 1.3; }

.contact-detail__label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 5px;
}

.contact-detail__value {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ======================================================
   CONTACT FORM
   ====================================================== */
.form-section {
  background: var(--white);
  padding: 72px 80px;
  border: 1px solid var(--cream-dark);
}

.form-section h3 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.form-section .gold-rule { margin-bottom: 36px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-input,
.form-textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--cream-dark);
  background: var(--cream);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color var(--ease);
  -webkit-appearance: none;
  border-radius: 0;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-light); }

.form-input:focus,
.form-textarea:focus { border-bottom-color: var(--gold); background: var(--cream-alt); }

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

.form-submit {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
}

/* ======================================================
   CONSULTATION CTA BOX
   ====================================================== */
.consult-cta-box {
  background: var(--cream-alt);
  padding: 48px 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.consult-cta-box__icon {
  width: 64px;
  height: 64px;
  color: var(--gold);
  flex-shrink: 0;
}

.consult-cta-box__icon svg { width: 100%; height: 100%; stroke-width: 1.2; }

.consult-cta-box h3 { font-size: 26px; margin-bottom: 10px; }
.consult-cta-box p { max-width: 400px; margin-bottom: 28px; }

/* ======================================================
   FOOTER
   ====================================================== */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
}

.footer__main {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  padding: 72px 48px 64px;
}

.footer__logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 24px;
}

.footer__logo-mark {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  border: 1px solid var(--cream-dark);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-left: 1px solid var(--cream-dark);
  padding-left: 12px;
}

.footer__logo-text span {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.4;
}

.footer__tagline {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 320px;
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 28px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__links a {
  font-size: 13.5px;
  color: var(--text-mid);
  text-decoration: none;
  transition: color var(--ease);
  line-height: 1.4;
}

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

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact p,
.footer__contact a {
  font-size: 13.5px;
  color: var(--text-mid);
  text-decoration: none;
  line-height: 1.6;
  transition: color var(--ease);
}

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

.footer__bottom {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-top: 1px solid var(--cream-dark);
}

.footer__copy {
  font-size: 11.5px;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.footer__legal {
  display: flex;
  gap: 28px;
}

.footer__legal a {
  font-size: 11.5px;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--ease);
}

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

/* ======================================================
   SCROLL ANIMATIONS
   ====================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger .fade-up:nth-child(2) { transition-delay: 0.1s; }
.stagger .fade-up:nth-child(3) { transition-delay: 0.2s; }
.stagger .fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ======================================================
   RESPONSIVE — Tablet (1024px)
   ====================================================== */
@media (max-width: 1024px) {
  :root { --section-v: 72px; }

  .container { padding: 0 32px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__content { padding: 72px 40px 56px; }
  .hero__image { min-height: 55vw; }

  .page-hero { grid-template-columns: 1fr; min-height: auto; }
  .page-hero__content { padding: 72px 40px 56px; }
  .page-hero__image { min-height: 52vw; }

  .split { grid-template-columns: 1fr; }
  .split__image { min-height: 52vw; order: 2; }
  .split__content { order: 1; padding: 60px 40px; }

  .two-col-text { grid-template-columns: 1fr; }
  .two-col-text__col { border-right: none; border-bottom: 1px solid var(--cream-dark); padding: 56px 40px; }
  .two-col-text__col:last-child { border-bottom: none; }

  .treatment-blocks-section { padding: 0 24px 60px; }
  .treatment-block { grid-template-columns: 1fr; }
  .treatment-block--reverse .treatment-block__image,
  .treatment-block--reverse .treatment-block__content { order: unset; }
  .treatment-block__image { min-height: 52vw; }
  .treatment-block__content { padding: 56px 40px; }

  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .icon-grid__item:nth-child(2n) { border-right: none; }
  .icon-grid__item { border-bottom: 1px solid var(--cream-dark); }
  .icon-grid__item:nth-last-child(-n+2) { border-bottom: none; }

  .process { grid-template-columns: repeat(2, 1fr); }
  .process__step:nth-child(2n) { border-right: none; }
  .process__step:nth-child(3),
  .process__step:nth-child(4) { border-top: 1px solid var(--cream-dark); }

  .dark-split { grid-template-columns: 1fr; }
  .dark-split__main { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }

  .cta-bar { padding: 44px 40px; flex-direction: column; text-align: center; }

  .form-section { padding: 56px 40px; }

  .info-bar { padding: 32px 40px; }

  .consult-cta-box { padding: 40px; flex-direction: column; text-align: center; }
  .consult-cta-box p { max-width: 100%; }

  .pillars { grid-template-columns: 1fr; gap: 36px; }
  .pillar { border-right: none; }

  .trust-bar .icon-grid { grid-template-columns: repeat(2,1fr); }
  .trust-bar .icon-grid__item:nth-child(2n) { border-right: none; }

  .footer__main { grid-template-columns: 1fr 1fr; gap: 48px; padding: 56px 32px 48px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { padding: 20px 32px; }
}

/* ======================================================
   RESPONSIVE — Mobile (768px)
   ====================================================== */
@media (max-width: 768px) {
  :root { --section-v: 60px; --nav-h: 64px; }

  .nav__links,
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .container { padding: 0 24px; }

  .hero__content { padding: 60px 24px 48px; }
  .hero__content h1 { font-size: 38px; }

  .page-hero__content { padding: 60px 24px 48px; }

  .page-header { padding: 96px 24px 48px; }

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

  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: 1; }
  .form-section { padding: 48px 24px; }

  .dark-split__main { padding: 48px 24px; }
  .dark-split__card { padding: 48px 24px; }

  .split__content { padding: 48px 24px; }
  .two-col-text__col { padding: 48px 24px; }
  .treatment-blocks-section { padding: 0 16px 48px; }
  .treatment-block__content { padding: 48px 24px; }

  .info-bar { flex-direction: column; text-align: center; padding: 36px 24px; }

  .quote-section { padding: 64px 24px; }
  .cta-section { padding: 60px 24px; }
  .cta-bar { padding: 40px 24px; }

  .consult-cta-box { padding: 36px 24px; }

  .footer__main { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px 40px; }
  .footer__bottom { padding: 20px 24px; flex-direction: column; gap: 12px; text-align: center; }

}

/* ======================================================
   RESPONSIVE — Small (480px)
   ====================================================== */
@media (max-width: 480px) {
  h1 { font-size: 32px; }

  .hero__actions,
  .dark-split__main .btn-group { flex-direction: column; }
  .hero__actions .btn,
  .dark-split__main .btn-group .btn { width: 100%; }

  .process { grid-template-columns: 1fr; }
  .process__step { border-right: none !important; border-top: none; border-bottom: 1px solid var(--cream-dark); }
  .process__step:last-child { border-bottom: none; }
  .process__step:nth-child(3),
  .process__step:nth-child(4) { border-top: none; }

  .icon-grid { grid-template-columns: 1fr; }
  .icon-grid__item { border-right: none !important; }

  .trust-bar .icon-grid { grid-template-columns: 1fr 1fr; }
}
