/* ============================================
   FIXTVIEW Design System
   Based on brand spec: Calm, Professional, Trustworthy
   ============================================ */

:root {
  /* Colors */
  --deep-navy: #0F172A;
  --pure-white: #FFFFFF;
  --champagne-gold: #B8A46A;
  --text-grey: #6B7280;
  --light-grey-bg: #F8FAFC;
  --how-it-works-bg: #F1F5F9;
  --border-grey: #E5E7EB;

  /* Typography */
  --font-primary: 'Inter', system-ui, sans-serif;
  --h1-size: 56px;
  --h1-size-mobile: 36px;
  --h2-size: 36px;
  --h3-size: 24px;
  --body-size: 16px;
  --body-line-height: 1.6;
  --h1-weight: 600;
  --h2-weight: 600;
  --h3-weight: 500;
  --body-weight: 400;
  --cta-weight: 500;

  /* Spacing - 8px base system */
  --section-padding: 96px;
  --section-padding-mobile: 64px;
  --content-max-width: 1200px;
  --card-padding: 24px;
  --element-gap: 24px;

  /* Components */
  --border-radius: 8px;
  --card-radius: 12px;
  --btn-padding-y: 14px;
  --btn-padding-x: 28px;
  --icon-size: 24px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  font-size: var(--body-size);
  font-weight: var(--body-weight);
  line-height: var(--body-line-height);
  color: var(--text-grey);
  background: var(--pure-white);
}

/* Container */
.container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3 {
  color: var(--deep-navy);
  margin: 0 0 16px;
}

h1 {
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  line-height: 1.15;
  color: var(--pure-white);
}

h2 {
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: 1.25;
  text-align: center;
  margin-bottom: 48px;
}

h3 {
  font-size: var(--h3-size);
  font-weight: var(--h3-weight);
  margin-bottom: 12px;
}

p {
  margin: 0 0 16px;
  max-width: 60ch;
}

/* Buttons & CTAs */
.btn {
  display: inline-block;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: var(--cta-weight);
  text-decoration: none;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.btn-primary {
  position: relative;
  background: var(--deep-navy);
  color: var(--pure-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: border-color 0.2s ease;
}

.btn-primary:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-primary::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  background: transparent;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  transition: background 0.2s ease;
}

.btn-primary:hover::after {
  background: var(--champagne-gold);
}

.secondary-link {
  display: inline-block;
  color: var(--deep-navy);
  text-decoration: none;
  font-size: 16px;
  margin-top: 16px;
  position: relative;
}

.secondary-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: background 0.2s ease;
}

.secondary-link:hover::after {
  background: var(--champagne-gold);
}

.hero .secondary-link {
  color: var(--champagne-gold);
}

.hero .secondary-link::after {
  background: var(--champagne-gold);
}

.hero .secondary-link:hover {
  color: rgba(184, 164, 106, 0.9);
  text-decoration: none;
}

.hero .secondary-link:hover::after {
  background: var(--champagne-gold);
}

/* Header: thin fixed bar; logo is taller and overflows (centered), bar stays 56px */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  padding: 0;
  box-sizing: border-box;
  background: transparent;
  overflow: visible;
  transition: background 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header.header-scrolled,
.header[data-header-solid] {
  background: var(--deep-navy);
  border-bottom-color: transparent;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  overflow: visible;
  text-decoration: none;
  line-height: 0;
}

.logo img {
  display: block;
  height: 124px;
  width: auto;
  max-width: 400px;
  object-fit: contain;
  object-position: center center;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: var(--pure-white);
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav a:hover {
  color: var(--champagne-gold);
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--deep-navy);
    padding: 24px;
    gap: 16px;
    display: none;
  }

  .nav.nav-open {
    display: flex;
  }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pure-white);
  margin: 4px 0;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(30,41,59,0.9) 0%, var(--deep-navy) 70%);
  /* Clears logo below 56px bar: half bar + half logo + small gap */
  padding: calc(100px + var(--section-padding)) 0 var(--section-padding);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: visible;
}

/* Constellation pattern: extends from red line (58%) to right edge */
.hero-bg::before {
  z-index: 1;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 58%;
  background: url('hero-pattern.svg') 100% 100% no-repeat;
  background-size: 160% auto;
  opacity: 0.95;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 60vh;
}

.hero-text h1 {
  margin-bottom: 24px;
}

.hero-subheadline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-subheadline span {
  display: block;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-visual {
  position: relative;
  height: 400px;
  background: url('hero-pattern.svg') right bottom no-repeat;
  background-size: contain;
  opacity: 0.9;
}

/* Trust Strip */
.trust-strip {
  background: var(--light-grey-bg);
  padding: 24px 0;
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
}

.trust-list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--text-grey);
}

