/* True Radiance Aesthetics Ltd, Sunderland.
   Bespoke build for ShiftWeb. Brand captured from trueradianceaestheticsltd.co.uk:
   warm ivory base, ink text, lotus mark, tagline "To enhance natural beauty".
   Radiance signature is a champagne-bronze aura behind the lotus. No dashes in copy. */

:root {
  --ivory: #FCF6EE;
  --ivory-deep: #F6ECDD;
  --cream: #F3E7D6;
  --cream-deep: #ECDBC5;
  --ink: #1E1720;
  --ink-soft: #504752;
  --ink-mute: #776C78;
  --bronze: #B0885A;
  --bronze-deep: #8A6534;
  --bronze-light: #C9A472;
  --blush: #E7C4AC;
  --blush-soft: #F4DECD;
  --line: rgba(30, 23, 32, 0.12);
  --line-soft: rgba(30, 23, 32, 0.07);
  --white: #FFFFFF;
  --shadow: 0 26px 60px -34px rgba(45, 30, 20, 0.55);
  --shadow-soft: 0 16px 40px -30px rgba(45, 30, 20, 0.5);
  --gold-grad: linear-gradient(118deg, #CDA771 0%, #B0885A 46%, #8A6534 100%);
  --maxw: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink-soft);
  font-family: "Mulish", "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.15rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
h3 { font-size: 1.32rem; }
h4 { font-size: 1.02rem; }

p { margin: 0 0 1.1em; }
a { color: var(--bronze-deep); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--ink); }
img { max-width: 100%; display: block; }
strong { color: var(--ink); font-weight: 700; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Skip link + demo ribbon ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--white); padding: 10px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: var(--white); }

.demo-ribbon {
  background: var(--ink);
  color: #F0E4D6;
  font-family: "Questrial", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 9px 18px;
  line-height: 1.5;
}
.demo-ribbon strong { color: var(--bronze-light); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252, 246, 238, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-lotus { width: 34px; height: 34px; flex: none; }
.brand-lotus path { fill: var(--bronze-deep); }
.brand-name { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.16rem; letter-spacing: 0.14em; line-height: 1; display: flex; flex-direction: column; gap: 3px; }
.brand-name small { font-family: "Questrial", sans-serif; font-weight: 400; font-size: 0.56rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-mute); }

.site-nav ul { list-style: none; display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; }
.site-nav a {
  font-family: "Questrial", sans-serif;
  font-size: 0.82rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--ink-soft);
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--bronze-deep); }
.nav-cta {
  background: var(--ink); color: var(--white) !important;
  padding: 11px 20px; border-radius: 999px; letter-spacing: 0.1em !important;
}
.nav-cta:hover { background: var(--bronze-deep); }

