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

  :root {
    --bg: #FAF9F6;
    --bg-alt: #F2F0EB;
    --text: #1A1A1A;
    --text-muted: #6B6560;
    --accent: #E8451C;
    --accent-hover: #D13A14;
    --border: #E0DDD7;
    --card-bg: #FFFFFF;
    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
  }

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

  body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.25rem 3rem;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(250,249,246,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
  }

  .logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text);
    text-decoration: none;
  }
  .logo span { color: var(--accent); }

  .nav-links { display: flex; gap: 2.5rem; align-items: center; }
  .nav-links a {
    text-decoration: none; color: var(--text-muted);
    font-size: 0.9rem; font-weight: 400;
    transition: color 0.25s;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1.5px; background: var(--accent);
    transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    background: var(--accent) !important; color: #fff !important;
    padding: 0.6rem 1.5rem; border-radius: 100px;
    font-weight: 500; font-size: 1rem;
    transition: background 0.25s, transform 0.2s;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--accent-hover) !important; transform: translateY(-1px); }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 8rem 3rem 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero-bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    pointer-events: none;
  }
  .hero-bg-1 {
    width: 600px; height: 600px;
    background: var(--accent);
    top: -200px; right: -100px;
  }
  .hero-bg-2 {
    width: 400px; height: 400px;
    background: #F5A623;
    bottom: -100px; left: -100px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center; gap: 0.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 2rem;
    width: fit-content;
    animation: fadeUp 0.8s ease both;
  }
  .hero-badge .dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.05;
    max-width: 900px;
    font-weight: 400;
    animation: fadeUp 0.8s ease 0.15s both;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--accent);
  }

  .hero-sub {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 550px;
    margin-top: 1.5rem;
    line-height: 1.7;
    font-weight: 300;
    animation: fadeUp 0.8s ease 0.3s both;
  }

  .hero-actions {
    display: flex; gap: 1rem; margin-top: 2.5rem;
    animation: fadeUp 0.8s ease 0.45s both;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }
  .btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,69,28,0.25); }
  .btn-primary svg { transition: transform 0.3s; }
  .btn-primary:hover svg { transform: translateX(3px); }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text);
    padding: 0.9rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border: 1.5px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .btn-secondary:hover { border-color: var(--text); transform: translateY(-2px); }

  .hero-stats {
    display: flex; gap: 3.5rem;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    animation: fadeUp 0.8s ease 0.6s both;
  }
  .stat h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
  }
  .stat h3 span { color: var(--accent); }
  .stat p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
  }

  /* ─── SERVICES ─── */
  .services {
    padding: 7rem 3rem;
    position: relative;
  }

  .section-label {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    max-width: 620px;
    line-height: 1.15;
  }

  .section-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .section-desc {
    max-width: 380px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
    font-weight: 300;
  }

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

  .service-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.25rem 1.75rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
  }
  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--accent);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); border-color: transparent; }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 48px; height: 48px;
    background: var(--bg-alt);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    transition: background 0.3s;
  }
  .service-card:hover .service-icon { background: #FFF0EC; }
  .service-icon svg { color: var(--accent); }

  .service-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
  }

  .service-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
  }

  .service-tags {
    display: flex; flex-wrap: wrap; gap: 0.4rem;
    margin-top: 1.25rem;
  }
  .service-tag {
    font-size: 0.72rem;
    padding: 0.3rem 0.7rem;
    background: var(--bg-alt);
    border-radius: 100px;
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.3s;
  }
  .service-card:hover .service-tag { background: #FFF0EC; color: var(--accent); }

  /* ─── CONTACT ─── */
  .contact {
    padding: 7rem 3rem;
    background: var(--bg-alt);
    position: relative;
  }

  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .contact-left { padding-top: 1rem; }

  .contact-left .section-title { margin-bottom: 1.5rem; }
  .contact-left p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 2.5rem;
  }

  .contact-detail {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
  }
  .contact-detail svg { color: var(--accent); flex-shrink: 0; }

  .contact-form {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
  }

  .form-group { margin-bottom: 1.25rem; }
  .form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--bg);
    color: var(--text);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232,69,28,0.08);
  }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-group select { cursor: pointer; 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='%236B6560' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }

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

  .btn-submit {
    width: 100%;
    margin-top: 0.5rem;
    background: var(--accent); color: #fff;
    padding: 1rem; border: none; border-radius: 100px;
    font-family: var(--font-body);
    font-size: 1rem; font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
  }
  .btn-submit:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,69,28,0.25); }

  /* ─── FOOTER ─── */
  footer {
    padding: 2.5rem 3rem;
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--text-muted);
  }
  footer a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
  footer a:hover { color: var(--accent); }
  .footer-links { display: flex; gap: 1.5rem; }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1; transform: translateY(0);
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links a:not(.nav-cta) { display: none; }
    .hero { padding: 7rem 1.5rem 3rem; }
    .hero-stats { gap: 2rem; flex-wrap: wrap; }
    .services { padding: 4rem 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .section-header { flex-direction: column; align-items: flex-start; }
    .contact { padding: 4rem 1.5rem; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
  }