:root {
    --bone: #f5f1ea;
    --bone-deep: #ebe4d4;
    --ivory: #faf6ee;
    --ink: #1a3a52;
    --ink-soft: #2b4a62;
    --ink-mute: #6b7c8a;
    --gold: #b89968;
    --gold-deep: #8a7148;
    --urgent: #c4452f;
    --urgent-soft: #d4604a;
    --line: rgba(26, 58, 82, 0.12);

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Manrope', -apple-system, sans-serif;
  }

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

  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bone);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* Accessibility */
  .skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 200;
    background: var(--ink);
    color: var(--ivory);
    padding: 12px 20px;
    text-decoration: none;
    font-size: 14px;
  }
  .skip-link:focus {
    left: 16px;
    top: 16px;
  }
  :focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }
  a, button { -webkit-tap-highlight-color: rgba(184, 153, 104, 0.2); }

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

  /* ========== URGENT BAR (sticky top) ========== */
  .urgent-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--ink);
    color: var(--ivory);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(184, 153, 104, 0.25);
  }
  .urgent-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .urgent-status {
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.04em;
  }
  .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--urgent-soft);
    position: relative;
    flex-shrink: 0;
  }
  .pulse-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid var(--urgent-soft);
    opacity: 0.6;
    animation: pulse 2s ease-out infinite;
  }
  @keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
  }
  .urgent-phone {
    color: var(--ivory);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }
  .urgent-phone:hover { color: var(--gold); }

  /* ========== NAV ========== */
  nav {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    font-variation-settings: 'opsz' 48, 'SOFT' 50;
    letter-spacing: -0.01em;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 10px;
  }
  .logo-mark {
    display: inline-block;
    width: 22px;
    height: 22px;
    transform: translateY(4px);
  }
  .logo em {
    font-style: italic;
    color: var(--gold-deep);
    font-weight: 300;
  }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
  }
  .nav-links a {
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: -6px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-cta {
    background: var(--ink);
    color: var(--ivory) !important;
    padding: 10px 22px;
    border-radius: 2px;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.2s;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--gold-deep); color: var(--ivory) !important; }

  /* ========== HERO ========== */
  .hero {
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
  }
  .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
    position: relative;
  }
  .hero-eyebrow {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    opacity: 0;
    animation: fadeUp 0.8s 0.1s forwards;
  }
  .hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
  }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 86px);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--ink);
    font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 1;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.9s 0.2s forwards;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold-deep);
    font-weight: 300;
    font-variation-settings: 'opsz' 144, 'SOFT' 80, 'WONK' 1;
  }
  .hero-sub {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.6;
    max-width: 460px;
    margin-bottom: 44px;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.9s 0.35s forwards;
  }
  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s 0.5s forwards;
  }
  .btn-primary {
    background: var(--ink);
    color: var(--ivory);
    padding: 18px 32px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 14px;
  }
  .btn-primary:hover {
    background: var(--gold-deep);
    border-color: var(--gold-deep);
  }
  .btn-primary svg { transition: transform 0.3s; }
  .btn-primary:hover svg { transform: translateX(4px); }

  .btn-emergency {
    background: transparent;
    color: var(--urgent);
    padding: 18px 32px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid var(--urgent);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .btn-emergency:hover {
    background: var(--urgent);
    color: var(--ivory);
  }
  .btn-emergency .dot {
    width: 7px;
    height: 7px;
    background: var(--urgent);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
  }
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  /* ========== HERO VISUAL ========== */
  .hero-visual {
    position: relative;
    aspect-ratio: 5/4;
    opacity: 0;
    animation: fadeIn 1.2s 0.4s forwards;
  }
  .hero-visual-frame {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    filter: contrast(1.02) saturate(0.95);
  }
  .hero-gold-line {
    position: absolute;
    top: -20px; left: -20px;
    width: 60%;
    height: 1px;
    background: var(--gold);
  }
  .hero-gold-line.v {
    top: -20px; left: -20px;
    width: 1px;
    height: 30%;
  }
  .hero-gold-line.br {
    bottom: -20px; right: -20px;
    width: 40%;
    height: 1px;
    top: auto; left: auto;
  }
  .hero-gold-line.brv {
    bottom: -20px; right: -20px;
    width: 1px;
    height: 25%;
    top: auto; left: auto;
  }
  .hero-floating-card {
    position: absolute;
    bottom: -40px;
    left: -40px;
    background: var(--ivory);
    padding: 24px 32px;
    border: 1px solid var(--line);
    max-width: 280px;
    box-shadow: 0 30px 80px rgba(26, 58, 82, 0.12);
  }
  .floating-card-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-deep);
    margin-bottom: 8px;
    font-weight: 500;
  }
  .floating-card-text {
    font-family: var(--font-display);
    font-size: 19px;
    line-height: 1.25;
    color: var(--ink);
    font-weight: 300;
    font-variation-settings: 'opsz' 36;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* ========== TRUST STRIP ========== */
  .trust {
    background: var(--ivory);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
  }
  .trust-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .trust-icon {
    width: 28px;
    height: 28px;
    color: var(--gold-deep);
    flex-shrink: 0;
  }
  .trust-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-mute);
    margin-bottom: 2px;
  }
  .trust-value {
    font-size: 14px;
    color: var(--ink);
    font-weight: 500;
  }

  /* ========== SECTION COMMONS ========== */
  section { padding: 120px 0; }
  .section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .section-eyebrow {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
  }
  .section-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--ink);
    font-variation-settings: 'opsz' 96, 'SOFT' 40;
    margin-bottom: 24px;
    max-width: 760px;
  }
  .section-title em {
    font-style: italic;
    color: var(--gold-deep);
  }
  .section-intro {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 600px;
    margin-bottom: 60px;
    font-weight: 300;
    line-height: 1.65;
  }

  /* ========== SERVICES ========== */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }
  .service-card {
    padding: 48px 36px 56px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--ivory);
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .service-card:hover {
    background: var(--bone-deep);
  }
  .service-link {
    display: inline-block;
    margin-top: 24px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 500;
    transition: transform 0.3s;
  }
  .service-card:hover .service-link {
    transform: translateX(4px);
  }
  .service-number {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--gold-deep);
    letter-spacing: 0.08em;
    margin-bottom: 28px;
    font-style: italic;
    font-weight: 400;
  }
  .service-title {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--ink);
    margin-bottom: 16px;
    font-weight: 400;
    line-height: 1.2;
    font-variation-settings: 'opsz' 48, 'SOFT' 30;
  }
  .service-desc {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.6;
    font-weight: 300;
  }
  .service-card.urgent {
    background: var(--ink);
    color: var(--ivory);
  }
  .service-card.urgent .service-title { color: var(--ivory); }
  .service-card.urgent .service-desc { color: rgba(245, 241, 234, 0.75); }
  .service-card.urgent .service-number {
    color: var(--urgent-soft);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .service-card.urgent .service-number::after {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--urgent-soft);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
  }
  .service-card.urgent:hover { background: #15324a; }
  .service-card.urgent .service-phone {
    display: inline-block;
    margin-top: 18px;
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--gold);
    font-variation-settings: 'opsz' 60, 'SOFT' 50;
    font-weight: 400;
    letter-spacing: -0.01em;
  }
  .service-card.urgent:hover .service-phone { color: var(--ivory); }

  /* ========== ABOUT ========== */
  .about {
    background: var(--ivory);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }
  .about-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
  }
  .about-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(0.1) contrast(1.05);
  }
  .about-img::before {
    content: '';
    position: absolute;
    top: 20px; left: 20px;
    right: -20px; bottom: -20px;
    border: 1px solid var(--gold);
    z-index: -1;
  }
  .about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 24px;
    font-variation-settings: 'opsz' 96, 'SOFT' 40;
  }
  .about-content h2 em {
    font-style: italic;
    color: var(--gold-deep);
  }
  .about-content p {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.75;
    margin-bottom: 20px;
    font-weight: 300;
  }
  .about-quote {
    font-family: var(--font-display);
    font-size: 22px;
    font-style: italic;
    color: var(--ink);
    line-height: 1.45;
    padding: 28px 0 28px 32px;
    border-left: 2px solid var(--gold);
    margin: 32px 0;
    font-weight: 300;
    font-variation-settings: 'opsz' 60, 'SOFT' 80;
  }

  /* ========== TEAM ========== */
  .team {
    padding: 120px 0 140px;
  }
  .team-feature {
    margin-bottom: 80px;
    position: relative;
  }
  .team-feature-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 60px;
    max-height: 540px;
  }
  .team-feature-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 25%;
  }
  .team-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }
  .team-member-name {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--ink);
    margin-bottom: 6px;
    font-weight: 400;
    line-height: 1.2;
    font-variation-settings: 'opsz' 48, 'SOFT' 40;
  }
  .team-member-role {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-deep);
    margin-bottom: 16px;
    font-weight: 500;
  }
  .team-member-phone {
    font-size: 15px;
    color: var(--ink-soft);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
  }
  .team-member-phone:hover { color: var(--ink); }
  .team-member-phone svg { width: 14px; height: 14px; opacity: 0.6; }

  /* ========== TESTIMONIALS ========== */
  .testimonials {
    background: var(--ink);
    color: var(--ivory);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
  }
  .testimonials::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .testimonials .section-eyebrow {
    color: var(--gold);
  }
  .testimonials .section-eyebrow::before {
    background: var(--gold);
  }
  .testimonials .section-title {
    color: var(--ivory);
  }
  .testimonials .section-title em {
    color: var(--gold);
  }
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 60px;
    border-top: 1px solid rgba(184, 153, 104, 0.2);
    border-left: 1px solid rgba(184, 153, 104, 0.2);
  }
  .testimonial-card {
    padding: 48px 40px 56px;
    border-right: 1px solid rgba(184, 153, 104, 0.2);
    border-bottom: 1px solid rgba(184, 153, 104, 0.2);
  }
  .testimonial-quote {
    font-family: var(--font-display);
    font-size: 19px;
    line-height: 1.55;
    color: var(--ivory);
    margin-bottom: 28px;
    font-weight: 300;
    font-variation-settings: 'opsz' 36;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(245, 241, 234, 0.6);
    letter-spacing: 0.06em;
  }
  .testimonial-stars {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 12px;
  }
  .testimonial-rating {
    text-align: center;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(184, 153, 104, 0.2);
  }
  .testimonial-rating-num {
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--gold);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.04em;
    font-variation-settings: 'opsz' 144, 'SOFT' 30;
  }
  .testimonial-rating-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(245, 241, 234, 0.6);
    margin-top: 12px;
  }

  /* ========== CONTACT ========== */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--line);
  }
  .contact-info {
    padding: 64px 56px;
    background: var(--ivory);
    border-right: 1px solid var(--line);
  }
  .contact-map {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
  }
  .contact-map iframe {
    width: 100%; height: 100%;
    border: none;
    filter: grayscale(0.2) contrast(0.95);
  }
  .contact-block {
    margin-bottom: 36px;
  }
  .contact-block:last-child { margin-bottom: 0; }
  .contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-deep);
    margin-bottom: 10px;
    font-weight: 500;
  }
  .contact-value {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--ink);
    line-height: 1.35;
    font-weight: 400;
    font-variation-settings: 'opsz' 36;
  }
  .contact-value a {
    color: var(--ink);
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-value a:hover { color: var(--gold-deep); }
  .contact-value.urgent a { color: var(--urgent); }
  .contact-value.urgent a:hover { color: var(--gold-deep); }
  .schedule-line {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: var(--ink-soft);
    padding: 6px 0;
    border-bottom: 1px solid var(--line);
  }
  .schedule-line:last-child { border-bottom: none; }
  .schedule-line.emergency {
    color: var(--urgent);
    font-weight: 500;
  }

  /* ========== FOOTER ========== */
  footer {
    background: var(--ink);
    color: rgba(245, 241, 234, 0.7);
    padding: 80px 0 32px;
    font-size: 14px;
  }
  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(184, 153, 104, 0.2);
  }
  .footer-logo {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--ivory);
    font-weight: 300;
    margin-bottom: 16px;
    font-variation-settings: 'opsz' 48;
  }
  .footer-logo em {
    font-style: italic;
    color: var(--gold);
  }
  .footer-tag {
    font-size: 14px;
    color: rgba(245, 241, 234, 0.6);
    line-height: 1.6;
    max-width: 320px;
  }
  .footer-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
  }
  .footer-col ul {
    list-style: none;
  }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    color: rgba(245, 241, 234, 0.7);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 14px;
  }
  .footer-col a:hover { color: var(--ivory); }
  .footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(245, 241, 234, 0.4);
  }


  /* Full-width hero variant */
  .hero-fullwidth {
    padding: 80px 0 0 !important;
  }
  .hero-text-block {
    max-width: 1280px;
    margin: 0 auto 80px;
    padding: 0 32px;
    max-width: 900px;
    text-align: left;
  }
  .hero-text-block h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 6.5vw, 96px);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--ink);
    font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 1;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.9s 0.2s forwards;
  }
  .hero-text-block h1 em {
    font-style: italic;
    color: var(--gold-deep);
    font-weight: 300;
    font-variation-settings: 'opsz' 144, 'SOFT' 80, 'WONK' 1;
  }
  .hero-team-image {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    aspect-ratio: 16/9;
    max-height: 620px;
    opacity: 0;
    animation: fadeIn 1.2s 0.4s forwards;
  }
  .hero-team-image .hero-visual-frame {
    position: absolute;
    inset: 0 32px;
    overflow: hidden;
  }
  .hero-team-image .hero-img {
    object-position: center 35%;
  }
  .hero-team-image .hero-floating-card {
    position: absolute;
    bottom: -40px;
    right: 60px;
    left: auto;
  }

  /* ========== MOBILE ========== */
  @media (max-width: 1024px) {
    .hero-inner, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .services-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
    .team-list, .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .contact-info { border-right: none; border-bottom: 1px solid var(--line); }
    .nav-links { display: none; }
  }
  @media (max-width: 640px) {
    section { padding: 80px 0; }
    .hero { padding: 60px 0 100px; }
    .nav-inner, .hero-inner, .section-inner, .about-grid, .footer-inner, .urgent-bar-inner, .trust-inner {
      padding-left: 20px; padding-right: 20px;
    }
    .services-grid, .testimonial-grid, .team-list, .trust-inner, .footer-grid {
      grid-template-columns: 1fr;
    }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-emergency { width: 100%; justify-content: center; }
    .hero-floating-card { left: 0; bottom: -32px; }
    .urgent-bar { font-size: 12px; }
    .urgent-bar-inner { gap: 12px; }
    .contact-info { padding: 40px 28px; }
  }

  /* Logo mark — recreated tooth-with-instruments from his real logo */
  .logo-mark svg { width: 100%; height: 100%; }
