/* ============================================================
   ZEITGEIST AKADEMIE — vile-beach-575.css
   Design DNA: Dark luxury OEM adapted for history education
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;600;700&family=Open+Sans:wght@300;400;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --black:      #000000;
  --dark:       #0d0d0d;
  --dark2:      #111111;
  --gold:       #C9A843;
  --gold-light: #e0c06a;
  --white:      #FFFFFF;
  --grey-light: #F0EDE8;
  --grey-mid:   #CCCCCC;
  --text-dark:  #222222;
  --text-body:  #444444;
  --blue-link:  #176DB7;
  --border:     #2a2a2a;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Open Sans', Helvetica, Arial, sans-serif;
  --transition: 0.3s ease;
  --max-width:  1380px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
  background: #fff;
}
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }

/* ── Container ─────────────────────────────────────────────── */
.container-wide {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ================================================================
   UTILITY BAR
   ================================================================ */
.utility-bar {
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  height: 42px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 200;
}
.utility-bar .container-wide {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.utility-bar .site-name {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.08em;
  white-space: nowrap;
  font-weight: 600;
}
.utility-bar .ub-btn {
  background: var(--gold);
  color: var(--black);
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 2px;
  white-space: nowrap;
  transition: background var(--transition);
}
.utility-bar .ub-btn:hover { background: var(--gold-light); color: var(--black); }
.utility-bar .ub-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--grey-mid);
  font-size: 12px;
  white-space: nowrap;
}
.utility-bar .ub-item i { color: var(--gold); font-size: 11px; }
.utility-bar .spacer { flex: 1; }

/* ================================================================
   MAIN HEADER
   ================================================================ */
.main-header {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-header .container-wide {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 0;
}
/* Logo */
.header-logo {
  flex-shrink: 0;
  margin-right: 32px;
}
.header-logo svg { display: block; }

/* Primary Nav */
.primary-nav { display: flex; align-items: center; height: 100%; gap: 0; flex: 1; }
.primary-nav > li {
  height: 100%;
  position: relative;
}
.primary-nav > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color var(--transition), background var(--transition);
}
.primary-nav > li > a:hover,
.primary-nav > li.active > a {
  color: var(--gold);
  background: rgba(201,168,67,.08);
}
.primary-nav > li > a .nav-arrow {
  font-size: 9px;
  margin-left: 5px;
  transition: transform var(--transition);
}
.primary-nav > li:hover > a .nav-arrow { transform: rotate(180deg); }

/* Search toggle */
.header-search-toggle {
  margin-left: auto;
  color: var(--white);
  font-size: 16px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  height: 100%;
  transition: color var(--transition);
}
.header-search-toggle:hover { color: var(--gold); }

/* ================================================================
   MOBILE HEADER
   ================================================================ */
.mobile-header {
  display: none;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  height: 60px;
  align-items: center;
  padding: 0 16px;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.mobile-header .mob-logo svg { display: block; }
.mobile-header .mob-icons { display: flex; align-items: center; gap: 16px; }
.mobile-header .mob-icons a { color: var(--white); font-size: 17px; }
.mobile-header .mob-icons a:hover { color: var(--gold); }
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 26px;
  height: 26px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Full Overlay Menu */
.full-overlay-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99;
  overflow-y: auto;
  padding: 80px 24px 40px;
  flex-direction: column;
}
.full-overlay-menu.is-open { display: flex; }
.full-overlay-menu a {
  color: var(--white);
  font-size: 22px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: block;
  font-family: var(--font-serif);
}
.full-overlay-menu a:hover { color: var(--gold); }
.full-overlay-menu .close-menu {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 28px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
}

/* ================================================================
   HERO SLIDER
   ================================================================ */
.hero-slider {
  position: relative;
  background: var(--black);
  overflow: hidden;
  height: 540px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; position: relative; height: 540px; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.35) 60%, rgba(0,0,0,.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.hero-left { text-align: left; }
.hero-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.hero-price {
  font-family: var(--font-serif);
  font-size: 100px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-price-sub {
  font-size: 13px;
  color: var(--grey-mid);
  letter-spacing: 0.04em;
}
.hero-right { text-align: right; }
.hero-right .hero-price { font-size: 80px; }
.hero-title-block {
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  top: 50%;
  margin-top: -40px;
}
.hero-title-block h1 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.hero-disclaimer {
  position: absolute;
  bottom: 14px;
  left: 60px;
  color: var(--grey-mid);
  font-size: 11px;
  opacity: 0.7;
  z-index: 2;
}
.hero-disclaimer a { color: var(--grey-mid); text-decoration: underline; }
/* Slider nav */
.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,.5);
  color: var(--white);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  transition: background var(--transition);
}
.slider-prev { left: 16px; }
.slider-next { right: 16px; }
.slider-prev:hover, .slider-next:hover { background: var(--gold); border-color: var(--gold); }
.slider-dots {
  position: absolute;
  bottom: 14px;
  right: 60px;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: background var(--transition);
}
.slider-dot.active { background: var(--gold); }

