/* ============================================================
   HIGHLINE MARBLE & GRANITE — style.css
   Shared styles across all pages
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --black:      #0a0a0a;
  --charcoal:   #1a1a1a;
  --dark:       #111111;
  --mid:        #2c2c2c;
  --stone:      #3a3530;
  --warm-gray:  #8a8480;
  --light-gray: #c8c4be;
  --cream:      #f5f2ee;
  --cream-dark: #ede9e3;
  --white:      #ffffff;
  --gold:       #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark:  #9a7a2e;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;

  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.25s;
  --t-med:  0.4s;
  --t-slow: 0.7s;

  --nav-h: 80px;
}
/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}
 
/* ── CUSTOM CURSOR ── */
#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  top: 0; left: 0; /* Safari: avoid inset shorthand */
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transition: width .25s, height .25s, opacity .25s;
  /* Removed mix-blend-mode: difference — causes Safari render bugs */
}
#cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,168,76,.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transition: width .3s, height .3s;
}
body:hover #cursor { opacity: 1; }
 
/* ── LOADER ── */
#loader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0; /* Safari: avoid inset shorthand */
  z-index: 9999;
  background: var(--black);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 28px;
  /* Safari fix: use opacity only, handle visibility in JS */
  opacity: 1;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  visibility: visible;
}
#loader.hidden {
  opacity: 0;
  pointer-events: none;
  /* Safari fix: delay visibility until after opacity transition */
  -webkit-transition: opacity 1s ease, visibility 0s linear 1s;
  transition: opacity 1s ease, visibility 0s linear 1s;
  visibility: hidden;
}
 
/* Logo */
.loader-logo { position: relative; }
.loader-logo img {
  width: 140px;
  -webkit-animation: loader-pulse 2s ease-in-out infinite;
  animation: loader-pulse 2s ease-in-out infinite;
}
.loader-logo::before {
  content: "";
  position: absolute;
  top: -20px; left: -20px; right: -20px; bottom: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%);
  -webkit-animation: glow-pulse 2s ease-in-out infinite;
  animation: glow-pulse 2s ease-in-out infinite;
}
 
@-webkit-keyframes loader-pulse {
  0%, 100% { opacity: .3; -webkit-transform: scale(.94) rotate(-1deg); transform: scale(.94) rotate(-1deg); }
  50%       { opacity: 1;  -webkit-transform: scale(1.05) rotate(0deg); transform: scale(1.05) rotate(0deg); }
}
@keyframes loader-pulse {
  0%, 100% { opacity: .3; transform: scale(.94) rotate(-1deg); }
  50%       { opacity: 1;  transform: scale(1.05) rotate(0deg); }
}
 
@-webkit-keyframes glow-pulse {
  0%, 100% { -webkit-transform: scale(.8); transform: scale(.8); opacity: .4; }
  50%       { -webkit-transform: scale(1.3); transform: scale(1.3); opacity: 1; }
}
@keyframes glow-pulse {
  0%, 100% { transform: scale(.8); opacity: .4; }
  50%       { transform: scale(1.3); opacity: 1; }
}
 
/* Text */
.loader-text {
  font-family: "Cinzel", serif;
  font-size: .55rem;
  letter-spacing: .7em;
  color: var(--gold-dim);
  text-transform: uppercase;
  -webkit-animation: flicker 2s ease-in-out infinite;
  animation: flicker 2s ease-in-out infinite;
}
@-webkit-keyframes flicker {
  0%, 100% { opacity: .3; }
  50%       { opacity: 1; }
}
@keyframes flicker {
  0%, 100% { opacity: .3; }
  50%       { opacity: 1; }
}
 