.trust-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--champagne-gold);
  border-radius: 50%;
}

/* Sections */
.section {
  padding: var(--section-padding) 0;
}

.section-subheadline {
  text-align: center;
  max-width: 600px;
  margin: -32px auto 48px;
  color: var(--text-grey);
}

/* How It Works */
.how-it-works {
  background: var(--how-it-works-bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--element-gap);
}

.step-card {
  background: var(--pure-white);
  border: 1px solid var(--border-grey);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  transition: box-shadow 0.2s ease;
}

.step-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.step-icon,
.flip-icon,
.why-icon {
  width: var(--icon-size);
  height: var(--icon-size);
  color: var(--champagne-gold);
  margin-bottom: 16px;
}

.step-icon svg,
.flip-icon svg,
.why-icon svg {
  width: 100%;
  height: 100%;
}

/* FLIP EA Section */
.flip-ea {
  background: var(--light-grey-bg);
}

.flip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--element-gap);
  margin-bottom: 48px;
}

.flip-card {
  background: var(--pure-white);
  border: 1px solid var(--border-grey);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
}

.flip-card h3 {
  margin-bottom: 8px;
}

.flip-card p {
  margin: 0;
  font-size: 15px;
}

.flip-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Why FIXTVIEW */
.why-fix {
  background: var(--pure-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--element-gap);
}

.why-card {
  background: var(--pure-white);
  border: 1px solid var(--border-grey);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  transition: box-shadow 0.2s ease;
}

.why-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.why-card h3 {
  margin-bottom: 12px;
}

.why-card p {
  margin: 0;
  font-size: 15px;
  line-height: var(--body-line-height);
  color: var(--text-grey);
}

/* About Us (under Why FIXTVIEW) */
.about-us {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--border-grey);
  scroll-margin-top: 128px;
}

.about-us-heading {
  font-size: 28px;
  font-weight: var(--h2-weight);
  color: var(--deep-navy);
  text-align: center;
  margin: 0 0 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--element-gap);
}

.about-card p {
  font-size: 16px;
}

/* Align with 3-col grid: link under the last (right) card */
.about-cta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--element-gap);
  margin-top: 24px;
}

.about-cta-row .secondary-link {
  grid-column: 3;
  justify-self: end;
  margin-top: 0;
  text-align: right;
}

/* Markets covered — same visual language as Why FIXTVIEW / About Us */
.markets-covered {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--border-grey);
}

.markets-covered .about-us-heading {
  margin-bottom: 16px;
}

.markets-covered-lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: var(--body-line-height);
  color: var(--text-grey);
}

/* FAQ Section */
.faq-section {
  background: var(--light-grey-bg);
}

.accordion {
  max-width: 800px;
  margin: 0 auto 32px;
}

.accordion-item {
  border-bottom: 1px solid var(--champagne-gold);
}

.accordion-item:first-child {
  border-top: 1px solid var(--champagne-gold);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: var(--deep-navy);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.accordion-trigger:hover {
  color: var(--champagne-gold);
}

.accordion-icon {
  font-size: 24px;
  color: var(--champagne-gold);
  transition: transform 0.3s ease;
}

.accordion-item[data-open] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item[data-open] .accordion-content {
  max-height: 300px;
}

.accordion-content p {
  padding: 0 0 20px;
  margin: 0;
  font-size: 15px;
  color: var(--text-grey);
}

.disclaimer {
  text-align: center;
  font-size: 14px;
  color: var(--text-grey);
  margin: 0;
}

/* FAQ disclaimer: centered under accordion, icon + text as one unit */
.faq-section .faq-disclaimer {
  max-width: 800px;
  margin: 32px auto 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.faq-disclaimer-icon {
  flex-shrink: 0;
  color: var(--champagne-gold);
  display: flex;
  margin-top: 2px;
}

.faq-disclaimer-icon svg {
  display: block;
}

.faq-disclaimer > span:last-child {
  flex: 0 1 auto;
  max-width: 42rem;
  line-height: 1.5;
  text-align: center;
}

/* Book Section */
.book-section {
  background: var(--pure-white);
}

.booking-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-submit-block {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.book-cta-note {
  margin: 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-grey);
}

.form-submit-error {
  margin: 16px 0 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: #b91c1c;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--deep-navy);
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--border-grey);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 16px;
  background: var(--pure-white);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--deep-navy);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-grey);
  opacity: 0.7;
}

/* Thank You Section */
.thank-you-section {
  background: var(--deep-navy);
  padding: var(--section-padding) 0;
}

