/* ═══════════════════════════════════════════════════════════════════
   SELF-HOSTED FONTS — no external requests to Google.
   Files live in /fonts. Latin-subset woff2 for fast, private loading.
   ═══════════════════════════════════════════════════════════════════ */
/* Cormorant Garamond */
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/cormorant-garamond-400.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 500; font-display: swap; src: url("fonts/cormorant-garamond-500.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 600; font-display: swap; src: url("fonts/cormorant-garamond-600.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 700; font-display: swap; src: url("fonts/cormorant-garamond-700.woff2") format("woff2"); }
/* Source Sans 3 */
@font-face { font-family: "Source Sans 3"; font-style: normal; font-weight: 300; font-display: swap; src: url("fonts/source-sans-3-300.woff2") format("woff2"); }
@font-face { font-family: "Source Sans 3"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/source-sans-3-400.woff2") format("woff2"); }
@font-face { font-family: "Source Sans 3"; font-style: normal; font-weight: 500; font-display: swap; src: url("fonts/source-sans-3-500.woff2") format("woff2"); }
@font-face { font-family: "Source Sans 3"; font-style: normal; font-weight: 600; font-display: swap; src: url("fonts/source-sans-3-600.woff2") format("woff2"); }
@font-face { font-family: "Source Sans 3"; font-style: normal; font-weight: 700; font-display: swap; src: url("fonts/source-sans-3-700.woff2") format("woff2"); }

/* ═══════════════════════════════════════════════════════════════════
   SORT MY DIGITAL LIFE — STYLESHEET
   Palette matched to the document suite: navy (#192D4E), pale blue
   (#E8F0F7), warm cream paper, restrained accents.
   ═══════════════════════════════════════════════════════════════════ */

/* Tokens */
:root {
  /* Brand colours — taken from the document suite */
  --navy: #192D4E;
  --navy-dark: #0F1B30;
  --navy-mid: #2C4670;
  --pale-blue: #E8F0F7;
  --pale-blue-2: #DDE7F0;
  --soft-cream: #FAF7F2;
  --paper: #FFFFFF;

  /* Text */
  --text: #1F2937;
  --text-muted: #56657A;
  --text-light: #8896A6;
  --text-on-dark: #F5F0E8;
  --text-on-dark-muted: #A9B7CC;

  /* Accents (from document suite) */
  --accent-warm: #B58A4F;       /* warm gold for fine details */
  --accent-warm-light: #D9B97E;
  --green-bg: #E6F0E8;
  --green-text: #2C5F3D;
  --amber-bg: #FBF1DC;
  --amber-text: #7D5A1B;
  --red-bg: #F5DCDA;
  --red-text: #8B2A22;

  /* UI */
  --border: #E1E6EE;
  --border-strong: #C8D2DD;
  --shadow-sm: 0 1px 2px rgba(15, 27, 48, 0.04);
  --shadow: 0 4px 14px rgba(15, 27, 48, 0.06);
  --shadow-lg: 0 18px 50px rgba(15, 27, 48, 0.10);
  --shadow-card: 0 2px 8px rgba(15, 27, 48, 0.04), 0 12px 32px rgba(15, 27, 48, 0.06);

  /* Type */
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --max-w: 1180px;
  --max-w-narrow: 820px;
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 280ms var(--ease);
}

/* ─────  Reset & base  ───── */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--navy-mid);
  text-decoration: underline;
  text-decoration-color: rgba(44, 70, 112, 0.3);
  text-underline-offset: 3px;
  transition: color var(--transition), text-decoration-color var(--transition);
}
a:hover { color: var(--navy); text-decoration-color: var(--navy); }

button { font-family: inherit; cursor: pointer; }

::selection { background: var(--navy); color: var(--soft-cream); }

