@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --navy: #15233f;
  --navy-deep: #101a30;
  --gold: #d8b35e;
  --gold-deep: #c9a14a;
  --paper: #faf7f0;
  --paper-2: #f4eee0;
  --white: #ffffff;
  --muted: #6b7689;
  --rule: #e8e1cf;
  --red: #b8332a;
  --green: #2f7a4f;
  --shadow: 0 4px 20px rgba(21, 35, 63, 0.08);
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--paper);
  color: var(--navy);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
}

a { color: var(--gold-deep); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--navy); text-decoration: underline; }

/* ============== LAYOUT ============== */

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

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

header.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(250, 247, 240, 0.92);
}

.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand-mark { display: flex; align-items: center; gap: 12px; }
.brand-mark .logo {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--navy); color: var(--gold);
  display: grid; place-items: center;
  font-family: 'Fraunces'; font-weight: 700; font-size: 22px;
}
.brand-mark .name { font-family: 'Fraunces'; font-weight: 700; font-size: 20px; color: var(--navy); }

nav.site-nav { display: flex; align-items: center; gap: 28px; }
nav.site-nav a {
  color: var(--navy);
  font-weight: 500;
  font-size: 15px;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
nav.site-nav a:hover { color: var(--navy); border-bottom-color: var(--gold); text-decoration: none; }
nav.site-nav a.cta {
  background: var(--navy); color: var(--paper);
  padding: 10px 20px; border-radius: 6px;
  border: none;
  font-weight: 600;
}
nav.site-nav a.cta:hover { background: var(--navy-deep); color: var(--paper); border: none; }

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

.hero { padding: 88px 0 64px; }
.hero h1 {
  font-size: clamp(36px, 6vw, 60px);
  margin-bottom: 22px;
  max-width: 820px;
}
.hero h1 .accent { color: var(--gold-deep); font-style: italic; }
.hero .lede { font-size: 20px; color: var(--muted); max-width: 640px; margin-bottom: 32px; }
.hero .ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero pitch video — vertical 9:16, sized to lead the hero, not whisper from the corner */
.hero-video {
  margin: 0 0 32px;
  display: flex;
  justify-content: flex-start;
}
.hero-video video {
  width: 100%;
  max-width: 360px;        /* 540 → 360, height drops 960 → 640px at 9:16 */
  height: auto;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(21,35,63,.28);
  background: #15233f;
  display: block;
  border: 2px solid rgba(255,255,255,.08);
}
@media (max-width: 640px) {
  .hero-video { justify-content: center; }
  .hero-video video { max-width: 280px; }
}

.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter'; font-weight: 600; font-size: 16px;
  padding: 14px 28px; border-radius: 6px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.btn-primary {
  background: var(--navy); color: var(--paper); border-color: var(--navy);
}
.btn-primary:hover { background: var(--navy-deep); color: var(--paper); text-decoration: none; }
.btn-secondary {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--paper); text-decoration: none; }
.btn-primary .arrow, .btn-secondary .arrow { color: var(--gold); }
.btn-primary:hover .arrow { color: var(--gold); }

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

section.band { padding: 72px 0; border-top: 1px solid var(--rule); }
section.band.light { background: var(--white); }
section.band.dark { background: var(--navy); color: var(--paper); }
section.band.dark h1, section.band.dark h2, section.band.dark h3 { color: var(--paper); }
section.band.dark .muted { color: rgba(250, 247, 240, 0.7); }
section.band.dark a:not(.btn-primary):not(.btn-secondary) { color: var(--gold); }

.kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-header { margin-bottom: 40px; }
.section-header h2 { font-size: clamp(28px, 4.5vw, 40px); margin-bottom: 14px; max-width: 700px; }
.section-header .lede { font-size: 18px; color: var(--muted); max-width: 620px; }

/* ============== PACKS GRID ============== */

.packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.pack-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.15s;
  text-decoration: none;
  color: var(--navy);
}
.pack-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.pack-card .niche {
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.pack-card h3 { font-size: 20px; margin-bottom: 8px; }
.pack-card .desc { font-size: 14px; color: var(--muted); margin-bottom: 18px; flex: 1; }
.pack-card .price-row { display: flex; justify-content: space-between; align-items: center; }
.pack-card .price { font-family: 'Fraunces'; font-weight: 700; font-size: 22px; color: var(--navy); }
.pack-card .arrow { color: var(--gold-deep); font-weight: 600; }

/* ============== FEATURE STRIP ============== */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.feature h4 { font-size: 18px; margin-bottom: 8px; color: var(--navy); font-family: 'Inter'; font-weight: 600; }
.feature p { font-size: 15px; color: var(--muted); }
.feature .icon {
  width: 44px; height: 44px;
  background: var(--paper-2);
  color: var(--gold-deep);
  border-radius: 8px;
  display: grid; place-items: center;
  font-family: 'Fraunces'; font-weight: 700; font-size: 22px;
  margin-bottom: 14px;
}

/* ============== CTA BANNER ============== */

.cta-banner {
  background: var(--gold);
  border-radius: 12px;
  padding: 48px;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(24px, 4vw, 32px); margin-bottom: 12px; color: var(--navy); }
.cta-banner p { color: var(--navy); margin-bottom: 24px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-primary { background: var(--navy); color: var(--paper); border-color: var(--navy); }

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

footer.site-footer {
  background: var(--navy);
  color: rgba(250, 247, 240, 0.7);
  padding: 56px 0 32px;
  margin-top: 64px;
  font-size: 14px;
}
footer.site-footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
footer.site-footer h5 { color: var(--gold); font-family: 'Inter'; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
footer.site-footer .col p { color: rgba(250, 247, 240, 0.65); margin-bottom: 10px; line-height: 1.6; }
footer.site-footer ul { list-style: none; }
footer.site-footer li { margin-bottom: 8px; }
footer.site-footer a { color: rgba(250, 247, 240, 0.85); }
footer.site-footer a:hover { color: var(--gold); }
footer.site-footer .legal {
  border-top: 1px solid rgba(250, 247, 240, 0.12);
  padding-top: 24px;
  margin-top: 40px;
  font-size: 13px;
  color: rgba(250, 247, 240, 0.5);
}

/* ============== ARTICLE / TEXT PAGE ============== */

.article { padding: 64px 0; }
.article h1 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 24px; }
.article p { margin-bottom: 18px; font-size: 17px; color: var(--navy); }
.article p.lede { font-size: 20px; color: var(--muted); }
.article h2 { font-size: 28px; margin: 36px 0 16px; }
.article h3 { font-size: 22px; margin: 24px 0 12px; }
.article ul, .article ol { margin: 0 0 18px 26px; }
.article li { margin-bottom: 8px; }
.article blockquote {
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--muted);
}

/* ============== RESPONSIVE ============== */

@media (max-width: 720px) {
  .hero { padding: 48px 0 36px; }
  section.band { padding: 48px 0; }
  .cta-banner { padding: 32px 22px; }
  nav.site-nav { gap: 16px; }
  nav.site-nav a:not(.cta) { display: none; }
  footer.site-footer .container { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 460px) {
  footer.site-footer .container { grid-template-columns: 1fr; }
}

/* ============================================================
   HOMEPAGE REDESIGN ADDITIONS — 2026-06-18
   ============================================================ */

/* ----- HERO: full-bleed photo + overlay ----- */

.hero-photo {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-image: url('assets/img/hero-salon.jpg');
  background-size: cover;
  background-position: center 30%;
  padding: 0;
  border-top: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 26, 48, 0.78) 0%,
    rgba(21, 35, 63, 0.55) 60%,
    rgba(21, 35, 63, 0.35) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-photo .hero-content h1 {
  font-size: clamp(40px, 6.5vw, 80px);
  color: var(--paper);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 860px;
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(16,26,48,0.3);
}

.hero-photo .hero-content h1 .accent {
  color: var(--gold);
  font-style: italic;
}

.kicker-light {
  color: var(--gold);
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-shadow: 0 1px 8px rgba(16,26,48,0.5);
}

.lede-light {
  font-size: 20px;
  color: rgba(250, 247, 240, 0.88);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(16,26,48,0.3);
}

/* ghost/outline button for use on dark backgrounds */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter';
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid rgba(250, 247, 240, 0.55);
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.btn-ghost:hover {
  background: rgba(250, 247, 240, 0.12);
  border-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
}
.btn-ghost .arrow { color: var(--gold); }

/* hero trust badge */
.hero-badge {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 26, 48, 0.72);
  border: 1px solid rgba(216, 179, 94, 0.35);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 10px 18px;
  border-radius: 40px;
  backdrop-filter: blur(8px);
}

/* ----- FEATURES: SVG icons not emoji ----- */

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(21,35,63,0.12);
}

/* override old .icon so it doesn't interfere */
.feature .icon { display: none; }

/* ----- TESTIMONIAL: two-column with photo ----- */

.testimonial-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
  overflow: hidden;
}

.testimonial-photo-col {
  position: relative;
  min-height: 520px;
}
.testimonial-photo-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.testimonial-copy-col {
  background: var(--paper-2);
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--gold);
}
.testimonial-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 6px;
  letter-spacing: 0.04em;
}

.testimonial-copy-col .kicker {
  margin-bottom: 6px;
}

.quote-mark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 96px;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.45;
  margin-bottom: 8px;
  margin-left: -4px;
  user-select: none;
}

.testimonial-copy-col blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.5;
  color: var(--navy);
  border-left: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.testimonial-attr {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 12px;
}

.testimonial-note {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  max-width: 420px;
  line-height: 1.6;
}

/* ----- PACK CARDS: SVG niche icons ----- */

.pack-icon {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--white);
}

