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

  :root {
    --red: #E84E4E;
    --red-dark: #c23838;
    --red-pale: #fdf1f1;
    --black: #0e0e0e;
    --charcoal: #1c1c1c;
    --slate: #2f2f2f;
    --mid: #6b6b6b;
    --light: #b0b0b0;
    --cream: #f8f5f0;
    --white: #ffffff;
    --border: rgba(0,0,0,0.08);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--black);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
  }

  .nav-logo {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    letter-spacing: 0.02em;
  }

  .nav-logo span { color: var(--red); }

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

  .nav-links a {
    text-decoration: none;
    color: var(--mid);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

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

  .nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 2px !important;
    letter-spacing: 0.06em !important;
    transition: background 0.2s !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
  }

  .nav-cta:hover { background: var(--red-dark) !important; }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--black);
    transition: transform 0.3s, opacity 0.3s;
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--black);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(14,14,14,0.82) 0%, rgba(14,14,14,0.45) 60%, rgba(14,14,14,0.20) 100%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    padding-top: 72px;
  }

  .hero-eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: bold;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 0.8s forwards 0.2s;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--red);
  }

  .hero-title {
    font-family: var(--serif);
    font-size: clamp(52px, 7vw, 96px);
    font-weight: 300;
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeUp 0.9s forwards 0.4s;
  }

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

  .hero-subtitle {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 48px;
    letter-spacing: 0.01em;
    opacity: 0;
    animation: fadeUp 0.9s forwards 0.6s;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s forwards 0.8s;
  }

  .btn-primary {
    background: var(--red);
    color: var(--white);
    padding: 16px 36px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
  }

  .btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

  .btn-outline {
    background: transparent;
    color: var(--white);
    padding: 16px 36px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 2px;
    display: inline-block;
    transition: border-color 0.2s, background 0.2s;
  }

  .btn-outline:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.05);
  }

  .hero-stats {
    position: absolute;
    bottom: 48px;
    right: 48px;
    display: flex;
    gap: 48px;
    opacity: 0;
    animation: fadeUp 0.9s forwards 1.0s;
  }

  .hero-stat-num {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
  }

  .hero-stat-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-top: 4px;
  }

  /* ─── SECTIONS ─── */
  section { padding: 120px 48px; max-width: 1200px; margin: 0 auto; }

  .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--red);
  }

  .section-title {
    font-family: var(--serif);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--black);
    letter-spacing: -0.01em;
  }

  /* ─── ABOUT ─── */
  #about { max-width: 100%; padding: 0; }

  .about-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
  }

  .about-image-wrap {
    position: relative;
  }

  .about-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
  }

  .about-img-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 160px;
    height: 160px;
    background: var(--red);
    z-index: -1;
  }

  .about-quote {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.7;
    color: var(--slate);
    margin-bottom: 40px;
    padding-left: 24px;
    border-left: 2px solid var(--red);
  }

  .about-sig {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .about-sig img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
  }

  .about-sig-name {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
  }

  .about-sig-title {
    font-size: 12px;
    font-weight: 400;
    color: var(--mid);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 2px;
  }

  /* ─── WHY US ─── */
  #why { background: var(--cream); max-width: 100%; padding: 0; }

  .why-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 48px;
  }

  .why-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
    margin-bottom: 80px;
  }

  .why-desc {
    font-size: 16px;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.8;
    align-self: end;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .why-card {
    background: var(--white);
    padding: 48px 36px;
    transition: background 0.25s;
  }

  

  .why-icon {
    font-size: 24px;
    color: var(--red);
    margin-bottom: 24px;
    display: block;
    transition: color 0.25s;
  }

  .why-card-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 12px;
    transition: color 0.25s;
  }

  .why-card-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.8;
    transition: color 0.25s;
  }

  /* ─── SERVICES ─── */
  .services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
    margin-bottom: 64px;
  }

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

  .service-card {
    border: 1px solid var(--border);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
  }

  .service-card:hover { border-color: rgba(0,0,0,0.2); transform: translateY(-4px); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    font-size: 28px;
    margin-bottom: 20px;
    display: block;
    color: var(--red);
  }

  .service-title {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 14px;
    line-height: 1.2;
  }

  .service-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 24px;
  }

  .service-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .service-link::after {
    content: '→';
    transition: transform 0.2s;
  }

  .service-card:hover .service-link::after { transform: translateX(4px); }

  /* ─── LOCATIONS BAND ─── */
  #locations { max-width: 100%; padding: 0; background: var(--black); position: relative; overflow: hidden; }

  .locations-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    pointer-events: none;
  }

  .locations-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 96px 48px;
    position: relative;
    z-index: 1;
  }

  .locations-inner .section-label { color: rgba(232,78,78,0.9); }
  .locations-inner .section-label::before { background: var(--red); }
  .locations-inner .section-title { color: var(--white); margin-bottom: 64px; }

  .locations-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
  }

  .loc-card {
    background: rgba(14,14,14,0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 40px 32px;
    text-decoration: none;
    transition: background 0.25s;
  }

  .loc-card:hover { background: rgba(14,14,14,0.75); }

  .loc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    margin-bottom: 20px;
  }

  .loc-name {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 8px;
  }

  .loc-desc {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
  }


  /* ─── CONTACT ─── */
  #contact { max-width: 100%; padding: 0; }

  .contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
  }

  .contact-info-title {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
  }

  .contact-info-title em { font-style: italic; color: var(--red); }

  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }

  .contact-detail-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
  }

  .contact-detail-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 4px;
  }

  .contact-detail-value {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
    text-decoration: none;
  }

  .contact-detail-value:hover { color: var(--red); }

  /* Form */
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .form-group { margin-bottom: 16px; }

  .form-group label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--cream);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--black);
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus { border-color: var(--red); background: var(--white); }

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

  .form-submit {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s;
    width: 100%;
  }

  .form-submit:hover { background: var(--red-dark); }

  .form-success {
    display: none;
    background: #f0faf4;
    border: 1px solid #c3e6cb;
    color: #2d6a4f;
    padding: 16px;
    border-radius: 2px;
    font-size: 14px;
    margin-top: 16px;
    text-align: center;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--black);
    padding: 64px 48px 40px;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
  }

  .footer-brand {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 16px;
  }

  .footer-brand span { color: var(--red); }

  .footer-desc {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
    max-width: 300px;
  }

  .footer-col-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
  }

  .footer-links { list-style: none; }

  .footer-links li { margin-bottom: 12px; }

  .footer-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    transition: color 0.2s;
  }

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

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-copy {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.25);
  }

  .footer-socials {
    display: flex;
    gap: 16px;
  }

  .footer-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    transition: border-color 0.2s, color 0.2s;
  }

  .footer-socials a:hover { border-color: var(--red); color: var(--red); }

  /* ─── BACK TO TOP ─── */
  .back-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--red);
    color: var(--white);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 99;
  }

  .back-top.visible { opacity: 1; pointer-events: all; }

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

  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s, transform 0.7s;
  }

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

  /* ─── MOBILE NAV ─── */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 24px 48px;
    z-index: 99;
    flex-direction: column;
    gap: 20px;
  }

  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    text-decoration: none;
    color: var(--mid);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { padding: 24px; }

    section { padding: 80px 24px; }
    .hero-content { padding: 0 24px; padding-top: 72px; }
    .hero-stats { position: static; margin-top: 48px; gap: 24px; flex-wrap: wrap; }
    .hero-stat-num { font-size: 28px; }
    .hero-stat-label { font-size: 10px; }

    .about-inner { grid-template-columns: 1fr; gap: 48px; padding: 80px 24px; }
    .about-image-wrap { display: none; }

    .why-inner { padding: 80px 24px; }
    .why-header { grid-template-columns: 1fr; gap: 24px; }
    .why-grid { grid-template-columns: 1fr; }

    .services-header { grid-template-columns: 1fr; gap: 24px; }
    .services-grid { grid-template-columns: 1fr; }

    .locations-inner { padding: 80px 24px; }
    .locations-row { grid-template-columns: 1fr 1fr; }


    .contact-inner { grid-template-columns: 1fr; gap: 48px; padding: 80px 24px; }

    .form-row { grid-template-columns: 1fr; }

    footer { padding: 48px 24px 32px; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
  }

/* ── ADDITIONAL UTILITY CLASSES (replaces inline styles) ── */

/* Home section wrapper */
.home-section-wrap {
  padding: 0;
  max-width: 100%;
  position: relative;
}

/* About section title spacing */
.about-section-title {
  margin-bottom: 40px;
}

/* Services desc paragraph */
.services-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  align-self: end;
}

/* Service CTA card */
.service-cta-card {
  background: var(--gray);
  border-color: var(--gray);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.service-cta-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 24px;
}

.service-cta-card .btn-primary {
  font-size: 11px;
}

/* SEO content section */
.seo-content-section {
  background: var(--cream);
  max-width: 100%;
  padding: 0;
}

.seo-content-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.seo-section-title {
  margin-bottom: 28px;
}

.seo-body-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 16px;
}

.seo-body-text:last-child {
  margin-bottom: 0;
}

/* Contact detail static value */
.contact-detail-static {
  color: var(--black);
}

/* Contact intro text */
.contact-intro-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .seo-content-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 24px;
  }
}