/* ═══════════════════════════════════════════════════════
   ALL CUSTOM BUILDING LLC — Global Stylesheet (White Mode)
   ═══════════════════════════════════════════════════════ */

/* ─── RESET & VARIABLES ─── */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --gold: #8C7A30;
  --gold-light: #A38E3A;
  --gold-lighter: #BDA244;
  --gold-pale: #F5F0D8;
  --gold-dark: #705F20;
  --gold-glow: rgba(140,122,48,0.2);
  --black: #FFFFFF;
  --dark: #FAFAF8;
  --dark-2: #FFFFFF;
  --dark-3: #F0EFEC;
  --dark-4: #E5E4E0;
  --warm-bg: #F5F3EF;
  --card-gray: #B0ADA8;
  --gray-900: #F0F0EE;
  --gray-800: #DDDCDA;
  --gray-700: #BEBDB9;
  --gray-600: #8A8A88;
  --gray-500: #5C5C5A;
  --gray-400: #3D3D3B;
  --gray-300: #2A2A28;
  --gray-200: #1E1E1C;
  --gray-100: #111111;
  --white: #1A1A18;
  --off-white: #FFFFFF;
  --font-heading: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.77,0,0.175,1);
}
html{scroll-behavior:smooth;scroll-padding-top:100px}
body{
  font-family:var(--font-body);
  background:var(--black);
  color:var(--gray-400);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit}
.container{max-width:1280px;margin:0 auto;padding:0 clamp(1.25rem,3vw,2.5rem)}

/* ─── TOP BAR ─── */
.top-bar{
  background:#1A1A18;
  padding:0.55rem 0;
  border-bottom:none;
  display:flex;justify-content:space-between;align-items:center;
  padding-left:clamp(1.25rem,3vw,2.5rem);
  padding-right:clamp(1.25rem,3vw,2.5rem);
  font-size:0.78rem;
}
.top-bar a{
  color:#FFFFFF;text-decoration:none;
  display:inline-flex;align-items:center;gap:0.4rem;
  transition:color 0.2s;font-weight:500;
}
.top-bar a:hover{color:var(--gold-pale)}
.top-bar svg{width:13px;height:13px;stroke:var(--gold);fill:none;stroke-width:2}
.top-bar-left{display:flex;align-items:center;gap:1.25rem;flex-wrap:wrap}
.top-bar-divider{width:1px;height:14px;background:rgba(255,255,255,0.3)}
.top-bar-right{
  display:flex;align-items:center;gap:0.5rem;
  font-size:0.72rem;color:#FFFFFF;
  font-weight:600;letter-spacing:0.08em;text-transform:uppercase;
}
.top-bar-right svg{width:14px;height:14px;stroke:var(--gold);fill:none;stroke-width:2}

/* ─── NAV ─── */
.nav{
  position:sticky;top:0;z-index:100;
  background:rgba(250,250,248,0.82);
  backdrop-filter:blur(24px) saturate(1.4);-webkit-backdrop-filter:blur(24px) saturate(1.4);
  border-bottom:1px solid rgba(0,0,0,0.06);
  padding:0 clamp(1.25rem,3vw,2.5rem);
  height:72px;
  display:flex;align-items:center;justify-content:space-between;
}
.nav-logo{
  display:flex;align-items:center;gap:0.75rem;
  text-decoration:none;transition:opacity 0.2s;
}
.nav-logo:hover{opacity:0.85}
.nav-logo-mark{
  width:42px;height:42px;
  background:var(--gold);
  border-radius:6px;
  display:flex;align-items:center;justify-content:center;
  transition:all 0.3s var(--ease);
}
.nav-logo:hover .nav-logo-mark{background:var(--gold-light);transform:scale(1.05)}
.nav-logo-mark svg{width:24px;height:24px;fill:#fff}
.nav-logo-text{line-height:1.15}
.nav-logo-name{
  font-family:var(--font-heading);
  font-size:1.3rem;color:var(--white);
  letter-spacing:0.06em;
}
.nav-logo-sub{
  font-size:0.6rem;color:var(--gold);
  letter-spacing:0.2em;text-transform:uppercase;font-weight:600;
}
.nav-links{display:flex;align-items:center;gap:0.25rem;list-style:none}
.nav-links a{
  font-size:0.82rem;color:var(--gray-500);text-decoration:none;
  font-weight:500;transition:all 0.2s;
  padding:0.5rem 1rem;border-radius:4px;letter-spacing:0.01em;
}
.nav-links a:not(.nav-cta):hover{color:var(--white);background:rgba(0,0,0,0.04)}
.nav-links a.active{color:var(--white);background:rgba(0,0,0,0.04)}
.nav-cta{
  background:var(--gold)!important;color:#fff!important;
  font-weight:700!important;letter-spacing:0.04em!important;
  padding:0.55rem 1.5rem!important;border-radius:4px;
  transition:all 0.3s var(--ease)!important;margin-left:0.5rem;
}
.nav-cta:hover{background:var(--gold-light)!important;transform:translateY(-1px)}
.mobile-toggle{display:none;background:none;border:none;cursor:pointer;padding:6px}
.mobile-toggle span{display:block;width:24px;height:2px;background:var(--gold);margin:5px 0;border-radius:2px;transition:0.3s}

/* ─── BUTTONS ─── */
.btn{
  display:inline-flex;align-items:center;gap:0.6rem;
  padding:0.95rem 2.25rem;
  font-family:var(--font-body);font-size:0.88rem;font-weight:700;
  text-decoration:none;border:none;cursor:pointer;
  border-radius:4px;letter-spacing:0.03em;
  transition:all 0.35s var(--ease);
}
.btn svg{width:18px;height:18px}
.btn-gold{
  background:linear-gradient(180deg,var(--gold-light) 0%,var(--gold) 100%);
  color:#fff;box-shadow:0 4px 16px var(--gold-glow);
  border-radius:8px;padding:1rem 2.5rem;
}
.btn-gold:hover{
  background:linear-gradient(180deg,var(--gold-lighter) 0%,var(--gold-light) 100%);
  transform:translateY(-2px);box-shadow:0 8px 28px var(--gold-glow);
}
.btn-outline{background:transparent;color:var(--white);border:2px solid rgba(0,0,0,0.12);border-radius:8px;padding:1rem 2.5rem}
.btn-outline:hover{border-color:var(--gold);color:var(--gold);background:rgba(138,122,46,0.04)}
.btn-white{background:#1A1A1A;color:#fff}
.btn-white:hover{background:#333;transform:translateY(-3px);box-shadow:0 8px 30px rgba(0,0,0,0.15)}
.btn-dark{background:var(--dark-3);color:var(--white);border:1px solid rgba(0,0,0,0.08)}
.btn-dark:hover{background:var(--dark-4);border-color:var(--gold);color:var(--gold)}

/* ─── HERO (Home) ─── */
.hero{
  position:relative;min-height:min(100vh,900px);
  display:flex;align-items:center;overflow:hidden;background:var(--off-white);
}
.hero-bg{
  position:absolute;inset:0;
  background:url('../images/exterior-modern.webp') center/cover no-repeat;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(20,20,18,0.82) 0%,rgba(20,20,18,0.65) 50%,rgba(20,20,18,0.5) 100%);
}
.hero-overlay::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 60%,rgba(10,10,8,0.5) 100%);
}
.hero-grid-lines{
  position:absolute;inset:0;z-index:1;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,0.05) 1px,transparent 1px);
  background-size:60px 60px;pointer-events:none;
}
.hero-content{
  position:relative;z-index:2;
  padding:clamp(3rem,8vw,6rem) clamp(1.5rem,5vw,3rem);
  max-width:1320px;margin:0 auto;width:100%;
  display:grid;grid-template-columns:1.1fr 1fr;
  gap:clamp(2rem,4vw,4rem);align-items:center;
}
.hero-label{
  display:inline-flex;align-items:center;gap:0.5rem;
  font-size:0.72rem;font-weight:700;
  letter-spacing:0.2em;text-transform:uppercase;
  color:var(--gold-lighter);margin-bottom:1.75rem;
  position:relative;padding-left:3rem;
}
.hero-label::before{
  content:'';position:absolute;left:0;top:50%;
  width:2rem;height:2px;background:var(--gold);
}
.hero h1{
  font-family:var(--font-heading);
  font-size:clamp(4rem,10vw,9rem);
  color:#FFFFFF;line-height:0.88;
  margin-bottom:1.5rem;letter-spacing:-0.01em;
}
.hero h1 .gold{color:var(--gold-lighter);display:block}
.hero-sub{
  font-size:clamp(0.95rem,1.5vw,1.15rem);
  color:rgba(255,255,255,0.8);line-height:1.75;
  margin-bottom:2.5rem;max-width:520px;font-weight:300;
}
.hero-actions{display:flex;align-items:center;gap:1rem;flex-wrap:wrap;margin-bottom:3.5rem}
.hero-actions .btn-outline{color:#FFFFFF;border-color:rgba(255,255,255,0.3)}
.hero-actions .btn-outline:hover{border-color:var(--gold-lighter);color:var(--gold-lighter);background:rgba(138,122,46,0.15)}
.hero-stats{
  display:flex;gap:clamp(2rem,5vw,4rem);
  padding-top:3rem;border-top:1px solid rgba(255,255,255,0.15);
}
.hero-stat-num{
  font-family:var(--font-heading);
  font-size:clamp(2.5rem,5vw,3.5rem);color:#FFFFFF;line-height:1;
}
.hero-stat-num span{color:var(--gold-lighter)}
.hero-stat-label{
  font-size:0.72rem;color:rgba(255,255,255,0.6);text-transform:uppercase;
  letter-spacing:0.1em;font-weight:600;margin-top:0.25rem;
}
.hero-scroll{
  position:absolute;bottom:2.5rem;left:50%;transform:translateX(-50%);
  z-index:3;display:flex;flex-direction:column;align-items:center;gap:0.5rem;
  color:rgba(255,255,255,0.5);font-size:0.7rem;
  letter-spacing:0.15em;text-transform:uppercase;font-weight:600;
  animation:scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll svg{width:20px;height:20px;stroke:var(--gold-light);fill:none;stroke-width:2}
@keyframes scrollBounce{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(8px)}}

/* ─── HERO FORM ─── */
.hero-form{
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);
  border:1px solid rgba(255,255,255,0.4);
  border-radius:16px;padding:clamp(1.5rem,2.5vw,2.25rem);
  box-shadow:0 1px 2px rgba(0,0,0,0.04),0 8px 32px rgba(0,0,0,0.08),0 24px 60px rgba(0,0,0,0.06);
}
.hero-form-title{
  font-family:var(--font-heading);font-size:1.6rem;color:var(--white);
  letter-spacing:0.04em;margin-bottom:0.25rem;
}
.hero-form-sub{font-size:0.82rem;color:var(--gray-500);margin-bottom:1.25rem}
.hero-form .form-grid{gap:0.6rem}
.hero-form .form-field input,
.hero-form .form-field select,
.hero-form .form-field textarea{
  padding:0.8rem 0.9rem;font-size:0.85rem;
  background:#FAFAFA;
  border-color:rgba(0,0,0,0.1);
  color:var(--white);
}
.hero-form .form-field input::placeholder,
.hero-form .form-field textarea::placeholder{color:var(--gray-600)}
.hero-form .form-field input:focus,
.hero-form .form-field select:focus,
.hero-form .form-field textarea:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(122,106,37,0.1);
  background:#fff;
}
.hero-form .form-field select{color:var(--gray-500)}
.hero-form .form-field select option{background:#fff;color:var(--white)}
.hero-form .form-submit{padding:0.9rem 1.25rem;font-size:0.85rem}
.hero-form .form-call{
  padding:0.9rem 1.25rem;font-size:0.82rem;
  color:var(--gray-500);border-color:rgba(0,0,0,0.1);
}
.hero-form .form-call:hover{border-color:var(--gold);color:var(--gold)}
.hero-form-trust{
  display:flex;gap:1.25rem;margin-top:1rem;padding-top:1rem;
  border-top:1px solid rgba(0,0,0,0.06);flex-wrap:wrap;
}
.hero-form-trust-item{
  display:flex;align-items:center;gap:0.3rem;
  font-size:0.72rem;color:var(--gray-600);font-weight:600;
}
.hero-form-trust-item svg{width:14px;height:14px;stroke:var(--gold);fill:none;stroke-width:2.5}

/* ─── PAGE HERO (Inner Pages) ─── */
.page-hero{
  position:relative;
  padding:clamp(6rem,12vw,10rem) 0 clamp(4rem,8vw,6rem);
  background:var(--off-white);overflow:hidden;
}
.page-hero-bg{
  position:absolute;inset:0;
  background-position:center;background-size:cover;background-repeat:no-repeat;
}
.page-hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(20,20,18,0.78) 0%,rgba(20,20,18,0.6) 50%,rgba(20,20,18,0.45) 100%);
}
.page-hero-overlay::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 50%,rgba(10,10,8,0.4) 100%);
}
.page-hero .hero-grid-lines{
  position:absolute;inset:0;z-index:1;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,0.05) 1px,transparent 1px);
  background-size:60px 60px;pointer-events:none;
}
.page-hero-content{
  position:relative;z-index:2;
  max-width:1280px;margin:0 auto;
  padding:0 clamp(1.25rem,3vw,2.5rem);
}
.page-hero-breadcrumb{
  display:flex;align-items:center;gap:0.5rem;
  font-size:0.75rem;color:rgba(255,255,255,0.6);
  margin-bottom:1.5rem;font-weight:500;
}
.page-hero-breadcrumb a{color:rgba(255,255,255,0.6);text-decoration:none;transition:color 0.2s}
.page-hero-breadcrumb a:hover{color:var(--gold-lighter)}
.page-hero-breadcrumb svg{width:12px;height:12px;stroke:rgba(255,255,255,0.5);fill:none;stroke-width:2}
.page-hero-label{
  display:inline-flex;align-items:center;gap:0.5rem;
  font-size:0.72rem;font-weight:700;
  letter-spacing:0.2em;text-transform:uppercase;
  color:var(--gold-lighter);margin-bottom:1.25rem;
  position:relative;padding-left:3rem;
}
.page-hero-label::before{
  content:'';position:absolute;left:0;top:50%;
  width:2rem;height:2px;background:var(--gold-lighter);
}
.page-hero h1{
  font-family:var(--font-heading);
  font-size:clamp(3.5rem,8vw,7rem);
  color:#FFFFFF;line-height:0.92;
  letter-spacing:-0.01em;margin-bottom:1rem;
}
.page-hero h1 .gold{color:var(--gold-lighter)}
.page-hero-desc{
  font-size:clamp(0.95rem,1.5vw,1.1rem);
  color:rgba(255,255,255,0.75);line-height:1.75;max-width:600px;
}

