/* ═══════════════════════════════════════════════════════════════
   Forge & Frame Home Company — Main Stylesheet
   ─────────────────────────────────────────────────────────────── */

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-pale:   #F5E6C0;
  --gold-deep:   #A8852E;
  --navy:        #0D1B2A;
  --navy-mid:    #1B2E42;
  --navy-light:  #243a52;
  --white:       #FAFAF7;
  --gray:        #6B7280;
  --gray-light:  #9CA3AF;
  --light:       #F0EDE6;
  --border:      #E5E0D5;
}

/* ── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── SCROLL REVEAL ────────────────────────────────────────────── */
.reveal        { opacity: 0; transform: translateY(36px);  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal-left   { opacity: 0; transform: translateX(-48px); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
.reveal-right  { opacity: 0; transform: translateX(48px);  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .18s; }
.d3 { transition-delay: .28s; }
.d4 { transition-delay: .38s; }

/* ── NAVIGATION ───────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: transparent;
  transition: background .4s, padding .4s, box-shadow .4s;
}
nav.scrolled {
  background: rgba(13,27,42,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,.18);
  padding: 12px 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-hex { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; transition: transform .4s; }
.logo:hover .logo-hex { transform: scale(1.08) rotate(-3deg); }
.logo-hex img { width: 100%; height: 100%; object-fit: contain; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--white); line-height: 1.15; font-weight: 700; }
.logo-text span { color: var(--gold); display: block; font-size: .55rem; font-family: 'Raleway', sans-serif; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(250,250,247,.8); text-decoration: none;
  font-size: .68rem; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 700;
  position: relative; padding-bottom: 4px; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transition: transform .3s; transform-origin: right;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  background: var(--gold); color: var(--navy); padding: 10px 22px; border: none; cursor: pointer;
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: .68rem;
  letter-spacing: 2px; text-transform: uppercase; transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all .3s; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 299;
  background: rgba(13,27,42,.99); padding: 90px 36px 40px; flex-direction: column;
}
.mobile-menu.open { display: flex; animation: mfade .25s ease; }
@keyframes mfade { from { opacity: 0; } to { opacity: 1; } }
.mobile-menu a {
  color: var(--white); text-decoration: none;
  font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700;
  padding: 16px 0; border-bottom: 1px solid rgba(201,168,76,.15);
  transition: color .2s, padding-left .25s;
}
.mobile-menu a:hover { color: var(--gold); padding-left: 10px; }
.mob-cta-btn {
  margin-top: 28px; background: var(--gold); color: var(--navy); padding: 16px;
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: .82rem;
  letter-spacing: 2px; text-transform: uppercase; border: none; cursor: pointer;
}

/* ── HERO ─────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 100px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('/assets/images/image2.webp');
  background-size: cover; background-position: center top;
  animation: hzoom 9s ease-out forwards;
}
@keyframes hzoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(13,27,42,.75) 0%, rgba(13,27,42,.5) 45%, rgba(13,27,42,.85) 100%);
}
.hero-pattern {
  position: absolute; inset: 0; z-index: 2; opacity: .03;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}
.hero-content { position: relative; z-index: 3; width: 100%; max-width: 860px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(201,168,76,.55); color: var(--gold);
  font-size: .64rem; letter-spacing: 4px; text-transform: uppercase;
  padding: 7px 18px; margin-bottom: 28px;
  animation: fadeUp 1s .15s ease both;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 5.5rem); font-weight: 900;
  color: var(--white) !important; line-height: 1.05; margin-bottom: 14px;
  animation: fadeUp 1s .3s ease both; text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: clamp(.88rem, 2vw, 1.05rem); color: rgba(250,250,247,.75);
  line-height: 1.75; margin-bottom: 44px; max-width: 520px;
  margin-left: auto; margin-right: auto; animation: fadeUp 1s .45s ease both;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeUp 1s .6s ease both; }
.hero-accent { position: absolute; bottom: -2px; left: 0; right: 0; z-index: 3; height: 110px; background: var(--white); clip-path: ellipse(58% 100% at 50% 100%); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }

.scroll-cue {
  position: absolute; bottom: 130px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 7px;
  animation: fadeUp 1s 1.2s ease both;
}
.scroll-cue span { font-size: .52rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(250,250,247,.38); font-weight: 600; }
.scroll-line { width: 1px; height: 44px; background: rgba(201,168,76,.3); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; right: 0; height: 50%;
  background: var(--gold); animation: spulse 2s infinite 1.6s;
}
@keyframes spulse { 0% { top: -50%; } 100% { top: 150%; } }

/* ── PAGE HERO (inner pages) ──────────────────────────────────── */
.page-hero {
  min-height: 42vh; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 0 24px 64px;
  background: var(--navy);
  padding: 0 24px 100px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .35;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,27,42,.9) 0%, rgba(13,27,42,.5) 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 1120px; margin: 0 auto; width: 100%; }
.page-hero-content .section-tag { animation: fadeUp .8s .1s ease both; }
.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 900;
  color: var(--white); line-height: 1.1; margin-top: 8px;
  animation: fadeUp .8s .25s ease both;
}
.page-hero-content h1 em { color: var(--gold); font-style: normal; }
.page-hero .hero-accent { background: var(--white); }
.page-hero .hero-accent { height: 70px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .62rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(250,250,247,.4); margin-bottom: 16px;
  animation: fadeUp .8s .05s ease both;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb i { font-size: .5rem; }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn-primary {
  background: var(--gold); color: var(--navy); padding: 15px 34px;
  border: none; cursor: pointer; font-family: 'Raleway', sans-serif;
  font-weight: 700; font-size: .76rem; letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .25s, transform .25s, box-shadow .25s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,168,76,.4); }
