  @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&family=Bebas+Neue&display=swap');

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

  :root {
    --gold: #D4AF37;
    --gold-light: #E8CC60;
    --gold-dark: #A88A1A;
    --black: #000000;
    --black-soft: #0A0A0A;
    --black-card: #111111;
    --black-border: #1A1A1A;
    --white: #FFFFFF;
    --grey: #D8D8D8;
    --grey-dim: #888888;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Bebas Neue', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 3rem;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212,175,55,0.15);
    transition: all 0.3s ease;
  }

  nav.scrolled {
    padding: 0.6rem 3rem;
    background: rgba(0,0,0,0.97);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
  }

  .nav-logo img {
    height: 52px;
    width: auto;
  }

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

  .nav-links a {
    color: var(--grey);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

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

  .nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 0.5rem 1.4rem;
    border-radius: 2px;
    font-weight: 600 !important;
    transition: all 0.2s !important;
  }

  .nav-cta:hover {
    background: var(--gold-light) !important;
    box-shadow: 0 0 20px rgba(212,175,55,0.4) !important;
    color: var(--black) !important;
  }

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

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s;
  }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/hero-garage-conversion-exterior.jpg');
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.35);
    transform: scale(1.05);
    transition: transform 8s ease;
  }

  .hero-bg.loaded { transform: scale(1); }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.3) 0%,
      rgba(0,0,0,0.1) 40%,
      rgba(0,0,0,0.7) 100%
    );
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 900px;
  }

  .hero-logo {
    width: 120px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 30px rgba(212,175,55,0.3));
    animation: fadeDown 0.8s ease forwards;
  }

  .hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    animation: fadeDown 0.9s ease 0.1s both;
  }

  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 1.2rem;
    animation: fadeDown 1s ease 0.2s both;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-sub {
    font-size: 1rem;
    color: var(--grey);
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    animation: fadeDown 1s ease 0.35s both;
  }

  .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeDown 1s ease 0.5s both;
  }

  .btn-gold {
    background: var(--gold);
    color: var(--black);
    padding: 0.85rem 2.2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.25s;
    display: inline-block;
  }

  .btn-gold:hover {
    background: var(--gold-light);
    box-shadow: 0 0 30px rgba(212,175,55,0.5), 0 0 60px rgba(212,175,55,0.2);
    transform: translateY(-1px);
  }

  .btn-outline {
    background: transparent;
    color: var(--white);
    padding: 0.85rem 2.2rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.4);
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.25s;
    display: inline-block;
  }

  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 20px rgba(212,175,55,0.15);
  }

  .hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    opacity: 0.6;
  }

  .hero-scroll span {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    margin: 0 auto;
  }

  /* ─── STATS ─── */
  .stats {
    background: var(--gold);
    padding: 3rem 2rem;
  }

  .stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .stat-item {
    text-align: center;
    padding: 1rem 2rem;
    border-right: 1px solid rgba(0,0,0,0.15);
  }

  .stat-item:last-child { border-right: none; }

  .stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1;
    margin-bottom: 0.3rem;
  }

  .stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.7);
  }

  /* ─── SECTION BASE ─── */
  section { padding: 6rem 2rem; }

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

  .section-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
    display: block;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.5rem;
  }

  .gold-rule {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 2rem;
  }

  /* ─── ABOUT ─── */
  .about {
    background: var(--black-soft);
  }

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

  .about-text p {
    color: var(--grey);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .about-image {
    position: relative;
  }

  .about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2px;
    filter: brightness(0.9);
  }

  .about-image::before {
    content: '';
    position: absolute;
    top: -12px; right: -12px;
    width: 100%; height: 100%;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 2px;
    z-index: -1;
  }

  /* ─── SERVICES ─── */
  .services {
    background: var(--black);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    margin-top: 3rem;
    background: rgba(212,175,55,0.08);
  }

  .service-card {
    background: var(--black-card);
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
  }

  .service-card:hover::before { width: 100%; }

  .service-card:hover {
    background: #131313;
  }

  .service-icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    display: block;
  }

  .service-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.8rem;
  }

  .service-card p {
    font-size: 0.85rem;
    color: var(--grey-dim);
    line-height: 1.7;
  }

  /* ─── PROJECTS ─── */
  .projects {
    background: var(--black-soft);
  }

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

  .project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--black-card);
  }

  .project-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.75);
  }

  .project-card:hover img {
    transform: scale(1.04);
    filter: brightness(0.55);
  }

  .project-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%);
    transform: translateY(20px);
    opacity: 0.9;
    transition: all 0.4s ease;
  }

  .project-card:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
  }

  .project-tag {
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.4rem;
  }

  .project-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
  }

  .project-overlay p {
    font-size: 0.8rem;
    color: rgba(216,216,216,0.7);
    line-height: 1.6;
  }

  /* ─── GALLERY ─── */
  .gallery {
    background: var(--black);
  }

  .gallery-filters {
    display: flex;
    gap: 0.5rem;
    margin: 2.5rem 0 2rem;
    flex-wrap: wrap;
  }

  .filter-btn {
    background: transparent;
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--grey-dim);
    padding: 0.45rem 1.2rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s;
    font-family: var(--font-body);
  }

  .filter-btn:hover, .filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
  }

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

  .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.3s;
    filter: brightness(0.8);
  }

  .gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.6);
  }

  .gallery-item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .gallery-item:hover .gallery-item-overlay { opacity: 1; }

  .gallery-item-overlay span {
    color: var(--gold);
    font-size: 2rem;
  }

  /* LIGHTBOX */
  .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.97);
    align-items: center;
    justify-content: center;
  }

  .lightbox.open { display: flex; }

  .lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border: 1px solid rgba(212,175,55,0.2);
  }

  .lightbox-close {
    position: absolute;
    top: 1.5rem; right: 2rem;
    color: var(--grey);
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    transition: color 0.2s;
  }

  .lightbox-close:hover { color: var(--gold); }

  /* ─── WHY CHOOSE ─── */
  .why {
    background: var(--black-soft);
    position: relative;
    overflow: hidden;
  }

  .why::before {
    content: 'M4';
    position: absolute;
    font-family: var(--font-accent);
    font-size: 30vw;
    color: rgba(212,175,55,0.025);
    right: -5vw;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    letter-spacing: -0.02em;
  }

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

  .why-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    padding: 2rem 1.5rem;
    border-radius: 2px;
    transition: border-color 0.3s, box-shadow 0.3s;
    position: relative;
  }

  .why-card:hover {
    border-color: rgba(212,175,55,0.4);
    box-shadow: 0 0 20px rgba(212,175,55,0.05);
  }

  .why-check {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    display: block;
  }

  .why-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.3;
  }

  /* ─── QUOTE FORM ─── */
  .quote {
    background: var(--black);
    position: relative;
  }

  .quote-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
  }

  .quote-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1.2rem;
  }

  .quote-info p {
    color: var(--grey-dim);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .contact-detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--grey);
    font-size: 0.85rem;
  }

  .contact-detail span:first-child {
    color: var(--gold);
    font-size: 1.1rem;
  }

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

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .form-group.full { grid-column: 1 / -1; }

  .form-group label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-dim);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    color: var(--white);
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    -webkit-appearance: none;
  }

  .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23D4AF37'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
  }

  .form-group select option { background: #111; }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212,175,55,0.1);
  }

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

  .form-submit {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
  }

  .form-submit .btn-gold {
    width: 100%;
    padding: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }

  #form-success {
    display: none;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.3);
    padding: 1.5rem;
    text-align: center;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-top: 1rem;
    border-radius: 2px;
  }

  /* ─── FOOTER ─── */
  footer {
    background: #050505;
    border-top: 1px solid rgba(212,175,55,0.15);
    padding: 4rem 2rem 2rem;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--black-border);
  }

  .footer-brand img {
    height: 70px;
    width: auto;
    margin-bottom: 1rem;
  }

  .footer-brand p {
    font-size: 0.82rem;
    color: var(--grey-dim);
    line-height: 1.7;
    max-width: 260px;
  }

  .footer-tagline {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold);
    font-style: italic;
    margin-top: 1rem;
    display: block;
  }

  .footer-col h5 {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
  }

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

  .footer-col ul a {
    color: var(--grey-dim);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
  }

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

  .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-bottom p {
    font-size: 0.75rem;
    color: rgba(136,136,136,0.5);
  }

  .social-links {
    display: flex;
    gap: 1rem;
  }

  .social-links a {
    color: var(--grey-dim);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid var(--black-border);
    padding: 0.4rem 1rem;
    border-radius: 2px;
  }

  .social-links a:hover {
    color: var(--gold);
    border-color: rgba(212,175,55,0.4);
  }

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

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

  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .quote-inner { grid-template-columns: 1fr; gap: 3rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  }

  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero h1 { font-size: 2.5rem; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    section { padding: 4rem 1.5rem; }
  }

  @media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.15); }
  }