/* ===== SERVICE PAGES ===== */
.breadcrumb {
  padding: 24px 0 0;
  background: var(--bone);
  font-size: 13px;
  color: var(--ink-mute);
}
.breadcrumb-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.03em;
}
.breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb [aria-current] {
  color: var(--ink);
  font-weight: 500;
}

.service-page {
  padding-top: 0;
}

.service-hero {
  padding: 80px 0 100px;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.service-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}
.service-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}
.service-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.service-h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 1;
  margin-bottom: 32px;
  max-width: 900px;
}
.service-h1 em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 300;
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'WONK' 1;
}
.service-lead {
  font-size: 20px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 720px;
  margin-bottom: 44px;
  font-weight: 300;
}
.service-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.service-body {
  padding: 100px 0;
  background: var(--ivory);
}
.service-body-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}
.service-body-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 56px 0 24px;
  font-variation-settings: 'opsz' 72, 'SOFT' 40;
}
.service-body-inner h2:first-child { margin-top: 0; }
.service-body-inner h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin: 40px 0 16px;
  font-variation-settings: 'opsz' 48, 'SOFT' 30;
}
.service-body-inner p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 16px;
  font-weight: 300;
}
.service-body-inner ul, .service-body-inner ol {
  margin: 16px 0 24px;
  padding-left: 24px;
}
.service-body-inner li {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 12px;
  font-weight: 300;
}
.service-body-inner li strong {
  color: var(--ink);
  font-weight: 500;
}
.service-body-inner .symptom-list {
  list-style: none;
  padding-left: 0;
}
.service-body-inner .symptom-list li {
  padding-left: 24px;
  position: relative;
}
.service-body-inner .symptom-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.info-box {
  background: var(--bone);
  border-left: 3px solid var(--gold);
  padding: 28px 32px;
  margin: 32px 0;
}
.info-box p {
  font-size: 16px;
  margin-bottom: 12px;
}
.info-box p:last-child { margin-bottom: 0; }