.btn-outline {
  background: transparent; color: var(--white); padding: 15px 34px;
  border: 1px solid rgba(250,250,247,.4); cursor: pointer; font-family: 'Raleway', sans-serif;
  font-weight: 600; font-size: .76rem; letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: all .25s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--gold); padding: 13px 28px;
  border: 1px solid var(--gold); cursor: pointer; font-family: 'Raleway', sans-serif;
  font-weight: 700; font-size: .72rem; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  transition: all .25s;
}
.btn-ghost:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* ── STATS BAR ────────────────────────────────────────────────── */
.stats-bar { background: var(--gold); display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; padding: 30px 24px; }
.stat { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.1rem; font-weight: 900; color: var(--navy); line-height: 1; }
.stat-label { font-size: .58rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(13,27,42,.65); font-weight: 700; margin-top: 4px; }

/* ── SECTION COMMON ───────────────────────────────────────────── */
section { padding: 100px 24px; }
.section-tag {
  font-size: .6rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-tag::before { content: ''; display: block; width: 22px; height: 1px; background: var(--gold); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 4vw, 2.8rem); font-weight: 700; color: var(--navy); line-height: 1.2; }
.section-line { width: 48px; height: 3px; background: var(--gold); margin: 20px 0 28px; }
.section-body { color: var(--gray); line-height: 1.85; font-size: .93rem; max-width: 560px; }
.centered { text-align: center; }
.centered .section-tag { justify-content: center; }
.centered .section-tag::before { display: none; }
.centered .section-line { margin: 20px auto 28px; }
.centered .section-body { margin: 0 auto; }
.inner { max-width: 1120px; margin: 0 auto; }