.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; padding: 10px; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: 0.25s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Questrial", sans-serif; font-size: 0.86rem; letter-spacing: 0.11em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 999px; border: 1px solid transparent; cursor: pointer; transition: 0.24s ease;
}
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--bronze-deep); color: var(--white); transform: translateY(-2px); }
.btn-gold { background: var(--gold-grad); color: #2A1D0E; box-shadow: var(--shadow-soft); }
.btn-gold:hover { color: #2A1D0E; transform: translateY(-2px); filter: brightness(1.04); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--bronze); color: var(--bronze-deep); }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.band-cream { background: var(--cream); }
.band-ivory { background: var(--ivory-deep); }
.band-ink { background: var(--ink); color: #E7DBCC; }
.band-ink h1, .band-ink h2, .band-ink h3, .band-ink h4 { color: var(--ivory); }

.eyebrow {
  font-family: "Questrial", sans-serif; font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--bronze-deep); margin: 0 0 14px;
}
.band-ink .eyebrow { color: var(--bronze-light); }
.section-head { max-width: 660px; margin: 0 auto 52px; text-align: center; }
.section-head p:last-child { margin-bottom: 0; color: var(--ink-mute); }
.band-ink .section-head p:last-child { color: #C6B7A6; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: radial-gradient(120% 100% at 50% 0%, #FFFBF5 0%, var(--ivory) 42%, var(--cream) 100%); }
.hero-inner { position: relative; z-index: 3; max-width: 780px; margin: 0 auto; padding: 96px 24px 104px; text-align: center; }
.hero-kicker { font-family: "Questrial", sans-serif; letter-spacing: 0.3em; text-transform: uppercase; font-size: 0.8rem; color: var(--bronze-deep); margin: 0 0 26px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--bronze-deep); font-weight: 400; }
.hero .lead { font-size: 1.16rem; color: var(--ink-soft); max-width: 620px; margin: 0 auto 34px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Radiance aura + lotus (video-swap-ready block lives in the HTML) */
.hero-aura { position: absolute; inset: 0; z-index: 1; display: flex; align-items: flex-start; justify-content: center; pointer-events: none; }
.hero-aura svg { width: min(760px, 128%); margin-top: -60px; opacity: 0.9; }
.aura-ring { transform-box: view-box; transform-origin: 380px 300px; animation: auraSpin 46s linear infinite; }
.aura-ring.rev { animation-duration: 66s; animation-direction: reverse; }
.aura-ray { transform-box: view-box; transform-origin: 380px 300px; animation: auraBreath 7s ease-in-out infinite; }
.hero-lotus { transform-box: view-box; transform-origin: 380px 430px; animation: lotusFloat 9s ease-in-out infinite; }
@keyframes auraSpin { to { transform: rotate(360deg); } }
@keyframes auraBreath { 0%, 100% { opacity: 0.5; } 50% { opacity: 0.95; } }
@keyframes lotusFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) {
  .aura-ring, .aura-ray, .hero-lotus { animation: none !important; }
}

.trust-strip { background: var(--ink); color: #D9C9B6; }
.trust-strip .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 42px; padding-top: 20px; padding-bottom: 20px; }
.trust-strip span { font-family: "Questrial", sans-serif; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 12px; }
.trust-strip span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--bronze-light); }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .eyebrow { text-align: left; }
.tick-list { list-style: none; margin: 22px 0 0; padding: 0; }
.tick-list li { position: relative; padding: 0 0 12px 32px; color: var(--ink-soft); }
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 15px; height: 8px;
  border-left: 2px solid var(--bronze); border-bottom: 2px solid var(--bronze);
  transform: rotate(-45deg);
}

/* Radiance panel (typographic art in place of stock photos) */
.radiance-panel {
  position: relative; aspect-ratio: 4 / 5; border-radius: 6px; overflow: hidden;
  background: radial-gradient(120% 100% at 30% 10%, #FFFCF7, var(--cream) 55%, var(--cream-deep));
  border: 1px solid var(--line-soft); box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
}
.radiance-panel .rp-lotus { width: 46%; opacity: 0.92; }
.radiance-panel .rp-lotus path { fill: var(--bronze); }
.radiance-panel::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 45% at 50% 42%, rgba(201, 164, 114, 0.28), transparent 70%);
}
.radiance-panel .rp-word {
  position: absolute; bottom: 26px; left: 0; right: 0; text-align: center;
  font-family: "Questrial", sans-serif; font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--bronze-deep);
}

/* ---------- Treatment cards ---------- */
.treat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.treat-card {
  display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line-soft);
  border-radius: 6px; padding: 30px 26px; color: var(--ink-soft); box-shadow: var(--shadow-soft); transition: 0.24s ease;
}
.treat-card:hover { transform: translateY(-4px); border-color: var(--bronze); color: var(--ink-soft); }
.treat-card h3 { color: var(--ink); margin-bottom: 8px; }
.treat-card p { font-size: 0.98rem; margin-bottom: 18px; }
.price-line { margin-top: auto; font-family: "Questrial", sans-serif; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.78rem; color: var(--bronze-deep); border-top: 1px solid var(--line-soft); padding-top: 14px; }

/* ---------- Price tables ---------- */
.price-block { background: var(--white); border: 1px solid var(--line-soft); border-radius: 8px; box-shadow: var(--shadow-soft); overflow: hidden; margin: 0 0 26px; }
.price-block > h3 { background: var(--cream); color: var(--ink); margin: 0; padding: 20px 28px; font-family: "Fraunces", serif; font-size: 1.28rem; border-bottom: 1px solid var(--line-soft); }
.price-table { width: 100%; border-collapse: collapse; }
.price-table tr { border-bottom: 1px solid var(--line-soft); }
.price-table tr:last-child { border-bottom: 0; }
.price-table td { padding: 15px 28px; vertical-align: top; }
.price-table td:first-child { color: var(--ink); }
.price-table .p-note { display: block; font-size: 0.86rem; color: var(--ink-mute); margin-top: 3px; }
.price-table td:last-child { text-align: right; white-space: nowrap; font-family: "Questrial", sans-serif; color: var(--bronze-deep); letter-spacing: 0.03em; }