.treatment-steps {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
  margin: 32px 0;
}
.treatment-steps li {
  counter-increment: step;
  padding-left: 56px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.treatment-steps li:last-child { border-bottom: none; }
.treatment-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -2px;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 300;
}

.myth-block {
  background: var(--bone);
  padding: 32px;
  margin: 40px 0;
  border-radius: 0;
}
.myth-block p {
  font-size: 16px;
  margin-bottom: 12px;
}
.myth-block p strong {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  font-weight: 400;
  font-style: italic;
  display: block;
  margin-top: 20px;
  margin-bottom: 8px;
}
.myth-block p:first-child strong { margin-top: 0; }

.comparison-table {
  margin: 32px 0;
}
.comparison-row {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.comparison-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 10px;
}
.comparison-row p {
  margin-bottom: 0;
  font-size: 16px;
}

/* CTA block */
.service-cta-block {
  background: var(--ink);
  color: var(--ivory);
  padding: 100px 0;
  text-align: center;
  position: relative;
}
.service-cta-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.service-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin: 24px 0 20px;
  font-variation-settings: 'opsz' 96, 'SOFT' 40;
}
.cta-title em {
  font-style: italic;
  color: var(--gold);
}
.cta-sub {
  font-size: 17px;
  color: rgba(245, 241, 234, 0.7);
  margin-bottom: 48px;
  line-height: 1.6;
}
.cta-phones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(184, 153, 104, 0.25);
}
.cta-phone-link {
  padding: 28px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
  border-right: 1px solid rgba(184, 153, 104, 0.25);
}
.cta-phone-link:last-child { border-right: none; }
.cta-phone-link:hover {
  background: rgba(184, 153, 104, 0.08);
}
.cta-phone-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}
.cta-phone-num {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--ivory);
  font-weight: 400;
  font-variation-settings: 'opsz' 60;
}

