:root {
    --black: #1B1717;
    --black-deep: #0F0D0D;
    --wine: #810000;
    --wine-light: #9A1515;
    --gold: #DFB86F;
    --gold-light: #E8CC8E;
    --cream: #F5F0E8;
    --white: #FFFFFF;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--black-deep);
    color: var(--white);
    overflow-x: hidden;
  }

  /* ═══════════════════════════════════════════
     UTILITY
  ═══════════════════════════════════════════ */
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .section-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }

  .section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
  }

  .section-title span {
    color: var(--gold);
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--wine);
    color: var(--white);
    padding: 14px 32px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(223,184,111,0.15), transparent);
    transition: left 0.5s ease;
  }

  .btn-primary:hover::after { left: 100%; }
  .btn-primary:hover { background: var(--wine-light); transform: translateY(-2px); }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--gold);
    padding: 14px 32px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all 0.4s ease;
  }

  .btn-outline:hover {
    background: var(--gold);
    color: var(--black);
  }

  /* ═══════════════════════════════════════════
     NAVBAR
  ═══════════════════════════════════════════ */
  .site-header,
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: all 0.35s ease;
    background: rgba(20,17,16,0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(223,184,111,0.06);
  }

  .site-header.scrolled,
  .navbar.scrolled {
    background: rgba(15,13,13,0.98);
    padding: 8px 0;
    border-bottom-color: rgba(223,184,111,0.10);
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  }

  .nav-inner,
  .navbar .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .brand-area {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
  }

  .brand-lockup,
  .logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    min-width: 0;
  }

  .brand-monogram {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border: 1px solid rgba(223,184,111,0.28);
    display: grid;
    place-items: center;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: var(--white);
    background: rgba(223,184,111,0.06);
  }

  .brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .brand-text strong,
  .logo-main {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: 0.14em;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .brand-text small,
  .logo-sub {
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.26em;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 4px;
  }

  .brand-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gray-light);
    white-space: nowrap;
  }

  .brand-location i {
    color: var(--gold);
    font-size: 0.85rem;
  }

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

  .nav-links a {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--white);
  }

  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 100%;
  }

  .nav-cta {
    background: var(--wine) !important;
    color: var(--white) !important;
    padding: 12px 24px !important;
    border-radius: 2px;
    font-size: 0.76rem !important;
    letter-spacing: 1.1px;
  }

  .nav-cta:hover { background: var(--wine-light) !important; }
  .nav-cta::after { display: none !important; }

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

  .nav-toggle span,
  .hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    display: block;
  }

  /* X state when menu is open */
  .nav-toggle.is-open span:nth-child(1),
  .hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.is-open span:nth-child(2),
  .hamburger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-toggle.is-open span:nth-child(3),
  .hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (min-width: 768px) {
    .brand-area {
      gap: 24px;
    }

    .brand-lockup {
      gap: 12px;
    }

    .brand-text {
      flex-direction: row;
      align-items: baseline;
      gap: 12px;
    }

    .brand-text small,
    .logo-sub {
      margin-top: 0;
    }
  }

  @media (min-width: 1024px) {
    .brand-location {
      display: none;
    }
  }

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

  .hero-bg {
    position: absolute;
    inset: 0;
    background: 
      linear-gradient(160deg, rgba(15,13,13,0.93) 0%, rgba(27,23,23,0.82) 50%, rgba(129,0,0,0.2) 100%),
      url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?w=1920&q=80') center/cover no-repeat;
  }

  .hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(rgba(223,184,111,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(223,184,111,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding-top: 120px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid rgba(223,184,111,0.3);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.2s both;
  }

  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--wine);
    border-radius: 50%;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.0;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease 0.4s both;
  }

  .hero h1 .accent { color: var(--gold); }
  .hero h1 .wine-accent { color: var(--wine-light); }

  .hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-light);
    max-width: 520px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.6s both;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
  }

  .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: bounce 2s ease infinite;
  }

  .hero-scroll .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
  }

  .hero-stats-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(15,13,13,0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(223,184,111,0.1);
    z-index: 3;
    display: none;
  }

  @media (min-width: 1024px) {
    .hero-stats-bar { display: block; }
  }

  .hero-stats-bar .container {
    display: flex;
    justify-content: space-around;
    padding: 24px;
  }

  .hero-stat {
    text-align: center;
  }

  .hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
  }

  .hero-stat-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-top: 4px;
  }

  /* ═══════════════════════════════════════════
     SERVICES
  ═══════════════════════════════════════════ */
  .services {
    padding: 120px 0;
    background: var(--black);
    position: relative;
  }

  .services::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(129,0,0,0.08), transparent 70%);
    pointer-events: none;
  }

  .services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
  }

  .services-header .section-label { justify-content: center; }
  .services-header .section-label::before { display: none; }

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

  .service-card {
    padding: 48px 36px;
    border: 1px solid rgba(223,184,111,0.1);
    background: rgba(27,23,23,0.5);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--wine), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
  }

  .service-card:hover::before { transform: scaleX(1); }
  .service-card:hover {
    border-color: rgba(223,184,111,0.25);
    transform: translateY(-4px);
    background: rgba(27,23,23,0.8);
  }

  .service-icon {
    width: 56px; height: 56px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--gold);
    font-size: 1.4rem;
    position: relative;
  }

  .service-icon::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(223,184,111,0.2);
  }

  .service-card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 16px;
    color: var(--white);
  }

  .service-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-light);
    margin-bottom: 24px;
  }

  .service-link {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
  }

  .service-link:hover { gap: 14px; }

  .service-card.featured {
    background: linear-gradient(160deg, var(--wine) 0%, #5a0000 100%);
    border-color: rgba(223,184,111,0.2);
  }

  .service-card.featured .service-icon {
    border-color: var(--gold-light);
    color: var(--gold-light);
  }

  .service-card.featured p { color: rgba(255,255,255,0.7); }
  .service-card.featured .service-link { color: var(--gold-light); }

  /* ═══════════════════════════════════════════
     ABOUT
  ═══════════════════════════════════════════ */
  .about {
    padding: 120px 0;
    background: var(--black-deep);
    position: relative;
  }

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

  @media (min-width: 1024px) {
    .about-grid { grid-template-columns: 1fr 1fr; }
  }

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

  .about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 36px 0;
  }

  .about-value {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .about-value-icon {
    width: 36px; height: 36px;
    min-width: 36px;
    border: 1px solid rgba(223,184,111,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 2px;
  }

  .about-value h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 4px;
  }

  .about-value p {
    font-size: 0.8rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
  }

  .about-image {
    position: relative;
  }

  .about-image-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(30%);
  }

  .about-image-frame {
    position: absolute;
    top: -16px; right: -16px;
    bottom: 16px; left: 16px;
    border: 1px solid var(--gold);
    pointer-events: none;
    z-index: -1;
    display: none;
  }

  @media (min-width: 1024px) {
    .about-image-frame { display: block; }
  }

  .about-experience {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--wine);
    padding: 24px 32px;
  }

  .about-experience-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
  }

  .about-experience-text {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
  }

  /* ═══════════════════════════════════════════
     STATS
  ═══════════════════════════════════════════ */
  .stats {
    padding: 80px 0;
    background: var(--wine);
    position: relative;
    overflow: hidden;
  }

  .stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(rgba(223,184,111,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(223,184,111,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
  }

  @media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
  }

  .stat-item { text-align: center; }

  .stat-number {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    line-height: 1;
  }

  .stat-number .suffix { 
    font-size: 0.6em;
    color: var(--gold);
  }

  .stat-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
  }

  .stat-divider {
    width: 30px;
    height: 1px;
    background: var(--gold);
    margin: 12px auto 0;
  }

  /* ═══════════════════════════════════════════
     PROJECTS
  ═══════════════════════════════════════════ */
  .projects {
    padding: 120px 0;
    background: var(--black);
  }

  .projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    flex-wrap: wrap;
    gap: 24px;
  }

  .projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  @media (min-width: 768px) {
    .projects-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: auto auto;
    }
    .project-card:first-child {
      grid-row: 1 / 3;
    }
  }

  @media (min-width: 1024px) {
    .projects-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    .project-card:first-child {
      grid-row: 1 / 3;
      grid-column: 1 / 2;
    }
  }

  .project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 320px;
    group: true;
  }

  .project-card:first-child { height: 100%; min-height: 320px; }

  .project-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.7s ease;
    filter: grayscale(40%);
  }

  .project-card:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
  }

  .project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,13,13,0.95) 0%, rgba(15,13,13,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    transition: background 0.5s;
  }

  .project-card:hover .project-overlay {
    background: linear-gradient(to top, rgba(129,0,0,0.9) 0%, rgba(15,13,13,0.3) 40%, transparent 100%);
  }

  .project-category {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }

  .project-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 4px;
  }

  .project-location {
    font-size: 0.8rem;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* ═══════════════════════════════════════════
     CONTACT
  ═══════════════════════════════════════════ */
  .contact {
    padding: 120px 0;
    background: var(--black-deep);
    position: relative;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
    align-items: start;
  }

  @media (min-width: 1024px) {
    .contact-grid { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); }
  }

  .contact-grid > div:first-child {
    padding-top: 8px;
    max-width: 640px;
  }

  .contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
  }

  .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .contact-info-icon {
    width: 48px; height: 48px;
    min-width: 48px;
    border: 1px solid rgba(223,184,111,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
  }

  .contact-info-item h4 {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 4px;
  }

  .contact-info-item p {
    font-size: 0.85rem;
    color: var(--gray-light);
    line-height: 1.5;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 36px;
    background: rgba(27,23,23,0.72);
    border: 1px solid rgba(223,184,111,0.1);
    align-self: start;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  }

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

  @media (min-width: 640px) {
    .form-row { grid-template-columns: 1fr 1fr; }
  }

  .form-group { display: flex; flex-direction: column; gap: 8px; }

  .form-group label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    background: rgba(27,23,23,0.8);
    border: 1px solid rgba(223,184,111,0.15);
    color: var(--white);
    padding: 14px 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s;
    outline: none;
  }

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

  .field-error {
    font-size: 0.78rem;
    line-height: 1.3;
    margin-top: 8px;
    color: rgba(255, 120, 120, 0.95);
  }

  .field-error:empty {
    display: none;
  }

  .field-stack {
    display: flex;
    flex-direction: column;
  }

  .input-error {
    border-color: rgba(255, 120, 120, 0.95) !important;
    box-shadow: 0 0 0 4px rgba(255, 120, 120, 0.10);
  }

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

  .contact-form .btn-primary {
    align-self: flex-start;
    width: 100%;
  }

  @media (min-width: 640px) {
    .contact-form .btn-primary { width: auto; }
  }

  /* ═══════════════════════════════════════════
     FOOTER
  ═══════════════════════════════════════════ */
  .footer {
    background: linear-gradient(180deg, rgba(15,13,13,0.98) 0%, rgba(8,7,7,1) 100%);
    border-top: 1px solid rgba(223,184,111,0.1);
    margin-top: 40px;
    padding: 104px 0 40px;
    position: relative;
  }

  .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1180px, calc(100% - 48px));
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(223,184,111,0.35), transparent);
    pointer-events: none;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }

  @media (min-width: 768px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  }

  .footer-brand p {
    font-size: 0.85rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
  }

  .footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .footer-col ul { list-style: none; }

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

  .footer-col ul a {
    font-size: 0.85rem;
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s;
  }

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

  .footer-bottom {
    border-top: 1px solid rgba(223,184,111,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-bottom p {
    font-size: 0.75rem;
    color: var(--gray);
  }

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

  .footer-social a {
    width: 36px; height: 36px;
    border: 1px solid rgba(223,184,111,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s;
  }

  .footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(223,184,111,0.05);
  }

  /* ═══════════════════════════════════════════
     ANIMATIONS
  ═══════════════════════════════════════════ */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
  }

  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ═══════════════════════════════════════════
     MOBILE
  ═══════════════════════════════════════════ */
  @media (max-width: 768px) {
    /* Fix Safari/WebKit: backdrop-filter crea un containing block
       que impide que position:fixed del overlay cubra la pantalla completa */
    .site-header,
    .navbar {
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }

    .brand-area {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .brand-location {
      white-space: normal;
      max-width: 220px;
      line-height: 1.4;
    }

    .nav-links {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(15,13,13,0.98);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 32px;
      z-index: 1002;
    }

    .nav-links.active { display: flex; }

    .nav-links a {
      font-size: 1.2rem;
      color: var(--white);
    }

    .nav-toggle,
    .hamburger { display: flex; z-index: 1003; }

    .hero h1 { font-size: 2.4rem; }

    .about-values { grid-template-columns: 1fr; }

    .projects-header { flex-direction: column; align-items: flex-start; }
  }

  /* ═══════════════════════════════════════════
     WHATSAPP FLOAT
  ═══════════════════════════════════════════ */
  .whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  }

  /* ---------------------------------------------------------
     SHARED INTERNAL PAGE LAYOUT
  --------------------------------------------------------- */
  .page-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 86px;
    background:
      radial-gradient(900px 520px at 20% 10%, rgba(129,0,0,0.24) 0%, transparent 58%),
      linear-gradient(180deg, rgba(15,13,13,0.97) 0%, rgba(27,23,23,0.96) 100%);
  }

  .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(223,184,111,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(223,184,111,0.06) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.35;
    pointer-events: none;
  }

  .page-hero .container {
    position: relative;
    z-index: 1;
    max-width: 1180px;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--gold);
  }

  .page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--white);
    max-width: 760px;
    margin-bottom: 14px;
  }

  .page-hero p {
    max-width: 720px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-light);
  }

  .section {
    padding: 120px 0;
    background: var(--black-deep);
  }

  .section .container {
    max-width: 1180px;
  }

  .section.section-alt {
    background: var(--black);
  }

  .section.section-alt {
    background:
      radial-gradient(900px 520px at 80% 0%, rgba(129,0,0,0.10) 0%, transparent 60%),
      var(--black);
  }

  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  .card {
    background: rgba(27,23,23,0.7);
    border: 1px solid rgba(223,184,111,0.1);
    padding: 36px;
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  }

  .card:hover {
    transform: translateY(-4px);
    border-color: rgba(223,184,111,0.25);
    background: rgba(27,23,23,0.88);
  }

  .card-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border: 1px solid rgba(223,184,111,0.18);
    color: var(--gold);
    font-size: 1.4rem;
  }

  .card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 14px;
  }

  .card-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--gray-light);
  }

  .content-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 32px;
    align-items: start;
  }

  .content-split .card,
  .panel-card {
    height: 100%;
  }

  .panel-stack {
    display: grid;
    gap: 14px;
  }

  .panel-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(223,184,111,0.12);
  }

  .panel-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .panel-label {
    color: var(--gray-light);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .panel-value {
    color: var(--white);
    font-weight: 600;
    text-align: right;
  }

  .panel-callout {
    margin-top: 24px;
    padding: 20px;
    background: rgba(223,184,111,0.08);
    border: 1px solid rgba(223,184,111,0.14);
  }

  .panel-callout p {
    margin: 0;
    color: var(--white);
    font-weight: 600;
    line-height: 1.7;
  }

  .panel-actions {
    display: grid;
    gap: 12px;
    margin-top: 22px;
  }

  .panel-actions .btn-primary,
  .panel-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    overflow: hidden;
    padding: 0;
  }

  .card-media {
    aspect-ratio: 4 / 3;
    background: rgba(27,23,23,0.55);
    overflow: hidden;
  }

  .card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
  }

  .card-link:hover .card-media img {
    transform: scale(1.04);
    filter: grayscale(10%);
  }

  .card-body {
    display: grid;
    gap: 10px;
    padding: 28px;
  }

  .card-body .eyebrow {
    margin-bottom: 0;
  }

  .stat-list {
    display: grid;
    gap: 14px;
    margin-top: 8px;
  }

  .stat-line {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(223,184,111,0.12);
  }

  .stat-line:last-child {
    border-bottom: 0;
  }

  .stat-line strong {
    color: var(--gold);
  }

  .feature-list {
    display: grid;
    gap: 14px;
  }

  .feature-item {
    padding: 16px 18px;
    background: rgba(27,23,23,0.96);
    border: 1px solid rgba(223,184,111,0.1);
  }

  .feature-item strong {
    display: block;
    color: var(--gold);
    margin-bottom: 6px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .feature-item span {
    color: var(--gray-light);
  }

  .cta-band {
    border-top: 1px solid rgba(223,184,111,0.12);
    background:
      linear-gradient(180deg, rgba(15,13,13,0.5) 0%, rgba(15,13,13,0.88) 100%),
      radial-gradient(900px 420px at 50% 0%, rgba(129,0,0,0.12) 0%, transparent 70%);
  }

  .cta-band-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
  }

  @media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .content-split { grid-template-columns: 1fr; }
  }

  @media (max-width: 768px) {
    .page-hero { padding: 126px 0 72px; }
    .grid-2,
    .grid-3 { grid-template-columns: 1fr; }
  }