/* ─── SECTION STYLING ─── */
.section{padding:clamp(5rem,10vw,8rem) 0}
.section-tight{padding:clamp(3.5rem,7vw,5rem) 0}
.section-loose{padding:clamp(6rem,14vw,10rem) 0}
.section-dark{background:var(--dark)}
.section-darker{background:#F7F6F3}
.section-warm{background:#F0EDE6}
.section-gold{background:var(--gold);position:relative;overflow:hidden}
.section-light{background:var(--off-white)}

/* ─── ANGLED SECTION DIVIDERS ─── */
.hero{clip-path:polygon(0 0,100% 0,100% calc(100% - 5vw),0 100%);margin-bottom:-5vw;position:relative;z-index:2}
.section-warm{position:relative}
.section-darker{clip-path:polygon(0 5vw,100% 0,100% 100%,0 calc(100% - 0vw));padding-top:calc(clamp(5rem,10vw,8rem) + 5vw);position:relative;z-index:1}
.statement-section{clip-path:polygon(0 0,100% 3vw,100% calc(100% - 3vw),0 100%);padding-top:calc(clamp(6rem,14vw,10rem) + 3vw);padding-bottom:calc(clamp(6rem,14vw,10rem) + 3vw);margin:-3vw 0;position:relative;z-index:3}
.cta-banner{clip-path:polygon(0 4vw,100% 0,100% 100%,0 100%);padding-top:calc(clamp(380px,50vw,520px) * 0 + 4vw);margin-top:-4vw}
.section-header{margin-bottom:clamp(3rem,5vw,4.5rem)}
.section-label{
  font-size:0.7rem;letter-spacing:0.25em;text-transform:uppercase;
  color:var(--gold);font-weight:700;margin-bottom:0.75rem;
  display:inline-flex;align-items:center;gap:0.75rem;
}
.section-label::before{content:'';width:2rem;height:2px;background:var(--gold)}
.section-title{
  font-family:var(--font-heading);
  font-size:clamp(2.8rem,7vw,5rem);
  color:var(--white);line-height:0.92;
  letter-spacing:0.03em;margin-bottom:1rem;
}
.section-desc{font-size:1rem;color:var(--gray-500);line-height:1.8;max-width:520px}
.section-center{text-align:center}
.section-center .section-label::before{display:none}
.section-center .section-desc{margin:0 auto}

/* ─── SERVICES BENTO GRID ─── */
.services-bento{
  display:grid;grid-template-columns:repeat(3,1fr);
  grid-template-rows:auto auto;gap:1.25rem;
}
.service-card{
  background:var(--dark-2);
  border:1.5px solid rgba(0,0,0,0.06);
  border-radius:10px;overflow:hidden;
  transition:transform 0.5s var(--ease),border-color 0.4s,box-shadow 0.5s var(--ease);
  position:relative;cursor:default;
  box-shadow:0 1px 2px rgba(0,0,0,0.04),0 4px 12px rgba(0,0,0,0.04),0 12px 32px rgba(0,0,0,0.03);
}
.service-card:hover{
  transform:translateY(-6px);
  border-color:rgba(140,122,48,0.25);
  box-shadow:0 12px 40px rgba(0,0,0,0.12),0 0 0 1px rgba(140,122,48,0.1);
}
.service-card-img{height:220px;overflow:hidden;position:relative}
.service-card-img::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 50%,rgba(0,0,0,0.6) 100%);
}
.service-card-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.7s var(--ease)}
.service-card:hover .service-card-img img{transform:scale(1.05)}
.service-card-body{padding:1.5rem 1.75rem 1.75rem}
.service-card-num{
  font-family:var(--font-heading);font-size:3.5rem;
  color:var(--gold);opacity:0.25;line-height:1;
  position:absolute;top:1rem;right:1.25rem;z-index:2;pointer-events:none;
}
.service-card-body h3{
  font-family:var(--font-heading);font-size:1.5rem;color:var(--white);
  letter-spacing:0.04em;margin-bottom:0.5rem;
}
.service-card-body p{font-size:0.88rem;color:var(--gray-500);line-height:1.7}
.service-card-tag{
  display:inline-block;width:fit-content;
  font-size:0.65rem;letter-spacing:0.15em;text-transform:uppercase;
  color:var(--gold);font-weight:700;
  background:rgba(122,106,37,0.08);border:1px solid rgba(122,106,37,0.15);
  padding:0.3rem 0.85rem;border-radius:50px;margin-bottom:0.85rem;
}
.service-card.featured{grid-column:span 2;display:grid;grid-template-columns:1.2fr 1fr}
.service-card.featured .service-card-img{height:100%;min-height:320px;max-height:420px}
.service-card.featured .service-card-body{
  display:flex;flex-direction:column;justify-content:center;
  align-items:flex-start;padding:2.5rem;
}
.service-card.featured .service-card-body h3{font-size:2rem;margin-bottom:0.65rem}
.service-card.featured .service-card-body p{font-size:0.95rem}