/* Related services */
.related-services {
  padding: 100px 0;
  background: var(--bone);
}
.related-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 48px;
  color: var(--ink);
  font-variation-settings: 'opsz' 80, 'SOFT' 40;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.related-card {
  padding: 32px 28px;
  background: var(--ivory);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.3s;
  color: inherit;
  min-height: 140px;
  position: relative;
}
.related-card:hover {
  background: var(--bone-deep);
}
.related-cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-deep);
  margin-bottom: 4px;
}
.related-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.2;
  font-variation-settings: 'opsz' 48, 'SOFT' 30;
}
.related-arrow {
  position: absolute;
  bottom: 24px;
  right: 28px;
  color: var(--gold-deep);
  font-size: 20px;
  transition: transform 0.3s;
}
.related-card:hover .related-arrow {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .service-hero { padding: 50px 0 70px; }
  .service-body { padding: 60px 0; }
  .service-cta-block { padding: 60px 0; }
  .related-services { padding: 60px 0; }
  .related-grid { grid-template-columns: 1fr; }
  .cta-phones { grid-template-columns: 1fr; }
  .cta-phone-link {
    border-right: none;
    border-bottom: 1px solid rgba(184, 153, 104, 0.25);
  }
  .breadcrumb-inner, .service-hero-inner, .service-body-inner, .service-cta-inner {
    padding: 0 20px;
  }
  .service-cta-row { flex-direction: column; }
  .service-cta-row .btn-primary,
  .service-cta-row .btn-emergency { width: 100%; justify-content: center; }
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 80px 0 120px;
  background: var(--bone);
  min-height: 70vh;
}
.legal-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}
.legal-h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 1;
  margin-bottom: 16px;
}
.legal-h1 em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 300;
}
.legal-meta {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 60px;
}
.legal-section {
  margin-bottom: 48px;
}
.legal-section h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
  font-variation-settings: 'opsz' 60, 'SOFT' 40;
}
.legal-section p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 14px;
  font-weight: 300;
}
.legal-section ul, .legal-section ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-section li {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 10px;
  font-weight: 300;
}
.legal-section li strong {
  color: var(--ink);
  font-weight: 500;
}
.legal-section a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.legal-section a:hover { color: var(--ink); }

@media (max-width: 640px) {
  .legal-page { padding: 50px 0 80px; }
  .legal-inner { padding: 0 20px; }
}