/* ─────  Headings  ───── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  margin: 0 0 0.5em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 4.6vw, 3.8rem); }
h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 1.9vw, 1.6rem); }
h4 { font-size: 1.05rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ─────  Layout primitives  ───── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--max-w-narrow);
}

.section {
  padding: clamp(72px, 8vw, 120px) 0;
}
.section-pale {
  background: var(--pale-blue);
}
.section-navy {
  background: var(--navy);
  color: var(--text-on-dark);
}
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 {
  color: var(--soft-cream);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head .eyebrow {
  margin-bottom: 12px;
}
.section-head .lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-top: 18px;
}
.section-head-light .lead { color: var(--text-on-dark-muted); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-mid);
  position: relative;
  padding-left: 32px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 1px;
  background: var(--accent-warm);
}
.section-head-light .eyebrow {
  color: var(--accent-warm-light);
}
.section-head-light .eyebrow::before { background: var(--accent-warm-light); }

/* ═══════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--paper);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-line-1 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: 4px;
}
.logo-line-2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
}

/* Nav */
.primary-nav { display: flex; align-items: center; }
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-list a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 0.97rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-list a:hover {
  color: var(--navy);
  background: var(--pale-blue);
}
.nav-cta {
  background: var(--navy);
  color: var(--soft-cream) !important;
  padding: 10px 20px !important;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--navy-dark) !important;
  color: var(--paper) !important;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 4px auto;
  transition: all var(--transition);
  border-radius: 1px;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(232, 240, 247, 0.7), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, var(--pale-blue) 100%);
  padding: clamp(72px, 10vw, 140px) 0 clamp(80px, 12vw, 160px);
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    radial-gradient(circle, rgba(25, 45, 78, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 920px;
  text-align: center;
}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 800ms var(--ease) forwards;
}
.hero-title {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.015em;
  opacity: 0;
  animation: fadeInUp 800ms var(--ease) 100ms forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--navy-mid);
  font-weight: 400;
}
.hero-sub {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeInUp 800ms var(--ease) 200ms forwards;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 800ms var(--ease) 300ms forwards;
}
.hero-reassurance {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeInUp 800ms var(--ease) 400ms forwards;
}
.reassurance-tick {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: var(--green-bg);
  color: var(--green-text);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-sans);
  border-radius: var(--radius-md);
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
}
.btn-primary {
  background: var(--navy);
  color: var(--soft-cream);
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  background: var(--navy-dark);
  color: var(--paper);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--soft-cream);
  text-decoration: none;
}
.btn-large {
  padding: 18px 36px;
  font-size: 1.08rem;
}

/* Section-navy buttons */
.section-navy .btn-primary {
  background: var(--soft-cream);
  color: var(--navy);
}
.section-navy .btn-primary:hover {
  background: var(--paper);
  color: var(--navy-dark);
}

/* ═══════════════════════════════════════════════════════════════════
   WHAT IS A DIGITAL LIFE — scope grid
   ═══════════════════════════════════════════════════════════════════ */
.scope-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.scope-grid li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--paper);
  border-radius: var(--radius-md);
  font-size: 1.02rem;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.scope-grid li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}
.scope-icon {
  font-size: 1.3rem;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════════ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.service-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-strong);
}
.service-card-feature {
  background: var(--navy);
  color: var(--text-on-dark);
  border-color: var(--navy);
}
.service-card-feature h3 {
  color: var(--soft-cream);
}
.service-card-feature .service-tag {
  color: var(--accent-warm-light);
}
.service-card-feature .service-meta {
  color: var(--text-on-dark-muted);
  border-top-color: rgba(245, 240, 232, 0.15);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.service-tag {
  font-style: italic;
  color: var(--navy-mid);
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.service-meta {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  letter-spacing: 0.02em;
}
.service-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent-warm);
  color: var(--paper);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-aside {
  background: var(--green-bg);
  border-left: 4px solid var(--green-text);
  padding: 24px 28px;
  border-radius: var(--radius-md);
}
.aside-eyebrow {
  font-weight: 600;
  color: var(--green-text);
  margin-bottom: 8px;
}
.aside-content p:last-child {
  color: var(--text);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   HOW IT WORKS — STEPS
   ═══════════════════════════════════════════════════════════════════ */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  counter-reset: step;
}
.steps li {
  display: flex;
  gap: 20px;
  background: rgba(245, 240, 232, 0.05);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(169, 183, 204, 0.18);
}
.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--accent-warm);
  color: var(--paper);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
}
.step-body h3 {
  color: var(--soft-cream);
  margin-bottom: 8px;
  font-size: 1.25rem;
}
.step-body p {
  color: var(--text-on-dark-muted);
  margin: 0;
  font-size: 0.97rem;
}