/* ─── SERVICES PAGE GRID (Alternating Layout) ─── */
.services-full-grid{
  display:flex;flex-direction:column;gap:clamp(2rem,4vw,3.5rem);
  counter-reset:service-counter;
}
.service-detail-card{
  background:var(--dark-2);
  border:1.5px solid rgba(0,0,0,0.06);
  border-radius:12px;overflow:hidden;
  transition:transform 0.5s var(--ease),border-color 0.4s,box-shadow 0.5s var(--ease);
  box-shadow:0 1px 2px rgba(0,0,0,0.04),0 4px 16px rgba(0,0,0,0.06),0 12px 40px rgba(0,0,0,0.04);
  display:grid;grid-template-columns:1fr 1fr;
  counter-increment:service-counter;
  position:relative;
}
.service-detail-card:nth-child(even){direction:rtl}
.service-detail-card:nth-child(even) > *{direction:ltr}
.service-detail-card:hover{
  transform:translateY(-4px);
  border-color:rgba(140,122,48,0.25);
  box-shadow:0 12px 40px rgba(0,0,0,0.1),0 0 0 1px rgba(140,122,48,0.1);
}
.service-detail-img{height:100%;min-height:280px;overflow:hidden;position:relative}
.service-detail-img::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 40%,rgba(0,0,0,0.5) 100%);
  transition:background 0.4s var(--ease);
}
.service-detail-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.7s var(--ease)}
.service-detail-card:hover .service-detail-img img{transform:scale(1.04)}
.service-detail-body{
  padding:clamp(1.75rem,3vw,2.5rem);
  display:flex;flex-direction:column;justify-content:center;
  position:relative;overflow:hidden;
}
.service-detail-body::before{
  content:counter(service-counter, decimal-leading-zero);
  position:absolute;top:-0.25rem;right:0.75rem;
  font-family:var(--font-heading);
  font-size:clamp(6rem,10vw,9rem);line-height:1;
  color:transparent;
  -webkit-text-stroke:2px rgba(0,0,0,0.09);
  pointer-events:none;z-index:0;
}
.service-detail-icon{
  width:52px;height:52px;
  background:var(--gold);border:none;
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1.1rem;position:relative;z-index:1;
  box-shadow:0 4px 12px rgba(138,116,40,0.3);
}
.service-detail-icon svg{width:24px;height:24px;stroke:#FFFFFF;fill:none;stroke-width:1.5}
.service-detail-body h3{
  font-family:var(--font-heading);font-size:1.7rem;color:var(--white);
  letter-spacing:0.04em;margin-bottom:0.85rem;position:relative;z-index:1;
  padding-bottom:0.75rem;
}
.service-detail-body h3::after{
  content:'';position:absolute;bottom:0;left:0;
  width:60px;height:4px;background:var(--gold);border-radius:4px;
}
.service-detail-body p{font-size:0.9rem;color:var(--gray-500);line-height:1.7;margin-bottom:1.25rem;position:relative;z-index:1}
.service-detail-list{list-style:none;display:flex;flex-direction:column;gap:0.4rem;margin-bottom:1.25rem;position:relative;z-index:1}
.service-detail-list li{
  display:flex;align-items:center;gap:0.5rem;
  font-size:0.82rem;color:var(--gray-400);font-weight:500;
}
.service-detail-list li svg{width:14px;height:14px;stroke:var(--gold);fill:none;stroke-width:2.5;flex-shrink:0}
.service-detail-link{
  display:inline-flex;align-items:center;gap:0.4rem;
  font-size:0.82rem;font-weight:700;color:var(--gold);
  text-decoration:none;text-transform:uppercase;letter-spacing:0.06em;
  transition:all 0.2s;position:relative;z-index:1;
}
.service-detail-link:hover{color:var(--gold-light);gap:0.6rem}
.service-detail-link svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2.5}

/* First card — hero-style, much bigger */
.service-detail-card:first-child{
  grid-template-columns:1.5fr 1fr;
}
.service-detail-card:first-child .service-detail-img{min-height:450px}
.service-detail-card:first-child .service-detail-body h3{font-size:2.4rem}
.service-detail-card:first-child .service-detail-body{padding:clamp(2.5rem,5vw,4rem)}
.service-detail-card:first-child .service-detail-body::before{
  font-size:clamp(8rem,14vw,12rem);
}

/* Gray accent cards — business card gray */
.service-detail-card:nth-child(4),
.service-detail-card:nth-child(9){
  background:#B0ADA8;border-color:transparent;
}
.service-detail-card:nth-child(4) .service-detail-body h3,
.service-detail-card:nth-child(9) .service-detail-body h3{color:#FFFFFF}
.service-detail-card:nth-child(4) .service-detail-body p,
.service-detail-card:nth-child(9) .service-detail-body p{color:rgba(255,255,255,0.85)}
.service-detail-card:nth-child(4) .service-detail-list li,
.service-detail-card:nth-child(9) .service-detail-list li{color:rgba(255,255,255,0.75)}
.service-detail-card:nth-child(4) .service-detail-body::before,
.service-detail-card:nth-child(9) .service-detail-body::before{
  -webkit-text-stroke:2px rgba(255,255,255,0.08);
}

/* Subtle warm tint on select cards */
.service-detail-card:nth-child(3),
.service-detail-card:nth-child(7),
.service-detail-card:nth-child(11){background:var(--warm-bg)}

/* Asymmetric ratio on select cards */
.service-detail-card:nth-child(5){grid-template-columns:0.9fr 1.1fr}
.service-detail-card:nth-child(8){grid-template-columns:1.15fr 0.85fr}

/* ─── GOLD DIVIDER STRIP (stays gold) ─── */
.gold-strip{
  background:linear-gradient(135deg,var(--gold-dark) 0%,var(--gold) 50%,var(--gold-light) 100%);
  padding:clamp(3.5rem,7vw,5.5rem) 0;
  position:relative;overflow:hidden;
}
.gold-strip::before{
  content:'';position:absolute;inset:0;
  background:
    linear-gradient(135deg,rgba(0,0,0,0.1) 25%,transparent 25%),
    linear-gradient(-135deg,rgba(0,0,0,0.1) 25%,transparent 25%);
  background-size:20px 20px;opacity:0.3;
}
.gold-strip-inner{
  position:relative;z-index:1;
  display:flex;align-items:center;justify-content:center;
  gap:clamp(2rem,6vw,6rem);flex-wrap:wrap;text-align:center;
}
.gold-stat{text-align:center}
.gold-stat-num{
  font-family:var(--font-heading);
  font-size:clamp(3.5rem,7vw,5.5rem);color:#fff;line-height:1;
  text-shadow:0 2px 10px rgba(0,0,0,0.2);
}
.gold-stat-label{
  font-size:0.75rem;color:rgba(255,255,255,0.75);
  text-transform:uppercase;letter-spacing:0.12em;font-weight:600;margin-top:0.3rem;
}
.gold-stat-divider{width:1px;height:60px;background:rgba(255,255,255,0.2)}

/* ─── IMAGE BREAK ─── */
.image-break{position:relative;height:clamp(300px,40vw,500px);overflow:hidden}
.image-break img{width:100%;height:100%;object-fit:cover;object-position:center 35%}
.image-break-overlay{
  position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(20,20,18,0.8) 0%,rgba(20,20,18,0.65) 100%);
  display:flex;align-items:center;justify-content:center;padding:2rem;
}
.image-break-text{text-align:center;max-width:700px}
.image-break-text blockquote{
  font-family:var(--font-heading);
  font-size:clamp(2rem,5vw,3.5rem);color:#FFFFFF;
  line-height:1;letter-spacing:0.04em;margin-bottom:0.75rem;
}
.image-break-text blockquote span{color:var(--gold-lighter)}
.image-break-text cite{
  font-family:var(--font-body);font-size:0.82rem;color:var(--gold-lighter);
  font-style:normal;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;
}

