    /* --- Hero Section --- */
    .hero {
      position: relative;
      background: #1a1512;
      background-image:
        radial-gradient(ellipse 80% 60% at 100% 20%, oklch(0.35 0.15 20 / 0.6), transparent),
        radial-gradient(ellipse 60% 80% at 0% 80%, oklch(0.25 0.08 10 / 0.4), transparent);
      overflow: hidden;
      color: white;
      min-height: 85vh;
      display: flex;
      align-items: center;
    }
    
    /* Ice crystal decorative lines */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(135deg, oklch(0.9 0.02 30 / 0.05) 1px, transparent 1px),
        linear-gradient(225deg, oklch(0.9 0.02 30 / 0.05) 1px, transparent 1px);
      background-size: 80px 80px;
      pointer-events: none;
    }
    
    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-16);
      align-items: center;
      padding-block: var(--space-24);
      position: relative;
      z-index: 1;
    }
    
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: var(--space-2);
      font-size: var(--text-xs);
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-accent);
      margin-bottom: var(--space-4);
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 24px;
      height: 2px;
      background: var(--color-accent);
    }
    
    .hero-title {
      font-family: var(--font-display);
      font-size: var(--text-3xl);
      font-weight: 700;
      line-height: 1.05;
      color: #fff;
      margin-bottom: var(--space-6);
    }
    .hero-title em {
      font-style: italic;
      color: var(--color-ice);
    }
    .hero-title .highlight {
      display: block;
      color: var(--color-accent);
    }
    
    .hero-subtitle {
      font-size: var(--text-lg);
      color: oklch(0.88 0.01 50);
      max-width: 52ch;
      margin-bottom: var(--space-8);
      line-height: 1.55;
    }
    
    .hero-price-badge {
      display: inline-flex;
      align-items: center;
      gap: var(--space-3);
      background: oklch(0.9 0.06 30 / 0.18);
      border: 1px solid oklch(0.9 0.06 30 / 0.35);
      border-radius: var(--radius-lg);
      padding: var(--space-3) var(--space-5);
      margin-bottom: var(--space-8);
      backdrop-filter: blur(8px);
    }
    .hero-price-badge .price {
      font-family: var(--font-display);
      font-size: var(--text-xl);
      font-weight: 700;
      color: var(--color-accent);
    }
    .hero-price-badge .price-label {
      font-size: var(--text-sm);
      color: oklch(0.85 0.02 60);
      line-height: 1.3;
    }
    
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-3);
      margin-bottom: var(--space-8);
    }
    .btn-hero {
      background: var(--color-accent);
      color: #fff;
      font-size: var(--text-base);
      padding: var(--space-3) var(--space-8);
      border-radius: var(--radius-md);
      font-weight: 700;
      min-height: 52px;
      transition: all var(--transition);
      box-shadow: 0 4px 16px oklch(0.6 0.12 50 / 0.4);
    }
    .btn-hero:hover {
      background: var(--color-accent-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px oklch(0.6 0.12 50 / 0.5);
    }
    .btn-hero-secondary {
      background: oklch(1 0 0 / 0.12);
      color: #fff;
      border: 1.5px solid oklch(1 0 0 / 0.25);
      font-size: var(--text-base);
      padding: var(--space-3) var(--space-8);
      border-radius: var(--radius-md);
      min-height: 52px;
      transition: all var(--transition);
    }
    .btn-hero-secondary:hover { background: oklch(1 0 0 / 0.2); border-color: oklch(1 0 0 / 0.4); }
    
    .hero-langs {
      display: flex;
      align-items: center;
      gap: var(--space-2);
      font-size: var(--text-xs);
      color: oklch(0.75 0.02 40);
    }
    .lang-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--color-ice);
    }
    
    /* Hero visual side */
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .hero-emblem {
      width: 600px;
      height: 600px;
      position: relative;
    }
    
    /* Rotating ice ring */
    .ice-ring {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 2px solid oklch(0.9 0.08 20 / 0.2);
      animation: rotate-slow 20s linear infinite;
    }
    .ice-ring-2 {
      position: absolute;
      inset: 24px;
      border-radius: 50%;
      border: 1px dashed oklch(0.9 0.08 20 / 0.25);
      animation: rotate-slow 30s linear infinite reverse;
    }
    
    @keyframes rotate-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
    
    .hero-monogram {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .monogram-letters {
      font-family: var(--font-display);
      font-size: clamp(4rem, 8vw, 7rem);
      font-weight: 700;
      color: #fff;
      line-height: 1;
      text-shadow: 0 0 40px oklch(0.4 0.15 20 / 0.6);
    }
    .monogram-sub {
      font-size: var(--text-xs);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--color-accent);
      margin-top: var(--space-2);
    }
    
    /* Corner ice crystals */
    .ice-shard {
      position: absolute;
      width: 3px;
      background: linear-gradient(to bottom, var(--color-ice), transparent);
      transform-origin: bottom center;
      opacity: 0.6;
      animation: pulse-ice 3s ease-in-out infinite;
    }
    @keyframes pulse-ice { 0%,100%{opacity:0.4;} 50%{opacity:0.8;} }
    
    /* --- Stats Strip --- */
    .stats {
      background: var(--color-surface);
      border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.06);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .stat-item {
      padding: var(--space-8) var(--space-6);
      text-align: center;
      border-right: 1px solid oklch(from var(--color-text) l c h / 0.08);
      transition: background var(--transition);
    }
    .stat-item:last-child { border-right: none; }
    .stat-item:hover { background: var(--color-surface-offset); }
    .stat-number {
      font-family: var(--font-display);
      font-size: var(--text-2xl);
      font-weight: 700;
      color: var(--color-primary);
      line-height: 1;
      display: block;
    }
    .stat-label {
      font-size: var(--text-xs);
      color: var(--color-text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-top: var(--space-1);
      display: block;
    }
    
    /* --- Section Base --- */
    .section {
      padding-block: clamp(var(--space-12), 8vw, var(--space-24));
    }
    .section-eyebrow {
      font-size: var(--text-xs);
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--color-accent);
      margin-bottom: var(--space-3);
    }
    .section-title {
      font-family: var(--font-display);
      font-size: var(--text-2xl);
      font-weight: 700;
      color: var(--color-text);
      line-height: 1.15;
      margin-bottom: var(--space-4);
    }
    .section-subtitle {
      font-size: var(--text-base);
      color: var(--color-text-muted);
      max-width: 58ch;
      line-height: 1.7;
    }
    
    /* --- About Section --- */
    .about { background: var(--color-bg); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(var(--space-8), 6vw, var(--space-16));
      align-items: center;
    }
    .about-image {
      position: relative;
    }
    .about-image-card {
      background: linear-gradient(135deg, #1a1512, #8b0e0e);
      border-radius: var(--radius-xl);
      aspect-ratio: 4/5;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .about-image-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(135deg, oklch(0.9 0.02 30 / 0.07) 1px, transparent 1px),
        linear-gradient(225deg, oklch(0.9 0.02 30 / 0.07) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    .about-portrait-placeholder {
      position: relative;
      z-index: 1;
      text-align: center;
      color: #fff;
    }
    .about-portrait-placeholder .initial {
      font-family: var(--font-display);
      font-size: 8rem;
      font-weight: 700;
      line-height: 1;
      opacity: 0.9;
    }
    .about-portrait-placeholder .sub {
      font-size: var(--text-sm);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      opacity: 0.7;
      margin-top: var(--space-2);
    }
    
    .about-credential-badge {
      position: absolute;
      bottom: var(--space-4);
      left: 50%;
      transform: translateX(-50%);
      background: var(--color-surface);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      padding: var(--space-3) var(--space-5);
      display: flex;
      gap: var(--space-4);
      box-shadow: var(--shadow-md);
      white-space: nowrap;
    }
    .cred-item {
      text-align: center;
    }
    .cred-value {
      font-family: var(--font-display);
      font-size: var(--text-lg);
      font-weight: 700;
      color: var(--color-primary);
      display: block;
      line-height: 1;
    }
    .cred-label {
      font-size: var(--text-xs);
      color: var(--color-text-muted);
      display: block;
      margin-top: 2px;
    }
    
    .about-content {}
    .about-highlights {
      margin-top: var(--space-6);
      display: flex;
      flex-direction: column;
      gap: var(--space-4);
    }
    .highlight-item {
      display: flex;
      gap: var(--space-4);
      align-items: flex-start;
    }
    .highlight-icon {
      width: 36px;
      height: 36px;
      border-radius: var(--radius-md);
      background: var(--color-primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--color-primary);
    }
    .highlight-text h4 {
      font-size: var(--text-sm);
      font-weight: 700;
      color: var(--color-text);
      margin-bottom: 2px;
    }
    .highlight-text p {
      font-size: var(--text-sm);
      color: var(--color-text-muted);
    }
    
    /* --- Services Section --- */
    .services { background-image: url('https://attorneytonyliker.com/wp-content/uploads/2026/04/bg-bb-scaled.jpg');
  background-color: #f6f5f2; 
  background-size: cover;
  background-position: center bottom; 
  background-repeat: no-repeat;
  padding: 100px 20px;
  width: 100%;
  min-height: 400px; /* Optional: Sets a minimum height for the section */ }
    .services-grid {
      margin-top: var(--space-12);
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
      gap: var(--space-5);
    }

h2#services-title {
    color: #fff;
}

.services .section-subtitle {
    color: #ffffff !important;
}
    .service-card {
      background: var(--color-surface-2);
      border: 1px solid oklch(from var(--color-text) l c h / 0.07);
      border-radius: var(--radius-xl);
      padding: var(--space-8);
      transition: all var(--transition);
      position: relative;
      overflow: hidden;
    }
    .service-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #1a1512, #8b0e0e);
      opacity: 0;
      transition: opacity var(--transition);
    }
    .service-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
      border-color: oklch(from var(--color-primary) l c h / 0.2);
    }
    .service-card:hover::after { opacity: 1; }
    
    .service-icon {
      width: 48px;
      height: 48px;
      margin-bottom: var(--space-5);
      color: var(--color-primary);
    }
    [data-theme="dark"] .service-icon { color: #c04040; }
    
    .service-card h3 {
      font-family: var(--font-display);
      font-size: var(--text-lg);
      font-weight: 600;
      color: var(--color-text);
      margin-bottom: var(--space-3);
    }
    .service-card p {
      font-size: var(--text-sm);
      color: var(--color-text-muted);
      line-height: 1.65;
    }
    
    /* --- Why Tony Section --- */
    .why { background: #1a1512; color: #fff; position: relative; overflow: hidden; }
    .why::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(135deg, oklch(0.9 0.02 30 / 0.05) 1px, transparent 1px),
        linear-gradient(225deg, oklch(0.9 0.02 30 / 0.05) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }
    .why .section-eyebrow { color: var(--color-accent); }
    .why .section-title { color: #fff; }
    .why .section-subtitle { color: oklch(0.85 0.01 40); }
    
    .why-grid {
      margin-top: var(--space-12);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-6);
      position: relative;
      z-index: 1;
    }
    .why-card {
      background: oklch(1 0 0 / 0.06);
      border: 1px solid oklch(1 0 0 / 0.12);
      border-radius: var(--radius-xl);
      padding: var(--space-8);
      transition: all var(--transition);
      backdrop-filter: blur(8px);
    }
    .why-card:hover {
      background: oklch(1 0 0 / 0.1);
      transform: translateY(-4px);
      box-shadow: 0 12px 40px oklch(0 0 0 / 0.3);
    }
    .why-number {
      font-family: var(--font-display);
      font-size: clamp(3rem, 5vw, 4.5rem);
      font-weight: 700;
      color: oklch(1 0 0 / 0.12);
      line-height: 1;
      margin-bottom: var(--space-3);
    }
    .why-card h3 {
      font-family: var(--font-display);
      font-size: var(--text-lg);
      font-weight: 600;
      color: var(--color-accent);
      margin-bottom: var(--space-3);
    }
    .why-card p {
      font-size: var(--text-sm);
      color: oklch(0.82 0.01 40);
      line-height: 1.65;
    }
    
    /* --- Pricing Section --- */
    .pricing { background: var(--color-bg); }
    .pricing-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-12);
      align-items: center;
    }
    .pricing-card {
      background: var(--color-surface);
      border: 2px solid oklch(from var(--color-accent) l c h / 0.35);
      border-radius: var(--radius-xl);
      padding: var(--space-10);
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .pricing-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--color-accent), #8b0e0e);
    }
    .pricing-badge {
      display: inline-flex;
      align-items: center;
      gap: var(--space-1);
      background: var(--color-accent-light);
      color: var(--color-accent);
      font-size: var(--text-xs);
      font-weight: 700;
      text-transform:  inherit;
      letter-spacing: 0.1em;
      padding: var(--space-1) var(--space-3);
      border-radius: var(--radius-full);
      margin-bottom: var(--space-5);
    }
    .pricing-amount {
      display: flex;
      align-items: baseline;
      gap: var(--space-2);
      margin-bottom: var(--space-2);
    }
    .pricing-currency {
      font-family: var(--font-display);
      font-size: var(--text-xl);
      color: var(--color-text-muted);
    }
    .pricing-number {
      font-family: var(--font-display);
      font-size: var(--text-3xl);
      font-weight: 700;
      color: var(--color-primary);
      line-height: 1;
    }
    .pricing-note {
      font-size: var(--text-xs);
      color: var(--color-text-muted);
      margin-bottom: var(--space-6);
    }
    .pricing-features {
      display: flex;
      flex-direction: column;
      gap: var(--space-3);
      margin-bottom: var(--space-8);
    }
    .pricing-feature {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      font-size: var(--text-sm);
      color: var(--color-text);
    }
    .pricing-feature svg { color: var(--color-ice); flex-shrink: 0; }
    .pricing-payment-plan {
      background: var(--color-surface-offset);
      border-radius: var(--radius-lg);
      padding: var(--space-4);
      margin-bottom: var(--space-6);
    }
    .pricing-payment-plan p {
      font-size: var(--text-sm);
      color: var(--color-text-muted);
    }
    .pricing-payment-plan strong { color: var(--color-text); }
    
    .pricing-info {}
    .pricing-info h3 {
      font-family: var(--font-display);
      font-size: var(--text-xl);
      font-weight: 700;
      margin-bottom: var(--space-5);
    }
    .pricing-steps {
      display: flex;
      flex-direction: column;
      gap: var(--space-5);
    }
    .pricing-step {
      display: flex;
      gap: var(--space-4);
      align-items: flex-start;
    }
    .step-number {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: #1a1512;
      color: #fff;
      font-size: var(--text-sm);
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .step-content h4 {
      font-size: var(--text-sm);
      font-weight: 700;
      color: var(--color-text);
      margin-bottom: 2px;
    }
    .step-content p {
      font-size: var(--text-sm);
      color: var(--color-text-muted);
    }
    
    /* --- Areas Served --- */
    .areas {   background-image: url('https://attorneytonyliker.com/wp-content/uploads/2026/04/areaserbg.jpg');
  background-color: #f6f5f2; 
  background-size: cover;
  background-position: center bottom; 
  background-repeat: no-repeat;
  padding: 100px 20px;
  width: 100%;
  min-height: 400px; /* Optional: Sets a minimum height for the section */ }
    .areas-grid {
      margin-top: var(--space-10);
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
      gap: var(--space-4);
    }
    .area-chip {
      background: var(--color-surface-2);
      border: 1px solid oklch(from var(--color-text) l c h / 0.08);
      border-radius: var(--radius-lg);
      padding: var(--space-4) var(--space-5);
      display: flex;
      align-items: center;
      gap: var(--space-3);
      transition: all var(--transition);
    }
    .area-chip:hover { border-color: var(--color-primary); background: var(--color-primary-light); }
    .area-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--color-ice);
      flex-shrink: 0;
    }
    .area-name {
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--color-text);
    }
    .area-detail {
      font-size: var(--text-xs);
      color: var(--color-text-muted);
    }
    
    /* --- CTA Section --- */
    .cta-section {
      background: linear-gradient(135deg, #1a1512 0%, #2e0a0a 100%);
      color: #fff;
      text-align: center;
      padding-block: clamp(var(--space-16), 10vw, var(--space-24));
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        radial-gradient(ellipse 60% 60% at 30% 50%, oklch(0.35 0.15 20 / 0.35), transparent),
        radial-gradient(ellipse 40% 60% at 70% 50%, oklch(0.6 0.1 50 / 0.12), transparent);
      pointer-events: none;
    }
    .cta-content { position: relative; z-index: 1; }
    .cta-section .section-eyebrow { color: var(--color-accent); }
    .cta-title {
      font-family: var(--font-display);
      font-size: var(--text-2xl);
      font-weight: 700;
      color: #fff;
      margin-bottom: var(--space-4);
    }
    .cta-subtitle {
      font-size: var(--text-base);
      color: oklch(0.85 0.01 40);
      max-width: 52ch;
      margin-inline: auto;
      margin-bottom: var(--space-10);
    }
    .cta-actions {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: var(--space-4);
      margin-bottom: var(--space-8);
    }
    .btn-cta {
      background: var(--color-accent);
      color: #fff;
      font-size: var(--text-lg);
      font-weight: 700;
      padding: var(--space-4) var(--space-10);
      border-radius: var(--radius-md);
      min-height: 56px;
      transition: all var(--transition);
      box-shadow: 0 4px 20px oklch(0.6 0.12 50 / 0.5);
    }
    .btn-cta:hover { background: var(--color-accent-hover); transform: translateY(-2px); box-shadow: 0 8px 32px oklch(0.6 0.12 50 / 0.6); }
    .cta-contact-info {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: var(--space-8);
    }
    .cta-contact-item {
      display: flex;
      align-items: center;
      gap: var(--space-2);
      font-size: var(--text-sm);
      color: oklch(0.8 0.01 40);
    }
    .cta-contact-item svg { color: var(--color-accent); }
    
    /* --- Footer --- */
    footer {
      background: #0f0f0f;
      color: oklch(0.7 0.01 40);
      padding-block: var(--space-12);
    }
    .footer-inner {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: var(--space-8);
      flex-wrap: wrap;
    }
    .footer-brand .logo-name { color: oklch(0.85 0.02 40); }
    .footer-tagline {
      font-size: var(--text-xs);
      color: oklch(0.5 0.01 40);
      margin-top: var(--space-3);
      max-width: 36ch;
      line-height: 1.65;
    }
    .footer-links h4 {
      font-size: var(--text-xs);
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: oklch(0.55 0.01 40);
      margin-bottom: var(--space-3);
    }
    .footer-links ul { display: flex; flex-direction: column; gap: var(--space-2); }
    .footer-links a {
      font-size: var(--text-sm);
      color: oklch(0.65 0.01 40);
      transition: color var(--transition);
    }
    .footer-links a:hover { color: var(--color-accent); }
    .footer-bottom {
      margin-top: var(--space-10);
      padding-top: var(--space-6);
      border-top: 1px solid oklch(0.2 0.01 40);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: var(--space-4);
    }
    .footer-bottom p { font-size: var(--text-xs); color: oklch(0.45 0.01 40); }
    .footer-disclaimer { max-width: 60ch; }
    
    /* --- Scroll Reveal Animation --- */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    

    
    /* --- Responsive --- */
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; gap: var(--space-10); }
      .hero-visual { display: none; }
      .about-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr 1fr; }
      .pricing-inner { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2) { border-right: none; }
      .stat-item:nth-child(3) { border-right: 1px solid oklch(from var(--color-text) l c h / 0.08); border-top: 1px solid oklch(from var(--color-text) l c h / 0.08); }
      .stat-item:nth-child(4) { border-right: none; border-top: 1px solid oklch(from var(--color-text) l c h / 0.08); }
    }
    
    @media (max-width: 640px) {
      nav { display: none; }
      .menu-toggle { display: flex; }
      .hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }
      .why-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .cta-title { font-size: var(--text-xl); }
      .footer-inner { flex-direction: column; }
    }
    
    /* Mobile nav */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--color-bg);
      z-index: 99999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: var(--space-8);
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-family: var(--font-display);
      font-size: var(--text-2xl);
      font-weight: 700;
      color: var(--color-text);
      transition: color var(--transition);
    }
    .mobile-nav a:hover { color: var(--color-primary); }
    .mobile-nav-close {
      position: absolute;
      top: var(--space-6);
      right: var(--space-6);
      width: 44px; height: 44px;
      display: flex; align-items: center; justify-content: center;
      border-radius: var(--radius-md);
      color: var(--color-text-muted);
      transition: all var(--transition);
    }
    .mobile-nav-close:hover { background: var(--color-surface); color: var(--color-text); }
    

    /* Hero photo override */
    .hero-visual { display: flex !important; }
    @media (max-width: 768px) {
      /*.hero-visual { display: none !important; }*/
    }
    /* Hero emblem — photo version */