/* ── ABOUT (home) ─────────────────────────────────────────────── */
#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { position: relative; }
.about-img img { width: 100%; height: 480px; object-fit: cover; }
.about-img::before {
  content: ''; position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 2px solid var(--gold); z-index: -1; transition: transform .4s;
}
.about-img:hover::before { transform: translate(-4px,-4px); }
.img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy); color: var(--gold); padding: 20px 24px; text-align: center;
}
.img-badge-num { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 900; display: block; line-height: 1; }
.img-badge-text { font-size: .56rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-top: 4px; }
.about-features { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.about-feat {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px;
  background: var(--light); border-left: 3px solid transparent;
  transition: border-color .3s, background .3s;
}
.about-feat:hover { border-left-color: var(--gold); background: var(--gold-pale); }
.about-feat i { color: var(--gold); font-size: 1rem; margin-top: 2px; min-width: 18px; }
.about-feat-text strong { display: block; font-size: .83rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.about-feat-text p { font-size: .78rem; color: var(--gray); line-height: 1.6; }

/* ── SERVICES GRID (home) ─────────────────────────────────────── */
#services-home { background: var(--light); }
.services-grid-home { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.service-card {
  background: var(--white); padding: 48px 34px; position: relative;
  overflow: hidden; transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
  text-decoration: none; display: block;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transition: transform .4s; transform-origin: left;
}
.service-card:hover { transform: translateY(-7px); box-shadow: 0 22px 50px rgba(13,27,42,.1); }
.service-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 54px; height: 54px; background: var(--light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; transition: background .3s;
}
.service-card:hover .svc-icon { background: var(--gold); }
.svc-icon i { color: var(--gold); font-size: 1.2rem; transition: color .3s; }
.service-card:hover .svc-icon i { color: var(--navy); }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
.service-card p { color: var(--gray); font-size: .86rem; line-height: 1.8; }
.svc-arrow { display: flex; align-items: center; gap: 6px; margin-top: 20px; color: var(--gold); font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }

/* ── GALLERY (home preview) ───────────────────────────────────── */
#gallery-home { background: var(--navy); }
#gallery-home .section-tag { color: var(--gold-light); }
#gallery-home .section-title { color: var(--white); }
#gallery-home .section-title em { color: var(--gold); font-style: normal; }
.gallery-grid-home {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: 260px 260px;
  gap: 7px; margin-top: 48px;
}
.gallery-item { overflow: hidden; position: relative; cursor: pointer; }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,1,.36,1); filter: brightness(.82); }
.gallery-item:hover img { transform: scale(1.07); filter: brightness(1); }
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.75) 0%, transparent 55%);
  opacity: 0; transition: opacity .4s;
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .g-overlay { opacity: 1; }
.g-overlay span { color: var(--white); font-size: .66rem; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 700; }

/* ── BEFORE / AFTER SLIDER ────────────────────────────────────── */
#beforeafter { background: var(--white); }
.ba-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.ba-inner .section-tag { justify-content: center; }
.ba-inner .section-tag::before { display: none; }
.ba-inner .section-line { margin: 20px auto 12px; }
.ba-inner .section-body { margin: 0 auto 48px; }
.slider-wrap { position: relative; width: 100%; height: 460px; overflow: hidden; cursor: ew-resize; user-select: none; box-shadow: 0 28px 72px rgba(13,27,42,.16); }
.slider-wrap img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.after-img { clip-path: inset(0 50% 0 0); }
.s-handle { position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); width: 2px; background: var(--gold); z-index: 10; pointer-events: none; }
.s-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 50px; height: 50px; border-radius: 50%; background: var(--gold); border: 3px solid var(--white); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(0,0,0,.3); z-index: 11; pointer-events: none; }
.s-btn i { color: var(--navy); font-size: .88rem; }
.ba-label { position: absolute; top: 16px; background: rgba(13,27,42,.82); color: var(--white); font-size: .6rem; letter-spacing: 2.5px; text-transform: uppercase; padding: 6px 14px; font-weight: 700; }
.ba-label.before { left: 16px; }
.ba-label.after { right: 16px; }

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
#testimonials-home { background: var(--light); }
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.test-card {
  background: var(--white); padding: 40px 32px; border-top: 3px solid var(--gold);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
}
.test-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(13,27,42,.08); }
.test-qi { color: var(--gold); font-size: 1.7rem; margin-bottom: 16px; opacity: .5; }
.test-text { color: var(--gray); font-size: .88rem; line-height: 1.85; font-style: italic; margin-bottom: 22px; }
.test-stars { color: var(--gold); font-size: .82rem; letter-spacing: 2px; margin-bottom: 10px; }
.test-author { font-weight: 700; font-size: .86rem; color: var(--navy); }
.test-loc { font-size: .68rem; color: var(--gold); letter-spacing: 1px; margin-top: 3px; }
.test-service { font-size: .62rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-light); margin-top: 10px; }

