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

  :root {
    --terracotta: #B85C38;
    --terracotta-dark: #9A4B2C;
    --terracotta-light: #D4845E;
    --sand: #F5F0E8;
    --sand-dark: #E8DFD0;
    --sand-light: #FAF7F2;
    --charcoal: #1A1A1A;
    --text: #2C2C2C;
    --text-muted: #6B6B6B;
    --text-light: #999;
    --white: #FFFFFF;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
    --shadow-lg: 0 4px 24px rgba(0,0,0,0.08);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }

  body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text);
    background: var(--sand-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  .skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--charcoal);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    z-index: 100;
    font-size: 0.875rem;
  }
  .skip-link:focus {
    top: 1rem;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  /* ─── Header ─── */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 400;
  }

  .logo-icon {
    color: var(--terracotta);
    flex-shrink: 0;
  }

  .logo-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    line-height: 1.3;
    font-weight: 500;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }

  .nav-menu a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color var(--transition);
  }

  .nav-menu a:hover {
    color: var(--terracotta);
  }

  .nav-phone {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--terracotta) !important;
    font-weight: 500 !important;
  }

  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
  }

  .nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    transition: var(--transition);
    transform-origin: center;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
  }

  /* ─── Hero ─── */
  .hero {
    padding-top: 120px;
    padding-bottom: 80px;
    background: var(--sand-light);
  }

  .hero-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1.25rem;
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
  }

  .hero-title .accent {
    color: var(--terracotta);
    font-style: italic;
  }

  .hero-subtitle {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 440px;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .hero-image-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }

  .hero-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hero-image-wrap:hover img {
    transform: scale(1.03);
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .stat-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-sm);
    padding: 1.5rem 1.25rem;
    transition: var(--transition);
  }

  .stat-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--terracotta-light);
  }

  .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--terracotta);
    margin-bottom: 0.5rem;
    line-height: 1;
  }

  .stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
  }

  /* ─── Buttons ─── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all var(--transition);
    letter-spacing: 0.01em;
  }

  .btn-primary {
    background: var(--terracotta);
    color: var(--white);
    border-color: var(--terracotta);
  }

  .btn-primary:hover {
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(184, 92, 56, 0.3);
  }

  .btn-outline {
    background: transparent;
    color: var(--charcoal);
    border-color: rgba(0,0,0,0.2);
  }

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

  .btn-white {
    background: var(--white);
    color: var(--terracotta);
    border-color: var(--white);
  }

  .btn-white:hover {
    background: var(--sand);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
  }

  .btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
  }

  .btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
  }

  .btn-full {
    width: 100%;
    justify-content: center;
  }

  /* ─── Section shared ─── */
  .section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
  }

  .section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  section {
    padding: 6rem 0;
  }

  /* ─── Services ─── */
  .services {
    background: var(--white);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    transition: all var(--transition);
  }

  .service-card:hover {
    border-color: var(--terracotta-light);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
  }

  .service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    margin-bottom: 1.25rem;
    transition: all var(--transition);
  }

  .service-card:hover .service-icon {
    background: var(--terracotta);
    color: var(--white);
  }

  .service-card h3 {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.625rem;
  }

  .service-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ─── About ─── */
  .about {
    background: var(--sand-light);
  }

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

  .about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }

  .about-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .about-image:hover img {
    transform: scale(1.03);
  }

  .about-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
  }

  .about-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }

  .about-content em {
    color: var(--charcoal);
    font-family: var(--font-display);
    font-style: italic;
  }

  .about-values {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
  }

  .value-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
  }

  .value-label {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
  }

  .value-text {
    font-size: 0.9375rem;
    color: var(--text);
  }

  .value-link {
    font-size: 0.9375rem;
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 500;
  }

  .value-link:hover {
    text-decoration: underline;
  }

  /* ─── Why Us ─── */
  .why-us {
    background: var(--white);
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
  }

  .why-card {
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
  }

  .why-card:hover {
    border-color: var(--terracotta-light);
    box-shadow: var(--shadow);
  }

  .why-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 500;
    color: var(--sand-dark);
    line-height: 1;
    margin-bottom: 1rem;
    transition: color var(--transition);
  }

  .why-card:hover .why-number {
    color: var(--terracotta-light);
  }

  .why-card h3 {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.625rem;
  }

  .why-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ─── CTA ─── */
  .cta {
    background: var(--charcoal);
    padding: 6rem 0;
  }

  .cta-card {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
  }

  .cta-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta-light);
    margin-bottom: 1.25rem;
  }

  .cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.25rem;
  }

  .cta-text {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 2.5rem;
  }

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

  /* ─── Contact ─── */
  .contact {
    background: var(--sand-light);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .contact-info .section-title {
    text-align: left;
    margin-bottom: 2.5rem;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .contact-row {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
  }

  .contact-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.25rem;
  }

  .contact-row p {
    font-size: 0.9375rem;
    color: var(--text);
    line-height: 1.6;
  }

  .contact-link {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 500;
  }

  .contact-link:hover {
    text-decoration: underline;
  }

  .contact-form-wrap {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    padding: 2.5rem;
  }

  .form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 2rem;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--sand-light);
    transition: all var(--transition);
    outline: none;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--terracotta);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(184, 92, 56, 0.1);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }

  .form-note {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-top: 1rem;
    text-align: center;
  }

  .form-success {
    text-align: center;
    padding: 2rem;
  }

  .form-success svg {
    color: var(--terracotta);
    margin-bottom: 1rem;
  }

  .form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
  }

  .form-success p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
  }

  /* ─── Footer ─── */
  .footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.6);
    padding: 4rem 0 2rem;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
  }

  .footer-brand p {
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 280px;
  }

  .logo-sm .logo-text {
    font-size: 1rem;
    color: var(--white);
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    align-items: flex-end;
  }

  .footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition);
  }

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

  .footer-address p {
    font-size: 0.875rem;
  }

  .footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
  }

  .footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
  }

  /* ─── Scroll animations ─── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  /* ─── Responsive ─── */
  @media (max-width: 1024px) {
    .hero-card {
      gap: 2.5rem;
    }
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .nav-toggle {
      display: flex;
    }
    .nav-menu {
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      background: rgba(250, 247, 242, 0.98);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      flex-direction: column;
      padding: 2rem 1.5rem;
      gap: 1.25rem;
      border-bottom: 1px solid rgba(0,0,0,0.06);
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
      transition: all var(--transition);
    }
    .nav-menu.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: all;
    }
    .hero {
      padding-top: 100px;
      padding-bottom: 60px;
    }
    .hero-card {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .hero-image-wrap {
      max-height: 320px;
    }
    .hero-stats {
      grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
      grid-template-columns: 1fr;
    }
    .about-grid {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
    .about-image {
      max-height: 360px;
    }
    .about-content .section-title {
      text-align: center;
    }
    .about-content .section-eyebrow {
      text-align: center;
    }
    .about-content p {
      text-align: center;
    }
    .why-grid {
      grid-template-columns: 1fr;
    }
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
    .contact-info .section-title {
      text-align: center;
    }
    .contact-info .section-eyebrow {
      text-align: center;
    }
    .footer-inner {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-brand p {
      max-width: none;
    }
    section {
      padding: 4rem 0;
    }
  }

  @media (max-width: 480px) {
    .hero-stats {
      grid-template-columns: 1fr;
    }
    .hero-actions {
      flex-direction: column;
    }
    .hero-actions .btn {
      justify-content: center;
    }
    .cta-actions {
      flex-direction: column;
      align-items: center;
    }
    .contact-form-wrap {
      padding: 1.5rem;
    }
  }