.pack-icon--therapy  { background: #3b5b8c; }
.pack-icon--massage  { background: #2f7a4f; }
.pack-icon--pt       { background: #b8621a; }
.pack-icon--aesthetics { background: #7b4b9e; }
.pack-icon--hair     { background: #c9484e; }
.pack-icon--tattoo   { background: #2c5364; }
.pack-icon--all      { background: var(--navy); }

.pack-card {
  /* boost the existing hover */
  position: relative;
}
.pack-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(21,35,63,0.13);
}

.pack-card--all {
  background: var(--paper-2);
  border-style: dashed;
}

/* ----- DUAA BAND: split layout with device mockup ----- */

.duaa-band {
  padding: 80px 0;
}

.duaa-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.duaa-copy h2 {
  font-size: clamp(26px, 4vw, 40px);
  color: var(--paper);
  margin-bottom: 16px;
}

.duaa-copy .lede {
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 32px;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter';
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: var(--navy);
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.btn-gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--navy);
  text-decoration: none;
  transform: translateY(-1px);
}

/* device frame mockup */
.duaa-device {
  flex-shrink: 0;
}

.device-frame {
  width: 200px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(216,179,94,0.3);
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
}

.device-screen {
  background: var(--navy-deep);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(216,179,94,0.2);
}

.device-screen-inner {
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.device-ui-bar {
  height: 8px;
  background: var(--gold);
  border-radius: 4px;
  width: 60%;
}

.device-ui-line {
  height: 6px;
  background: rgba(250,247,240,0.15);
  border-radius: 3px;
}
.device-ui-line--short { width: 70%; }

.device-ui-progress {
  height: 5px;
  background: rgba(250,247,240,0.1);
  border-radius: 3px;
  margin-top: 4px;
}
.device-ui-progress-fill {
  height: 100%;
  width: 65%;
  background: var(--gold);
  border-radius: 3px;
}

.device-ui-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ----- CTA BANNER: gold with doc-stack motif + noise accent ----- */

.cta-banner {
  position: relative;
  background: var(--gold);
  border-radius: 14px;
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  overflow: hidden;
}

/* noise/texture overlay on gold */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  border-radius: 14px;
  pointer-events: none;
}

/* UK accent strip */
.cta-banner-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
  background: var(--navy);
  border-radius: 0 14px 14px 0;
}
.cta-banner-accent::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 33.33%;
  background: var(--navy);
}
.cta-banner-accent::after {
  content: '';
  position: absolute;
  top: 33.33%; left: 0;
  width: 100%;
  height: 33.34%;
  background: #c8102e;
}

.cta-banner-body {
  position: relative;
  z-index: 1;
  text-align: left;
}
.cta-banner h2 {
  font-size: clamp(24px, 4vw, 34px);
  margin-bottom: 12px;
  color: var(--navy);
  text-align: left;
}
.cta-banner p {
  color: var(--navy);
  margin-bottom: 24px;
  max-width: 480px;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  opacity: 0.85;
}
.cta-banner .btn-primary {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
}
.cta-banner .btn-primary:hover { background: var(--navy-deep); }

/* document stack decorative element */
.cta-banner-docs {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  padding-right: 20px;
}
.doc-stack {
  position: relative;
  width: 100px;
  height: 130px;
}
.doc {
  position: absolute;
  width: 86px;
  height: 110px;
  background: var(--white);
  border-radius: 6px;
  padding: 14px 12px;
  box-shadow: 0 4px 16px rgba(21,35,63,0.18);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.doc--back  { top: 10px; left: 14px; transform: rotate(6deg); opacity: 0.55; }
.doc--mid   { top: 5px;  left: 7px;  transform: rotate(2.5deg); opacity: 0.75; }
.doc--front { top: 0;    left: 0;    transform: rotate(-1deg); }
.doc-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 6px;
  margin-bottom: 2px;
}
.doc-line {
  height: 5px;
  background: var(--rule);
  border-radius: 2px;
}
.doc-line--short { width: 65%; }

/* ----- FOOTER: richer hierarchy ----- */

.footer-brand p {
  line-height: 1.65;
  margin-bottom: 6px;
}
.footer-company {
  font-size: 12px;
  color: rgba(250, 247, 240, 0.4) !important;
  margin-top: 4px;
}

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */

@media (max-width: 900px) {
  .testimonial-band {
    grid-template-columns: 1fr;
  }
  .testimonial-photo-col {
    min-height: 280px;
    position: relative;
  }
  .testimonial-copy-col {
    padding: 48px 32px;
  }
  .duaa-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .duaa-device { display: none; }
  .cta-banner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 32px;
  }
  .cta-banner-docs { display: none; }
  .hero-badge { display: none; }
}

@media (max-width: 720px) {
  .hero-photo {
    min-height: 70vh;
    background-position: center center;
  }
  .hero-content {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .hero-photo .hero-content h1 {
    font-size: clamp(32px, 9vw, 48px);
  }
}