/* ── CTA BAND ─────────────────────────────────────────────────── */
#cta {
  background: var(--navy); text-align: center; padding: 100px 24px;
  position: relative; overflow: hidden;
}
#cta::before {
  content: ''; position: absolute; inset: 0; opacity: .04;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
#cta .section-tag { color: var(--gold-light); justify-content: center; }
#cta .section-tag::before { display: none; }
#cta .section-title { color: var(--white); }
#cta .section-line { margin: 20px auto 18px; }
.cta-sub { color: rgba(250,250,247,.58); font-size: .97rem; line-height: 1.75; margin-bottom: 48px; }
.contact-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.c-item {
  display: flex; align-items: center; gap: 13px; padding: 18px 24px;
  border: 1px solid rgba(201,168,76,.2); background: rgba(255,255,255,.04);
  transition: border-color .3s, background .3s; text-decoration: none;
}
.c-item:hover { border-color: var(--gold); background: rgba(201,168,76,.07); }
.c-icon { color: var(--gold); font-size: 1.2rem; }
.c-info { text-align: left; }
.c-label { font-size: .56rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.c-val { color: var(--white); font-size: .86rem; font-weight: 500; margin-top: 2px; }
.cta-btn {
  background: var(--gold); color: var(--navy); padding: 18px 48px; border: none; cursor: pointer;
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: .82rem; letter-spacing: 3px; text-transform: uppercase;
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  transition: background .25s, transform .25s, box-shadow .25s; text-decoration: none;
}
.cta-btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(201,168,76,.4); }

/* ── FOOTER ───────────────────────────────────────────────────── */
footer { background: #060f18; border-top: 1px solid rgba(201,168,76,.1); }
.footer-inner {
  max-width: 1120px; margin: 0 auto; padding: 52px 24px 36px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 44px; height: 44px; object-fit: contain; }
.footer-brand-text strong { display: block; color: var(--white); font-size: .88rem; font-weight: 700; }
.footer-brand-text span { color: rgba(250,250,247,.35); font-size: .72rem; margin-top: 2px; display: block; letter-spacing: 1px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: rgba(250,250,247,.45); font-size: .72rem; text-decoration: none; letter-spacing: 1px; transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; color: rgba(250,250,247,.45); font-size: .72rem; text-decoration: none; letter-spacing: 1px; transition: color .2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact i { color: var(--gold); width: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,.08); padding: 18px 24px;
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom span { color: rgba(250,250,247,.22); font-size: .66rem; letter-spacing: 1px; }

/* ── MODAL ────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500; background: rgba(13,27,42,.88);
  backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center;
  padding: 16px; opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); max-width: 540px; width: 100%; position: relative;
  transform: translateY(36px) scale(.97); transition: transform .38s cubic-bezier(.22,1,.36,1);
  max-height: 92vh; overflow-y: auto;
}
.modal-overlay.open .modal { transform: none; }
.modal-hd { background: var(--navy); padding: 32px 36px 26px; position: relative; }
.modal-hd .section-tag { color: var(--gold-light); margin-bottom: 6px; }
.modal-hd .section-tag::before { display: none; }
.modal-hd h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--white); font-weight: 700; }
.modal-x { position: absolute; top: 18px; right: 18px; background: none; border: none; color: rgba(250,250,247,.45); font-size: 1.1rem; cursor: pointer; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; transition: color .2s, transform .3s; }
.modal-x:hover { color: var(--gold); transform: rotate(90deg); }
.modal-bd { padding: 32px 36px 36px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.ff { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.ff label { font-size: .61rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: var(--navy); }
.ff input, .ff textarea, .ff select {
  border: 1px solid #dedad2; padding: 12px 14px;
  font-family: 'Raleway', sans-serif; font-size: .86rem; color: var(--navy);
  outline: none; background: var(--white); transition: border-color .2s; width: 100%;
}
.ff input:focus, .ff textarea:focus, .ff select:focus { border-color: var(--gold); }
.ff textarea { resize: none; height: 105px; }
.form-submit {
  width: 100%; background: var(--gold); color: var(--navy); border: none; padding: 17px;
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: .78rem; letter-spacing: 3px;
  text-transform: uppercase; cursor: pointer; display: flex; align-items: center; justify-content: center;
  gap: 9px; transition: background .25s, transform .2s; margin-top: 6px;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.form-note { text-align: center; margin-top: 12px; font-size: .72rem; color: var(--gray); display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-note i { color: var(--gold); }

/* ── SERVICES PAGE ────────────────────────────────────────────── */
.services-list { display: flex; flex-direction: column; gap: 0; }
.service-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 480px;
  background: var(--white);
}
.service-row:nth-child(even) { direction: rtl; }
.service-row:nth-child(even) > * { direction: ltr; }
.service-row-img { overflow: hidden; }
.service-row-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,1,.36,1); display: block; }
.service-row:hover .service-row-img img { transform: scale(1.04); }
.service-row-content {
  padding: 72px 64px; background: var(--white);
  display: flex; flex-direction: column; justify-content: center;
}
.service-row:nth-child(even) .service-row-content { background: var(--light); }
.service-row-content .section-tag { margin-bottom: 8px; }
.service-row-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 700; color: var(--navy); line-height: 1.2; }
.service-row-content .section-line { margin: 18px 0 20px; }
.service-row-content p, .service-row-content ul { color: var(--gray); font-size: .9rem; line-height: 1.85; margin-bottom: 14px; }
.service-row-content ul { padding-left: 20px; }
.service-row-content ul li { margin-bottom: 6px; }

