
  :root {
    --black: #0a0a0a;
    --deep: #111111;
    --card: #161616;
    --gold: #B4A689;
    --gold-light: #ccc0a3;
    --gold-dark: #8a7d61;
    --white: #faf9f6;
    --grey: #d4d0c8;
    --border: rgba(184,152,106,0.2);
    --border-strong: rgba(184,152,106,0.5);
  }

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

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

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    cursor: default;
    animation: pageFadeIn 0.4s ease forwards;
  }
  body.page-exiting {
    animation: none;
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  @keyframes pageFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @media (prefers-reduced-motion: reduce) {
    body { animation: none; opacity: 1; }
    body.page-exiting { transition: none; }
  }

  /* Ensure buttons and form labels meet minimum 16px / 1rem */
  button, label, .btn-primary, .btn-outline, .form-submit, .nav-cta {
    font-size: 16px !important;
  }

  /* Skip to main content for keyboard/screen reader users */
  .skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: top 0.2s;
  }
  .skip-link:focus {
    top: 16px;
  }

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--gold-dark); }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: 80px;
    background: rgba(10,10,10,0.95);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--gold);
    text-decoration: none;
    cursor: pointer;
  }

  .nav-logo img {
    max-width: 12.5rem;
    height: auto;
    width: auto;
    display: block;
  }

  .nav-logo span {
    color: var(--white);
    font-weight: 400;
  }

  #nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
  }

  .nav-links a {
    color: var(--grey);
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s;
    cursor: pointer;
    padding: 12px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

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

  .nav-links a:focus-visible,
  .nav-cta:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
  }

  /* Hamburger button (visible on mobile) */
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s;
  }
  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    background: var(--card);
    border-color: var(--gold);
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }
  .nav-toggle span {
    display: block;
    height: 2px;
    background: currentColor;
    transition: transform 0.3s;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 28px;
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
  }

  .nav-cta:hover {
    background: var(--gold);
    color: var(--black);
  }

  /* Services dropdown */
  .nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
  }
  .nav-dropdown-trigger {
    background: none;
    border: none;
    color: var(--grey);
    font-family: inherit;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 12px 12px;
    margin: 0 -12px;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
  }
  .nav-dropdown-trigger:hover {
    color: var(--gold-light);
    background: rgba(184,152,106,0.15);
  }
  .nav-dropdown-trigger:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
  }
  .nav-dropdown-trigger::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
  }
  .nav-dropdown-trigger[aria-expanded="true"]::after {
    transform: rotate(180deg);
  }
  .nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--card);
    border: 1px solid var(--border);
    list-style: none;
    padding: 12px 0;
    margin-top: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
  }
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
  .nav-dropdown-trigger[aria-expanded="true"] + .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
  .nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--grey);
  }
  .nav-dropdown-menu a:hover {
    background: rgba(184,152,106,0.2);
    color: var(--gold-light);
  }

  /* ── HERO ── */
  #home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 80px 60px 32px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 20% 50%, rgba(184,152,106,0.06) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 20%, rgba(184,152,106,0.04) 0%, transparent 50%),
      linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
  }

  .hero-grid {
    display: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
  }

  .hero-eyebrow {
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(56px, 8vw, 100px);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(13px, 1.8vw, 18px);
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
  }

  .hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.7s forwards;
  }

  .hero-desc {
    font-size: 16px;
    color: var(--grey);
    max-width: 520px;
    margin: 0 auto 28px;
    line-height: 2;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
  }

  .hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease 1s forwards;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 16px 48px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
  }

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

  .btn-outline {
    background: transparent;
    color: var(--white);
    padding: 16px 48px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(245,240,232,0.3);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .hero-credentials {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(180,166,137,0.2);
    width: 100%;
    opacity: 0;
    animation: fadeUp 0.8s ease 1.2s forwards;
  }

  .credential {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .credential-label {
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .credential-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: var(--grey);
  }

  /* ── SECTIONS ── */
  section {
    display: block;
    min-height: 100vh;
    padding: 140px 60px 100px;
  }

  
  #home { display: flex; }

  .section-eyebrow {
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .section-title em { font-style: italic; color: var(--gold); }

  .section-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 48px;
  }

  .section-lead {
    font-size: 16px;
    color: var(--grey);
    max-width: 640px;
    line-height: 2;
    margin-bottom: 64px;
  }

  /* ── SERVICES GRID ── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-bottom: 80px;
  }

  .service-card {
    background: var(--card);
    padding: 48px 40px;
    transition: background 0.3s;
    cursor: pointer;
  }

  .service-card:hover { background: #1a1a1a; }

  .service-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    color: var(--border-strong);
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1;
  }

  .service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
  }

  .service-desc {
    font-size: 15px;
    color: var(--grey);
    line-height: 1.9;
  }

  .service-link {
    display: inline-block;
    margin-top: 24px;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    cursor: pointer;
  }

  .service-link:hover { letter-spacing: 0.05em; }

  /* ── STATS ── */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-bottom: 80px;
  }

  .stat {
    background: var(--card);
    padding: 48px 32px;
    text-align: center;
  }

  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
  }

  .stat-label {
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--grey);
  }

  /* ── TEAM ── */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
  }

  .team-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 48px 40px;
  }

  .team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 28px;
  }

  .team-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 6px;
  }

  .team-role {
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
  }

  .team-bio {
    font-size: 15px;
    color: var(--grey);
    line-height: 2;
  }

  /* ── PAGE CONTENT BLOCKS ── */
  .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
  }

  .content-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--white);
  }

  .content-block p {
    font-size: 15px;
    color: var(--grey);
    line-height: 2;
    margin-bottom: 16px;
  }

  /* ── FEES TABLE ── */
  .fees-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 48px;
  }

  .fees-table th {
    background: var(--gold);
    color: var(--black);
    padding: 16px 24px;
    text-align: left;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
  }

  .fees-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--grey);
  }

  .fees-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
  .fees-table td:first-child { color: var(--white); font-weight: 400; }

  .prohibited-row td { color: rgba(136,136,128,0.5) !important; text-decoration: line-through; }
  .prohibited-row td:first-child { color: rgba(245,240,232,0.3) !important; }

  /* ── FORMS ── */
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .form-group.full { grid-column: 1 / -1; }

  label {
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
  }

  input, select, textarea {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 14px 18px;
    min-height: 48px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
  }

  input:focus, select:focus, textarea:focus {
    border-color: var(--gold);
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }

  select option { background: var(--card); }

  textarea { resize: vertical; min-height: 120px; font-size: 16px; }

  .form-submit {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 16px 48px;
    min-height: 48px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 8px;
  }

  .form-submit:hover { background: var(--gold-light); }

  .form-submit:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }

  .form-note {
    font-size: 14px;
    color: var(--grey);
    margin-top: 16px;
    line-height: 1.8;
  }

  /* ── CONTACT INFO ── */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
  }

  .contact-detail {
    margin-bottom: 32px;
  }

  .contact-label {
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }

  .contact-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--white);
    font-weight: 400;
  }

  .contact-value a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
  }

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

  /* ── MEMBERSHIPS ── */
  .memberships {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
    padding: 48px;
    border: 1px solid var(--border);
    background: var(--card);
    margin-bottom: 64px;
  }

  .membership-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .membership-name {
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .membership-detail {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--grey);
  }

  /* ── PRIVACY / LEGAL ── */
  .legal-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--white);
    margin: 40px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
  }

  .legal-content p {
    font-size: 15px;
    color: var(--grey);
    line-height: 2;
    margin-bottom: 16px;
  }

  .legal-content ul {
    margin: 0 0 20px 24px;
  }

  .legal-content ul li {
    font-size: 15px;
    color: var(--grey);
    line-height: 2;
  }

  /* ── VALUATION PAGE ── */
  .val-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
    margin-bottom: 64px;
  }

  .val-option {
    background: var(--card);
    padding: 48px 40px;
    cursor: pointer;
    transition: background 0.3s;
    border-bottom: 3px solid transparent;
  }

  .val-option.selected {
    background: #1a1a1a;
    border-bottom-color: var(--gold);
  }

  .val-option h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 12px;
  }

  .val-option p {
    font-size: 15px;
    color: var(--grey);
    line-height: 1.9;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--deep);
    border-top: 1px solid var(--border);
    padding: 64px 60px 40px;
    margin-top: 80px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 64px;
  }

  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .footer-brand img {
    max-width: 12.5rem;
    height: auto;
    width: auto;
    display: block;
  }

  .footer-desc {
    font-size: 13px;
    color: var(--grey);
    line-height: 2;
    margin-bottom: 32px;
  }

  .footer-heading {
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  footer a {
    color: var(--white);
    text-decoration: underline;
    transition: color 0.3s;
  }

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

  .footer-links a {
    font-size: 15px;
    cursor: pointer;
  }

  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: gap;
    gap: 16px;
  }

  footer p[style*="font-size:12px"] {
    font-size: 16px !important;
    color: var(--grey) !important;
  }

  .footer-legal {
    font-size: 14px;
    color: rgba(136,136,128,0.6);
    line-height: 1.8;
  }

  .footer-badges {
    display: flex;
    gap: 24px;
    align-items: center;
  }

  .badge {
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold-dark);
    border: 1px solid var(--gold-dark);
    padding: 4px 10px;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── NOTICE BOX ── */
  .notice {
    background: rgba(184,152,106,0.08);
    border: 1px solid var(--border-strong);
    border-left: 3px solid var(--gold);
    padding: 20px 24px;
    margin-bottom: 32px;
    font-size: 15px;
    color: var(--grey);
    line-height: 1.8;
  }

  /* ── TABLE WRAPPER FOR MOBILE SCROLL ── */
  .fees-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 48px;
  }
  .fees-table-wrapper .fees-table {
    margin-bottom: 0;
    min-width: 400px;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1240px) {
    main {
      transition: opacity 0.3s ease;
    }
    body.nav-open main {
      opacity: 0.5;
    }
    nav {
      padding: 0 20px;
      height: 72px;
      flex-wrap: wrap;
    }
    .nav-toggle {
      display: flex;
      order: 2;
    }
    #nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      background: rgba(10,10,10,0.98);
      border-bottom: 1px solid var(--border);
      padding: 20px;
      max-height: calc(100vh - 72px);
      overflow-y: auto;
    }
    #nav-menu.is-open {
      display: flex;
    }
    .nav-links {
      flex-direction: column;
      gap: 0;
      width: 100%;
    }
    .nav-links li {
      border-bottom: 1px solid var(--border);
      width: 100%;
    }
    .nav-links a {
      padding: 16px 0;
      width: 100%;
    }
    .nav-dropdown-menu {
      position: static;
      transform: none;
      max-height: 0;
      overflow: hidden;
      opacity: 1;
      visibility: visible;
      margin: 0;
      padding: 0;
      border: none;
      background: transparent;
      transition: max-height 0.3s ease;
      width: 100%;
    }
    .nav-dropdown-trigger[aria-expanded="true"] + .nav-dropdown-menu {
      max-height: 300px;
      padding: 8px 0 12px 20px;
    }
    .nav-dropdown-menu a {
      padding: 16px 0;
      width: 100%;
      display: block;
    }
    .nav-dropdown {
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
    }
    .nav-dropdown-trigger {
      width: 100%;
      justify-content: space-between;
      padding: 16px 0;
      margin: 0;
    }
    .nav-dropdown li {
      border-bottom: none;
    }
    .nav-dropdown:hover .nav-dropdown-menu {
      opacity: 0;
      visibility: hidden;
    }
    .nav-dropdown-trigger[aria-expanded="true"] + .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
    }
    #nav-menu .nav-cta {
      margin-top: 16px;
      width: 100%;
      justify-content: center;
    }
    section { padding: 100px 20px 60px; }
    #home { padding: 72px 20px 32px; }
    .content-grid, .contact-grid, .val-options, .form-grid { grid-template-columns: 1fr; gap: 40px; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .stats-row .stat { padding: 32px 20px; }
    .stat-number { font-size: 42px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-credentials { display: none; }
    footer { padding: 40px 20px 24px; }
    .hero-title { font-size: clamp(36px, 10vw, 56px); }
    .hero-subtitle { letter-spacing: 0.05em; }
    .service-card, .team-card, .val-option { padding: 32px 24px; }
  }

  @media (max-width: 480px) {
    nav { padding: 0 16px; }
    section { padding: 88px 16px 48px; }
    #home { padding: 64px 16px 32px; }
    .hero-title { font-size: clamp(28px, 9vw, 40px); }
    .hero-subtitle { font-size: clamp(13px, 1.8vw, 18px); letter-spacing: 0.05em; }
    .section-title { font-size: clamp(28px, 8vw, 40px); }
    .btn-primary, .btn-outline {
      padding: 14px 32px;
      font-size: 16px;
      min-height: 48px;
    }
    .hero-btns { flex-direction: column; width: 100%; }
    .hero-btns .btn-primary,
    .hero-btns .btn-outline { width: 100%; justify-content: center; }
    .stats-row { grid-template-columns: 1fr; }
    .memberships { flex-direction: column; padding: 32px 24px; gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

  /* ── SUCCESS MESSAGE ── */
  .success-msg {
    display: none;
    background: rgba(184,152,106,0.1);
    border: 1px solid var(--gold);
    padding: 20px 24px;
    color: var(--gold);
    font-size: 15px;
    margin-top: 16px;
    letter-spacing: 0.05em;
  }