/* ─── WHY CHOOSE US ─── */
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(3rem,6vw,5rem);align-items:center}
.why-image{position:relative;border-radius:12px;overflow:visible;aspect-ratio:4/3}
.why-image img{width:100%;height:100%;object-fit:cover;transition:transform 0.6s var(--ease);border-radius:12px}
.why-image:hover img{transform:scale(1.02)}
.why-image-badge{
  position:absolute;bottom:-1.25rem;left:1.5rem;
  background:var(--gold);color:#fff;
  padding:1rem 1.5rem;border-radius:6px;
  font-family:var(--font-heading);font-size:1.5rem;
  letter-spacing:0.05em;box-shadow:0 12px 40px rgba(0,0,0,0.2);
  z-index:2;
}
.why-list{list-style:none;display:flex;flex-direction:column;gap:0.75rem}
.why-item{
  display:flex;align-items:flex-start;gap:1.15rem;
  padding:1.35rem 1.5rem;background:var(--dark-2);
  border:1px solid rgba(0,0,0,0.06);border-radius:8px;
  border-left:3px solid var(--gold);transition:border-color 0.3s ease,box-shadow 0.3s ease;
  box-shadow:0 1px 2px rgba(0,0,0,0.04),0 4px 12px rgba(0,0,0,0.04);
}
.why-item:hover{
  background:var(--dark-3);border-left-color:var(--gold-light);
  box-shadow:0 4px 16px rgba(0,0,0,0.06);
}
.why-icon{
  min-width:46px;height:46px;
  background:var(--gold);border:none;
  border-radius:10px;display:flex;align-items:center;justify-content:center;margin-top:2px;
  box-shadow:0 4px 12px rgba(138,122,46,0.3);
}
.why-icon svg{width:20px;height:20px;stroke:#FFFFFF;fill:none;stroke-width:1.5}
.why-item h4{font-size:0.95rem;color:var(--white);font-weight:700;margin-bottom:0.2rem}
.why-item p{font-size:0.84rem;color:var(--gray-500);line-height:1.65}

/* ─── WHY LAYOUT ─── */
.why-layout{
  display:grid;grid-template-columns:1fr 1fr;
  gap:clamp(3rem,6vw,5rem);align-items:center;
}
.why-text{padding:1rem 0}
.why-body{
  font-size:clamp(1rem,1.5vw,1.15rem);color:var(--gray-500);
  line-height:1.85;max-width:520px;margin-bottom:2.5rem;
}
.why-stats{
  display:flex;gap:clamp(2rem,4vw,3.5rem);
  padding-top:2rem;border-top:2px solid rgba(0,0,0,0.06);
}
.why-stat{display:flex;flex-direction:column}
.why-stat-num{
  font-family:var(--font-heading);
  font-size:clamp(2.5rem,5vw,3.5rem);color:var(--gold);
  line-height:1;letter-spacing:0.02em;
}
.why-stat-label{
  font-size:0.7rem;text-transform:uppercase;letter-spacing:0.12em;
  color:var(--gray-500);font-weight:600;margin-top:0.25rem;
}

/* ─── PROCESS (Photo + Card Grid) ─── */
#process{padding-top:clamp(2.5rem,4vw,3.5rem)}
.process-photo{
  max-width:1280px;margin:0 auto;
  padding:0 clamp(1.25rem,3vw,2.5rem);
  margin-bottom:clamp(3rem,5vw,4rem);
}
.process-photo img{
  width:100%;height:clamp(280px,35vw,420px);
  object-fit:cover;border-radius:12px;display:block;
}
.process-content{
  max-width:960px;margin:0 auto;
}
.process-steps{
  display:grid;grid-template-columns:1fr 1fr;
  gap:1.25rem;margin-bottom:clamp(2.5rem,4vw,3.5rem);
}
.process-card{
  background:var(--dark-2);
  border:1px solid rgba(0,0,0,0.06);
  border-radius:10px;
  padding:clamp(1.75rem,3vw,2.25rem);
  position:relative;overflow:hidden;
  transition:border-color 0.3s ease,box-shadow 0.4s ease;
  box-shadow:0 1px 2px rgba(0,0,0,0.04),0 4px 12px rgba(0,0,0,0.04);
}
.process-card:hover{
  border-color:rgba(139,122,47,0.2);
  box-shadow:0 4px 20px rgba(0,0,0,0.08);
}
.process-card-body h3{
  font-family:var(--font-heading);
  font-size:clamp(1.15rem,1.8vw,1.4rem);
  color:var(--white);letter-spacing:0.04em;
  margin-bottom:0.5rem;padding-left:1.1rem;position:relative;
}
.process-card-body h3::before{
  content:'';position:absolute;left:0;top:0;
  width:3px;height:100%;
  background:var(--gold);border-radius:2px;
}
.process-card-body p{
  font-size:0.88rem;color:var(--gray-500);line-height:1.75;
}
.process-cta{
  text-align:center;padding-bottom:1rem;
}

/* ─── REVIEWS ─── */
.reviews-section{
  background:#2A2A28;
  padding-bottom:clamp(5rem,10vw,8rem);
  position:relative;
}
.reviews-section::after{
  content:'';position:absolute;bottom:0;left:0;right:0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(140,122,48,0.3) 20%,rgba(140,122,48,0.3) 80%,transparent);
}
.reviews-section .section-label{color:var(--off-white)}
.reviews-section .section-title{color:#FFFFFF}
.reviews-section .section-title::after{background:linear-gradient(90deg,var(--gold-lighter),var(--gold))}
.reviews-section .reviews-score-num{color:#FFFFFF}
.reviews-section .reviews-count{color:rgba(255,255,255,0.7)}
.reviews-section .reviews-google-badge{
  background:rgba(255,255,255,0.15);border-color:rgba(255,255,255,0.2);
}
.reviews-section .btn-outline{
  color:#FFFFFF;border-color:rgba(255,255,255,0.25);
}
.reviews-section .btn-outline:hover{
  color:#fff!important;border-color:var(--gold)!important;
}
.reviews-section .btn-outline::before{
  background:var(--gold);
}
.reviews-header{
  display:flex;align-items:flex-end;justify-content:space-between;
  margin-bottom:clamp(2.5rem,5vw,3.5rem);gap:2rem;flex-wrap:wrap;
}
.reviews-header-right{
  display:flex;flex-direction:column;align-items:flex-end;gap:1.25rem;
}
.reviews-google-badge{
  display:flex;align-items:center;gap:0.75rem;
  background:var(--off-white);border:1px solid rgba(0,0,0,0.08);
  border-radius:10px;padding:0.75rem 1.25rem;
  box-shadow:0 2px 10px rgba(0,0,0,0.04);
}
.reviews-g-icon{width:28px;height:28px;flex-shrink:0}
.reviews-google-score{display:flex;flex-direction:column;gap:0.1rem}
.reviews-score-num{
  font-family:var(--font-heading);font-size:1.8rem;
  color:var(--white);line-height:1;letter-spacing:0.02em;
}
.reviews-stars-row{display:flex;gap:2px}
.reviews-stars-row svg{width:14px;height:14px;fill:var(--gold)}
.reviews-count{font-size:0.7rem;color:var(--gray-600);font-weight:500}
.slider-nav{display:none}
.reviews-section .container{max-width:1280px}
.slider-btn{
  width:48px;height:48px;border-radius:50%;
  background:var(--off-white);border:1.5px solid rgba(0,0,0,0.1);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;transition:all 0.3s var(--ease);
}
.slider-btn:hover{
  background:var(--gold);border-color:var(--gold);
}
.slider-btn svg{width:20px;height:20px;stroke:var(--gray-400);transition:stroke 0.3s}
.slider-btn:hover svg{stroke:#fff}

/* Review Marquee — infinite horizontal scroll */
.reviews-header-wrap{margin-bottom:clamp(2rem,4vw,3rem)}
.review-marquee{
  overflow:hidden;
  width:100%;
  mask-image:linear-gradient(90deg,transparent 0%,#000 8%,#000 92%,transparent 100%);
  -webkit-mask-image:linear-gradient(90deg,transparent 0%,#000 8%,#000 92%,transparent 100%);
}
.review-marquee-track{
  display:flex;
  gap:clamp(1.25rem,2vw,2rem);
  width:max-content;
  animation:reviewScroll 45s linear infinite;
}
.review-marquee:hover .review-marquee-track{
  animation-play-state:paused;
}
@keyframes reviewScroll{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}
.review-slide{
  flex:0 0 clamp(340px,28vw,440px);
  background:#FFFFFF;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:14px;
  padding:clamp(1.75rem,2.5vw,2.5rem);
  display:flex;flex-direction:column;
  position:relative;
  transition:box-shadow 0.4s ease,border-color 0.3s ease;
  box-shadow:0 2px 12px rgba(0,0,0,0.06);
}
.review-slide::before{
  content:'\201C';position:absolute;top:0.75rem;right:1.25rem;
  font-family:Georgia,serif;font-size:4.5rem;line-height:1;
  color:var(--gold);opacity:0.1;pointer-events:none;
}
.review-slide:hover{
  box-shadow:0 8px 30px rgba(0,0,0,0.1);
  border-color:rgba(140,122,48,0.2);
}
.review-slide-stars{display:flex;gap:3px;margin-bottom:1.5rem}
.review-slide-stars svg{width:20px;height:20px;fill:var(--gold)}
.review-slide-text{
  font-size:0.95rem;color:var(--gray-400);
  line-height:1.8;flex:1;margin-bottom:1.5rem;font-weight:300;
  font-style:italic;
}
.review-slide-author{
  display:flex;align-items:center;gap:0.85rem;
  margin-bottom:1rem;
}
.review-slide-avatar{
  width:42px;height:42px;border-radius:50%;background:var(--gold);
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-family:var(--font-heading);font-size:1.1rem;flex-shrink:0;
}
.review-slide-name{font-size:0.9rem;color:var(--white);font-weight:700}
.review-slide-project{font-size:0.75rem;color:var(--gray-500);margin-top:0.1rem}
.review-slide-google{
  display:flex;align-items:center;gap:0.4rem;
  font-size:0.72rem;color:var(--gray-600);
  padding-top:1rem;border-top:1px solid rgba(0,0,0,0.06);
}
.review-slide-google svg{width:14px;height:14px;flex-shrink:0}

/* ─── QUOTE FORM ─── */
.quote-section{background:var(--dark);position:relative;overflow:hidden}
.quote-section::before{
  content:'';position:absolute;top:-200px;right:-200px;
  width:600px;height:600px;
  background:radial-gradient(circle,rgba(122,106,37,0.06) 0%,transparent 70%);
  pointer-events:none;
}
.quote-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:clamp(3rem,6vw,5rem);align-items:center}
.quote-info h2{
  font-family:var(--font-heading);
  font-size:clamp(2.2rem,5vw,3.5rem);color:var(--white);
  line-height:0.95;letter-spacing:0.03em;margin-bottom:1rem;
}
.quote-info p{font-size:1rem;color:var(--gray-500);line-height:1.8;margin-bottom:2rem;max-width:440px}
.quote-trust-list{list-style:none;display:flex;flex-direction:column;gap:0.65rem}
.quote-trust-item{
  display:flex;align-items:center;gap:0.65rem;
  font-size:0.88rem;color:var(--gray-300);font-weight:500;
}
.quote-trust-item svg{width:18px;height:18px;stroke:var(--gold);fill:none;stroke-width:2.5;flex-shrink:0}
.quote-form{
  background:var(--dark-2);border:1px solid rgba(0,0,0,0.06);
  border-radius:14px;padding:clamp(1.75rem,3vw,2.5rem);position:relative;
  box-shadow:0 1px 2px rgba(0,0,0,0.04),0 4px 12px rgba(0,0,0,0.04),0 16px 40px rgba(0,0,0,0.04);
}
.quote-form-title{
  font-family:var(--font-heading);font-size:1.8rem;color:var(--white);
  letter-spacing:0.04em;margin-bottom:0.35rem;
}
.quote-form-sub{font-size:0.85rem;color:var(--gray-500);margin-bottom:1.5rem}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:0.75rem}
.form-grid .full{grid-column:1/-1}
.form-field input,
.form-field select,
.form-field textarea{
  font-family:var(--font-body);font-size:0.88rem;color:var(--white);
  background:#FAFAFA;
  border:1.5px solid rgba(0,0,0,0.1);
  border-radius:6px;padding:0.9rem 1rem;
  transition:all 0.2s;outline:none;width:100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder{color:var(--gray-600)}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(122,106,37,0.1);
  background:#fff;
}
.form-field textarea{resize:vertical;min-height:80px}
.form-field select{cursor:pointer;appearance:auto;color:var(--gray-500)}
.form-field select option{background:#fff;color:var(--white)}
.form-actions{display:flex;gap:0.75rem;margin-top:1rem}
.form-submit{
  flex:1;padding:1rem 1.5rem;background:var(--gold);color:#fff;
  font-family:var(--font-body);font-size:0.9rem;font-weight:700;
  text-transform:uppercase;letter-spacing:0.06em;
  border:none;border-radius:6px;cursor:pointer;
  transition:all 0.3s var(--ease);
  display:flex;align-items:center;justify-content:center;gap:0.5rem;
}
.form-submit:hover{background:var(--gold-light);transform:translateY(-2px);box-shadow:0 8px 25px var(--gold-glow)}
.form-submit svg{width:16px;height:16px}
.form-call{
  padding:1rem 1.5rem;background:transparent;color:var(--gray-500);
  font-family:var(--font-body);font-size:0.88rem;font-weight:600;
  border:1.5px solid rgba(0,0,0,0.1);border-radius:6px;
  cursor:pointer;transition:all 0.2s;text-decoration:none;
  display:flex;align-items:center;gap:0.5rem;
}
.form-call:hover{border-color:var(--gold);color:var(--gold)}
.form-call svg{width:16px;height:16px}

/* ─── CTA BANNER (full-bleed photo) ─── */
.cta-banner{
  position:relative;min-height:clamp(380px,50vw,520px);overflow:hidden;
  display:flex;align-items:center;justify-content:center;
}
.cta-banner-bg{
  position:absolute;inset:0;
  background:url('../images/kitchen-blue-wide.webp') center/cover no-repeat;
}
.cta-banner-bg::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(20,20,18,0.88) 0%,rgba(40,36,20,0.82) 100%);
}
.cta-content{
  position:relative;z-index:2;
  text-align:center;
  padding:clamp(3rem,6vw,5rem) clamp(2rem,5vw,4rem);
  max-width:700px;
}
.cta-content .section-label{color:rgba(255,255,255,0.7);justify-content:center}
.cta-content .section-label::before{background:rgba(255,255,255,0.3)}
.cta-content h2{
  font-family:var(--font-heading);
  font-size:clamp(2.5rem,6vw,4.5rem);color:#fff;
  line-height:0.92;letter-spacing:0.03em;margin-bottom:1.25rem;
}
.cta-content p{
  font-size:1rem;color:rgba(255,255,255,0.85);
  line-height:1.75;margin-bottom:2.25rem;max-width:500px;margin-left:auto;margin-right:auto;
}
.cta-actions{display:flex;gap:0.75rem;flex-wrap:wrap;justify-content:center}

/* ─── CONTACT STRIP ─── */
.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2.5rem}
.contact-item{display:flex;align-items:flex-start;gap:1.15rem}
.contact-icon{
  width:50px;height:50px;min-width:50px;
  background:var(--gold);border:none;
  border-radius:10px;display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 12px rgba(138,122,46,0.3);
}
.contact-icon svg{width:22px;height:22px;stroke:#FFFFFF;fill:none;stroke-width:1.5}
.contact-item h4{
  font-size:0.68rem;text-transform:uppercase;letter-spacing:0.15em;
  color:var(--gray-600);font-weight:700;margin-bottom:0.35rem;
}
.contact-item p,.contact-item a{
  font-size:0.95rem;color:var(--gray-300);text-decoration:none;
  line-height:1.6;font-weight:500;transition:color 0.2s;
}
.contact-item a:hover{color:var(--gold)}

/* ─── CONTACT PAGE ─── */
.contact-page-grid{
  display:grid;grid-template-columns:1fr 1.2fr;
  gap:clamp(3rem,6vw,5rem);align-items:start;
}
.contact-info-cards{display:flex;flex-direction:column;gap:1rem}
.contact-info-card{
  background:var(--dark-2);border:1px solid rgba(0,0,0,0.06);
  border-radius:10px;padding:1.75rem 2rem;
  display:flex;align-items:flex-start;gap:1.25rem;
  transition:border-color 0.3s ease,box-shadow 0.3s ease;
  box-shadow:0 1px 2px rgba(0,0,0,0.04),0 4px 12px rgba(0,0,0,0.04);
}
.contact-info-card:hover{
  border-color:rgba(122,106,37,0.2);
  box-shadow:0 4px 16px rgba(0,0,0,0.06);
}
.contact-info-card .contact-icon{
  width:52px;height:52px;min-width:52px;
}
.contact-info-card h4{
  font-size:0.95rem;color:var(--white);font-weight:700;margin-bottom:0.3rem;
}
.contact-info-card p,
.contact-info-card a{
  font-size:0.9rem;color:var(--gray-500);text-decoration:none;
  line-height:1.6;transition:color 0.2s;
}
.contact-info-card a:hover{color:var(--gold)}
.contact-map{
  margin-top:1.5rem;border-radius:10px;overflow:hidden;
  border:1px solid rgba(0,0,0,0.08);
  height:280px;
}
.contact-map iframe{width:100%;height:100%;border:0}
.contact-hours{margin-top:1.5rem}
.contact-hours h4{
  font-family:var(--font-heading);font-size:1.2rem;color:var(--white);
  letter-spacing:0.04em;margin-bottom:0.75rem;
}
.contact-hours-list{list-style:none;display:flex;flex-direction:column;gap:0.4rem}
.contact-hours-list li{
  display:flex;justify-content:space-between;
  font-size:0.88rem;padding:0.5rem 0;
  border-bottom:1px solid rgba(0,0,0,0.05);
}
.contact-hours-list li span:first-child{color:var(--gray-500);font-weight:500}
.contact-hours-list li span:last-child{color:var(--white);font-weight:600}

/* ─── GALLERY ─── */
.gallery-filters{
  display:flex;align-items:center;justify-content:center;
  gap:0.5rem;flex-wrap:wrap;margin-bottom:3rem;
}
.gallery-filter{
  padding:0.6rem 1.4rem;border-radius:50px;
  font-family:var(--font-body);font-size:0.82rem;font-weight:600;
  color:var(--gray-500);background:var(--dark-2);
  border:1px solid rgba(0,0,0,0.08);
  cursor:pointer;transition:all 0.3s var(--ease);
  letter-spacing:0.02em;
}
.gallery-filter:hover{color:var(--white);border-color:rgba(0,0,0,0.2)}
.gallery-filter.active{
  background:var(--gold);color:#fff;
  border-color:var(--gold);box-shadow:0 4px 15px var(--gold-glow);
}
.gallery-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:0.75rem;
}
.gallery-item{
  position:relative;border-radius:8px;overflow:hidden;
  aspect-ratio:1;cursor:pointer;
  box-shadow:0 2px 12px rgba(0,0,0,0.06);
  border:1.5px solid transparent;
  transition:transform 0.5s var(--ease),box-shadow 0.5s var(--ease),border-color 0.4s;
}
.gallery-item:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 48px rgba(0,0,0,0.15),0 0 0 1px rgba(140,122,48,0.12);
  border-color:rgba(140,122,48,0.25);
}
.gallery-item.tall{grid-row:span 2;aspect-ratio:auto}
.gallery-item.wide{grid-column:span 2}
.gallery-item img{
  width:100%;height:100%;object-fit:cover;
  transition:transform 0.7s var(--ease);
}
.gallery-item:hover img{transform:scale(1.06)}
.gallery-item-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 40%,rgba(10,10,10,0.85) 100%);
  opacity:0;transition:opacity 0.4s var(--ease);
  display:flex;align-items:flex-end;padding:1.25rem;
}
.gallery-item:hover .gallery-item-overlay{opacity:1}
.gallery-item-overlay span{
  font-size:0.82rem;color:#fff;font-weight:600;
}
.gallery-item-overlay .gallery-zoom{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:50px;height:50px;border-radius:50%;
  background:rgba(122,106,37,0.9);
  display:flex;align-items:center;justify-content:center;
  opacity:0;transition:all 0.3s var(--ease);
  transform:translate(-50%,-50%) scale(0.8);
}
.gallery-item:hover .gallery-item-overlay .gallery-zoom{
  opacity:1;transform:translate(-50%,-50%) scale(1);
}
.gallery-zoom svg{width:22px;height:22px;stroke:#fff;fill:none;stroke-width:2}

/* Gallery Lightbox (dark overlay for viewing images) */
.lightbox{
  position:fixed;inset:0;z-index:1000;
  background:rgba(0,0,0,0.95);
  display:none;align-items:center;justify-content:center;
  padding:2rem;
}
.lightbox.active{display:flex}
.lightbox img{
  max-width:90vw;max-height:85vh;
  border-radius:8px;object-fit:contain;
  box-shadow:0 20px 80px rgba(0,0,0,0.5);
}
.lightbox-close{
  position:absolute;top:1.5rem;right:1.5rem;
  width:48px;height:48px;border-radius:50%;
  background:rgba(255,255,255,0.1);border:none;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:all 0.2s;
}
.lightbox-close:hover{background:rgba(255,255,255,0.2)}
.lightbox-close svg{width:24px;height:24px;stroke:#fff;fill:none;stroke-width:2}
.lightbox-nav{
  position:absolute;top:50%;transform:translateY(-50%);
  width:48px;height:48px;border-radius:50%;
  background:rgba(255,255,255,0.1);border:none;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:all 0.2s;
}
.lightbox-nav:hover{background:rgba(139,121,48,0.5)}
.lightbox-nav svg{width:24px;height:24px;stroke:#fff;fill:none;stroke-width:2}
.lightbox-prev{left:1.5rem}
.lightbox-next{right:1.5rem}
.lightbox-caption{
  position:absolute;bottom:1.5rem;left:50%;transform:translateX(-50%);
  font-size:0.88rem;color:#ccc;font-weight:500;
  background:rgba(0,0,0,0.6);padding:0.5rem 1.25rem;border-radius:50px;
  white-space:nowrap;
}

/* ─── STATEMENT ─── */
.statement-section{
  padding:clamp(6rem,14vw,10rem) 0;
  background:#1A1A18;
  border-top:none;
  border-bottom:none;
}
.statement-block{
  max-width:900px;margin:0 auto;text-align:center;
}
.statement-headline{
  font-family:var(--font-heading);
  font-size:clamp(2.8rem,7vw,5rem);
  color:#FFFFFF;line-height:1;
  letter-spacing:0.02em;margin-bottom:1.5rem;
}
.statement-headline .gold{color:var(--gold-lighter)}
.statement-sub{
  font-size:clamp(1rem,1.5vw,1.2rem);
  color:rgba(255,255,255,0.8);line-height:1.8;
  max-width:540px;margin:0 auto;
}

/* ─── ABOUT PAGE ─── */
.about-story-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:clamp(3rem,6vw,5rem);align-items:center;
}
.about-story-img{
  position:relative;border-radius:12px;overflow:visible;
  box-shadow:0 8px 40px rgba(0,0,0,0.1);
}
.about-story-img img{width:100%;aspect-ratio:4/5;object-fit:cover;border-radius:12px}
.about-story-img-badge{
  position:absolute;bottom:-1rem;right:-1rem;
  background:var(--gold);color:#fff;
  padding:1.25rem 1.75rem;border-radius:8px;text-align:center;
  box-shadow:0 12px 40px rgba(0,0,0,0.2);z-index:2;
}
.about-story-img-badge .badge-num{
  font-family:var(--font-heading);font-size:2.5rem;line-height:1;
}
.about-story-img-badge .badge-label{
  font-size:0.65rem;text-transform:uppercase;letter-spacing:0.12em;
  font-weight:600;opacity:0.85;
}
.about-story-text h2{
  font-family:var(--font-heading);
  font-size:clamp(2rem,4vw,3rem);color:var(--white);
  line-height:0.95;letter-spacing:0.03em;margin-bottom:1.5rem;
}
.about-story-text h2 .gold{color:var(--gold)}
.about-story-text p{
  font-size:0.95rem;color:var(--gray-500);line-height:1.85;
  margin-bottom:1.25rem;
}
.about-story-text p strong{color:var(--gray-300)}
.about-values-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;
}
.about-value{
  background:var(--dark-2);border:1px solid rgba(0,0,0,0.06);
  border-radius:10px;padding:2rem;text-align:center;
  transition:border-color 0.3s ease,box-shadow 0.3s ease;
  box-shadow:0 1px 2px rgba(0,0,0,0.04),0 4px 12px rgba(0,0,0,0.04),0 12px 32px rgba(0,0,0,0.03);
}
.about-value:hover{
  border-color:rgba(122,106,37,0.2);
  box-shadow:0 4px 16px rgba(0,0,0,0.06);
}
.about-value-icon{
  width:56px;height:56px;margin:0 auto 1rem;
  background:rgba(122,106,37,0.08);border:1px solid rgba(122,106,37,0.15);
  border-radius:12px;display:flex;align-items:center;justify-content:center;
}
.about-value-icon svg{width:24px;height:24px;stroke:var(--gold);fill:none;stroke-width:1.5}
.about-value h3{
  font-family:var(--font-heading);font-size:1.3rem;color:var(--white);
  letter-spacing:0.04em;margin-bottom:0.4rem;
}
.about-value p{font-size:0.84rem;color:var(--gray-500);line-height:1.65}

/* Credentials grid */
.credential-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem;
}
.credential-card{
  background:var(--dark-2);border:1px solid rgba(0,0,0,0.06);
  border-radius:10px;padding:2rem 1.5rem;text-align:center;
  transition:border-color 0.3s ease,box-shadow 0.3s ease;
  box-shadow:0 1px 2px rgba(0,0,0,0.04),0 4px 12px rgba(0,0,0,0.04),0 12px 32px rgba(0,0,0,0.03);
}
.credential-card:hover{
  border-color:rgba(122,106,37,0.2);
  box-shadow:0 8px 30px rgba(0,0,0,0.08);
}
.credential-icon{
  width:60px;height:60px;margin:0 auto 1rem;
  background:rgba(122,106,37,0.08);border:1px solid rgba(122,106,37,0.15);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
}
.credential-icon svg{width:26px;height:26px;stroke:var(--gold);fill:none;stroke-width:1.5}
.credential-card h4{
  font-size:0.9rem;color:var(--white);font-weight:700;margin-bottom:0.3rem;
}
.credential-card p{font-size:0.8rem;color:var(--gray-500);line-height:1.6}