/* ── GALLERY PAGE ─────────────────────────────────────────────── */
.gallery-filters {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 22px; border: 1px solid var(--border);
  background: var(--white); color: var(--navy); cursor: pointer;
  font-family: 'Raleway', sans-serif; font-size: .68rem; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700; transition: all .25s;
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.gallery-grid-full {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px;
}
.gallery-card { position: relative; overflow: hidden; background: var(--navy); cursor: pointer; }
.gallery-card-img { width: 100%; height: 280px; object-fit: cover; transition: transform .6s cubic-bezier(.22,1,.36,1), opacity .4s; display: block; }
.gallery-card:hover .gallery-card-img { transform: scale(1.06); opacity: .75; }
.gallery-card-info {
  position: absolute; inset: 0; padding: 24px; display: flex; flex-direction: column;
  justify-content: flex-end; background: linear-gradient(to top, rgba(13,27,42,.85) 0%, transparent 50%);
  opacity: 0; transition: opacity .35s;
}
.gallery-card:hover .gallery-card-info { opacity: 1; }
.gallery-card-cat { font-size: .58rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 6px; }
.gallery-card-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); font-weight: 700; line-height: 1.2; margin-bottom: 4px; }
.gallery-card-loc { font-size: .7rem; color: rgba(250,250,247,.6); }

/* ── ABOUT PAGE ───────────────────────────────────────────────── */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-story-img { position: relative; }
.about-story-img img { width: 100%; height: 520px; object-fit: cover; }
.about-story-img::before { content: ''; position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px; border: 2px solid var(--gold); z-index: -1; }
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-top: 16px; }
.value-card { padding: 32px 28px; background: var(--light); border-bottom: 3px solid transparent; transition: border-color .3s, background .3s; }
.value-card:hover { border-bottom-color: var(--gold); background: var(--gold-pale); }
.value-card i { color: var(--gold); font-size: 1.4rem; margin-bottom: 14px; }
.value-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p { color: var(--gray); font-size: .83rem; line-height: 1.7; }

