*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #1B2A4A;
    --navy-deep: #0D1825;
    --navy-mid: #243760;
    --gold: #B8960C;
    --gold-light: #D4AE3A;
    --gold-pale: #F5ECC8;
    --cream: #FDFAF5;
    --cream-dark: #F2EDE2;
    --text-primary: #1B2A4A;
    --text-secondary: #4A5568;
    --text-muted: #8A94A6;
    --white: #FFFFFF;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Source Serif 4', Georgia, serif;
    background: var(--cream);
    color: var(--text-primary);
    overflow-x: hidden;
  }

  /* ─── NAVIGATION ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 3rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(13, 24, 37, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 150, 12, 0.2);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }

  .nav-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: contain;
    flex-shrink: 0;
    background: #fff;
    padding: 2px;
    box-shadow: 0 0 0 1.5px rgba(184,150,12,0.55);
  }

  .nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.08em;
    line-height: 1.2;
  }

  .nav-brand span {
    display: block;
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 0.18em;
    font-weight: 400;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Source Serif 4', serif;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gold-light); }

  .nav-cta {
    padding: 8px 22px;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    border-radius: 1px;
    transition: background 0.2s, color 0.2s !important;
    font-size: 12px !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase;
  }

  .nav-cta:hover {
    background: var(--gold) !important;
    color: var(--navy-deep) !important;
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    background: var(--navy-deep);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .hero-texture {
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(
        0deg,
        transparent,
        transparent 60px,
        rgba(184, 150, 12, 0.03) 60px,
        rgba(184, 150, 12, 0.03) 61px
      ),
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent 60px,
        rgba(184, 150, 12, 0.03) 60px,
        rgba(184, 150, 12, 0.03) 61px
      );
  }

  .hero-glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184,150,12,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-gold-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
    opacity: 0.6;
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 3rem 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .hero-left { animation: fadeUp 1s ease both; }

  .hero-credential-bar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
    padding: 6px 16px 6px 6px;
    border: 1px solid rgba(184,150,12,0.3);
    border-radius: 2px;
    animation: fadeUp 1s ease 0.1s both;
  }

  .hero-credential-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .hero-credential-text {
    font-family: 'Source Serif 4', serif;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    animation: fadeUp 1s ease 0.15s both;
  }

  .hero-headline em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 1.5rem 0;
    animation: expandWidth 1s ease 0.4s both;
  }

  @keyframes expandWidth {
    from { width: 0; opacity: 0; }
    to { width: 60px; opacity: 1; }
  }

  .hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    margin-bottom: 2.5rem;
    animation: fadeUp 1s ease 0.25s both;
  }

  .hero-tagline strong {
    color: var(--gold-light);
    font-style: normal;
    font-weight: 500;
  }

  .hero-sub {
    font-family: 'Source Serif 4', serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 3rem;
    animation: fadeUp 1s ease 0.3s both;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 1s ease 0.4s both;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--navy-deep);
    font-family: 'Source Serif 4', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 1px;
    transition: background 0.2s, transform 0.15s;
  }

  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.8);
    font-family: 'Source Serif 4', serif;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 1px;
    transition: border-color 0.2s, color 0.2s;
  }

  .btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold-light);
  }

  .hero-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeUp 1s ease 0.3s both;
  }

  .hero-seal-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(184,150,12,0.2);
    border-radius: 2px;
    padding: 2rem;
    text-align: center;
  }

  .hero-seal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
  }

  .hero-seal-name {
    font-family: 'Pinyon Script', cursive;
    font-size: 42px;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero-logo-wrap {
    display: flex;
    justify-content: center;
    margin: 1rem 0 1.25rem;
  }
  .hero-logo-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: contain;
    background: rgba(255,255,255,0.97);
    padding: 6px;
    box-shadow: 0 0 0 1px rgba(184,150,12,0.35), 0 4px 24px rgba(0,0,0,0.3);
  }

  .hero-seal-credentials {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.08em;
    line-height: 2;
  }

  .hero-seal-credentials strong {
    color: var(--gold);
    font-weight: 500;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .hero-stat {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(184,150,12,0.15);
    border-radius: 2px;
    padding: 1.25rem;
    text-align: center;
  }

  .hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 4px;
  }

  .hero-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* ─── TRUST BAR ─── */
  /* ─── TRUST BAR ─── */
  .trust-bar {
    background: var(--navy-deep);
    border-top: 1px solid rgba(184,150,12,0.3);
    border-bottom: 1px solid rgba(184,150,12,0.3);
    padding: 0;
    overflow: hidden;
    position: relative;
  }
  .trust-bar::before,
  .trust-bar::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
  }
  .trust-bar::before {
    left: 0;
    background: linear-gradient(to right, var(--navy-deep), transparent);
  }
  .trust-bar::after {
    right: 0;
    background: linear-gradient(to left, var(--navy-deep), transparent);
  }
  .trust-bar-track {
    display: flex;
    align-items: center;
    gap: 0;
    animation: trust-scroll 40s linear infinite;
    width: max-content;
    padding: 0;
  }
  .trust-bar:hover .trust-bar-track {
    animation-play-state: paused;
  }
  @keyframes trust-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .trust-logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    border-right: 1px solid rgba(184,150,12,0.15);
    flex-shrink: 0;
    text-decoration: none;
    transition: background 0.2s;
    cursor: default;
  }
  a.trust-logo-item:hover {
    background: rgba(184,150,12,0.06);
    cursor: pointer;
  }
  .trust-logo-img {
    height: 28px;
    width: auto;
    max-width: 40px;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.9;
  }
  .trust-logo-img--blend {
    mix-blend-mode: screen;
    filter: brightness(0.9);
  }
  .trust-logo-img--bg {
    border-radius: 4px;
    padding: 3px 6px;
    height: 22px;
  }
  .trust-logo-name {
    font-family: 'Source Serif 4', serif;
    font-size: 11px;
    letter-spacing: 0.08em;
    white-space: nowrap;
    font-weight: 300;
  }

  /* ─── SERVICES ─── */
  .section {
    padding: 7rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-label {
    font-family: 'Source Serif 4', serif;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .section-title em { font-style: italic; color: var(--gold); }

  .section-intro {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 600px;
    margin-bottom: 3.5rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(27,42,74,0.1);
  }

  .service-card {
    background: var(--cream);
    padding: 2.5rem 2rem;
    position: relative;
    transition: background 0.3s;
    cursor: default;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .service-card:hover { background: var(--white); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: rgba(184,150,12,0.15);
    line-height: 1;
    margin-bottom: 1rem;
  }

  .service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }

  .service-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
  }

  /* ─── LANGUAGES ─── */
  .languages-section {
    background: var(--navy);
    padding: 5rem 3rem;
  }

  .languages-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .languages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
  }

  .lang-pill {
    padding: 8px 20px;
    border: 1px solid rgba(184,150,12,0.3);
    color: rgba(255,255,255,0.7);
    font-family: 'Source Serif 4', serif;
    font-size: 13px;
    letter-spacing: 0.06em;
    border-radius: 1px;
    transition: border-color 0.2s, color 0.2s;
  }

  .lang-pill:hover {
    border-color: var(--gold);
    color: var(--gold-light);
  }

  /* ─── ABOUT ─── */
  .about-section {
    background: var(--cream-dark);
    padding: 7rem 3rem;
  }

  .about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .about-photo-wrap {
    position: relative;
  }

  .about-photo-frame {
    position: relative;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid rgba(184,150,12,0.2);
  }

  .about-photo-frame::before {
    content: '';
    position: absolute;
    top: -8px; left: -8px;
    right: 8px; bottom: 8px;
    border: 1px solid rgba(184,150,12,0.3);
    z-index: 0;
  }

  .about-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  .about-photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-deep) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
  }

  .about-photo-name {
    font-family: 'Pinyon Script', cursive;
    font-size: 52px;
    color: var(--gold-light);
    text-align: center;
    line-height: 1.2;
    padding: 0 1rem;
  }

  .about-photo-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
  }

  .about-credential-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 1rem 1.25rem;
    text-align: center;
    z-index: 2;
  }

  .about-credential-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    display: block;
  }

  .about-credential-label {
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-top: 3px;
  }

  .about-content { }

  .about-real-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    display: block;
    position: relative;
    z-index: 1;
  }

  .about-calligraphy {
    font-family: 'Pinyon Script', cursive;
    font-size: 56px;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }

  .about-title-line {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2rem;
  }

  .about-text {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }

  .about-credentials-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .about-cred-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
  }

  .about-cred-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 6px;
  }

  /* ─── QUOTE SECTION ─── */
  .quote-section {
    background: var(--navy-deep);
    padding: 6rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .quote-section::before {
    content: '"';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 400px;
    color: rgba(184,150,12,0.04);
    line-height: 1;
    pointer-events: none;
  }

  .quote-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .quote-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 2rem;
  }

  .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .quote-text strong {
    color: var(--gold-light);
    font-style: normal;
    font-weight: 500;
  }

  .quote-attribution {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  /* ─── CONTACT FORM ─── */
  .contact-section {
    padding: 7rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }

  .contact-info { }

  .contact-intro {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .contact-detail-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(184,150,12,0.3);
    border-radius: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
  }

  .contact-detail-content { }

  .contact-detail-label {
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 3px;
  }

  .contact-detail-value {
    font-size: 15px;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s;
  }

  .contact-detail-value:hover { color: var(--gold); }

  .contact-form { }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-label {
    display: block;
    font-family: 'Source Serif 4', serif;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(27,42,74,0.15);
    border-radius: 1px;
    background: var(--white);
    font-family: 'Source Serif 4', serif;
    font-size: 15px;
    color: var(--navy);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
  }

  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,150,12,0.08);
  }

  .form-textarea {
    resize: vertical;
    min-height: 120px;
  }

  .form-submit {
    width: 100%;
    padding: 15px;
    background: var(--navy);
    color: var(--white);
    font-family: 'Source Serif 4', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    border-radius: 1px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
  }

  .form-submit:hover { background: var(--gold); color: var(--navy-deep); }

  .form-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.75rem;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--navy-deep);
    padding: 4rem 3rem 2rem;
    border-top: 1px solid rgba(184,150,12,0.2);
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(184,150,12,0.15);
  }

  .footer-brand { }

  .footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.5rem;
  }

  .footer-brand-title {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
  }

  .footer-brand-desc {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    max-width: 320px;
  }

  .footer-col-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.03em;
  }

  .footer-links a:hover { color: var(--gold-light); }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-copyright {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.05em;
  }

  .footer-credential {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.08em;
  }

  /* ─── WHATSAPP BUTTON ─── */
  .whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .whatsapp-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  }

  .whatsapp-btn svg { width: 28px; height: 28px; fill: white; }

  /* ─── LANGUAGE TOGGLE ─── */
  .lang-toggle {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 1rem;
    border: 1px solid rgba(184,150,12,0.35);
    border-radius: 2px;
    overflow: hidden;
  }
  .lang-btn {
    padding: 5px 10px;
    font-family: 'Source Serif 4', serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
  }
  .lang-btn.active {
    background: var(--gold);
    color: var(--navy-deep);
  }
  .lang-btn:hover:not(.active) { color: var(--gold-light); }

  /* ─── FAQ ─── */
  .faq-section {
    background: var(--cream-dark);
    padding: 7rem 3rem;
  }
  .faq-inner {
    max-width: 860px;
    margin: 0 auto;
  }
  .faq-header { margin-bottom: 3.5rem; }
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(27,42,74,0.1);
  }
  .faq-item {
    border-bottom: 1px solid rgba(27,42,74,0.1);
  }
  .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.75rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.3;
    transition: color 0.2s;
  }
  .faq-question:hover { color: var(--gold); }
  .faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(184,150,12,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    font-weight: 300;
    transition: transform 0.3s, background 0.2s;
    line-height: 1;
  }
  .faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--gold);
    color: var(--navy-deep);
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }
  .faq-item.open .faq-answer { max-height: 800px; padding-bottom: 1.75rem; }
  .faq-answer p {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.85;
    border-left: 2px solid var(--gold);
    padding-left: 1.25rem;
  }

  /* ─── REVIEWS ─── */
  .reviews-section {
    background: var(--navy);
    padding: 7rem 3rem;
  }
  .reviews-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .reviews-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  .reviews-stars-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 1rem 0 0.5rem;
    color: var(--gold);
    font-size: 22px;
    letter-spacing: 2px;
  }
  .reviews-score {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
  }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(184,150,12,0.12);
  }
  .review-card {
    background: rgba(255,255,255,0.03);
    padding: 2.25rem 2rem;
    position: relative;
    transition: background 0.3s;
  }
  .review-card:hover { background: rgba(255,255,255,0.055); }
  .review-card::before {
    content: '"';
    position: absolute;
    top: 1rem; right: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    color: rgba(184,150,12,0.1);
    line-height: 1;
    pointer-events: none;
  }
  .review-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 1rem;
  }
  .review-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }
  .review-author {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-deep);
    flex-shrink: 0;
  }
  .review-name {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.06em;
  }
  .review-source {
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 2px;
  }
  .reviews-cta {
    text-align: center;
    margin-top: 3rem;
  }
  .reviews-cta a {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }
  .reviews-cta a:hover { color: var(--gold-light); border-color: var(--gold); }

  @media (max-width: 900px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .faq-section { padding: 5rem 1.5rem; }
    .reviews-section { padding: 5rem 1.5rem; }
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ─── CREDENTIALS STRIP ─── */
  .cred-strip {
    background: var(--cream-dark);
    border-top: 1px solid rgba(184,150,12,0.15);
    border-bottom: 1px solid rgba(184,150,12,0.15);
    padding: 4rem 3rem 4.5rem;
  }
  .cred-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .cred-strip-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 3rem;
  }
  .cred-strip-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem 4rem;
  }
  .cred-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Fixed box so all logos take same visual space */
    width: 130px;
    height: 80px;
    flex-shrink: 0;
    opacity: 0.6;
    filter: grayscale(30%);
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
    text-decoration: none;
  }
  .cred-logo-link:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-3px);
  }
  .cred-logo-img {
    max-width: 130px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  /* Logos that need a colored background (Goethe green, Berlitz blue) */
  .cred-logo-img--bg {
    border-radius: 8px;
    padding: 8px 14px;
    max-width: 120px;
    max-height: 72px;
  }
  /* TSJ has white bg — blend on cream */
  .cred-logo-img--blend {
    mix-blend-mode: multiply;
  }
  @media (max-width: 900px) {
    .cred-strip { padding: 3rem 1.5rem; }
    .cred-strip-logos { gap: 2rem 2.5rem; }
    .cred-logo-link { width: 100px; height: 64px; }
    .cred-logo-img { max-width: 100px; max-height: 64px; }
  }
  @media (max-width: 500px) {
    .cred-logo-link { width: 80px; height: 52px; }
    .cred-logo-img { max-width: 80px; max-height: 52px; }
    .cred-strip-logos { gap: 1.5rem 2rem; }
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    nav { padding: 0 1.5rem; }
    .nav-links { display: none; }
    .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding: 120px 1.5rem 60px; }
    .hero-right { display: none; }
    .section { padding: 5rem 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .about-inner { grid-template-columns: 1fr; gap: 3rem; }
    .contact-section { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .languages-section { padding: 4rem 1.5rem; }
    .about-section { padding: 5rem 1.5rem; }
    .quote-section { padding: 5rem 1.5rem; }
  }