/* ================================================================
   CTA BUTTON ROW (below hero)
   ================================================================ */
.cta-btn-row {
  background: var(--dark);
  border-bottom: 2px solid var(--border);
}
.cta-btn-row .container-wide {
  display: flex;
  justify-content: center;
}
.cta-btn-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 16px 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-right: 1px solid var(--border);
  border-top: 3px solid transparent;
  transition: all var(--transition);
  text-align: center;
  gap: 8px;
}
.cta-btn-row a:last-child { border-right: none; }
.cta-btn-row a:hover, .cta-btn-row a.active {
  color: var(--gold);
  border-top-color: var(--gold);
  background: rgba(201,168,67,.06);
}

/* ================================================================
   CTA TILES ROW
   ================================================================ */
.cta-tiles {
  background: var(--black);
  padding: 0;
}
.cta-tiles .container-wide { display: flex; }
.cta-tile {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: 200px;
}
.cta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.65);
}
.cta-tile:hover img { transform: scale(1.06); filter: brightness(0.5); }
.cta-tile-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(transparent, rgba(0,0,0,.8));
}
.cta-tile-label i { margin-right: 6px; color: var(--gold); }

/* ================================================================
   EXPERT BANNER SECTION
   ================================================================ */
.expert-banner {
  background: var(--dark2);
  padding: 64px 0;
  text-align: center;
  position: relative;
}
.expert-banner .overline {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.expert-banner h2 {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.expert-banner .subtext {
  color: var(--grey-mid);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.expert-banner .btn-grid {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--transition);
  min-width: 160px;
  justify-content: center;
}
.btn-outline-white:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--transition);
  justify-content: center;
}
.btn-gold:hover { background: var(--gold-light); color: var(--black); }
/* Signature block */
.expert-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}
.expert-signature img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.expert-signature .sig-name {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
}
.expert-signature .sig-title {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

/* ================================================================
   FULL-WIDTH BANNER
   ================================================================ */
.fullwidth-banner {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fullwidth-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}
.fullwidth-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
}
.fullwidth-banner-content h2 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.fullwidth-banner-content p {
  color: rgba(255,255,255,.8);
  font-size: 17px;
  margin-bottom: 28px;
}
.fullwidth-banner-content .btn-gold { font-size: 14px; padding: 16px 44px; }

/* ================================================================
   PRICING SECTION
   ================================================================ */
.pricing-section {
  background: var(--grey-light);
  padding: 80px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .overline {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
}
.section-header p {
  max-width: 520px;
  margin: 14px auto 0;
  color: var(--text-body);
  line-height: 1.7;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid #ddd;
  padding: 36px 28px;
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.pricing-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); border-color: var(--gold); }
.pricing-card.featured {
  border-color: var(--gold);
  border-width: 2px;
}
.pricing-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  white-space: nowrap;
}
.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.pricing-card .price {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-card .price span {
  font-size: 22px;
  vertical-align: super;
  font-weight: 400;
}
.pricing-card .price-note {
  font-size: 12px;
  color: #888;
  margin-bottom: 24px;
}
.pricing-card ul {
  list-style: none;
  margin-bottom: 28px;
}
.pricing-card ul li {
  padding: 7px 0;
  font-size: 13px;
  color: var(--text-body);
  border-bottom: 1px solid #f0ede8;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pricing-card ul li i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.pricing-card .btn-card {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  border: 2px solid var(--black);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  transition: all var(--transition);
}
.pricing-card .btn-card:hover,
.pricing-card.featured .btn-card {
  background: var(--black);
  color: var(--white);
}
.pricing-card.featured .btn-card:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* ================================================================
   SEO CONTENT + MAP
   ================================================================ */
.content-map-section {
  background: var(--white);
  padding: 80px 0;
}
.content-map-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.content-map-text h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.content-map-text h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 24px 0 10px;
}
.content-map-text p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 14px;
}
.content-map-text a { color: var(--blue-link); text-decoration: underline; }
.map-container iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}
.map-label {
  font-size: 12px;
  color: #777;
  margin-top: 8px;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-section {
  background: var(--dark2);
  padding: 80px 0;
}
.testimonials-section .section-header h2 { color: var(--white); }
.testimonials-section .section-header .overline { color: var(--gold); }
.testimonials-section .section-header p { color: var(--grey-mid); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  padding: 32px 28px;
}
.testimonial-stars { color: var(--gold); font-size: 13px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 14px;
  color: #ccc;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author strong { color: var(--white); font-size: 13px; display: block; margin-bottom: 2px; }
.testimonial-author span { color: #888; font-size: 12px; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--black);
  color: var(--white);
}
.footer-social {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.footer-social .container-wide {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-social .social-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-right: 8px;
}
.footer-social a {
  color: #888;
  font-size: 18px;
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--gold); }

.footer-middle {
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border);
}
.footer-middle .container-wide {
  display: grid;
  grid-template-columns: 200px repeat(4, 1fr);
  gap: 32px;
}
.footer-brand .footer-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 12px; color: #777; line-height: 1.7; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 13px;
  color: #aaa;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  padding: 18px 0;
}
.footer-bottom .container-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom .footer-links {
  display: flex;
  gap: 24px;
}
.footer-bottom .footer-links a {
  font-size: 12px;
  color: #666;
  transition: color var(--transition);
}
.footer-bottom .footer-links a:hover { color: var(--white); }
.footer-bottom .copyright {
  font-size: 12px;
  color: #555;
}