/* Progress bar */
.loader-bar-wrap {
  width: 220px;
  height: 1px;
  background: rgba(201,168,76,.15);
  position: relative;
  overflow: hidden;
}
.loader-bar-inner {
  height: 100%;
  width: 0;
  background: -webkit-linear-gradient(left, transparent, var(--gold-light), var(--gold), transparent);
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), transparent);
  /* Safari fix: use both -webkit- and standard, keep forwards */
  -webkit-animation: bar-fill 2.2s ease forwards;
  animation: bar-fill 2.2s ease forwards;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  box-shadow: 0 0 12px var(--gold);
}
@-webkit-keyframes bar-fill {
  0%   { width: 0; }
  100% { width: 100%; }
}
@keyframes bar-fill {
  0%   { width: 0; }
  100% { width: 100%; }
}
 
/* Particles */
.loader-particles {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}
.lp {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  -webkit-animation: lp-float linear infinite;
  animation: lp-float linear infinite;
}
@-webkit-keyframes lp-float {
  0%   { -webkit-transform: translateY(100vh) translateX(0); transform: translateY(100vh) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { -webkit-transform: translateY(-10vh) translateX(var(--dx)); transform: translateY(-10vh) translateX(var(--dx)); opacity: 0; }
}
@keyframes lp-float {
  0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-10vh) translateX(var(--dx)); opacity: 0; }
}
 
/* ── GRAIN OVERLAY ── */
#grain {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  -webkit-animation: grain-shift 0.15s steps(1) infinite;
  animation: grain-shift 0.15s steps(1) infinite;
}
@-webkit-keyframes grain-shift {
  0%   { -webkit-transform: translate(0, 0);    transform: translate(0, 0); }
  25%  { -webkit-transform: translate(-2%, -1%); transform: translate(-2%, -1%); }
  50%  { -webkit-transform: translate(1%, 2%);   transform: translate(1%, 2%); }
  75%  { -webkit-transform: translate(-1%, 1%);  transform: translate(-1%, 1%); }
  100% { -webkit-transform: translate(2%, -2%);  transform: translate(2%, -2%); }
}
@keyframes grain-shift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-2%, -1%); }
  50%  { transform: translate(1%, 2%); }
  75%  { transform: translate(-1%, 1%); }
  100% { transform: translate(2%, -2%); }
}

/* ── CANVAS PARTICLES ── */
#particle-canvas{position:fixed;inset:0;z-index:2;pointer-events:none}
/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.15rem; }
p  { line-height: 1.8; }

.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  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(--charcoal); }
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--gold); }

.gold-rule { width: 48px; height: 2px; background: var(--gold); margin: 1.2rem 0; }
.gold-rule--center { margin: 1.2rem auto; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { width: 90%; max-width: 1280px; margin: 0 auto; }
.section-pad    { padding: 100px 0; }
.section-pad--lg { padding: 130px 0; }
.section-pad--sm { padding: 60px 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 15px 36px;
  position: relative; overflow: hidden;
  transition: color var(--t-med) var(--ease);
  white-space: nowrap;
}
.btn--gold { background: var(--gold); color: var(--black); }
.btn--gold::before {
  content: ''; position: absolute; inset: 0;
  background: var(--white);
  transform: translateX(-101%);
  transition: transform var(--t-med) var(--ease); z-index: 0;
}
.btn--gold:hover::before { transform: translateX(0); }
.btn--gold span { position: relative; z-index: 1; }

.btn--outline-light { border: 1px solid rgba(255,255,255,0.4); color: var(--white); transition: all var(--t-med) var(--ease); }
.btn--outline-light:hover { border-color: var(--gold); color: var(--gold); }

.btn--outline-dark {    border: 1px solid rgb(201 168 76); color: #c9a842; transition: all var(--t-med) var(--ease); }
.btn--outline-dark:hover { border-color: var(--gold); color: var(--gold-dark); }

.btn--dark { background: var(--charcoal); color: var(--white); transition: background var(--t-med) var(--ease); }
.btn--dark:hover { background: var(--stone); }

.btn--dark span { position: relative; z-index: 1; }

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
  transition: background var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), height var(--t-med) var(--ease);
}
#nav.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.18);
  height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo__icon { width: 44px; height: 44px; flex-shrink: 0; transition: width var(--t-med), height var(--t-med); }