/* Service area list */
.service-area-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:0.75rem;
}
.service-area-tag{
  background:var(--dark-2);border:1px solid rgba(0,0,0,0.08);
  border-radius:6px;padding:0.85rem 1rem;text-align:center;
  font-size:0.85rem;color:var(--gray-400);font-weight:500;
  transition:all 0.2s;
  box-shadow:0 1px 4px rgba(0,0,0,0.03);
}
.service-area-tag:hover{
  border-color:rgba(122,106,37,0.2);color:var(--gold);
}

/* ─── FEATURED PROJECTS (Home) ─── */
.projects-preview{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;
  align-items:start;padding-bottom:2rem;
}
.project-card{
  position:relative;border-radius:12px;overflow:hidden;
  cursor:pointer;
  box-shadow:0 20px 60px rgba(0,0,0,0.25),0 0 0 1px rgba(140,122,48,0.15);
  border:1.5px solid rgba(140,122,48,0.3);
  aspect-ratio:3/4;
}
.project-card:first-child{border-radius:12px 24px 12px 12px}
.project-card:nth-child(2){border-radius:12px}
.project-card:last-child{border-radius:12px 12px 24px 12px}
.project-card img{
  width:100%;height:100%;object-fit:cover;
  transform:scale(1.06);
}
.project-card-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 15%,rgba(10,10,10,0.95) 100%);
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:2rem;
}
.project-card-tag{
  font-size:0.65rem;text-transform:uppercase;letter-spacing:0.15em;
  color:var(--gold-light);font-weight:700;margin-bottom:0.4rem;
}
.project-card-overlay h3{
  font-family:var(--font-heading);font-size:1.5rem;color:var(--gold-pale);
  letter-spacing:0.04em;margin-bottom:0.3rem;
}
.project-card-overlay p{
  font-size:0.82rem;color:#AAAAAA;line-height:1.6;
}
.project-card-arrow{
  display:inline-flex;align-items:center;gap:0.4rem;
  font-size:0.75rem;font-weight:600;text-transform:uppercase;letter-spacing:0.1em;
  color:var(--gold-lighter);margin-top:0.8rem;
}
.project-card-arrow svg{
  width:14px;height:14px;stroke:var(--gold-lighter);fill:none;stroke-width:2.5;
  transform:translateX(3px);
}