.thank-you-section h2,
.thank-you-section .section-subheadline {
  color: var(--pure-white);
}

.thank-you-section .section-subheadline {
  color: rgba(255, 255, 255, 0.9);
}

.thank-you-risk {
  max-width: 640px;
  margin: 0 auto 36px;
  padding-bottom: 28px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.thank-you-risk p {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
  max-width: none;
}

.thank-you-risk p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .thank-you-risk {
    margin-bottom: 28px;
    padding-bottom: 24px;
  }

  .thank-you-risk p {
    font-size: 12px;
  }
}

/* Risk disclosure (between book / thank-you and footer) */
.pre-footer-risk {
  background: var(--light-grey-bg);
  padding: 48px 0;
  border-top: 1px solid var(--border-grey);
}

.pre-footer-risk-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.pre-footer-risk-inner p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-grey);
  max-width: none;
}

.pre-footer-risk-inner p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .pre-footer-risk {
    padding: 40px 0;
  }

  .pre-footer-risk-inner p {
    font-size: 13px;
    margin-bottom: 16px;
  }
}

/* Footer — centered brand row; legal + policies + icons aligned with logo */
.footer {
  background: var(--deep-navy);
  padding: 36px 0 28px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: block;
  line-height: 0;
  text-decoration: none;
  margin-bottom: 14px;
}

.footer-logo img {
  display: block;
  height: 124px;
  width: auto;
  max-width: 380px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 28px;
  margin-bottom: 8px;
  width: 100%;
  max-width: 100%;
}