#nav.scrolled .nav-logo__icon { width: 36px; height: 36px; }
.nav-logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo__name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--white); letter-spacing: 0.06em; }
.nav-logo__sub  { font-size: 0.57rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links__item {
  position: relative;
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transition: color var(--t-fast) var(--ease);
}
.nav-links__item::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width var(--t-med) var(--ease); }
.nav-links__item:hover, .nav-links__item.active { color: var(--white); }
.nav-links__item:hover::after, .nav-links__item.active::after { width: 100%; }
.nav-links__cta { background: var(--gold); color: var(--black) !important; padding: 10px 22px; font-weight: 600 !important; transition: background var(--t-fast) !important; white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
  line-height: 1.4; }
.nav-links__cta::after { display: none !important; }
.nav-links__cta:hover { background: var(--gold-light) !important; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all var(--t-med) var(--ease); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav { display: none; position: fixed; inset: 0; background: var(--black); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 2.2rem; }
.mobile-nav.open { display: flex; }
.mobile-nav__close { position: absolute; top: 26px; right: 5%; font-size: 1.8rem; color: var(--white); font-family: var(--font-display); line-height: 1; }
.mobile-nav a { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; color: var(--white); letter-spacing: 0.04em; transition: color var(--t-fast) var(--ease); }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  height: 50vh; min-height: 350px;
  display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
  background: var(--black);
}
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; animation: heroZoom 18s ease-in-out infinite alternate; }
.page-hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.42) 55%, rgba(0,0,0,0.68) 100%); }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.05); } }
.page-hero__content { position: relative; z-index: 2; padding: 55px 5%; width: 100%; max-width: 1280px; margin: 0 auto; }
.page-hero__content .label { margin-bottom: 0.8rem; }
.page-hero__content h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5.5vw, 4.8rem); font-weight: 300; color: var(--white); line-height: 1.05; }
.page-hero__content h1 em { font-style: italic; color: var(--gold); }
.page-hero::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(to right, var(--gold), transparent); z-index: 3; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ============================================================
   SUPPLIERS STRIP (shared)
   ============================================================ */