/* ---------- Info / consultation callout ---------- */
.callout {
  background: var(--white); border: 1px solid var(--line-soft); border-left: 4px solid var(--bronze);
  border-radius: 6px; padding: 28px 30px; box-shadow: var(--shadow-soft);
}
.callout h3 { margin-bottom: 10px; }
.callout p:last-child { margin-bottom: 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.feature { background: var(--white); border: 1px solid var(--line-soft); border-radius: 6px; padding: 28px 26px; box-shadow: var(--shadow-soft); }
.feature .num { font-family: "Fraunces", serif; font-size: 1.6rem; color: var(--bronze); display: block; margin-bottom: 8px; }
.feature h3 { font-size: 1.14rem; margin-bottom: 8px; }
.feature p { font-size: 0.97rem; margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .btn { margin-top: 26px; }

/* ---------- Visit / contact ---------- */
.visit-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 46px; align-items: start; }
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { padding: 16px 0; border-bottom: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: 2px; }
.info-list li:first-child { padding-top: 0; }
.info-list .label { font-family: "Questrial", sans-serif; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bronze-deep); }
.info-list .value { color: var(--ink); font-size: 1.06rem; }
.hours-row { display: flex; justify-content: space-between; gap: 20px; padding: 9px 0; border-bottom: 1px solid var(--line-soft); }
.hours-row:last-child { border-bottom: 0; }
.hours-row span:last-child { color: var(--ink); }

form.enquiry { background: var(--white); border: 1px solid var(--line-soft); border-radius: 8px; padding: 32px; box-shadow: var(--shadow-soft); }
form.enquiry label { display: block; font-family: "Questrial", sans-serif; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 7px; }
form.enquiry .fld { margin-bottom: 18px; }
form.enquiry input, form.enquiry textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: 6px; background: var(--ivory);
}
form.enquiry input:focus, form.enquiry textarea:focus { outline: 2px solid var(--bronze); border-color: var(--bronze); }
form.enquiry .form-note { font-size: 0.85rem; color: var(--ink-mute); margin: 4px 0 0; }

.map-embed { border: 0; width: 100%; height: 300px; border-radius: 8px; margin-top: 28px; filter: saturate(0.85); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #C4B5A4; padding: 66px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.site-footer h4 { color: var(--ivory); font-family: "Questrial", sans-serif; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.82rem; margin-bottom: 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #C4B5A4; }
.site-footer a:hover { color: var(--bronze-light); }
.footer-brand-lotus { width: 40px; margin-bottom: 14px; }
.footer-brand-lotus path { fill: var(--bronze-light); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; font-size: 0.82rem; color: #9C8F80; }
.footer-bottom a { color: var(--bronze-light); }

/* ---------- Page intro (inner pages) ---------- */
.page-intro { background: radial-gradient(120% 130% at 50% 0%, #FFFBF5, var(--ivory) 55%, var(--cream)); text-align: center; padding: 82px 0 68px; border-bottom: 1px solid var(--line-soft); }
.page-intro .eyebrow { text-align: center; }
.page-intro p { max-width: 620px; margin: 12px auto 0; color: var(--ink-soft); }

.lede { font-size: 1.16rem; color: var(--ink-soft); max-width: 720px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  section { padding: 62px 0; }
  .split, .visit-grid, .grid-2 { grid-template-columns: 1fr; gap: 34px; }
  .treat-grid, .grid-3 { grid-template-columns: 1fr 1fr; }
  .split-media { order: -1; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--ivory);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-soft);
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .site-nav.open { max-height: 460px; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 24px 20px; }
  .site-nav li { border-bottom: 1px solid var(--line-soft); }
  .site-nav a { display: block; padding: 15px 0; }
  .nav-cta { text-align: center; margin-top: 12px; border-radius: 999px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 540px) {
  .treat-grid, .grid-3 { grid-template-columns: 1fr; }
  .hero-inner { padding: 70px 20px 78px; }
  .footer-bottom { flex-direction: column; }
}