.footer-nav a {
  color: var(--pure-white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.footer-nav a:hover {
  color: var(--champagne-gold);
}

.footer-legal {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 28px;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-legal-copy {
  margin-bottom: 22px;
}

.footer-legal-line {
  margin: 0 auto 12px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
}

.footer-legal-line:last-child {
  margin-bottom: 0;
}

.footer-legal-spaced {
  margin-top: 20px;
  margin-bottom: 0;
}

.footer-policies {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 6px;
  margin: 0;
}

.footer-policies a {
  font-size: 13px;
  font-weight: 500;
  color: var(--pure-white);
  text-decoration: none;
  padding: 6px 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-policies a:hover {
  color: var(--champagne-gold);
  border-bottom-color: var(--champagne-gold);
}

.footer-policies-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  user-select: none;
  padding: 0 4px;
}

.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 14px;
  margin: 0 0 26px;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--champagne-gold);
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-social-icons a:hover {
  color: #d4bc7a;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.footer-social-icons svg {
  display: block;
  width: 22px;
  height: 22px;
}

.footer-social-icons .footer-icon-x path {
  fill: currentColor;
}

@media (max-width: 991px) {
  .why-grid,
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cta-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cta-row .secondary-link {
    grid-column: 2;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }

  h1 {
    font-size: var(--h1-size-mobile);
  }

  h2 {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .menu-toggle {
    display: block;
  }

  .header {
    height: 52px;
    min-height: 52px;
    max-height: 52px;
  }

  .header .container {
    height: 52px;
    min-height: 52px;
    max-height: 52px;
  }

  .logo {
    height: 52px;
    min-height: 52px;
    max-height: 52px;
  }

  .logo img {
    height: 96px;
    max-width: 300px;
  }

  .hero {
    padding-top: calc(88px + var(--section-padding-mobile));
  }

  .header .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .header .logo {
    justify-self: center;
    grid-column: 2;
  }

  .header .menu-toggle {
    justify-self: end;
    grid-column: 3;
  }

  .footer {
    padding: 28px 0 22px;
  }

  .footer-logo {
    margin-bottom: 10px;
  }

  .footer-logo img {
    height: 100px;
    max-width: 300px;
  }

  .footer-nav {
    margin-bottom: 6px;
    gap: 8px 20px;
  }

  .footer-legal {
    padding-top: 22px;
    margin-top: 8px;
  }

  .footer-legal-copy {
    margin-bottom: 18px;
  }

  .footer-legal-line,
  .footer-policies a {
    font-size: 12px;
  }

  .footer-policies {
    flex-direction: column;
    gap: 6px;
    margin-bottom: 0;
  }

  .footer-policies-sep {
    display: none;
  }

  .footer-social-icons {
    gap: 6px 10px;
    margin-bottom: 22px;
  }

  .footer-social-icons a {
    width: 42px;
    height: 42px;
  }

  .footer-social-icons svg {
    width: 20px;
    height: 20px;
  }

  /* Phones / small screens: no hero pattern (desktop keeps .hero-bg::before + .hero-visual) */
  .hero-bg::before {
    display: none;
  }

  .hero-visual {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .hero-text {
    order: 0;
  }

  .hero-subheadline {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-cta {
    align-items: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .trust-list {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .steps-grid,
  .why-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-row {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .about-cta-row .secondary-link {
    grid-column: 1;
    justify-self: end;
  }

  .markets-covered {
    margin-top: 48px;
    padding-top: 48px;
  }

  .markets-covered-lead {
    margin-bottom: 32px;
  }

  .flip-grid {
    grid-template-columns: 1fr;
  }

  .flip-cta .btn {
    width: 100%;
  }

  .accordion-trigger {
    font-size: 15px;
    padding: 16px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: var(--section-padding-mobile) 0;
  }
}

/* About FIXTCAPITAL page */
.about-page {
  padding: calc(100px + 32px) 0 var(--section-padding);
  background: var(--pure-white);
  min-height: 50vh;
}

.about-page-inner {
  max-width: 640px;
  margin: 0 auto;
}

.about-page-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--deep-navy);
  line-height: 1.2;
  margin: 0 0 28px;
}

.about-page-inner > p {
  color: var(--text-grey);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 22px;
  max-width: none;
}

.about-page-lead {
  color: var(--deep-navy);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.about-page-section {
  margin: 0;
}

.about-page-h2 {
  font-size: var(--h3-size);
  font-weight: var(--h2-weight);
  color: var(--deep-navy);
  text-align: left;
  margin: 48px 0 16px;
}

.about-page-section p {
  color: var(--text-grey);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 22px;
  max-width: none;
}

.about-page-disclaimer {
  margin-top: 48px;
  padding: 20px 24px;
  background: var(--light-grey-bg);
  border: 1px solid var(--border-grey);
  border-radius: var(--card-radius);
}

.about-page-disclaimer p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-grey);
  margin: 0;
  max-width: none;
}

.about-page-back {
  margin-top: 40px;
  margin-bottom: 0;
}

.about-page-back .secondary-link {
  margin-top: 0;
}

@media (max-width: 768px) {
  .about-page {
    padding-top: calc(88px + 24px);
  }
}

/* Legal documents (Privacy, Terms) */
.legal-doc-pretitle {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne-gold);
}

.legal-doc .about-page-title {
  margin-bottom: 8px;
}

.legal-doc-section .about-page-h2 {
  margin-top: 40px;
}

.legal-doc-section:first-of-type .about-page-h2 {
  margin-top: 28px;
}

.legal-doc-section p {
  color: var(--text-grey);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 18px;
  max-width: none;
}

.legal-doc-section p:last-child {
  margin-bottom: 0;
}

.legal-doc ul {
  margin: 0 0 20px;
  padding-left: 1.35em;
  color: var(--text-grey);
  font-size: 17px;
  line-height: 1.65;
}

.legal-doc li {
  margin-bottom: 8px;
}

.legal-doc li:last-child {
  margin-bottom: 0;
}

.legal-doc-link {
  color: var(--deep-navy);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--champagne-gold);
  text-underline-offset: 3px;
}

.legal-doc-link:hover {
  color: var(--champagne-gold);
}

/* Contact page */
.contact-page-main {
  margin: 0;
}

.contact-hero {
  position: relative;
  min-height: min(100vh, 920px);
  padding: calc(100px + 48px) 0 var(--section-padding);
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(30, 41, 59, 0.9) 0%, var(--deep-navy) 70%);
  color: var(--pure-white);
  overflow: hidden;
}

.contact-hero .hero-bg {
  position: absolute;
  inset: 0;
  overflow: visible;
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  text-align: center;
  font-size: clamp(32px, 5vw, 44px);
  margin-bottom: 20px;
  color: var(--pure-white);
}

.contact-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.contact-details {
  max-width: 480px;
  margin: 0 auto;
}

.contact-row {
  margin-bottom: 28px;
}

.contact-label {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--pure-white);
}

.contact-value {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-width: none;
}

.contact-value a {
  color: var(--champagne-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-value a:hover {
  color: #d4bc7a;
}

.contact-meta {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-meta p {
  margin: 0 0 10px;
  max-width: none;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.contact-meta p:last-child {
  margin-bottom: 0;
}

.contact-meta strong {
  color: var(--pure-white);
  font-weight: 600;
}

.contact-book-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-top: 40px;
  margin-bottom: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .contact-hero {
    padding: calc(88px + 32px) 0 var(--section-padding-mobile);
  }

  .contact-intro {
    font-size: 16px;
    margin-bottom: 32px;
  }
}