.suppliers { background: var(--cream-dark); padding: 60px 5%; text-align: center; }
.suppliers__label { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 36px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.suppliers__label::before, .suppliers__label::after { content: ''; height: 1px; width: 60px; background: var(--light-gray); flex-shrink: 0; }
.suppliers__logos { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; max-width: 1000px; margin: 0 auto; }
.suppliers__logo { font-family: var(--font-display); font-size: 1.3rem; font-weight: 300; color: var(--light-gray); letter-spacing: 0.1em; transition: color var(--t-fast) var(--ease); cursor: default; }
.suppliers__logo:hover { color: var(--charcoal); }

/* ============================================================
   CTA STRIP (shared)
   ============================================================ */
.cta-strip { position: relative; padding: 110px 5%; text-align: center; overflow: hidden; background: var(--black); }
.cta-strip__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.38; }
.cta-strip__content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-strip .label { margin-bottom: 1rem; }
.cta-strip h2 { font-family: var(--font-display); font-size: clamp(2rem,3.5vw,3.2rem); font-weight: 300; color: var(--white); margin-bottom: 1rem; line-height: 1.15; }
.cta-strip p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.85; margin-bottom: 2.2rem; }
.cta-strip .btn-group { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--black); padding: 70px 5% 28px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 28px; }
.footer-brand__icon { margin-bottom: 12px; }
.footer-brand__name { font-family: var(--font-display); font-size: 1.45rem; color: var(--white); margin-bottom: 4px; }
.footer-brand__sub { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.footer-brand p { font-size: 0.8rem; color: rgb(149 141 141); line-height: 1.85; max-width: 260px; }
.footer-col h5 { font-family: var(--font-body); font-size: 0.63rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.82rem; color: rgb(149 141 141); transition: color var(--t-fast) var(--ease); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p {     font-size: 0.9rem;    color: rgb(149 141 141); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 32px; height: 32px; border: 1px solid rgb(149 141 141); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: rgb(149 141 141); transition: all var(--t-fast) var(--ease); }
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   RESPONSIVE — SHARED
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section-pad { padding: 70px 0; }
  .section-pad--lg { padding: 90px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-hero { height: 44vh; }
}
@media (max-width: 480px) {
  .btn-group { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

  /* ══════════════════════════════
     GALLERY SECTION
  ══════════════════════════════ */
  #gallery {
    background: var(--white);
    padding: 100px 5%;
  }

  /* Header */
  .gallery-header {
    max-width: 1280px;
    margin: 0 auto 50px;
    text-align: center;
  }
  .gallery-header p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* Filter buttons */
  .gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .filter-btn {
    padding: 8px 22px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid var(--light-gray);
    color: var(--warm-gray);
    background: transparent;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
  }
  .filter-btn.active,
  .filter-btn:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--white);
  }

  /* ── Desktop: masonry grid ── */
  .gallery-grid {
    max-width: 1280px;
    margin: 0 auto;
    columns: 3;
    column-gap: 12px;
  }
  .gallery-item {
    break-inside: avoid;
    margin-bottom: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: block;
  }
  .gallery-item.hidden { display: none; }
  .gallery-item img {
    width: 100%;
    display: block;
    transition: transform var(--transition-slow);
  }
  .gallery-item:hover img { transform: scale(1.05); }

  /* Overlay */
  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    pointer-events: none;
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-overlay-text {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1.4;
  }
  .gallery-overlay-cat {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
    font-family: var(--font-body);
  }

  /* ── Mobile swipe hint ── */
  .swipe-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--warm-gray);
    font-size: 0.68rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-family: var(--font-body);
  }
  .swipe-hint svg { width: 16px; height: 16px; opacity: 0.55; }

  /* ── Mobile: horizontal scroll strip ── */
  @media (max-width: 768px) {
    #gallery { padding: 60px 0; }

    .gallery-header { padding: 0 5%; }

    .swipe-hint { display: flex; }

    .gallery-grid {
      columns: unset;
      display: flex;
      flex-direction: row;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 10px;
      padding: 0 5% 16px;
      scrollbar-width: none;
    }
    .gallery-grid::-webkit-scrollbar { display: none; }

    .gallery-item {
      flex: 0 0 78vw;
      max-width: 300px;
      margin-bottom: 0;
      scroll-snap-align: center;
    }
    .gallery-item img {
      width: 100%;
      height: 240px;
      object-fit: cover;
    }
    /* Always show overlay on mobile (no hover) */
    .gallery-overlay { opacity: 1; }
  }

  @media (max-width: 1024px) and (min-width: 769px) {
    .gallery-grid { columns: 2; }
  }

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

  .lightbox-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .lightbox img {
    max-width: 88vw;
    max-height: 85vh;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
    transition: opacity 0.18s ease;
  }
  .lightbox img.fading { opacity: 0; }

  /* Close */
  .lb-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 1.9rem;
    color: rgba(255,255,255,0.7);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    line-height: 1;
    transition: color var(--transition);
    z-index: 10;
  }
  .lb-close:hover { color: var(--white); }

  /* Prev / Next */
  .lb-prev,
  .lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.8);
    font-size: 2rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: var(--font-display);
    user-select: none;
    transition: background var(--transition), color var(--transition);
    z-index: 10;
  }
  .lb-prev { left: 20px; }
  .lb-next { right: 20px; }
  .lb-prev:hover,
  .lb-next:hover {
    background: rgba(255,255,255,0.18);
    color: var(--white);
  }
  @media (max-width: 600px) {
    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }
    .lb-prev, .lb-next { width: 40px; height: 40px; font-size: 1.5rem; }
  }

  /* Counter */
  .lb-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    font-family: var(--font-body);
    text-transform: uppercase;
  }

  /* Caption */
  .lb-caption {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.75);
    font-family: var(--font-display);
    font-size: 1rem;
    white-space: nowrap;
  }
  .lb-caption-cat {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2px;
    font-family: var(--font-body);
  }
	
    /* ==============================
       CONTACT
    ============================== */
    #contact {
      background: var(--charcoal);
      padding: 100px 5%;
    }

    .contact-grid {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
    }

    .contact-info .label { margin-bottom: 1rem; }

    .contact-info h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 300;
      color: var(--white);
      margin-bottom: 1.5rem;
      line-height: 1.15;
    }

    .contact-info h2 em { font-style: italic; color: var(--gold); }

    .contact-info > p {
      font-size: 0.88rem;
      color: rgb(149 141 141);
      line-height: 1.85;
      margin-bottom: 2.5rem;
      max-width: 400px;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

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

    .contact-detail-icon {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(201,168,76,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    .contact-detail-text h5 {
      font-family: var(--font-body);
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 3px;
    }

    .contact-detail-text a,
    .contact-detail-text p {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.65);
      transition: color var(--transition);
      line-height: 1.5;
    }

    .contact-detail-text a:hover { color: var(--gold); }

    .hours {
      margin-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 1.5rem;
    }

    .hours h5 {
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .hours-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.82rem;
      color: rgba(255,255,255,0.45);
      margin-bottom: 6px;
    }

    /* Form */
    .contact-form {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      padding: 48px 40px;
    }

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

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

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

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 0;
      padding: 14px 16px;
      font-family: var(--font-body);
      font-size: 0.88rem;
      color: var(--white);
      outline: none;
      transition: border-color var(--transition);
      -webkit-appearance: none;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(255,255,255,0.2);
    }

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

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

    .form-group select option { background: var(--charcoal); }

    .form-error {
      font-size: 0.7rem;
      color: #e57373;
      margin-top: 4px;
      display: none;
    }

    .form-group.has-error input,
    .form-group.has-error textarea {
      border-color: #e57373;
    }

    .form-group.has-error .form-error { display: block; }

    .form-submit {
      width: 100%;
      padding: 16px;
      background: var(--gold);
      color: var(--black);
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: background var(--transition);
      margin-top: 8px;
    }

    .form-submit:hover { background: var(--gold-light); }

    .form-success {
      display: none;
      text-align: center;
      padding: 40px;
    }

    .form-success h3 {
      font-family: var(--font-display);
      font-size: 2rem;
      color: var(--gold);
      margin-bottom: 0.8rem;
    }

    .form-success p {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.5);
    }

    /* Map area */
    .map-area {
      max-width: 1280px;
      margin: 60px auto 0;
      height: 600px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }

    .map-placeholder {
      text-align: center;
      color: rgba(255,255,255,0.2);
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .map-placeholder span { font-size: 2.5rem; display: block; margin-bottom: 12px; }
	
	/*========================================
	How We Work step by step
	========================================*/
	@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

  .lf-section {
    background: #0a0a0a;
    padding: 80px 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
  }

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

  .lf-header { text-align: center; margin-bottom: 52px; }
  .lf-eyebrow {
    font-family: sans-serif; font-size: 10px; font-weight: 500;
    letter-spacing: 5px; text-transform: uppercase; color: #c9a84c;
    margin-bottom: 14px; display: flex; align-items: center; justify-content: center; gap: 14px;
  }
  .lf-eyebrow::before, .lf-eyebrow::after { content:''; width:36px; height:1px; background:#c9a84c; opacity:0.4; }
  .lf-title { font-size: 40px; font-weight: 300; color: #f5f2ed; letter-spacing: -0.02em; line-height: 1.05; margin: 0 0 8px; }
  .lf-title em { font-style: italic; color: #c9a84c; }
  .lf-sub { font-family: sans-serif; font-size: 12px; color: rgba(245,242,237,0.32); letter-spacing: 0.5px; margin: 0; }

  .lf-progress {
    display: flex; align-items: center; justify-content: center; gap: 0;
    margin-bottom: 44px;
  }
  .lf-prog-step { display: flex; align-items: center; }
  .lf-prog-dot {
    width: 30px; height: 30px; border-radius: 50%;
    border: 1.5px solid rgba(201,168,76,0.22);
    background: #0a0a0a;
    display: flex; align-items: center; justify-content: center;
    font-family: sans-serif; font-size: 10px; font-weight: 600;
    color: rgba(201,168,76,0.28); flex-shrink: 0;
    transition: border-color 0.4s ease, color 0.4s ease, background 0.4s ease;
  }
  .lf-prog-dot.lit { border-color: #c9a84c; color: #c9a84c; background: rgba(201,168,76,0.08); }
  .lf-prog-dot.done { border-color: #c9a84c; background: #c9a84c; color: #0a0a0a; }
  .lf-prog-line {
    width: 24px; height: 1px; background: rgba(201,168,76,0.14); flex-shrink: 0;
    transition: background 0.5s ease;
  }
  .lf-prog-line.lit { background: #c9a84c; }

  .lf-flow { position: relative; }

  .lf-row { display: flex; align-items: stretch; gap: 2px; margin-bottom: 2px; }
  .lf-row-reverse { flex-direction: row-reverse; }

  .lf-step {
    flex: 1;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .lf-step.visible { opacity: 1; transform: translateY(0); }

  .lf-card {
    height: 100%; display: flex; flex-direction: column;
    border: 0.5px solid rgba(201,168,76,0.12);
    overflow: hidden; position: relative;
    background: #0f0f0f;
    transition: border-color 0.4s ease;
    cursor: default;
  }
  .lf-card:hover { border-color: rgba(201,168,76,0.48); }

  .lf-img-wrap { position: relative; overflow: hidden; height: 160px; }
  .lf-img-wrap img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    filter: brightness(0.48) saturate(0.6);
    transition: transform 0.8s ease, filter 0.5s ease;
  }
  .lf-card:hover .lf-img-wrap img { transform: scale(1.06); filter: brightness(0.72) saturate(0.88); }
  .lf-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.62) 100%); }

  .lf-badge {
    position: absolute; top: 12px; left: 12px; z-index: 3;
    width: 42px; height: 42px; border-radius: 50%;
    border: 1.5px solid #c9a84c;
    background: rgba(10,10,10,0.75);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 1px;
    transition: background 0.4s ease, box-shadow 0.4s ease;
  }
  .lf-card:hover .lf-badge { background: #c9a84c; box-shadow: 0 0 0 5px rgba(201,168,76,0.1); }
  .lf-badge-slbl {
    font-family: sans-serif; font-size: 6.5px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: #c9a84c; line-height: 1;
    transition: color 0.4s ease;
  }
  .lf-badge-snum {
    font-family: sans-serif; font-size: 13px; font-weight: 700;
    color: #c9a84c; line-height: 1;
    transition: color 0.4s ease;
  }
  .lf-card:hover .lf-badge-slbl,
  .lf-card:hover .lf-badge-snum { color: #0a0a0a; }

  .lf-body {
    padding: 16px 18px 20px; background: #111;
    border-top: 0.5px solid rgba(201,168,76,0.1);
    flex: 1; position: relative;
    transition: background 0.4s ease;
  }
  .lf-card:hover .lf-body { background: #151310; }

  .lf-step-title { font-size: 19px; font-weight: 400; color: #f0ebe2; margin: 0 0 4px; }
  .lf-step-desc {
    font-family: sans-serif; font-size: 11px; font-weight: 300;
    color: rgba(245,242,237,0.32); line-height: 1.72; font-style: italic; margin: 0;
    transition: color 0.4s ease;
  }
  .lf-card:hover .lf-step-desc { color: rgba(245,242,237,0.56); }

  .lf-sweep {
    position: absolute; bottom: 0; left: 0; right: 0; height: 1.5px;
    background: linear-gradient(90deg, transparent, #c9a84c 50%, transparent);
    transform: scaleX(0); transition: transform 0.5s ease;
  }
  .lf-card:hover .lf-sweep { transform: scaleX(1); }

  .lf-conn {
    width: 20px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; flex-shrink: 0;
  }
  .lf-conn-line { flex: 1; width: 1px; background: rgba(201,168,76,0.2); opacity: 0; transition: opacity 0.4s ease; }
  .lf-conn-dot { width: 6px; height: 6px; border-radius: 50%; border: 1px solid rgba(201,168,76,0.5); background: #0a0a0a; flex-shrink: 0; opacity: 0; transition: opacity 0.4s ease; }
  .lf-conn-line.vis, .lf-conn-dot.vis { opacity: 1; }

  .lf-turn {
    height: 38px; display: flex; align-items: center;
    padding: 0 calc(33.33% + 11px);
    opacity: 0; transition: opacity 0.5s ease; margin-bottom: 2px;
  }
  .lf-turn.vis { opacity: 1; }
  .lf-turn-line { flex: 1; height: 1px; background: rgba(201,168,76,0.2); }
  .lf-turn-dot { width: 6px; height: 6px; border-radius: 50%; border: 1px solid rgba(201,168,76,0.5); background: #0a0a0a; flex-shrink: 0; }

  .lf-cta { text-align: center; margin-top: 48px; opacity: 0; transition: opacity 0.6s ease; }
  .lf-cta.vis { opacity: 1; }
  .lf-cta-inner { display: inline-flex; align-items: center; gap: 16px; }
  .lf-cta-line { width: 36px; height: 1px; background: rgba(201,168,76,0.28); }
  .lf-cta a {
    font-family: sans-serif; font-size: 10px; font-weight: 500;
    letter-spacing: 3px; text-transform: uppercase; color: #c9a84c;
    border: 0.5px solid rgba(201,168,76,0.38); padding: 13px 30px;
    text-decoration: none; display: inline-block;
    transition: background 0.4s ease, color 0.4s ease;
  }
  .lf-cta a:hover { background: #c9a84c; color: #0a0a0a; }

  @media (max-width: 680px) {
    .lf-container { padding: 0 20px; }
    .lf-title { font-size: 28px; }
    .lf-row { flex-direction: column; gap: 2px; }
    .lf-row-reverse { flex-direction: column; }
    .lf-conn { display: none; }
    .lf-turn { display: none; }
    .lf-prog-line { width: 14px; }
  }
	
    /* ==============================
       RESPONSIVE
    ============================== */
	


    @media (max-width: 1024px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .gallery-masonry { columns: 2; }
    }

    @media (max-width: 768px) {
      
      .hamburger { display: flex; }

      .intro-grid,
      .why-grid,
      .about-grid,
      .contact-grid { grid-template-columns: 1fr; gap: 50px; }

      .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
      .services-header p { text-align: left; }

      .form-row { grid-template-columns: 1fr; }

      .hero-stats { display: none; }

      .footer-grid { grid-template-columns: 1fr; }

      .gallery-masonry { columns: 1; }

      .about-image img { height: 350px; }
      .about-image-accent { display: none; }

      .why-right { display: none; }

      .intro-image-badge { left: 0; bottom: 0; }

      .contact-form { padding: 30px 24px; }
    }

    @media (max-width: 480px) {
      #nav { padding: 0 4%; }
      .hero-content { padding: 0 4%; }

      .hero-btns { flex-direction: column; }
      .btn-primary, .btn-outline { text-align: center; }
    }
    
    
    	
    /* ==============================
      Contact Form Error
    ============================== */
	
    
    
    
    
    /* ── Form Error States ── */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: #e53e3e !important;
  box-shadow: 0 0 0 2px rgba(229, 62, 62, 0.15);
}

.form-error {
  display: none;
  color: #e53e3e;
  font-size: 0.82rem;
  margin-top: 5px;
}

.form-group.error .form-error {
  display: block;
}

/* ── Submit Button States ── */
.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* ── Success Message ── */
#formSuccess {
  display: none;
  text-align: center;
  padding: 50px 20px;
}

#formSuccess h3 {
  font-size: 2rem;
  margin-bottom: 14px;
  color: #2d2d2d;
}

#formSuccess p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}