/* ================================================================
   COOKIE ALERT (GDPR)
   ================================================================ */
.cookie-alert {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  z-index: 9999;
  padding: 18px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-alert.visible { transform: translateY(0); }
.cookie-alert .container-wide {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-alert .cookie-text {
  flex: 1;
  font-size: 13px;
  color: var(--grey-mid);
  min-width: 260px;
}
.cookie-alert .cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-alert .cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-accept {
  background: var(--gold);
  color: var(--black);
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-accept:hover { background: var(--gold-light); }
.cookie-decline {
  background: transparent;
  color: #888;
  padding: 10px 18px;
  font-size: 12px;
  border: 1px solid #444;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-decline:hover { border-color: #888; color: var(--white); }

/* ================================================================
   HERO MOBILE CTA ROW (visible-xs only)
   ================================================================ */
.mobile-cta-row {
  display: none;
  background: var(--dark);
  overflow-x: auto;
  border-bottom: 1px solid var(--border);
}
.mobile-cta-row .container-wide { display: flex; padding: 0; }
.mobile-cta-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  color: var(--white);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  gap: 5px;
  border-right: 1px solid var(--border);
}
.mobile-cta-item i { font-size: 18px; color: var(--gold); }

/* ================================================================
   PAGE HERO (service pages)
   ================================================================ */
.page-hero {
  background: var(--dark);
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--grey-mid);
  font-size: 16px;
  max-width: 560px;
  line-height: 1.6;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: #777;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: #555; }

/* ================================================================
   CONTENT PAGE (legal etc)
   ================================================================ */
.legal-section {
  padding: 64px 0 80px;
}
.legal-section .container-wide { max-width: 860px; }
.legal-section h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 32px 0 12px;
}
.legal-section h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 24px 0 8px;
}
.legal-section p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 14px;
}
.legal-section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}
.legal-section ul li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 6px;
}
.legal-section a { color: var(--blue-link); text-decoration: underline; }
.last-updated {
  font-size: 12px;
  color: #999;
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 40px;
}

/* ================================================================
   FIND-US / CONTACT
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 72px 0;
}
.contact-info h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-item i {
  color: var(--gold);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 24px;
}
.contact-info-item strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dark); margin-bottom: 3px; }
.contact-info-item p, .contact-info-item a { font-size: 15px; color: var(--text-body); line-height: 1.6; }

/* Contact Form */
.contact-form h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 11px; color: #888; margin-bottom: 18px; }
.form-note a { color: var(--blue-link); text-decoration: underline; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.form-submit:hover { background: var(--gold); color: var(--black); }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-intro {
  padding: 72px 0;
}
.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-intro-text h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-intro-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 16px;
}
.about-intro-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.team-section {
  background: var(--grey-light);
  padding: 72px 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border: 1px solid #ddd;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.team-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); }
.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.team-card-body { padding: 22px 20px; }
.team-card-body h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.team-card-body .role {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 12px;
}
.team-card-body p { font-size: 13px; color: var(--text-body); line-height: 1.7; }

/* ================================================================
   FAQ PAGE
   ================================================================ */
.faq-section { padding: 72px 0 80px; }
.faq-section .container-wide { max-width: 860px; }
.faq-item {
  border-bottom: 1px solid #e0ddd8;
  padding: 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  user-select: none;
  gap: 16px;
}
.faq-question i { color: var(--gold); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-body);
}
.faq-item.open .faq-answer { display: block; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-price { font-size: 72px; }
  .hero-right .hero-price { font-size: 60px; }
  .footer-middle .container-wide { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .content-map-inner { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .utility-bar { display: none; }
  .main-header { display: none; }
  .mobile-header { display: flex; }
  .mobile-cta-row { display: flex; }
  .hero-slider { height: 320px; }
  .hero-slide.active { height: 320px; }
  .hero-content { padding: 0 20px; flex-direction: column; gap: 0; }
  .hero-price { font-size: 52px; }
  .hero-right { display: none; }
  .hero-title-block h1 { font-size: 22px; }
  .cta-btn-row { display: none; }
  .cta-tiles .container-wide { flex-direction: column; }
  .cta-tile { height: 130px; }
  .expert-banner h2 { font-size: 26px; }
  .fullwidth-banner { height: 320px; }
  .fullwidth-banner-content h2 { font-size: 30px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .about-intro-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-middle .container-wide { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom .container-wide { flex-direction: column; text-align: center; }
  .footer-bottom .footer-links { justify-content: center; flex-wrap: wrap; }
  .content-map-inner { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 30px; }
}
