/* ─── TOKENS ─── */
:root {
    --navy:   #1B2744;
    --navy-light: #253360;
    --gold:   #C9A96E;
    --gold-light: #E2C99A;
    --cream:  #F7F4EE;
    --warm:   #EDE9E1;
    --text:   #2A2622;
    --muted:  #7A7168;
    --white:  #FFFFFF;
    --border: rgba(201,169,110,0.25);
  }
  
  /* ─── RESET ─── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body {
    font-family: 'Jost', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
  }

  img { 
    display: block; 
    width: 100%; 
    object-fit: cover;
  }

  a { text-decoration: none; color: inherit; }
  
  /* ─── TYPOGRAPHY ─── */
  .serif { font-family: 'Cormorant Garamond', serif; }
  h1,h2,h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.1; }
  h1 { font-size: clamp(3rem, 7vw, 6rem); }
  h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
  h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
  p  { line-height: 1.75; font-weight: 300; color: var(--muted); }
  
  /* ─── UTILITIES ─── */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
  .container--wide { max-width: 1440px; margin: 0 auto; padding: 0 2rem; }
  .label {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .divider {
    width: 48px; height: 1px;
    background: var(--gold);
    margin: 1.25rem 0 1.75rem;
  }
  .divider--center { margin: 1.25rem auto 1.75rem; }
  
  /* ─── BUTTONS ─── */
  .btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
  }
  .btn--primary {
    background: var(--navy);
    color: var(--white);
  }
  .btn--primary:hover {
    background: var(--gold);
    color: var(--navy);
  }
  .btn--outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
  }
  .btn--outline:hover {
    background: var(--navy);
    color: var(--white);
  }
  .btn--outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
  }
  .btn--outline-gold:hover {
    background: var(--gold);
    color: var(--navy);
  }
  .btn--gold {
    background: var(--gold);
    color: var(--navy);
  }
  .btn--gold:hover {
    background: var(--navy);
    color: var(--white);
  }
  
  /* ══════════════════════════════════════════
     NAV
  ══════════════════════════════════════════ */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.5rem 2rem;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.4s ease;
  }
  nav.scrolled {
    background: rgba(27,39,68,0.97);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    box-shadow: 0 2px 30px rgba(0,0,0,0.15);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 0.9rem;
  }
  .nav-logo svg { width: 48px; height: 48px; }
  .nav-logo-text { line-height: 1.2; }
  .nav-logo-text .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
  }
  .nav-logo-text .tagline {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
  }
  .nav-links {
    display: flex; gap: 2.5rem; list-style: none;
  }
  .nav-links a {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta { display: flex; gap: 1rem; align-items: center; }
  .nav-phone {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 0.05em;
  }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all 0.3s; }
  
  /* ══════════════════════════════════════════
     HERO
  ══════════════════════════════════════════ */
  #hero {
    position: relative;
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  
  /* Top zone: fills empty space, centers the logo */
  .hero-upper {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px; /* clears the fixed nav */
  }
  
  .hero-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeUp 1s ease both;
    animation-delay: 0.15s;
  }
  
  .hero-icon {
    width: clamp(72px, 12vw, 130px);
    height: clamp(72px, 12vw, 130px);
    filter: drop-shadow(0 6px 28px rgba(201,169,110,0.5));
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(to bottom, rgba(27,39,68,0.3) 0%, rgba(27,39,68,0.75) 60%, rgba(27,39,68,0.97) 100%);
    z-index: 1;
  }
  /* Subtle animated texture overlay */
  .hero-texture {
    position: absolute; inset: 0; z-index: 0;
    background-image:
      repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(201,169,110,0.03) 2px,
        rgba(201,169,110,0.03) 4px
      );
  }
  /* Hero image area — user replaces with real photo */
  .hero-img-wrap {
    position: absolute; inset: 0; z-index: 0;
    overflow: hidden;
  }
  .hero-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.55);
    transform: scale(1.04);
    animation: slowZoom 18s ease-out forwards;
  }
  @keyframes slowZoom { to { transform: scale(1); } }
  
  .hero-content {
    position: relative; z-index: 2;
    padding: 0 2rem 7rem;
    max-width: 1200px; margin: 0 auto; width: 100%;
    animation: fadeUp 1.1s ease both;
    animation-delay: 0.5s;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.4rem;
    display: flex; align-items: center; gap: 0.9rem;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 36px; height: 1px;
    background: var(--gold);
  }
  .hero-headline {
    color: var(--white);
    max-width: 750px;
    margin-bottom: 1.75rem;
    font-weight: 300;
    font-style: italic;
  }
  .hero-headline em { font-style: normal; color: var(--gold-light); }
  .hero-sub {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
  }
  .hero-actions {
    display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center;
  }
  /* Hero centered logo stamp */
  .hero-logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeDown 1.2s ease both;
    animation-delay: 0.1s;
    pointer-events: none;
    width: 100%;
    padding: 0 2rem;
  }
  @keyframes fadeDown {
    from { opacity: 0; transform: translate(-50%, -55%); }
    to   { opacity: 1; transform: translate(-50%, -50%); }
  }
  .hero-logo-center svg {
    width: 110px;
    height: 110px;
    filter: drop-shadow(0 4px 24px rgba(201,169,110,0.35));
  }
  .hero-logo-center .logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.06em;
    line-height: 1.15;
    margin-top: 0.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  }
  .hero-logo-center .logo-rule {
    width: 60px; height: 1px;
    background: var(--gold);
    margin: 0.85rem auto;
    opacity: 0.8;
  }
  .hero-logo-center .logo-sub {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
  }
  .hero-logo-center .logo-badge {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.8rem;
    opacity: 0.6;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-logo-center .logo-badge span {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 400;
  }
  .hero-logo-center .logo-badge span::before {
    content: '·';
    margin-right: 0.6rem;
    color: var(--gold);
  }
  .hero-scroll {
    position: absolute; bottom: 2.5rem; right: 2.5rem; z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  .hero-scroll::after {
    content: '';
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  }
  
  /* ══════════════════════════════════════════
     TRUST BAR
  ══════════════════════════════════════════ */
  .trust-bar {
    background: var(--navy);
    border-top: 1px solid rgba(201,169,110,0.2);
  }
  .trust-bar-inner {
    display: flex;
    justify-content: center;
    gap: 0;
  }
  .trust-item {
    flex: 1;
    max-width: 220px;
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(201,169,110,0.15);
  }
  .trust-item:last-child { border-right: none; }
  .trust-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.4rem;
  }
  .trust-desc {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
  }
  
  /* ══════════════════════════════════════════
     INTRO / ABOUT
  ══════════════════════════════════════════ */
  #about {
    padding: 8rem 0;
    background: var(--cream);
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  .about-img-stack {
    position: relative;
  }
  .about-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--warm);
    overflow: hidden;
  }
  .about-img-main img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
  }
  .about-img-main:hover img { transform: scale(1.03); }
  .about-img-accent {
    position: absolute;
    bottom: -2.5rem;
    right: -2.5rem;
    width: 48%;
    aspect-ratio: 1/1;
    background: var(--navy);
    border: 6px solid var(--cream);
    overflow: hidden;
    z-index: 1;
  }
  .about-img-accent img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.9;
  }
  .about-badge {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 90px; height: 90px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    z-index: 2;
  }
  .about-badge .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1;
  }
  .about-badge .text {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    text-align: center;
    line-height: 1.3;
  }
  .about-text { padding-right: 2rem; }
  .about-text h2 { margin-bottom: 0; }
  .about-text p { margin-bottom: 1.4rem; }
  .about-signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--navy);
    margin-top: 2rem;
    margin-bottom: 0.3rem;
  }
  .about-title {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
  }
  
  /* ══════════════════════════════════════════
     SERVICES
  ══════════════════════════════════════════ */
  #services {
    padding: 8rem 0;
    background: var(--white);
  }
  .services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
  }
  .services-primary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 4rem;
  }
  .service-card {
    background: var(--navy);
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: all 0.35s ease;
  }
  .service-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,169,110,0.12) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s;
  }
  .service-card:hover { transform: translateY(-4px); }
  .service-card:hover::before { opacity: 1; }
  .service-card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(201,169,110,0.18);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: color 0.35s;
  }
  .service-card:hover .service-card-num { color: rgba(201,169,110,0.35); }
  .service-card h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }
  .service-card p {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    line-height: 1.7;
  }
  .service-card-tag {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,169,110,0.15);
    padding: 0.3rem 0.8rem;
    margin-bottom: 1rem;
    border-radius: 1px;
  }
  
  /* Secondary services */
  .services-secondary-title {
    text-align: center;
    margin-bottom: 2rem;
  }
  .services-secondary-title h3 {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .services-secondary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }
  .service-pill {
    padding: 0.65rem 1.5rem;
    border: 1px solid var(--warm);
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0.08em;
    transition: all 0.25s;
    border-radius: 1px;
  }
  .service-pill:hover {
    border-color: var(--navy);
    color: var(--navy);
    background: var(--warm);
  }
  
  /* ══════════════════════════════════════════
     WHY US
  ══════════════════════════════════════════ */
  #why {
    padding: 8rem 0;
    background: var(--cream);
  }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .why-text h2 { margin-bottom: 1rem; }
  .why-text p { margin-bottom: 2.5rem; }
  .why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .why-list li {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--warm);
    align-items: flex-start;
  }
  .why-list li:first-child { border-top: 1px solid var(--warm); }
  .why-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    margin-top: 0.15rem;
  }
  .why-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
  .why-item-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
    font-weight: 500;
  }
  .why-item-body {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
  }
  .why-img-wrap {
    position: relative;
  }
  .why-img-main {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--warm);
  }
  .why-img-main img { width: 100%; height: 100%; object-fit: cover; }
  .why-pullquote {
    position: absolute;
    bottom: 3rem;
    left: -3rem;
    background: var(--white);
    padding: 2rem 2.5rem;
    max-width: 300px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  }
  .why-pullquote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--navy);
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  .why-pullquote-attr {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
  }
  
  /* ══════════════════════════════════════════
     REVIEWS
  ══════════════════════════════════════════ */
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .review-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,169,110,0.2);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: background 0.3s, border-color 0.3s;
  }
  .review-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(201,169,110,0.4);
  }
  .review-card--cta {
    background: rgba(201,169,110,0.08);
    border-color: rgba(201,169,110,0.35);
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .review-stars {
    color: #F5A623;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
  .review-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
  }
  .review-author { margin-top: auto; }
  .review-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--white);
  }
  .review-meta {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.2rem;
  }
  
  /* ══════════════════════════════════════════
     GALLERY
  ══════════════════════════════════════════ */
  #work {
    padding: 8rem 0 0;
    background: var(--white);
  }
  .gallery-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 6px;
  }
  .gallery-cell {
    overflow: hidden;
    background: var(--warm);
    position: relative;
  }
  .gallery-cell img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .gallery-cell:hover img { transform: scale(1.04); }
  .gallery-cell--tall {
    grid-row: 1 / 3;
  }
  .gallery-cell .overlay {
    position: absolute; inset: 0;
    background: rgba(27,39,68,0);
    transition: background 0.35s;
    display: flex; align-items: flex-end; padding: 1.5rem;
  }
  .gallery-cell:hover .overlay { background: rgba(27,39,68,0.45); }
  .overlay-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s;
  }
  .gallery-cell:hover .overlay-label { opacity: 1; transform: translateY(0); }
  .gallery-caption {
    background: var(--navy);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .gallery-caption p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    max-width: 500px;
  }
  
  /* ══════════════════════════════════════════
     PROCESS
  ══════════════════════════════════════════ */
  #process {
    padding: 8rem 0;
    background: var(--cream);
  }
  .process-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
  }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: calc(12.5% + 1rem);
    right: calc(12.5% + 1rem);
    height: 1px;
    background: linear-gradient(to right, var(--gold), rgba(201,169,110,0.2));
  }
  .process-step {
    padding: 0 1.5rem 2rem;
    text-align: center;
  }
  .process-num {
    width: 64px; height: 64px;
    background: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gold);
    position: relative; z-index: 1;
    border: 3px solid var(--cream);
    box-shadow: 0 0 0 1px var(--gold);
  }
  .process-step h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
  }
  .process-step p { font-size: 0.88rem; }
  
  /* ══════════════════════════════════════════
     CTA BAND
  ══════════════════════════════════════════ */
  #cta-band {
    background: var(--navy);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
  }
  #cta-band::before {
    content: 'CRAFTSMEN';
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18vw;
    font-weight: 400;
    color: rgba(255,255,255,0.025);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.05em;
  }
  .cta-band-inner {
    text-align: center;
    position: relative; z-index: 1;
  }
  .cta-band-inner h2 {
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 1rem;
    font-style: italic;
  }
  .cta-band-inner h2 em { font-style: normal; color: var(--gold-light); }
  .cta-band-inner p {
    color: rgba(255,255,255,0.55);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    font-size: 0.95rem;
  }
  .cta-band-actions {
    display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
  }
  
  /* ══════════════════════════════════════════
     CONTACT
  ══════════════════════════════════════════ */
  #contact {
    padding: 8rem 0;
    background: var(--white);
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: start;
  }
  .contact-info h2 { margin-bottom: 1rem; }
  .contact-info p { margin-bottom: 2.5rem; }
  .contact-detail {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 3rem;
  }
  .contact-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
  }
  .contact-item-icon {
    width: 40px; height: 40px;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .contact-item-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
  .contact-item-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.25rem;
  }
  .contact-item-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--navy);
  }
  .contact-item-value a:hover { color: var(--gold); }
  
  /* Form */
  .contact-form {
    background: var(--cream);
    padding: 3.5rem;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }
  .form-group.full { grid-column: 1 / -1; }
  .form-group label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy);
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.9rem 1.1rem;
    border: 1.5px solid var(--warm);
    background: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text);
    transition: border-color 0.25s;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--navy);
  }
  .form-group textarea { min-height: 130px; resize: vertical; }
  .form-submit {
    width: 100%;
    padding: 1.15rem;
    margin-top: 0.5rem;
  }
  .form-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 1rem;
  }
  
  /* ══════════════════════════════════════════
     FOOTER
  ══════════════════════════════════════════ */
  footer {
    background: var(--navy);
    padding: 4rem 0 2rem;
  }
  .footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(201,169,110,0.15);
    margin-bottom: 2rem;
  }
  .footer-brand .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    margin-top: 1rem;
    margin-bottom: 0.25rem;
  }
  .footer-brand .tagline {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
  }
  .footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 280px;
  }
  .footer-col h4 {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }
  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .footer-links a {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--gold); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-copy {
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(255,255,255,0.3);
  }
  .footer-legal {
    display: flex; gap: 1.5rem;
  }
  .footer-legal a {
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(255,255,255,0.3);
  }
  
  /* ══════════════════════════════════════════
     MOBILE NAV
  ══════════════════════════════════════════ */
  .mobile-nav {
    display: none;
    position: fixed; inset: 0; z-index: 200;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    padding: 2rem;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.03em;
  }
  .mobile-nav a:hover { color: var(--gold); }
  .mobile-close {
    position: absolute; top: 1.5rem; right: 2rem;
    font-size: 2rem; color: var(--gold); cursor: pointer;
    background: none; border: none;
  }
  .mobile-contact {
    margin-top: 1rem;
    text-align: center;
  }
  .mobile-contact p {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
  }
  .mobile-contact a {
    font-size: 1.4rem !important;
    color: var(--gold) !important;
  }
  
  /* ══════════════════════════════════════════
     SCROLL ANIMATIONS
  ══════════════════════════════════════════ */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  
  /* ══════════════════════════════════════════
     RESPONSIVE
  ══════════════════════════════════════════ */
  @media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 4rem; }
    .about-text { padding-right: 0; }
    .about-img-accent { right: -1rem; bottom: -1rem; }
    .why-grid { grid-template-columns: 1fr; }
    .why-img-wrap { display: none; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    .trust-bar-inner { flex-wrap: wrap; }
    .trust-item { flex: 1 1 45%; min-width: 130px; }
    .services-primary { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-cell--tall { grid-row: auto; }
    .gallery-caption { flex-direction: column; align-items: flex-start; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 2rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-content { padding-bottom: 5rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 480px) {
    .trust-item { flex: 1 1 100%; border-right: none; border-bottom: 1px solid rgba(201,169,110,0.15); }
    .gallery-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
  }
  