/* ── CONTACT PAGE ─────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-info-card { padding: 44px 40px; background: var(--navy); }
.contact-info-card h2 { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--white); font-weight: 700; margin-bottom: 8px; }
.contact-info-card p { color: rgba(250,250,247,.55); font-size: .88rem; line-height: 1.75; margin-bottom: 36px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 26px; }
.contact-detail i { color: var(--gold); font-size: 1.1rem; margin-top: 2px; min-width: 18px; }
.contact-detail-text strong { display: block; font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 4px; }
.contact-detail-text a, .contact-detail-text span { color: var(--white); font-size: .9rem; text-decoration: none; display: block; }
.contact-detail-text a:hover { color: var(--gold-light); }
.contact-form-wrap { background: var(--white); padding: 44px 40px; border: 1px solid var(--border); }
.contact-form-wrap h2 { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--navy); font-weight: 700; margin-bottom: 32px; }
.contact-form-wrap .ff { margin-bottom: 16px; }
.contact-form-wrap .form-submit { margin-top: 8px; }

/* ── TESTIMONIALS PAGE ────────────────────────────────────────── */
.test-grid-full { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

/* ── PROCESS SECTION ─────────────────────────────────────────── */
#process { background: var(--navy); }
#process .section-tag { color: var(--gold-light); }
#process .section-title { color: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 56px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 1px; background: rgba(201,168,76,.2); }
.step { text-align: center; padding: 0 20px; position: relative; }
.step-num { width: 64px; height: 64px; border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 900; color: var(--gold); background: var(--navy); position: relative; z-index: 1; transition: background .3s; }
.step:hover .step-num { background: var(--gold); color: var(--navy); }
.step h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step p { color: rgba(250,250,247,.45); font-size: .8rem; line-height: 1.7; }

/* ── UTILITY ──────────────────────────────────────────────────── */
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.text-gold { color: var(--gold); }
.bg-light { background: var(--light); }
.bg-navy  { background: var(--navy); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — ≤ 768px
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  nav { padding: 14px 18px !important; }
  nav.scrolled { padding: 12px 18px !important; }
  .nav-links, .nav-cta { display: none !important; }
  .burger { display: flex; }

  #hero { min-height: 100svh; padding: 88px 18px 90px; }
  .hero h1 { font-size: clamp(2rem,9vw,2.8rem); }
  .hero-sub { font-size: .88rem; margin-bottom: 32px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 11px; }
  .btn-primary, .btn-outline { width: 100%; max-width: 300px; }
  .hero-accent { height: 60px; }
  .scroll-cue { display: none; }

  .stats-bar { gap: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; }
  .stat { padding: 20px 12px; border-right: 1px solid rgba(13,27,42,.13); border-bottom: 1px solid rgba(13,27,42,.13); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .stat-num { font-size: 1.7rem; }

  section { padding: 64px 18px; }
  .inner { max-width: 100%; }

  .about-grid, .about-story { grid-template-columns: 1fr; gap: 56px; }
  .about-img::before, .about-story-img::before { display: none; }
  .about-img img, .about-story-img img { height: 260px; }
  .img-badge { right: 0; bottom: 0; }

  .services-grid-home { grid-template-columns: 1fr; gap: 3px; }

  .gallery-grid-home { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3,160px); gap: 5px; }
  .gallery-item:first-child { grid-row: span 1; }
  .gallery-grid-full { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-card-img { height: 200px; }
  .gallery-card-info { opacity: 1; }

  .slider-wrap { height: 220px; }

  .test-grid, .test-grid-full { grid-template-columns: 1fr; }

  #cta { padding: 64px 18px; }
  .contact-row { flex-direction: column; align-items: center; gap: 10px; }
  .c-item { width: 100%; max-width: 360px; }
  .cta-btn { width: 100%; max-width: 360px; padding: 17px 18px; }

  .modal-hd { padding: 24px 20px 18px; }
  .modal-bd { padding: 24px 20px 28px; }
  .frow { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 36px 18px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 4px; padding: 14px 18px; }

  .page-hero { min-height: 32vh; padding: 0 18px 48px; }
  .page-hero-content h1 { font-size: clamp(1.7rem,7vw,2.4rem); }

  .service-row { grid-template-columns: 1fr; direction: ltr !important; }
  .service-row:nth-child(even) { direction: ltr; }
  .service-row-img { height: 240px; }
  .service-row-content { padding: 40px 28px; }

  .contact-layout { grid-template-columns: 1fr; gap: 24px; }
  .contact-info-card, .contact-form-wrap { padding: 28px 20px; }

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

  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }

  .gallery-filters { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: .62rem; }
}

@media (max-width: 480px) {
  .gallery-grid-full { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}