/* ═══════════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════════ */
.pricing-assessment {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 16px;
  border: 2px solid var(--navy);
  box-shadow: var(--shadow-card);
}
.assessment-content {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.assessment-content > div:first-child {
  flex: 1;
  min-width: 280px;
}
.assessment-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 8px;
}
.pricing-assessment h3 {
  margin-bottom: 8px;
}
.pricing-assessment p {
  color: var(--text-muted);
  margin: 0;
}
.assessment-price {
  text-align: right;
  flex-shrink: 0;
}
.price-figure {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.price-note {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.pricing-bridge {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 32px 0 32px;
  font-style: italic;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.price-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.price-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.price-card-feature {
  border: 2px solid var(--navy);
  box-shadow: var(--shadow-card);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--soft-cream);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-name {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.price-desc {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
}
.price-figure-wrap {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.price-features {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.price-features li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 0.97rem;
  line-height: 1.5;
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 9px;
  border-left: 2px solid var(--accent-warm);
  border-bottom: 2px solid var(--accent-warm);
  transform: rotate(-45deg);
}

.pricing-foot {
  text-align: center;
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 0.97rem;
}

/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 32px;
}
.testimonial {
  background: var(--paper);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  margin: 0;
  position: relative;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.testimonial:hover {
  box-shadow: var(--shadow-card);
}
.testimonial::before {
  content: """;
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--accent-warm);
  line-height: 1;
  font-weight: 600;
}
.testimonial blockquote {
  margin: 0 0 20px;
  padding-top: 12px;
}
.testimonial blockquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--text);
}
.testimonial figcaption {
  display: flex;
  flex-direction: column;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.testimonial-name {
  font-weight: 600;
  color: var(--navy);
}
.testimonial-meta {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════════ */
.about-inner {
  max-width: 820px;
  margin: 0 auto;
}
.about-text h2 {
  margin-top: 0;
  margin-bottom: 20px;
}
.about-lead {
  font-size: 1.18rem;
  color: var(--text);
  font-style: italic;
  font-family: var(--font-serif);
  margin-bottom: 20px;
}
.about-credentials {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
}
.about-credentials li {
  font-size: 0.97rem;
  color: var(--navy-mid);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════
   BOOKING
   ═══════════════════════════════════════════════════════════════════ */
.booking-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto 32px;
}
.booking-tab {
  background: rgba(245, 240, 232, 0.06);
  color: var(--text-on-dark);
  border: 1px solid rgba(169, 183, 204, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  font-family: inherit;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.booking-tab:hover {
  border-color: rgba(217, 185, 126, 0.5);
  background: rgba(245, 240, 232, 0.10);
  transform: translateY(-1px);
}
.booking-tab.active {
  background: var(--soft-cream);
  color: var(--navy);
  border-color: var(--accent-warm);
  box-shadow: var(--shadow-lg);
}
.tab-icon {
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.tab-label {
  font-weight: 600;
  font-size: 1.05rem;
}
.tab-sub {
  font-size: 0.88rem;
  color: var(--text-on-dark-muted);
}
.booking-tab.active .tab-sub {
  color: var(--text-muted);
}

.booking-panel {
  background: var(--soft-cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
  color: var(--text);
  box-shadow: var(--shadow-lg);
}

/* Simple contact card (replaces enquiry form) */
.contact-simple {
  background: var(--soft-cream);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 640px;
  margin: 0 auto;
  color: var(--text);
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: fadeIn 400ms var(--ease);
}
.contact-simple .contact-intro {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.5;
  margin: 0 0 16px;
  color: var(--navy);
}
.contact-simple .contact-intro a {
  color: var(--accent-link, #1f5fa8);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  white-space: nowrap;
}
.contact-simple .contact-intro a:hover {
  opacity: 0.8;
}
.contact-simple .contact-note {
  font-size: 0.98rem;
  color: var(--navy-mid, #5a6678);
  margin: 0;
}
.booking-panel.active {
  animation: fadeIn 400ms var(--ease);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Form */
.enquiry-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.enquiry-form .form-field {
  margin-bottom: 18px;
}
.enquiry-form .form-row .form-field {
  margin-bottom: 0;
}
.enquiry-form label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.enquiry-form .req {
  color: #B23A2F;
  font-weight: 700;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--paper);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(25, 45, 78, 0.12);
}
.enquiry-form textarea {
  resize: vertical;
  min-height: 100px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--navy);
}
.form-checkbox label {
  font-weight: 400;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
  color: var(--text);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px 24px;
  font-size: 1.05rem;
  position: relative;
}
.form-submit .btn-loading { display: none; }
.form-submit.is-loading .btn-label { opacity: 0; }
.form-submit.is-loading .btn-loading { display: inline; }
.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-foot {
  text-align: center;
  margin-top: 16px !important;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 24px 12px;
}
.success-icon {
  width: 64px;
  height: 64px;
  background: var(--green-bg);
  color: var(--green-text);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

/* Calendar */
.calendar-intro {
  text-align: center;
  margin-bottom: 24px;
  color: var(--text-muted);
}
.calendar-fallback {
  text-align: center;
  margin-top: 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.text-link {
  color: var(--navy);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
}

/* ═══════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════ */
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-item {
  background: var(--pale-blue);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { background: var(--pale-blue-2); }
.faq-item[open] { background: var(--pale-blue-2); }
.faq-item summary {
  padding: 22px 28px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--accent-warm);
  flex-shrink: 0;
  font-weight: 400;
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  content: "−";
  transform: rotate(0deg);
}
.faq-item p {
  padding: 0 28px 24px;
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════════
   CLOSING BANNER
   ═══════════════════════════════════════════════════════════════════ */
.closing-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--soft-cream);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(217, 185, 126, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.closing-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.4;
  margin: 0 auto 40px;
  max-width: 760px;
  position: relative;
  color: var(--soft-cream);
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-dark);
  color: var(--text-on-dark);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  padding: 64px 24px 48px;
}
.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.footer-brand .logo-mark {
  background: var(--soft-cream);
  color: var(--navy);
}
.footer-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--soft-cream);
  margin: 0 0 4px;
}
.footer-tagline {
  font-size: 0.92rem;
  color: var(--text-on-dark-muted);
  margin: 0;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  color: var(--soft-cream);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}
.footer-col p {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--text-on-dark-muted);
}
.footer-col a {
  color: var(--text-on-dark-muted);
  text-decoration: none;
}
.footer-col a:hover {
  color: var(--soft-cream);
  text-decoration: underline;
}
.footer-base {
  border-top: 1px solid rgba(169, 183, 204, 0.15);
  padding: 24px 0;
}
.footer-base-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
}
.footer-base-inner p { margin: 0; }
.footer-legal a {
  color: var(--text-on-dark-muted);
  text-decoration: underline;
  text-decoration-color: rgba(169, 183, 204, 0.4);
}
.footer-legal a:hover {
  color: var(--soft-cream);
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 880px) {
  .menu-toggle { display: block; }
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    box-shadow: var(--shadow);
  }
  .nav-list.open { display: flex; }
  .nav-list li { width: 100%; }
  .nav-list a {
    display: block;
    padding: 12px 14px;
  }
  .nav-cta {
    margin-top: 8px;
    margin-left: 0 !important;
    text-align: center;
  }

  .about-credentials { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px 32px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  body { font-size: 16px; }
  .booking-tabs { grid-template-columns: 1fr; }
  .booking-panel { padding: 28px 22px; }
  .enquiry-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .enquiry-form .form-row .form-field { margin-bottom: 18px; }
  .pricing-assessment { padding: 28px 24px; }
  .assessment-content { gap: 16px; }
  .assessment-price { text-align: left; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-base-inner { flex-direction: column; align-items: flex-start; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   POLISH LAYER — refinements for a more premium, restrained finish
   (appended; overrides earlier rules where intentional)
   ═══════════════════════════════════════════════════════════════════ */

/* Buttons: subtler weight, refined label spacing, smoother lift */
.btn {
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 15px 32px;
  border-radius: 6px;
}
.btn-primary {
  box-shadow: 0 1px 2px rgba(15,27,48,0.08), 0 8px 24px rgba(15,27,48,0.10);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(15,27,48,0.10), 0 16px 40px rgba(15,27,48,0.16);
}

/* Hero: a touch more breathing room and a finer eyebrow */
.hero-eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent-warm);
  font-weight: 600;
}

/* Price cards: cleaner edges, refined featured card with gold top accent */
.price-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.price-card-feature {
  position: relative;
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(15,27,48,0.08), 0 24px 60px rgba(15,27,48,0.14);
}
.price-card-feature::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(90deg, var(--accent-warm), var(--accent-warm-light));
}
.price-badge {
  background: var(--accent-warm);
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
}
.price-figure {
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
}

/* Section headings: refined eyebrow rule in warm gold */
.section-head .eyebrow {
  color: var(--accent-warm);
  font-weight: 600;
}

/* Cards & boxes: hairline borders for a crisper, more document-like feel */
.service-card,
.step-card,
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
}

/* Service aside (memoir): make it visually quieter — a soft inset note */
.service-aside {
  margin-top: 28px;
  background: var(--soft-cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-warm-light);
  border-radius: 8px;
  padding: 18px 22px;
}
.service-aside .aside-eyebrow {
  color: var(--accent-warm);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 4px;
}
.service-aside p:last-child {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Smoother focus states for accessibility + polish */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-warm);
  outline-offset: 2px;
}