/* ─── PROJECTS SECTION (dark contrast break) ─── */
.projects-section{
  background:#1A1A18;
  position:relative;
  overflow:hidden;
}
.projects-section .section-label{color:var(--gold-lighter)}
.projects-section .section-title{color:#FFFFFF}
.projects-section .section-title::after{
  background:linear-gradient(90deg,var(--gold-lighter),var(--gold));
}
.projects-section .section-desc{color:rgba(255,255,255,0.6)}
.projects-section .btn-outline{
  color:#FFFFFF;border-color:rgba(255,255,255,0.2);
}
.projects-section .btn-outline:hover{
  color:#fff!important;border-color:var(--gold)!important;
}
.projects-section .btn-outline::before{
  background:var(--gold);
}
.projects-section .project-card{
  box-shadow:0 20px 60px rgba(0,0,0,0.45),0 0 0 1px rgba(140,122,48,0.2);
}

/* ─── FOOTER (dark) ─── */
.footer{
  background:#1A1A18;border-top:none;
  padding:clamp(4rem,8vw,6rem) 0 2rem;
}
.footer-grid{
  display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;
  gap:clamp(2rem,4vw,4rem);margin-bottom:3rem;
}
.footer-brand p{font-size:0.88rem;color:rgba(255,255,255,0.75);line-height:1.7;max-width:300px;margin-bottom:1.5rem}
.footer-social{display:flex;gap:0.5rem}
.footer-social a{
  width:40px;height:40px;border-radius:8px;
  background:rgba(255,255,255,0.15);border:1px solid rgba(255,255,255,0.2);
  display:flex;align-items:center;justify-content:center;
  transition:all 0.2s;text-decoration:none;
}
.footer-social a:hover{background:var(--gold);border-color:var(--gold)}
.footer-social a svg{width:18px;height:18px;stroke:#fff;fill:none;stroke-width:2}
.footer-social a:hover svg{stroke:#fff}
.footer .nav-logo-name{color:#fff}
.footer .nav-logo-sub{color:var(--gold)}
.footer-col h4{
  font-family:var(--font-heading);font-size:1.1rem;color:#fff;
  letter-spacing:0.06em;margin-bottom:1.25rem;
}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:0.5rem}
.footer-col ul a{
  font-size:0.88rem;color:rgba(255,255,255,0.75);text-decoration:none;
  transition:color 0.2s;font-weight:400;
}
.footer-col ul a:hover{color:var(--gold)}
.footer-col .footer-contact-item{
  display:flex;align-items:center;gap:0.5rem;
  font-size:0.88rem;color:rgba(255,255,255,0.75);margin-bottom:0.5rem;
}
.footer-col .footer-contact-item svg{
  width:16px;height:16px;stroke:var(--gold);fill:none;stroke-width:2;flex-shrink:0;
}
.footer-col .footer-contact-item a{color:rgba(255,255,255,0.75);text-decoration:none;transition:color 0.2s}
.footer-col .footer-contact-item a:hover{color:var(--gold)}
.footer-bottom{
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:1rem;
  padding-top:2rem;border-top:1px solid rgba(255,255,255,0.08);
}
.footer-left{font-size:0.8rem;color:rgba(255,255,255,0.6)}
.footer-right{font-size:0.75rem;color:rgba(255,255,255,0.6)}
.footer-right a{color:rgba(255,255,255,0.8);text-decoration:none;font-weight:600;transition:color 0.2s}
.footer-right a:hover{color:var(--gold)}

/* ─── STICKY PHONE BUTTON (stays gold) ─── */
.sticky-phone{
  position:fixed;bottom:1.5rem;right:1.5rem;z-index:200;
  display:flex;align-items:center;gap:0.5rem;
  background:var(--gold);border-radius:50px;
  padding:0.75rem;text-decoration:none;
  box-shadow:0 8px 30px rgba(122,106,37,0.35),0 2px 8px rgba(0,0,0,0.2);
  transition:all 0.3s var(--ease);
  animation:phonePulse 3s ease-in-out infinite;
}
.sticky-phone:hover{transform:translateY(-3px) scale(1.03);box-shadow:0 12px 40px rgba(122,106,37,0.5)}
.sticky-phone-icon{
  width:50px;height:50px;background:var(--gold-dark);
  border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.sticky-phone-icon svg{width:22px;height:22px;stroke:#fff;fill:none;stroke-width:2}
.sticky-phone-text{display:none;flex-direction:column;padding-right:0.75rem}
.sticky-phone-label{font-size:0.62rem;color:rgba(255,255,255,0.7);text-transform:uppercase;letter-spacing:0.12em;font-weight:600}
.sticky-phone-num{font-family:var(--font-heading);font-size:1.1rem;color:#fff;letter-spacing:0.04em;white-space:nowrap}
@keyframes phonePulse{
  0%,100%{box-shadow:0 8px 30px rgba(122,106,37,0.35),0 2px 8px rgba(0,0,0,0.2)}
  50%{box-shadow:0 8px 30px rgba(122,106,37,0.35),0 2px 8px rgba(0,0,0,0.2),0 0 0 10px rgba(122,106,37,0.12)}
}
@media(min-width:769px){.sticky-phone-text{display:flex}}
@media(max-width:768px){.sticky-phone{padding:0.6rem}.sticky-phone-icon{width:46px;height:46px}}

/* ─── SCROLL REVEAL ─── */
.reveal{opacity:0;transform:translateY(20px);transition:opacity 0.8s ease,transform 0.8s cubic-bezier(0.77,0,0.175,1),clip-path 0.8s cubic-bezier(0.77,0,0.175,1)}
.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}

/* ─── RESPONSIVE ─── */
@media(max-width:1024px){
  .services-bento{grid-template-columns:repeat(2,1fr)}
  .service-card.featured{grid-column:span 2}
  .why-stats{gap:clamp(1.5rem,3vw,2.5rem)}
  /* reviews now marquee - no grid needed */
  .gallery-grid{grid-template-columns:repeat(3,1fr)}
  .credential-grid{grid-template-columns:repeat(2,1fr)}
  .about-values-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:repeat(2,1fr)}
  .service-area-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:900px){
  .why-layout,.why-grid,.quote-grid,.about-story-grid,.contact-page-grid{grid-template-columns:1fr}
  .process-steps{grid-template-columns:1fr}
  .service-detail-card,
  .service-detail-card:first-child,
  .service-detail-card:nth-child(5),
  .service-detail-card:nth-child(8){grid-template-columns:1fr}
  .service-detail-card:nth-child(even){direction:ltr}
  .service-detail-card:first-child .service-detail-img{min-height:240px}
  .service-detail-img{min-height:240px;height:240px}
  .hero{min-height:auto}
  .hero-content{padding-bottom:5rem;grid-template-columns:1fr}
  .hero-scroll{display:none}
  .contact-grid{grid-template-columns:1fr}
  .projects-preview{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .nav-links{display:none}
  .mobile-toggle{display:block}
  .nav-links.open{
    display:flex;flex-direction:column;
    position:absolute;top:72px;left:0;right:0;
    background:rgba(244,243,245,0.98);
    backdrop-filter:blur(20px);
    padding:1.5rem 2rem;gap:0.5rem;
    border-bottom:1px solid rgba(0,0,0,0.08);
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
  }
  .nav-links.open a{padding:0.75rem 1rem;width:100%;display:block;color:var(--gray-500)}
  .nav-links.open a:hover{color:var(--white)}
  .nav-cta{margin-left:0!important;text-align:center}
  .top-bar{justify-content:center;text-align:center}
  .top-bar-right{display:none}
  .top-bar-divider{display:none}
  .services-bento{grid-template-columns:1fr}
  .service-card.featured{grid-column:auto;display:block}
  .service-card.featured .service-card-img{min-height:220px;height:220px}
  .service-card.featured .service-card-body{padding:1.5rem 1.75rem 1.75rem}
  .hero-stats{flex-wrap:wrap;gap:2rem}
  .why-stats{flex-wrap:wrap}
  .process-steps{grid-template-columns:1fr}
  .process-photo img{height:240px;border-radius:8px}
  .review-slide{flex:0 0 300px}
  .reviews-header{flex-direction:column;align-items:flex-start}
  .reviews-header-right{align-items:flex-start;flex-direction:row;gap:1rem}
  .form-grid{grid-template-columns:1fr}
  .form-grid .full{grid-column:auto}
  .form-actions{flex-direction:column}
  .hero h1{font-size:clamp(3rem,12vw,5rem)}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .gallery-item.tall{grid-row:auto;aspect-ratio:1}
  .gallery-item.wide{grid-column:auto}
  .about-values-grid{grid-template-columns:1fr}
  .credential-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .projects-preview{grid-template-columns:1fr}
  .service-area-grid{grid-template-columns:repeat(2,1fr)}
  .about-story-img-badge{right:1rem;bottom:-1rem}
}
@media(max-width:480px){
  .why-stats{gap:1.5rem}
  .hero-actions{flex-direction:column;align-items:flex-start}
  .hero-actions .btn{width:100%;justify-content:center}
  .gallery-grid{grid-template-columns:1fr 1fr}
  .service-area-grid{grid-template-columns:1fr 1fr}
}

/* ═══════════════════════════════════════════════════════
   PREMIUM EFFECTS
   ═══════════════════════════════════════════════════════ */

/* ─── NAV SCROLL STATES ─── */
.nav{transition:height 0.35s ease,box-shadow 0.35s ease,transform 0.35s ease}
.nav-scrolled{
  height:60px;
  box-shadow:0 4px 30px rgba(0,0,0,0.08);
}
.nav-hidden{
  transform:translateY(-100%);
  box-shadow:none;
}

/* ─── BACK TO TOP BUTTON ─── */
.back-to-top{
  position:fixed;bottom:2rem;left:2rem;z-index:199;
  width:48px;height:48px;border:none;
  background:var(--off-white);border-radius:50%;
  cursor:pointer;
  opacity:0;visibility:hidden;transform:translateY(20px);
  transition:opacity 0.4s ease,visibility 0.4s ease,transform 0.4s ease,box-shadow 0.3s ease;
  box-shadow:0 4px 20px rgba(0,0,0,0.1);
  display:flex;align-items:center;justify-content:center;
}
.back-to-top.visible{opacity:1;visibility:visible;transform:translateY(0)}
.back-to-top:hover{
  box-shadow:0 8px 30px rgba(0,0,0,0.15);
  transform:translateY(-3px);
}
.progress-ring{
  position:absolute;inset:0;width:48px;height:48px;
  transform:rotate(-90deg);
}
.progress-ring-bg{fill:none;stroke:rgba(0,0,0,0.06);stroke-width:2}
.progress-circle{
  fill:none;stroke:var(--gold);stroke-width:2.5;
  stroke-linecap:round;
  transition:stroke-dashoffset 0.1s linear;
}
.back-to-top-arrow{
  width:18px;height:18px;
  stroke:var(--gold);fill:none;
  stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;
  position:relative;z-index:1;
}

/* ─── BUTTON FILL-WIPE HOVER (premium) ─── */
.btn-gold{position:relative;overflow:hidden;z-index:1}
.btn-gold::after{
  content:'';position:absolute;inset:0;z-index:-1;
  background:linear-gradient(180deg,var(--gold-lighter) 0%,var(--gold-light) 100%);
  transform:translateY(100%);
  transition:transform 0.45s cubic-bezier(0.77,0,0.175,1);
}
.btn-gold:hover::after{transform:translateY(0)}
.btn-outline{position:relative;overflow:hidden;z-index:1}
.btn-outline::before{
  content:'';position:absolute;inset:0;z-index:-1;
  background:var(--gold);
  transform:translateY(100%);
  transition:transform 0.45s cubic-bezier(0.77,0,0.175,1);
}
.btn-outline:hover{color:#fff!important;border-color:var(--gold)!important}
.btn-outline:hover::before{transform:translateY(0)}

/* ─── PREMIUM REVEAL TRANSITIONS ─── */
/* Image reveals wipe from left — only on images, not text */
.why-image.reveal,.about-story-img.reveal{
  clip-path:inset(0 100% 0 0);
  transition:opacity 1s ease,transform 1s cubic-bezier(0.77,0,0.175,1),clip-path 1s cubic-bezier(0.77,0,0.175,1);
}
.why-image.reveal.visible,.about-story-img.reveal.visible{
  clip-path:inset(0 0 0 0);
}
/* Process photo wipes from top */
.process-photo.reveal{
  clip-path:inset(0 0 100% 0);
  transition:opacity 1s ease,transform 1s cubic-bezier(0.77,0,0.175,1),clip-path 1s cubic-bezier(0.77,0,0.175,1);
}
.process-photo.reveal.visible{
  clip-path:inset(0 0 0 0);
}

/* ─── GOLD GRADIENT TEXT ON HEADLINES ─── */
.hero h1 .gold,.page-hero h1 .gold,.statement-headline .gold{
  background:linear-gradient(135deg,var(--gold-lighter) 0%,var(--gold) 40%,var(--gold-dark) 100%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
}

/* ─── SECTION TITLE GOLD UNDERLINE ─── */
.section-title::after{
  content:'';display:block;width:60px;height:4px;
  background:linear-gradient(90deg,var(--gold),var(--gold-light));
  border-radius:2px;margin-top:1rem;
}
.section-center .section-title::after{margin-left:auto;margin-right:auto}

/* ─── BOLDER SECTION LABEL LINE ─── */
.section-label::before{width:3rem;height:3px;background:linear-gradient(90deg,var(--gold),var(--gold-light));border-radius:2px}

/* (removed gold shimmer animation) */

/* (removed distracting hover effects) */

/* (process connectors now built into main process styles) */

/* ─── LIGHTER BODY TEXT FOR EDITORIAL FEEL ─── */
.hero-sub,.why-body,.statement-sub,.page-hero-desc{font-weight:300;letter-spacing:0.01em}

/* (removed pulse animation) */

/* ─── STATEMENT SECTION DECORATIVE QUOTE ─── */
.statement-block{position:relative}
.statement-block::before{
  content:'\201C';position:absolute;top:-0.5em;left:50%;
  transform:translateX(-50%);font-family:Georgia,serif;
  font-size:clamp(6rem,12vw,10rem);color:rgba(140,122,48,0.15);
  line-height:1;pointer-events:none;
}

/* (removed review hover accent) */

/* ─── HERO FORM ─── */
.hero-form{border-color:rgba(138,122,46,0.1)}

/* ─── GALLERY BORDER RADIUS VARIETY ─── */
.gallery-item:nth-child(3n+1){border-radius:12px 4px 12px 4px}
.gallery-item:nth-child(3n+2){border-radius:4px 12px 4px 12px}
.gallery-item:nth-child(3n){border-radius:8px}

/* (removed icon glow) */

/* ─── SMOOTH IMAGE ZOOM ON SCROLL ─── */
.why-image{overflow:hidden;border-radius:12px}
.about-story-img{overflow:hidden}

@media(max-width:768px){
  .back-to-top{bottom:1.5rem;left:1.5rem;width:42px;height:42px}
  .progress-ring{width:42px;height:42px}
  .back-to-top-arrow{width:16px;height:16px}
}

/* ═══════════════════════════════════════════════════════
   STRUCTURAL OVERHAUL — Premium Architecture
   ═══════════════════════════════════════════════════════ */

/* ─── WHY SECTION: Image breaks boundary with gold frame accent ─── */
.why-layout{
  position:relative;
}
.why-image{
  position:relative;z-index:2;
}
.why-image::before{
  content:'';position:absolute;
  top:-16px;left:-16px;
  width:calc(100% - 30px);height:calc(100% - 30px);
  border:3px solid var(--gold);border-radius:14px;
  z-index:-1;opacity:0.4;
}
.why-image::after{
  content:'';position:absolute;
  bottom:-24px;right:-24px;
  width:120px;height:120px;
  background:linear-gradient(135deg,var(--gold) 0%,var(--gold-light) 100%);
  border-radius:12px;z-index:-1;opacity:0.12;
}

/* (process timeline is in main section above) */

/* (reviews now use marquee layout) */

/* ─── STATEMENT: Layered depth with gold accent bars ─── */
.statement-section{
  position:relative;overflow:hidden;
}
.statement-section::before{
  content:'';position:absolute;
  top:0;left:5%;
  width:2px;height:100%;
  background:linear-gradient(180deg,transparent 0%,var(--gold) 30%,var(--gold) 70%,transparent 100%);
  opacity:0.25;
}
.statement-section::after{
  content:'';position:absolute;
  top:0;right:5%;
  width:2px;height:100%;
  background:linear-gradient(180deg,transparent 0%,var(--gold) 30%,var(--gold) 70%,transparent 100%);
  opacity:0.25;
}
.statement-headline{
  position:relative;
  padding:0 2rem;
}

/* ─── HERO: Layered corner accents ─── */
.hero-content::before{
  content:'';position:absolute;
  top:clamp(2rem,5vw,4rem);left:clamp(1.5rem,3vw,3rem);
  width:clamp(60px,8vw,100px);height:clamp(60px,8vw,100px);
  border-top:3px solid var(--gold);
  border-left:3px solid var(--gold);
  opacity:0.25;pointer-events:none;
}
.hero-content::after{
  content:'';position:absolute;
  bottom:clamp(4rem,8vw,6rem);right:clamp(1.5rem,3vw,3rem);
  width:clamp(60px,8vw,100px);height:clamp(60px,8vw,100px);
  border-bottom:3px solid var(--gold);
  border-right:3px solid var(--gold);
  opacity:0.25;pointer-events:none;
}

/* ─── SERVICES BENTO: Card depth hierarchy ─── */
.service-card.featured{
  box-shadow:0 8px 40px rgba(0,0,0,0.12);
  border-radius:16px;
}
.service-card.featured::before{
  content:'';position:absolute;inset:-3px;
  border-radius:18px;z-index:-1;
  background:linear-gradient(135deg,var(--gold) 0%,transparent 40%,transparent 60%,var(--gold) 100%);
  opacity:0.15;
}
.service-card:not(.featured){
  border-radius:12px;
}

/* ─── CTA BANNER: Double border frame ─── */
.cta-content{
  position:relative;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:20px;
  padding:clamp(3rem,6vw,5rem) clamp(2rem,5vw,4rem);
  background:rgba(0,0,0,0.15);
  backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
}
.cta-content::before{
  content:'';position:absolute;
  inset:8px;border:1px solid rgba(255,255,255,0.05);
  border-radius:16px;pointer-events:none;
}

/* ─── FOOTER: Gold accent strip at top ─── */
.footer{
  position:relative;
}
.footer::before{
  content:'';position:absolute;
  top:0;left:0;right:0;
  height:4px;
  background:linear-gradient(90deg,transparent 0%,var(--gold) 20%,var(--gold-light) 50%,var(--gold) 80%,transparent 100%);
}

/* ─── NAV: Gold accent dot on active link ─── */
.nav-links a.active{
  position:relative;
}
.nav-links a.active::after{
  content:'';position:absolute;
  bottom:4px;left:50%;transform:translateX(-50%);
  width:5px;height:5px;
  background:var(--gold);border-radius:50%;
}

/* ─── SECTION HEADERS: Oversized ghost text behind ─── */
.section-header{
  position:relative;
}
.section-header .section-title{
  position:relative;
}

/* ─── WHY STATS: Gold top accent ─── */
.why-stats{
  position:relative;
}
.why-stats::before{
  content:'';position:absolute;
  top:0;left:0;width:60px;height:3px;
  background:linear-gradient(90deg,var(--gold),transparent);
  border-radius:2px;
}

/* ─── HERO FORM: Corner accents ─── */
.hero-form{
  position:relative;
}
.hero-form::before{
  content:'';position:absolute;
  top:-4px;left:-4px;right:60%;bottom:60%;
  border-top:3px solid var(--gold);
  border-left:3px solid var(--gold);
  border-radius:14px 0 0 0;
  opacity:0.4;pointer-events:none;
}
.hero-form::after{
  content:'';position:absolute;
  bottom:-4px;right:-4px;left:60%;top:60%;
  border-bottom:3px solid var(--gold);
  border-right:3px solid var(--gold);
  border-radius:0 0 14px 0;
  opacity:0.4;pointer-events:none;
}

/* ─── SECTION WARM: Clean with no pattern ─── */

/* ─── SERVICE CARD TAG: Pill with gold dot ─── */
.service-card-tag::before{
  content:'';display:inline-block;
  width:6px;height:6px;
  background:var(--gold);border-radius:50%;
  margin-right:0.5rem;vertical-align:middle;
}

/* ─── RESPONSIVE ADJUSTMENTS FOR STRUCTURAL CHANGES ─── */
@media(max-width:900px){
  .why-image::before{display:none}
  .why-image::after{display:none}
  .hero-content::before,.hero-content::after{display:none}
  .statement-section::before,.statement-section::after{display:none}
  .hero-form::before,.hero-form::after{display:none}
}
@media(max-width:768px){
  .review-marquee-track{animation-duration:30s}
  .cta-content{
    border:none;background:transparent;
    backdrop-filter:none;-webkit-backdrop-filter:none;
    border-radius:0;
  }
  .cta-content::before{display:none}
}