.hero-emblem img {
    /* animation: hero-float 4s ease-in-out infinite; */
    border-radius: 240px !important;
    width: 500px;
    height: 500px;
}
    @keyframes hero-float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-8px); }
    }
    /* DM Serif Display tweaks */
    .hero-title { letter-spacing: -0.02em; }
    .hero-title em { font-style: italic; }
    .section-title { letter-spacing: -0.015em; }
    .monogram-letters { font-family: var(--font-display); }

    /* Skip link */
    .skip-link {
      position: absolute;
      top: -100%;
      left: var(--space-4);
      background: #1a1512;
      color: #fff;
      padding: var(--space-2) var(--space-4);
      border-radius: var(--radius-md);
      font-size: var(--text-sm);
      font-weight: 600;
      z-index: 200;
      transition: top 0.2s;
    }
    .skip-link:focus { top: var(--space-4); }

    /* ── LANGUAGE TOGGLE ── */
    .lang-toggle-wrap {
      display: flex;
      align-items: center;
      gap: var(--space-1);
      background: oklch(from var(--color-text) l c h / 0.07);
      border-radius: var(--radius-full);
      padding: 3px;
      margin-right: var(--space-1);
    }
    .lang-btn {
      font-size: var(--text-xs);
      font-weight: 700;
      letter-spacing: 0.05em;
      padding: 4px 10px;
      border-radius: var(--radius-full);
      min-height: 30px;
      color: var(--color-text-muted);
      transition: all var(--transition);
      cursor: pointer;
    }
    .lang-btn.active {
      background: var(--color-maroon);
      color: #fff;
      box-shadow: var(--shadow-sm);
    }
    .lang-btn:hover:not(.active) { color: var(--color-text); background: oklch(from var(--color-text) l c h / 0.08); }

    /* ── CONTACT SECTION ── */
    .contact-section { background: var(--color-bg); }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(var(--space-8), 5vw, var(--space-16));
      align-items: start;
    }

    /* Contact Form */
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: var(--space-4);
      margin-top: var(--space-8);
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-4);
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: var(--space-2);
    }
    .form-group label {
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--color-text);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      background: var(--color-surface);
      border: 1.5px solid var(--color-border);
      border-radius: var(--radius-md);
      padding: var(--space-3) var(--space-4);
      font-size: var(--text-sm);
      color: var(--color-text);
      font-family: var(--font-body);
      transition: border-color var(--transition), box-shadow var(--transition);
      min-height: 44px;
      width: 100%;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: var(--color-text-faint); }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--color-maroon);
      box-shadow: 0 0 0 3px oklch(from var(--color-maroon) l c h / 0.15);
    }
    .form-group select {
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236a6057' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: var(--space-8);
    }
    .form-group textarea { min-height: 120px; resize: vertical; line-height: 1.6; }

    .btn-form-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-2);
      background: var(--color-maroon);
      color: #fff;
      font-size: var(--text-base);
      font-weight: 700;
      padding: var(--space-3) var(--space-8);
      border-radius: var(--radius-md);
      min-height: 52px;
      transition: all var(--transition);
      box-shadow: 0 4px 16px oklch(from var(--color-maroon) l c h / 0.35);
      cursor: pointer;
      border: none;
      font-family: var(--font-body);
    }
    .btn-form-submit:hover {
      background: var(--color-maroon-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px oklch(from var(--color-maroon) l c h / 0.45);
    }
    .btn-form-submit:active { transform: translateY(0); }

    .form-success {
      display: none;
      align-items: center;
      gap: var(--space-3);
      background: #e8f5e0;
      border: 1px solid #b8dca0;
      border-radius: var(--radius-md);
      padding: var(--space-3) var(--space-4);
      font-size: var(--text-sm);
      color: #2a5c10;
      font-weight: 600;
    }
    .form-success.visible { display: flex; }
    [data-theme="dark"] .form-success { background: #1a2f10; border-color: #2e5020; color: #7acc50; }

    /* Contact Info Column */
    .contact-cards {
      display: flex;
      flex-direction: column;
      gap: var(--space-3);
      margin-bottom: var(--space-6);
    }
    .contact-card {
      display: flex;
      align-items: center;
      gap: var(--space-4);
      background: var(--color-surface);
      border: 1px solid oklch(from var(--color-text) l c h / 0.07);
      border-radius: var(--radius-lg);
      padding: var(--space-4) var(--space-5);
      transition: all var(--transition);
      text-decoration: none;
    }
    a.contact-card:hover {
      border-color: oklch(from var(--color-maroon) l c h / 0.4);
      background: oklch(from var(--color-maroon) l c h / 0.04);
      transform: translateX(4px);
    }
    .contact-card-icon {
      width: 40px; height: 40px;
      border-radius: var(--radius-md);
      background: oklch(from var(--color-maroon) l c h / 0.1);
      color: var(--color-maroon);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contact-card-label {
      font-size: var(--text-xs);
      color: var(--color-text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 600;
      margin-bottom: 2px;
    }
    .contact-card-value {
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--color-text);
    }

    /* Map */
    .map-container { }
    .map-label {
      font-size: var(--text-xs);
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--color-text-muted);
      margin-bottom: var(--space-3);
    }
    .map-embed-wrapper {
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid oklch(from var(--color-text) l c h / 0.08);
      box-shadow: var(--shadow-sm);
      margin-bottom: var(--space-3);
    }
    .btn-directions {
      display: inline-flex;
      align-items: center;
      gap: var(--space-2);
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--color-maroon);
      border: 1.5px solid oklch(from var(--color-maroon) l c h / 0.3);
      border-radius: var(--radius-md);
      padding: var(--space-2) var(--space-4);
      transition: all var(--transition);
      min-height: 40px;
      text-decoration: none;
    }
    .btn-directions:hover {
      background: oklch(from var(--color-maroon) l c h / 0.08);
      border-color: var(--color-maroon);
    }

    /* Responsive contact grid */
    @media (max-width: 768px) {
      .contact-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
    }


    /* ═══════════════════════════════════════════════════════════
       CLEANER REFINEMENTS — v6
       Less clutter, more breathing room, Emergent-inspired clarity
    ═══════════════════════════════════════════════════════════ */

    /* ── Body & Base ── */
    body { letter-spacing: -0.01em; }

    /* ── Header: slimmer, more refined ── */
    .header-inner { padding-block: 0.875rem; }
    .logo-name { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em; }
    .logo-tagline { font-size: 0.65rem; letter-spacing: 0.12em; }

    /* ── Lang toggle refined ── */
    .lang-toggle-wrap {
      display: flex; align-items: center;
      gap: 2px;
      background: var(--color-surface-offset);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-full);
      padding: 3px;
    }
    .lang-btn {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
      padding: 4px 12px; border-radius: var(--radius-full);
      border: none; background: transparent;
      color: var(--color-text-muted); cursor: pointer;
      transition: all 160ms ease;
    }
    .lang-btn.active {
      background: var(--color-primary); color: #fff;
      box-shadow: 0 1px 4px rgba(12,53,87,0.25);
    }

    /* ── Hero: tighter, more dramatic ── */
    .hero { min-height: 90vh; }
    .hero-inner { padding-block: 5rem 4rem; gap: 4rem; }
    .hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.18em; margin-bottom: 1rem; }
    .hero-title { font-size: clamp(2.8rem, 5vw, 5.5rem); line-height: 1.02; margin-bottom: 1.25rem; font-weight: 700; }
    .hero-title em { font-style: italic; opacity: 0.9; }
    .hero-subtitle { font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.6; color: rgba(255,255,255,0.82); max-width: 46ch; margin-bottom: 1.75rem; }
    .hero-price-badge {
      margin-bottom: 1.75rem;
      border-radius: 0.5rem;
      padding: 0.625rem 1.125rem;
      gap: 0.75rem;
    }
    .hero-price-badge .price { font-size: 1.75rem; line-height: 1; }
    .hero-price-badge .price-label { font-size: 0.78rem; line-height: 1.4; }
    .hero-actions { gap: 0.75rem; margin-bottom: 1.5rem; }
    .btn-hero { font-size: 0.95rem; padding: 0.875rem 2rem; min-height: 48px; border-radius: 0.5rem; }
    .btn-hero-secondary { font-size: 0.95rem; padding: 0.875rem 2rem; min-height: 48px; }
    .hero-langs { font-size: 0.78rem; opacity: 0.7; }

    /* ── Stats: cleaner ── */
    .stat-number { font-size: clamp(1.6rem, 3vw, 2.75rem); }
    .stat-label { font-size: 0.7rem; letter-spacing: 0.1em; }
    .stat-item { padding: 1.5rem 1.25rem; }

    /* ── Section headers ── */
    .section-eyebrow { font-size: 0.68rem; letter-spacing: 0.18em; }
    .section-title { font-size: clamp(1.75rem, 3vw, 3rem); line-height: 1.1; }
    .section-subtitle { font-size: 1rem; line-height: 1.7; max-width: 54ch; color: var(--color-text-muted); }

    /* ── About: photo card cleaner ── */
    .about-image-card { border-radius: 0.75rem; box-shadow: var(--shadow-lg); }
    .about-credential-badge {
      padding: 0.625rem 1rem;
      border-radius: 0.625rem;
      gap: 1rem;
      bottom: 1rem;
    }
    .cred-value { font-size: 1.1rem; }
    .cred-label { font-size: 0.65rem; }
    .highlight-icon { width: 32px; height: 32px; border-radius: 0.375rem; }
    .highlight-text h4 { font-size: 0.9rem; }
    .highlight-text p { font-size: 0.875rem; line-height: 1.6; }

    /* ── Services: card spacing ── */
    .services-grid { gap: 1rem; margin-top: 2.5rem; }
    .service-card { padding: 1.75rem; border-radius: 0.75rem; }
    .service-card h3 { font-size: clamp(1.1rem, 1.5vw, 1.4rem); margin-bottom: 0.625rem; }
    .service-card p { font-size: 0.9rem; line-height: 1.65; }
    .service-icon { width: 40px; height: 40px; margin-bottom: 1.25rem; }

    /* ── Why section: cleaner dark cards ── */
    .why-card { padding: 1.75rem; border-radius: 0.75rem; }
    .why-card h3 { font-size: clamp(1.1rem, 1.5vw, 1.35rem); margin-bottom: 0.625rem; }
    .why-card p { font-size: 0.875rem; line-height: 1.65; }
    .why-number { font-size: clamp(2rem, 3vw, 3rem); margin-bottom: 0.5rem; }
    .why-grid { gap: 1rem; margin-top: 2.5rem; }

    /* ── Why quote strip: less noisy ── */
    .why .reveal[style*="display:flex"] {
      margin-top: 2rem !important;
      padding: 1.25rem 1.5rem !important;
      border-radius: 0.75rem !important;
    }

    /* ── Pricing: cleaner card ── */
    .pricing-card { padding: 2rem; border-radius: 0.875rem; }
    .pricing-number { font-size: clamp(2.5rem, 4vw, 3.5rem); }
    .pricing-currency { font-size: 1.5rem; }
    .pricing-note { font-size: 0.82rem; margin-bottom: 1.25rem; }
    .pricing-feature { font-size: 0.875rem; gap: 0.625rem; }
    .pricing-features { gap: 0.625rem; margin-bottom: 1.5rem; }
    .pricing-payment-plan { padding: 0.875rem 1rem; border-radius: 0.5rem; }
    .pricing-payment-plan p { font-size: 0.875rem; }
    .step-number { width: 28px; height: 28px; font-size: 0.8rem; }
    .step-content h4 { font-size: 0.9rem; }
    .step-content p { font-size: 0.875rem; }
    .pricing-steps { gap: 1.125rem; }

    /* ── Areas: chip spacing ── */
    .areas-grid { gap: 0.625rem; margin-top: 2rem; }
    .area-chip { padding: 0.75rem 1rem; border-radius: 0.625rem; gap: 0.625rem; }
    .area-name { font-size: 0.875rem; }
    .area-detail { font-size: 0.72rem; }

    /* ── Contact section: clean form ── */
    .contact-grid { gap: 2.5rem !important; }
    .contact-form-side, .contact-map-side { }

    /* ── CTA section ── */
    .cta-title { font-size: clamp(1.75rem, 3.5vw, 3rem); line-height: 1.1; }
    .cta-subtitle { font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }
    .btn-cta { font-size: 1rem; padding: 0.875rem 2.5rem; min-height: 52px; border-radius: 0.5rem; }
    .cta-contact-item { font-size: 0.875rem; }

    /* ── Footer: slim ── */
    footer { padding-block: 2.5rem 1.5rem; }
    .footer-tagline { font-size: 0.82rem; line-height: 1.6; max-width: 32ch; margin-top: 0.75rem; }
    .footer-links h4 { font-size: 0.65rem; margin-bottom: 0.625rem; }
    .footer-links a { font-size: 0.875rem; }
    .footer-bottom { margin-top: 2rem; padding-top: 1.25rem; }
    .footer-bottom p { font-size: 0.72rem; }

    /* ── Scrollbar refinement ── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--color-surface); }
    ::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 3px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--color-text-muted); }

    /* ── Section spacing reduced slightly ── */
    .section { padding-block: clamp(3rem, 6vw, 5rem) !important; }


    /* ── Form inputs clean ── */
    .cf-field { margin-bottom: 0; }
    .cf-field label {
      display: block; font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--color-text-muted); margin-bottom: 0.375rem;
    }
    .cf-field input,
    .cf-field select,
    .cf-field textarea {
      width: 100%; padding: 0.75rem 1rem;
      background: var(--color-surface-2);
      border: 1.5px solid var(--color-border);
      border-radius: 0.5rem;
      font-family: var(--font-body); font-size: 0.95rem;
      color: var(--color-text);
      transition: border-color 160ms ease, box-shadow 160ms ease;
      outline: none; appearance: none;
    }
    .cf-field input:focus,
    .cf-field select:focus,
    .cf-field textarea:focus {
      border-color: var(--color-primary);
      box-shadow: 0 0 0 3px rgba(12,53,87,0.1);
    }
    .cf-field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
    .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    @media (max-width: 600px) { .cf-row { grid-template-columns: 1fr; } }

    /* Contact cards */
    .contact-card {
      display: flex; gap: 0.875rem; align-items: flex-start;
      padding: 1rem 1.25rem;
      background: var(--color-surface-2);
      border: 1px solid var(--color-border);
      border-radius: 0.625rem;
      text-decoration: none; color: var(--color-text);
      transition: all 160ms ease;
    }
    .contact-card:hover { border-color: var(--color-primary); background: var(--color-primary-light); }
    .contact-card-icon {
      width: 36px; height: 36px; border-radius: 0.375rem;
      background: var(--color-primary-light);
      color: var(--color-primary); display: flex;
      align-items: center; justify-content: center; flex-shrink: 0;
    }
    .contact-card-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); }
    .contact-card-value { font-size: 0.9rem; font-weight: 600; color: var(--color-text); margin-top: 1px; line-height: 1.4; }

    /* Map embed */
    .map-embed-wrapper iframe { border-radius: 0.75rem; }
    .btn-directions {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--color-primary); color: #fff;
      padding: 0.625rem 1.25rem; border-radius: 0.5rem;
      font-size: 0.875rem; font-weight: 600;
      text-decoration: none; transition: all 160ms ease;
    }
    .btn-directions:hover { background: var(--color-primary-hover); transform: translateY(-1px); }

    /* Form submit */
    .btn-form-submit {
      width: 100%; padding: 0.875rem;
      background: var(--color-primary); color: #fff;
      border: none; border-radius: 0.5rem;
      font-family: var(--font-body); font-size: 0.95rem; font-weight: 700;
      cursor: pointer; transition: all 160ms ease;
      display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    }
    .btn-form-submit:hover { background: var(--color-primary-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
    .form-success {
      display: none; align-items: center; gap: 0.5rem;
      padding: 0.875rem 1rem; background: #e8f5e9;
      border: 1px solid #a5d6a7; border-radius: 0.5rem;
      color: #2e7d32; font-size: 0.9rem; font-weight: 600; margin-top: 0.75rem;
    }
    .form-success.visible { display: flex; }
    [data-theme="dark"] .form-success { background: #1a3520; border-color: #2e7d32; color: #81c784; }

/* ═══════════════════════════════════════════════════════════
       TESTIMONIALS — LUXURY + CONVERSION  (v8)
    ═══════════════════════════════════════════════════════════ */
    .tc-section {
      background:#1a1512;
      background-image:
        radial-gradient(ellipse 70% 50% at 100% 10%, rgba(42,152,173,0.18), transparent),
        radial-gradient(ellipse 50% 70% at 0%   90%, rgba(200,148,48,0.12), transparent);
      color: #fff; overflow: hidden;
      padding-block: clamp(3.5rem,7vw,6rem) !important;
      position: relative;
    }
    .tc-header { text-align:center; margin-bottom:clamp(2rem,4vw,3.5rem); }
    .tc-header .section-eyebrow { color:var(--color-accent);  /* border-color: rgba(200,148,48,.35); */  /* background: rgba(200,148,48,.1); */ }
    .tc-section .section-title { color:#fff !important; font-size:clamp(2rem,4vw,3.75rem) !important; letter-spacing: 2px; margin-inline:auto; }
    .tc-subtitle { font-size:clamp(.95rem,1.3vw,1.1rem); line-height:1.7; color:rgba(255,255,255,.72); max-width:52ch; margin-inline:auto; margin-top:var(--space-4); }

    /* Badges */
    .tc-badges { display:flex; align-items:center; justify-content:center; gap:0; margin-top:clamp(1.25rem,2vw,2rem); background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.14); border-radius:var(--radius-xl); padding:1.25rem 2rem; width:fit-content; margin-inline:auto; flex-wrap:wrap; }
    .tc-badge { text-align:center; padding:0 1.5rem; }
    .tc-badge-score { font-family:var(--font-display); font-size:2.2rem; font-weight:700; color:var(--color-accent); line-height:1; letter-spacing:-0.03em; }
    .tc-badge-stars { display:flex; gap:3px; justify-content:center; margin:4px 0; }
    .tc-badge-label { font-size:.68rem; text-transform:uppercase; letter-spacing:.12em; color:rgba(255,255,255,.55); }
    .tc-badge-divider { width:1px; height:48px; background:rgba(255,255,255,.15); margin:0 .5rem; }
    @media(max-width:480px){ .tc-badges{gap:1.25rem;padding:1rem;} .tc-badge-divider{display:none;} }

    /* Hero featured quote */
    .tc-hero-quote { position:relative; overflow:hidden; background:rgba(255,255,255,.06); border:1px solid rgba(200,148,48,.3); border-left:4px solid var(--color-accent); border-radius:var(--radius-xl); padding:clamp(1.75rem,3vw,2.75rem) clamp(1.75rem,4vw,3.5rem); margin-bottom:clamp(2rem,3vw,3rem); display:grid; grid-template-columns:auto 1fr; grid-template-rows:auto auto; gap:0 1.25rem; align-items:start; }
    .tc-hero-qm { font-family:var(--font-display); font-size:clamp(5rem,8vw,9rem); line-height:.7; color:var(--color-accent); opacity:.6; grid-column:1; grid-row:1; margin-top:.2em; user-select:none; }
    .tc-hero-text { font-family:var(--font-display); font-style:italic; font-size:clamp(1.2rem,2vw,1.65rem); line-height:1.55; color:#fff; margin:0; grid-column:2; grid-row:1; quotes:none; }
    .tc-hero-attr { grid-column:2; grid-row:2; display:flex; align-items:center; gap:.875rem; margin-top:1.25rem; padding-top:1.25rem; border-top:1px solid rgba(255,255,255,.12); flex-wrap:wrap; }
    .tc-hero-stars { display:flex; gap:2px; }
    .tc-hero-name { font-size:.875rem; font-weight:700; color:var(--color-accent); letter-spacing:.04em; }
    .tc-hero-case { font-size:.72rem; text-transform:uppercase; letter-spacing:.1em; color:rgba(255,255,255,.5); margin-left:auto; background:rgba(255,255,255,.08); padding:3px 10px; border-radius:var(--radius-full); }
    .tc-hero-bg { position:absolute; right:-.5rem; bottom:-1.5rem; font-family:var(--font-display); font-size:clamp(4rem,10vw,9rem); font-weight:700; color:rgba(255,255,255,.03); letter-spacing:.05em; user-select:none; pointer-events:none; white-space:nowrap; line-height:1; }
    @media(max-width:640px){ .tc-hero-quote{grid-template-columns:1fr;} .tc-hero-qm,.tc-hero-text,.tc-hero-attr{grid-column:1;} .tc-hero-text{grid-row:2;} .tc-hero-attr{grid-row:3;} .tc-hero-qm{font-size:4rem;} }

    /* Carousel */
    .tc-wrap { position:relative; margin-inline:calc(-1 * clamp(1rem,4vw,3rem)); padding-block:.25rem; overflow:hidden; }
    .tc-track { display:flex; gap:1.25rem; animation:tc-scroll 55s linear infinite; width:max-content; padding-inline:clamp(1rem,4vw,3rem); }
    .tc-track:hover { animation-play-state:paused; }
    @keyframes tc-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
    .tc-fade-l,.tc-fade-r { position:absolute; top:0; bottom:0; width:100px; pointer-events:none; z-index:2; }
.tc-fade-l { 
  left: 0; 
  background: linear-gradient(to right, #000000, transparent); 
}

.tc-fade-r { 
  right: 0; 
  background: linear-gradient(to left, #000000, transparent); 
}

    /* Card */
    .tc-card { flex-shrink:0; width:300px; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12); border-radius:var(--radius-lg); padding:1.5rem; display:flex; flex-direction:column; gap:.875rem; transition:background 200ms,border-color 200ms,transform 200ms; }
    .tc-card:hover { background:rgba(255,255,255,.11); border-color:rgba(200,148,48,.4); transform:translateY(-2px); }
    .tc-qm { font-family:var(--font-display); font-size:3rem; line-height:.6; color:var(--color-accent); opacity:.7; user-select:none; }
    .tc-text { font-family:var(--font-display); font-style:italic; font-size:.98rem; line-height:1.65; color:rgba(255,255,255,.9); margin:0; flex:1; quotes:none; }
    .tc-foot { border-top:1px solid rgba(255,255,255,.1); padding-top:.875rem; }
    .tc-stars { display:flex; gap:2px; margin-bottom:.5rem; }
    .tc-author { display:flex; align-items:center; gap:.625rem; }
    .tc-av { width:32px; height:32px; border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:700; font-size:.95rem; color:#fff; border:2px solid rgba(255,255,255,.2); }
    .tc-name { font-size:.85rem; font-weight:700; color:#fff; }
    .tc-case { font-size:.65rem; text-transform:uppercase; letter-spacing:.08em; color:var(--color-accent); margin-top:1px; }

    /* CTA strip */
    .tc-cta-strip { display:flex; align-items:center; justify-content:space-between; gap:1.5rem; flex-wrap:wrap; background:rgba(200,148,48,.12); border:1px solid rgba(200,148,48,.3); border-radius:var(--radius-xl); padding:1.375rem 2rem; margin-top:clamp(2rem,3vw,3rem); }
    .tc-cta-text { font-size:clamp(.95rem,1.3vw,1.1rem); color:rgba(255,255,255,.9); font-weight:500; max-width:50ch; margin:0; line-height:1.5; }
    .tc-cta-btn { display:inline-flex; align-items:center; gap:.625rem; background:var(--color-accent); color:#fff; padding:.75rem 1.5rem; border-radius:.5rem; font-size:.9rem; font-weight:700; text-decoration:none; transition:all 180ms; white-space:nowrap; flex-shrink:0; box-shadow:0 4px 16px rgba(200,148,48,.35); }
    .tc-cta-btn:hover { background:var(--color-accent-hover); transform:translateY(-2px); box-shadow:0 8px 24px rgba(200,148,48,.45); }
    @media(max-width:600px){ .tc-cta-strip{flex-direction:column;align-items:flex-start;} .tc-cta-btn{width:100%;justify-content:center;} }


    /* ── refined spacing ── */
    .section { padding-block: clamp(3rem,6vw,5rem) !important; }
    body { letter-spacing: -0.01em; }
    .hero-title { letter-spacing: -0.02em; }
    .section-title { letter-spacing: -0.015em; }
    ::-webkit-scrollbar { width:6px; } ::-webkit-scrollbar-track { background:var(--color-surface); }
    ::-webkit-scrollbar-thumb { background:var(--color-border); border-radius:3px; }




