/* Self-hosted fonts — eliminates render-blocking Google Fonts request */

/* Cormorant Garamond — latin-ext */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(fonts/cormorant-garamond-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Cormorant Garamond — latin */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(fonts/cormorant-garamond-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Cormorant Garamond italic — latin-ext */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/cormorant-garamond-italic-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Cormorant Garamond italic — latin */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/cormorant-garamond-italic-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Outfit — latin-ext */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url(fonts/outfit-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Outfit — latin */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url(fonts/outfit-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #1a1f2e;
  --slate: #2d3347;
  --navy: #1e2a3a;
  --gold: #b08d57;
  --gold-light: #c9a96e;
  --cream: #f7f4ef;
  --warm-white: #fdfcfa;
  --stone: #e8e3db;
  --muted: #8b8680;
  --body-font: 'Outfit', -apple-system, sans-serif;
  --display-font: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--display-font);
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: white;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(253, 252, 250, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 2rem;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  transition: height 0.4s ease;
}

.nav.scrolled .nav-logo-img {
  height: 28px;
}

.nav-logo-text {
  font-family: var(--display-font);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.nav-logo-text .gold {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-family: var(--body-font);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--slate);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-rdv {
  font-family: var(--body-font);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: #8c6c38;
  padding: 0.55rem 1.4rem;
  text-decoration: none;
  transition: all 0.3s;
}

.nav-rdv:hover {
  background: var(--gold-light);
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  position: absolute;
  left: 0;
  transition: all 0.3s;
}

.nav-burger span:nth-child(1) {
  top: 0;
}

.nav-burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.nav-burger span:nth-child(3) {
  bottom: 0;
}

.nav-burger.open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.open span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  background: var(--warm-white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--display-font);
  font-size: 1.8rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 400;
}

.mobile-rdv {
  font-family: var(--body-font) !important;
  font-size: 0.8rem !important;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-white) !important;
  background: var(--gold);
  padding: 0.75rem 2rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-rdv {
    display: none;
  }
  .nav-burger {
    display: block;
  }
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, var(--warm-white) 0%, var(--stone) 50%, #d9d2c7 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 141, 87, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.hero-barreau {
  font-family: var(--body-font);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.hero-title {
  font-family: var(--display-font);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 3rem;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2.5rem;
}

.hero-tagline {
  font-family: var(--body-font);
  font-size: 1.3rem;
  color: var(--slate);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--body-font);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: var(--ink);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

.hero-cta:hover {
  background: var(--slate);
}

/* SECTION UTILS */
.section-pad {
  padding: 6rem 2rem;
}

.section-dark {
  background: var(--ink);
  color: var(--cream);
}

.section-cream {
  background: var(--cream);
}

.section-stone {
  background: var(--stone);
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
}

.section-label {
  font-family: var(--body-font);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-heading {
  font-family: var(--display-font);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-text {
  font-family: var(--body-font);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 640px;
  font-weight: 300;
}

.section-dark .section-text {
  color: #a0a0a8;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-photo {
  max-height: 500px;
  background: var(--stone);
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

/* Fallback for browsers without aspect-ratio support */
@supports not (aspect-ratio: 3/4) {
  .about-photo {
    height: 0;
    padding-bottom: 133.33%;
  }
  .about-photo img {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-stats {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--stone);
}

.about-stat-num {
  font-family: var(--display-font);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.about-stat-num--sm {
  font-size: 1.2rem;
  font-weight: 400;
}

.about-stat-label {
  font-family: var(--body-font);
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-photo {
    max-height: 400px;
    margin: 0 auto;
  }
  .about-stats {
    gap: 2rem;
  }
}

/* PRACTICE AREAS */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-top: 3rem;
}

.practice-card {
  padding: 2.5rem 2rem;
  background: var(--ink);
  transition: background 0.4s;
  cursor: default;
  text-decoration: none;
  display: block;
}

a.practice-card {
  cursor: pointer;
}

.practice-card:hover {
  background: #222840;
}

.practice-icon {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  filter: grayscale(0.3);
}

.practice-title {
  font-family: var(--display-font);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--cream);
}

.practice-desc {
  font-family: var(--body-font);
  font-size: 0.82rem;
  line-height: 1.7;
  color: #8b8b95;
  font-weight: 300;
}

@media (max-width: 900px) {
  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .practice-grid {
    grid-template-columns: 1fr;
  }
}

/* APPROACH */
.approach-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.approach-item {
  margin-bottom: 2rem;
}

.approach-num {
  font-family: var(--display-font);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.approach-title {
  font-family: var(--display-font);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.approach-text {
  font-family: var(--body-font);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
}

@media (max-width: 768px) {
  .approach-cols {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
  min-width: 0;
}

.contact-grid > * {
  min-width: 0;
}

.contact-block {
  margin-bottom: 2.5rem;
}

.contact-block-label {
  font-family: var(--body-font);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.contact-block-value {
  font-family: var(--body-font);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--slate);
  font-weight: 300;
}

.contact-block-value a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--stone);
  transition: border-color 0.3s;
}

.contact-block-value a:hover {
  border-color: var(--gold);
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--body-font);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: var(--gold);
  text-decoration: none;
  transition: all 0.3s;
}

.contact-cta:hover {
  background: var(--gold-light);
}

.contact-map {
  background: var(--stone);
  min-height: 320px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body-font);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.contact-map iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* FOOTER */
.footer {
  background: var(--ink);
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.footer-name {
  font-family: var(--display-font);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer-name span {
  color: var(--gold);
}

.footer-barreau {
  font-family: var(--body-font);
  font-size: 0.7rem;
  color: #9595a0;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  font-family: var(--body-font);
  font-size: 0.72rem;
  color: #9595a0;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-copy {
  font-family: var(--body-font);
  font-size: 0.65rem;
  color: #9090a0;
  letter-spacing: 0.05em;
}

.site-credit {
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.625rem;
  background: var(--ink);
}

.site-credit p {
  margin: 0;
  font-family: var(--body-font);
}

.site-credit a {
  color: #8e8e9e;
  text-decoration: none;
}

.site-credit a:hover {
  text-decoration: underline;
}

/* FAQ */
.faq-container .section-label,
.faq-container .section-heading {
  text-align: center;
}

.faq-list {
  max-width: 720px;
  margin: 2rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--stone);
}

.faq-question {
  font-family: var(--display-font);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  padding: 1.25rem 2rem 1.25rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--body-font);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s;
}

details[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 0 1.25rem;
}

.faq-answer p {
  font-family: var(--body-font);
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
}

/* DROPDOWN NAV */
.nav__item--dropdown {
  position: relative;
  list-style: none;
}

.nav__item--dropdown .nav__link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--body-font);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 0;
  transition: color 0.3s;
}

.nav__item--dropdown .nav__link:hover {
  color: var(--ink);
}

.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--warm-white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  list-style: none;
  min-width: 220px;
  padding: 0.75rem 0;
  margin-top: 0.75rem;
  z-index: 110;
}

.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -0.75rem;
  left: 0;
  right: 0;
  height: 0.75rem;
}

.nav__item--dropdown:hover .nav__dropdown {
  display: block;
}

.nav__dropdown li {
  list-style: none;
}

.nav__dropdown a {
  display: block;
  padding: 0.5rem 1.5rem;
  font-family: var(--body-font);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--slate);
  text-decoration: none;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav__dropdown a:hover {
  color: var(--ink);
  background: var(--cream);
}

.nav__dropdown a::after {
  display: none;
}

/* SUB-PAGE STYLES */
.hero-sub {
  padding: 8rem 2rem 3.5rem;
  text-align: center;
  background: linear-gradient(170deg, var(--warm-white) 0%, var(--stone) 100%);
  position: relative;
}

.hero-sub::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.hero-sub h1 {
  font-family: var(--display-font);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-sub p {
  font-family: var(--body-font);
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
  font-weight: 300;
}

.hero-sub .hero-cta {
  margin-top: 1rem;
}

/* BREADCRUMB */
.breadcrumb {
  font-family: var(--body-font);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  margin: 0 0.4rem;
  color: var(--stone);
}

/* CONTENT SECTIONS */
.content-section {
  padding: 4rem 2rem;
}

.content-section:nth-child(even) {
  background: var(--cream);
}

.content-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.content-wrap h2 {
  font-family: var(--display-font);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.content-wrap h3 {
  font-family: var(--display-font);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin: 2rem 0 0.75rem;
}

.content-wrap p {
  font-family: var(--body-font);
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--slate);
  font-weight: 300;
  margin-bottom: 1rem;
}

.content-wrap strong {
  font-weight: 500;
  color: var(--ink);
}

.content-wrap a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.content-wrap a:hover {
  border-color: var(--gold);
}

.content-wrap ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.content-wrap ul li {
  font-family: var(--body-font);
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--slate);
  font-weight: 300;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.35rem;
}

.content-wrap ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

/* HIGHLIGHTS / WHY CHOOSE */
.highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.highlight-card {
  padding: 1.5rem;
  background: var(--warm-white);
  border-left: 2px solid var(--gold);
}

.highlight-card p {
  margin: 0;
  font-size: 0.88rem;
}

@media (max-width: 600px) {
  .highlights {
    grid-template-columns: 1fr;
  }
}

/* CTA BAND */
.cta-band {
  background: var(--ink);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--display-font);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.cta-band p {
  font-family: var(--body-font);
  font-size: 0.92rem;
  color: #a0a0a8;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-band .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-band .cta-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--body-font);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.cta-primary {
  background: var(--gold);
  color: var(--warm-white);
}

.cta-primary:hover {
  background: var(--gold-light);
}

.cta-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.15);
}

.cta-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* FOOTER DOMAINS */
.footer-domains {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-domains a {
  font-family: var(--body-font);
  font-size: 0.7rem;
  color: #9595a0;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.3s;
}

.footer-domains a:hover {
  color: var(--cream);
}

