  /* ─── Reset & Base ─── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg-primary: #0f0a06;
    --bg-secondary: #1a1209;
    --bg-card: #211810;
    --bg-card-hover: #2a1f14;
    --terracotta: #c8956c;
    --terracotta-light: #dbb08f;
    --terracotta-dark: #a07050;
    --sand: #e8d5c0;
    --sand-light: #f5ece0;
    --sand-dark: #c4a882;
    --text-primary: #f5ece0;
    --text-secondary: #b8a08a;
    --text-muted: #7a6858;
    --border: rgba(200, 149, 108, 0.15);
    --border-hover: rgba(200, 149, 108, 0.35);
    --shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }

  img { max-width: 100%; height: auto; display: block; }
  a { color: inherit; text-decoration: none; }
  button { cursor: pointer; border: none; background: none; font-family: inherit; }
  input, textarea, select { font-family: inherit; }

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

  /* ─── Navigation ─── */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: background var(--transition), box-shadow var(--transition);
  }

  .nav.scrolled {
    background: rgba(15, 10, 6, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
  }

  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
  }

  .accent { color: var(--terracotta); }

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

  .nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--terracotta);
    transition: width var(--transition);
  }

  .nav-links a:hover { color: var(--terracotta-light); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    background: var(--terracotta) !important;
    color: var(--bg-primary) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: background var(--transition), transform var(--transition) !important;
  }

  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--terracotta-light) !important; transform: translateY(-1px); }

  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
  }

  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    transform-origin: center;
  }

  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* ─── Hero ─── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
  }

  .hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 149, 108, 0.06) 0%, transparent 70%),
      radial-gradient(ellipse 40% 30% at 20% 80%, rgba(200, 149, 108, 0.04) 0%, transparent 60%);
    pointer-events: none;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 149, 108, 0.03) 0%, transparent 60%);
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
  }

  .hero-left { position: relative; z-index: 2; }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 149, 108, 0.1);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--terracotta-light);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
  }

  .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
  }

  .accent-gradient {
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--sand) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition);
    white-space: nowrap;
  }

  .btn-primary {
    background: var(--terracotta);
    color: var(--bg-primary);
    box-shadow: 0 4px 24px rgba(200, 149, 108, 0.3);
  }

  .btn-primary:hover {
    background: var(--terracotta-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200, 149, 108, 0.4);
  }

  .btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-hover);
  }

  .btn-outline:hover {
    border-color: var(--terracotta);
    color: var(--terracotta-light);
    transform: translateY(-2px);
  }

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

  .hero-stats {
    display: flex;
    gap: 24px;
    align-items: center;
  }

  .hero-stat { display: flex; flex-direction: column; gap: 4px; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--terracotta); }
  .stat-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

  .hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
  }

  .hero-right { position: relative; }

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

  .hero-image-wrap img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
  }

  .hero-image-accent {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    pointer-events: none;
  }

  .hero-float-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow);
    z-index: 3;
  }

  .float-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(200, 149, 108, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .float-card-text { display: flex; flex-direction: column; }
  .float-card-text strong { font-size: 0.9rem; color: var(--text-primary); }
  .float-card-text span { font-size: 0.78rem; color: var(--text-muted); }

  /* ─── Section Shared ─── */
  .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
  }

  .section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--terracotta);
    margin-bottom: 16px;
  }

  .section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
  }

  .section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
  }

  /* ─── Services ─── */
  .services {
    padding: 120px 24px;
    background: var(--bg-secondary);
    position: relative;
  }

  .services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
  }

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

  .service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--terracotta), var(--sand));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
  }

  .service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
  }

  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 56px;
    height: 56px;
    background: rgba(200, 149, 108, 0.1);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all var(--transition);
  }

  .service-card:hover .service-icon {
    background: rgba(200, 149, 108, 0.18);
    border-color: var(--border-hover);
  }

  .service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
  }

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

  /* ─── About ─── */
  .about {
    padding: 120px 24px;
    background: var(--bg-primary);
    position: relative;
  }

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

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

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

  .about-image-main img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
  }

  .about-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 4px solid var(--bg-primary);
    box-shadow: var(--shadow);
  }

  .about-image-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
  }

  .about-experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--terracotta);
    color: var(--bg-primary);
    border-radius: var(--radius);
    padding: 20px 24px;
    text-align: center;
    box-shadow: var(--shadow);
  }

  .about-experience-badge .exp-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
  }

  .about-experience-badge .exp-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
  }

  .about-content { max-width: 480px; }

  .about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 36px;
  }

  .about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
  }

  .feature-check { flex-shrink: 0; }

  /* ─── Coverage ─── */
  .coverage {
    padding: 120px 24px;
    background: var(--bg-secondary);
    position: relative;
  }

  .coverage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
  }

  .coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
  }

  .coverage-region {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
  }

  .coverage-region:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
  }

  .region-icon {
    width: 52px;
    height: 52px;
    background: rgba(200, 149, 108, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
  }

  .coverage-region h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
  }

  .coverage-region p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  .coverage-map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
  }

  .coverage-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    opacity: 0.7;
  }

  .coverage-map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(to top, rgba(15, 10, 6, 0.6), transparent 50%);
  }

  .map-pin {
    width: 36px;
    height: 36px;
    background: var(--terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px rgba(200, 149, 108, 0.3), var(--shadow);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(200, 149, 108, 0.3), var(--shadow); }
    50% { box-shadow: 0 0 0 10px rgba(200, 149, 108, 0.15), var(--shadow); }
  }

  .coverage-map-overlay span {
    background: rgba(15, 10, 6, 0.8);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--sand);
    backdrop-filter: blur(8px);
  }

  /* ─── CTA ─── */
  .cta {
    padding: 120px 24px;
    background: var(--bg-primary);
    position: relative;
  }

  .cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(ellipse 60% 50% at 30% 50%, rgba(200, 149, 108, 0.05) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
  }

  .cta-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
  }

  .cta-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
  }

  .cta-quick-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .cta-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-secondary);
  }

  .cta-info-item svg { flex-shrink: 0; }

  /* ─── Form ─── */
  .cta-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
  }

  .form-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text-primary);
  }

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

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

  .form-group input,
  .form-group textarea {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.92rem;
    color: var(--text-primary);
    transition: border-color var(--transition);
    outline: none;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: var(--text-muted);
  }

  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--terracotta);
  }

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

  .form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
  }

  .form-success.show { display: flex; }
  .cta-form.hidden { display: none; }

  .form-success h4 {
    font-size: 1.4rem;
    margin-top: 16px;
    margin-bottom: 8px;
    color: var(--text-primary);
  }

  .form-success p {
    font-size: 0.92rem;
    color: var(--text-secondary);
  }

  /* ─── Footer ─── */
  .footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 80px 24px 32px;
  }

  .footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
  }

  .footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .footer-address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
  }

  .footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--terracotta);
    margin-bottom: 20px;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-col a {
    font-size: 0.88rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition);
  }

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

  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
  }

  .footer-bottom a {
    color: var(--terracotta);
    transition: color var(--transition);
  }

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

  /* ─── Scroll Reveal ─── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

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

  /* ─── Responsive ─── */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-right { max-width: 500px; }
    .hero-image-wrap img { height: 500px; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-content { max-width: 100%; }
    .coverage-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-inner { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    .nav-links {
      position: fixed;
      top: 80px;
      left: 0;
      right: 0;
      background: rgba(15, 10, 6, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      flex-direction: column;
      padding: 32px 24px;
      gap: 24px;
      border-bottom: 1px solid var(--border);
      transform: translateY(-120%);
      opacity: 0;
      transition: transform var(--transition), opacity var(--transition);
      pointer-events: none;
    }

    .nav-links.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: all;
    }

    .nav-toggle { display: flex; }

    .hero { padding: 100px 24px 60px; min-height: auto; }
    .hero-title { font-size: 2.2rem; }
    .hero-stats { gap: 16px; }
    .stat-num { font-size: 1.4rem; }
    .hero-float-card { position: relative; bottom: auto; left: auto; margin-top: 16px; }
    .hero-image-wrap img { height: 400px; }

    .services-grid { grid-template-columns: 1fr; }
    .coverage-grid { grid-template-columns: 1fr; }

    .about-image-secondary { display: none; }
    .about-experience-badge { right: 0; }

    .cta-form { padding: 28px; }

    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }

  @media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .hero-stats { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hero-stat-divider { display: none; }
    .about-features { grid-template-columns: 1fr; }
  }
