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

    :root {
      --black: #0a0a08;
      --charcoal: #1a1a17;
      --charcoal-mid: #242420;
      --charcoal-light: #2e2e29;
      --gold: #c9a84c;
      --gold-light: #e8c96a;
      --gold-pale: #f5e9c8;
      --cream: #f0ead8;
      --muted: #9a9a8e;
      --text: #e0dbd0;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--text);
      font-family: 'Montserrat', sans-serif;
      font-weight: 300;
      font-size: 24px;
      line-height: 1.8;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.25rem 4rem;
      background: linear-gradient(to bottom, rgba(10,10,8,0.97) 0%, transparent 100%);
      transition: background 0.4s;
    }
    nav.scrolled {
      background: rgba(10,10,8,0.97);
      border-bottom: 1px solid rgba(201,168,76,0.12);
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
    }
    .nav-logo-text {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: 1.65rem;
      letter-spacing: 0.18em;
      color: var(--gold);
      text-transform: uppercase;
      line-height: 1;
    }
    .nav-logo-text em {
      font-style: italic;
      color: var(--text);
      font-family: 'Cormorant Garamond', serif;
    }
    .nav-links {
      display: flex;
      gap: 1.6rem;
      list-style: none;
    }
    .nav-links a {
      display: block;
      padding: 0.55rem 0.4rem;
      color: var(--text);
      text-decoration: none;
      font-size: 1.125rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--gold); }

    /* ── HERO ── */
    #hero {
      position: relative;
      height: 100vh;
      min-height: 700px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 4rem 7rem;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 2rem;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,10,8,1) 0%, rgba(10,10,8,0.45) 50%, rgba(10,10,8,0.55) 100%);
    }
    /* Architectural grid overlay */
    .hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 40%, transparent 90%);
    }
    /* Decorative golden arc */
    .hero-bg::after {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      border: 1px solid rgba(201,168,76,0.08);
      box-shadow: 0 0 0 60px rgba(201,168,76,0.03), 0 0 0 120px rgba(201,168,76,0.02);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0;
      max-width: 780px;
    }
    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 1s 0.3s forwards;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 40px;
      height: 1px;
      background: var(--gold);
    }
    .hero-eyebrow span {
      font-size: 1.05rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(3.5rem, 7vw, 6rem);
      line-height: 1.05;
      color: var(--cream);
      opacity: 0;
      animation: fadeUp 1s 0.55s forwards;
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold-light);
    }
    .hero-sub {
      margin-top: 1.8rem;
      font-size: 1.32rem;
      letter-spacing: 0.06em;
      color: var(--muted);
      max-width: 440px;
      line-height: 2;
      opacity: 0;
      animation: fadeUp 1s 0.8s forwards;
    }
    .hero-cta {
      margin-top: 3rem;
      display: flex;
      gap: 1.5rem;
      align-items: center;
      opacity: 0;
      animation: fadeUp 1s 1s forwards;
    }
    .btn-primary {
      display: inline-block;
      padding: 0.95rem 2.5rem;
      background: var(--gold);
      color: var(--black);
      text-decoration: none;
      font-size: 1.02rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      transition: background 0.3s, transform 0.2s;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
    .btn-ghost {
      display: inline-block;
      color: var(--text);
      text-decoration: none;
      font-size: 1.02rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      border-bottom: 1px solid rgba(201,168,76,0.35);
      padding-bottom: 2px;
      transition: color 0.3s, border-color 0.3s;
    }
    .btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

    .hero-scroll {
      position: absolute;
      right: 4rem;
      bottom: 4rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.7rem;
      opacity: 0;
      animation: fadeIn 1s 1.4s forwards;
    }
    .hero-scroll span {
      font-size: 0.9rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--muted);
      writing-mode: vertical-rl;
    }
    .scroll-line {
      width: 1px;
      height: 60px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollDrop 2s 1.8s infinite;
    }

    /* ── DIVIDER ── */
    .gold-divider {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      padding: 0 4rem;
      margin: 0 auto;
    }
    .gold-divider::before, .gold-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
    }
    .gold-divider-mark {
      width: 6px; height: 6px;
      border: 1px solid var(--gold);
      transform: rotate(45deg);
      flex-shrink: 0;
    }

    /* ── ABOUT ── */
    #about {
      padding: 9rem 4rem;
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }
    .about-label {
      font-size: 1.05rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    .about-label::before {
      content: '';
      display: block;
      width: 30px;
      height: 1px;
      background: var(--gold);
    }
    .about-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      line-height: 1.2;
      color: var(--cream);
      margin-bottom: 2rem;
    }
    .about-title em { font-style: italic; color: var(--gold-light); }
    .about-text {
      color: var(--muted);
      line-height: 2;
      font-size: 1.32rem;
      margin-bottom: 1.5rem;
    }
    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
      padding-top: 3rem;
      border-top: 1px solid rgba(201,168,76,0.12);
    }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 4.2rem;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
    }
    .stat-label {
      font-size: 1.05rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 0.4rem;
    }
    .about-visual {
      position: relative;
    }
    .about-visual-box {
      background: var(--charcoal);
      aspect-ratio: 4/5;
      position: relative;
      overflow: hidden;
    }
    .about-visual-box::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 50%, rgba(10,10,8,0.3) 100%);
      z-index: 1;
      pointer-events: none;
    }
    .about-visual-box img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .about-visual-accent {
      position: absolute;
      top: -1.5rem; left: -1.5rem;
      width: 60%;
      height: 40%;
      border: 1px solid rgba(201,168,76,0.2);
      pointer-events: none;
    }
    .about-visual-accent2 {
      position: absolute;
      bottom: -1.5rem; right: -1.5rem;
      width: 50%;
      height: 30%;
      border: 1px solid rgba(201,168,76,0.12);
      pointer-events: none;
    }

    /* ── SERVICES ── */
    #services {
      background: var(--charcoal);
      padding: 9rem 4rem;
    }
    .services-inner {
      max-width: 1300px;
      margin: 0 auto;
    }
    .section-header {
      text-align: center;
      margin-bottom: 5rem;
    }
    .section-label {
      font-size: 1.05rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--cream);
      line-height: 1.2;
    }
    .section-title em { font-style: italic; color: var(--gold-light); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: rgba(201,168,76,0.1);
    }
    .service-card {
      background: var(--charcoal);
      padding: 3rem 2.5rem;
      position: relative;
      transition: background 0.3s;
    }
    .service-card:hover { background: var(--charcoal-light); }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 0; height: 2px;
      background: var(--gold);
      transition: width 0.4s ease;
    }
    .service-card:hover::before { width: 100%; }
    .service-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 5.25rem;
      font-weight: 300;
      color: rgba(201,168,76,0.12);
      line-height: 1;
      margin-bottom: 1.5rem;
    }
    .service-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--cream);
      margin-bottom: 1rem;
    }
    .service-text {
      font-size: 1.32rem;
      color: var(--muted);
      line-height: 2;
    }

    /* ── CONTACT ── */
    #contact {
      padding: 9rem 4rem;
      max-width: 1300px;
      margin: 0 auto;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 6rem;
    }
    .contact-info-col {}
    .contact-block {
      margin-top: 2.5rem;
    }
    .contact-block-label {
      font-size: 0.9rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.6rem;
    }
    .contact-block-value {
      font-size: 1.38rem;
      color: var(--text);
      line-height: 1.8;
    }
    .contact-block-value a {
      color: var(--text);
      text-decoration: none;
      transition: color 0.3s;
    }
    .contact-block-value a:hover { color: var(--gold); }

    /* Sub-trades callout */
    .subtrade-box {
      margin-top: 3.5rem;
      padding: 2rem 2rem 2rem;
      border: 1px solid rgba(201,168,76,0.2);
      background: var(--charcoal);
      position: relative;
    }
    .subtrade-box::before {
      content: 'For Sub-Trades';
      position: absolute;
      top: -0.6rem; left: 1.5rem;
      background: var(--charcoal);
      padding: 0 0.6rem;
      font-size: 0.9rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .subtrade-box p {
      font-size: 1.32rem;
      color: var(--muted);
      line-height: 2;
    }
    .subtrade-box ul {
      list-style: none;
      margin-top: 1rem;
    }
    .subtrade-box ul li {
      font-size: 1.2rem;
      color: var(--text);
      padding: 0.35rem 0;
      border-bottom: 1px solid rgba(201,168,76,0.08);
      display: flex;
      align-items: baseline;
      gap: 0.8rem;
    }
    .subtrade-box ul li::before {
      content: '—';
      color: var(--gold);
      flex-shrink: 0;
      font-size: 1.05rem;
    }

    /* Form */
    .contact-form-col {}
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .form-group {
      margin-bottom: 1.2rem;
    }
    .form-group.full { grid-column: 1 / -1; }
    label {
      display: block;
      font-size: 0.9rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.5rem;
    }
    input, select, textarea {
      width: 100%;
      background: var(--charcoal);
      border: 1px solid rgba(201,168,76,0.15);
      color: var(--text);
      padding: 0.85rem 1rem;
      font-family: 'Montserrat', sans-serif;
      font-size: 1.23rem;
      font-weight: 300;
      outline: none;
      transition: border-color 0.3s;
      appearance: none;
    }
    input:focus, select:focus, textarea:focus {
      border-color: rgba(201,168,76,0.5);
    }
    select option { background: var(--charcoal); }
    textarea { resize: vertical; min-height: 130px; }
    .form-submit {
      margin-top: 0.5rem;
    }
    .form-submit button {
      width: 100%;
      padding: 1.1rem;
      background: var(--gold);
      color: var(--black);
      border: none;
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      transition: background 0.3s, transform 0.2s;
    }
    .form-submit button:hover { background: var(--gold-light); transform: translateY(-1px); }
    .form-note {
      margin-top: 0.8rem;
      font-size: 1.05rem;
      color: var(--muted);
      text-align: center;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--charcoal);
      border-top: 1px solid rgba(201,168,76,0.1);
      padding: 3rem 4rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .footer-logo-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      letter-spacing: 0.12em;
      color: var(--gold);
      line-height: 1;
    }
    .footer-logo-text em {
      font-style: italic;
      color: var(--text);
      font-family: 'Cormorant Garamond', serif;
    }
    .footer-copy {
      font-size: 1.05rem;
      color: var(--muted);
      letter-spacing: 0.1em;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes scrollDrop {
      0%   { transform: scaleY(1); transform-origin: top; opacity: 1; }
      50%  { transform: scaleY(0.3); transform-origin: top; opacity: 0.4; }
      100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    }

    .file-drop-zone {
      border: 1px dashed rgba(201,168,76,0.3);
      background: var(--charcoal);
      padding: 1.6rem 1rem;
      text-align: center;
      transition: border-color 0.3s, background 0.3s;
      cursor: pointer;
    }
    .file-drop-zone.dragover {
      border-color: var(--gold);
      background: rgba(201,168,76,0.05);
    }
    .file-drop-zone.has-file {
      border-color: rgba(201,168,76,0.5);
      border-style: solid;
    }
    .file-drop-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      font-size: 1.2rem;
      color: var(--muted);
    }
    .file-drop-inner u { color: var(--gold-light); text-decoration-color: rgba(201,168,76,0.4); }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 1.5rem 2rem; }
      .nav-links { gap: 1.5rem; }
      #hero { align-items: center; }
      .hero-content { padding: 0 2rem 4rem; }
      #about { grid-template-columns: 1fr; padding: 6rem 2rem; gap: 4rem; }
      .about-visual { display: none; }
      #services { padding: 6rem 2rem; }
      .services-grid { grid-template-columns: 1fr; }
      #contact { padding: 6rem 2rem; }
      .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
      .form-row { grid-template-columns: 1fr; }
      footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2.5rem 2rem; }
    }
  
    /* ── GALLERY ── */
    .gallery-section {
      padding: 0;
      background: var(--black);
    }
    .gallery-strip {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 480px 360px;
      gap: 3px;
    }
    .gallery-strip .g-main {
      grid-column: 1;
      grid-row: 1 / 3;
    }
    .gallery-strip .g-cell {
      overflow: hidden;
      position: relative;
    }
    .gallery-strip .g-cell img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.7s ease;
      filter: brightness(0.88);
    }
    .gallery-strip .g-cell:hover img {
      transform: scale(1.04);
      filter: brightness(1);
    }
    /* Details strip: 3-across horizontal band */
    .gallery-details {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 3px;
      margin-top: 3px;
    }
    .gallery-details .g-cell {
      height: 280px;
      overflow: hidden;
      position: relative;
    }
    .gallery-details .g-cell img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.7s ease;
      filter: brightness(0.88);
    }
    .gallery-details .g-cell:hover img {
      transform: scale(1.04);
      filter: brightness(1);
    }
    .gallery-label {
      padding: 5rem var(--pad) 2rem;
      display: flex;
      align-items: baseline;
      gap: 2rem;
    }
    .gallery-label-text {
      font-size: 0.9rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .gallery-label-rule {
      flex: 1;
      height: 1px;
      background: rgba(201,168,76,0.15);
    }
    .gallery-caption {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.425rem;
      font-weight: 300;
      font-style: italic;
      color: var(--muted);
      letter-spacing: 0.05em;
    }
  
    /* ── GALLERY ── */
    #gallery {
      padding: 9rem 4rem;
      background: var(--black);
    }
    .gallery-inner {
      max-width: 1300px;
      margin: 0 auto;
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 3px;
      margin-top: 4rem;
    }
    .gallery-item {
      position: relative;
      overflow: hidden;
      background: var(--charcoal);
    }
    .gallery-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,10,8,0.92) 0%, rgba(10,10,8,0.65) 55%, rgba(10,10,8,0) 100%);
      background-size: 100% 25%;
      background-repeat: no-repeat;
      background-position: bottom;
      opacity: 0;
      transition: opacity 0.35s ease;
      pointer-events: none;
      z-index: 1;
    }
    .gallery-item:hover::after {
      opacity: 1;
    }
    .gallery-item.tall {
      grid-row: span 2;
    }
    .gallery-item.wide {
      grid-column: span 3;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.7s ease, filter 0.5s ease;
      filter: saturate(0.85) brightness(0.92);
    }
    .gallery-item:hover img {
      transform: scale(1.04);
      filter: saturate(1) brightness(1);
    }
    .gallery-item-short {
      aspect-ratio: 4/3;
    }
    .gallery-item-tall {
      aspect-ratio: unset;
    }
    .gallery-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 1.75rem 1.6rem;
      background: none;
      font-size: 1.2rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(232,201,106,0.9);
      text-shadow: 0 2px 8px rgba(0,0,0,0.6);
      opacity: 0;
      transform: translateY(6px);
      transition: opacity 0.4s, transform 0.4s;
      z-index: 2;
    }
    .gallery-item:hover .gallery-caption {
      opacity: 1;
      transform: translateY(0);
    }
