/* ==========================================================================
   SM Gold Sargodha — stylesheet
   Palette: charcoal black, warm gold, ivory cream (luxury jewelry aesthetic)
   ========================================================================== */

:root {
  --black: #0d0d0d;
  --black-soft: #161512;
  --cream: #faf5e9;
  --cream-deep: #f3ead6;
  --gold: #c9a227;
  --gold-light: #e6c65c;
  --gold-deep: #9c7c1c;
  --ink: #1a1712;
  --ink-soft: #55503f;
  --white: #ffffff;
  --font-display: 'Playfair Display', serif;
  --font-script: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;
  --radius: 4px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open{
    overflow:hidden;
}

.has-dropdown.open>.dropdown{
    display:block;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 .5em; color: var(--ink); line-height: 1.2; }
p { margin: 0 0 1em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: .75em;
}
.eyebrow.center { text-align: center; }
.section-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: .4em;
}
.section-title span { color: var(--gold); font-style: italic; }
.section-title.center { text-align: center; }
.section-lead {
  max-width: 640px;
  color: var(--ink-soft);
}
.section-lead.center { margin: 0 auto 3rem; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .03em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: var(--black);
}
.btn-gold:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

/* ===========================
   Utility Bar
=========================== */

.utility-bar{
    background:var(--black);
    color:var(--cream-deep);
    overflow:hidden;
    white-space:nowrap;
    border-bottom:1px solid rgba(255,255,255,.08);
}

/* .utility-inner{
    width:100%;
    overflow:hidden;
    padding:0px 0;
} */

.utility-track{
    display:flex;
    width:max-content;
    animation:tickerMove 25s linear infinite;
}

.utility-ticker{
    display:flex;
    align-items:center;
    gap:45px;
    padding-right:0px;
    white-space:nowrap;
    font-size:.85rem;
    font-weight:500;
}

.utility-ticker span{
    display:inline-flex;
    align-items:center;
    white-space:nowrap;
}

.utility-ticker strong{
    color:var(--gold-light);
    font-weight:700;
    margin-left:6px;
}

.utility-bar:hover .utility-track{
    animation-play-state:running;
}

@keyframes tickerMove{

    0%{
        transform:translateX(-50%);
    }

    100%{
        transform:translateX(0%);
    }

}

/* ===== Header ===== */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 4px 18px rgba(0,0,0,.08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 20px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink);
  display: flex;
  align-items: center;
}
.logo span { color: var(--gold); }
.logo img { height: 46px; width: auto; display: block; }
.main-nav {
  display: flex;
  gap: 30px;
  font-size: .92rem;
  font-weight: 500;
}
.main-nav a { position: relative; padding: 4px 0; }
.main-nav a:hover { color: var(--gold-deep); }
.header-cta { white-space: nowrap; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); display: block; }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: radial-gradient(ellipse at top right, #201d15 0%, var(--black) 55%);
  color: var(--cream);
  padding: 110px 0 90px;
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(201,162,39,.05) 0 2px, transparent 2px 40px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-top {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero .eyebrow { color: var(--gold-light); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  max-width: 780px;
}
.hero-sub {
  max-width: 560px;
  color: #d8d2c2;
  font-size: 1.05rem;
}
.hero-actions { display: flex; gap: 16px; margin: 30px 0 60px; flex-wrap: wrap; }
.hero .btn-outline { border-color: var(--gold-light); color: var(--cream); }
.hero .btn-outline:hover { background: var(--gold-light); color: var(--black); }

.hero-visual{
    position:relative;
    aspect-ratio:1/1;
    width:100%;
    border-radius:32px;
    overflow:hidden;
    border:1px solid rgba(230,198,92,.35);
    box-shadow:
        0 10px 25px rgba(0,0,0,.18),
        0 30px 60px rgba(0,0,0,.35);
}

.hero-visual img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:62% 35%;
    border-radius:32px;
    transition:transform .4s ease;
}

.hero-visual:hover img{
    transform:scale(1.03);
}
.hero-visual .hero-visual-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(13,13,13,.72);
  border: 1px solid rgba(230,198,92,.5);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 36px;
}
.badge { display: flex; gap: 12px; align-items: flex-start; }
.badge-icon { color: var(--gold); font-size: 1.1rem; margin-top: 2px; }
.badge strong { display: block; font-family: var(--font-body); font-size: .95rem; color: var(--white); }
.badge small { color: #b7b0a0; font-size: .8rem; }

/* ===== Rates ===== */
.rates { background: var(--cream); }
.rate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.rate-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.rate-karat {
  display: inline-block;
  background: var(--black);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  font-size: .95rem;
}
.rate-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); margin: 10px 0 2px; }
.rate-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--ink); margin: 0; }
.rate-value.small { font-size: 1.15rem; color: var(--gold-deep); }
.rate-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 34px 0 10px;
  font-size: .88rem;
  color: var(--ink-soft);
}
.rate-disclaimer { text-align: center; font-size: .8rem; color: var(--ink-soft); opacity: .8; }

/* ===== Bridal ===== */
.bridal { background: var(--black); color: var(--cream); }
.bridal-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
}
.bridal .eyebrow { color: var(--gold-light); }
.bridal h2 { color: var(--white); }
.bridal-name { color: var(--gold-light); font-style: italic; font-size: 1.3rem; }
.bridal p { color: #cfc9b8; }
.bridal-specs { display: flex; gap: 30px; margin: 24px 0; }
.bridal-specs strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold-light); display: block; }
.bridal-specs small { color: #b7b0a0; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.bridal-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: repeating-linear-gradient(135deg, #1c1a13, #1c1a13 10px, #211e15 10px, #211e15 20px);
  border: 1px solid rgba(230,198,92,.35);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
}
.bridal-visual::before {
  content: '\25C6';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(230,198,92,.25);
}
.bridal-tag {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: .78rem;
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 1;
}

/* ===== Services ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(0,0,0,.08); }
.service-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  opacity: .5;
  display: block;
  margin-bottom: 6px;
}
.service-card h3 { font-size: 1.15rem; }
.service-card p { font-size: .92rem; color: var(--ink-soft); }
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.chip-list li {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: var(--cream-deep);
  color: var(--gold-deep);
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.service-card > a { font-weight: 600; font-size: .9rem; color: var(--gold-deep); }
.service-card > a:hover { color: var(--ink); }

/* ===== Purity ===== */
.purity { background: var(--cream-deep); }
.purity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.purity-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
.purity-percent { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold-deep); font-weight: 700; margin-bottom: 4px; }
.purity-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.purity-card p { font-size: .85rem; color: var(--ink-soft); margin: 0; }
.purity-banner {
  text-align: center;
  margin-top: 40px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 1.1rem;
}

/* ===== Story ===== */
.story-inner {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 60px;
  margin-bottom: 60px;
}
.check-list { margin-top: 20px; }
.check-list li { padding: 6px 0; font-size: .92rem; }
.check-list li::before { content: '\2726'; color: var(--gold); margin-right: 10px; }
.timeline { display: flex; flex-direction: column; gap: 18px; border-left: 2px solid var(--gold); padding-left: 24px; margin-top: 16px; }
.timeline-item span { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; display: block; }
.timeline-item small { color: var(--ink-soft); text-transform: uppercase; letter-spacing: .06em; font-size: .75rem; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 40px;
}
.stat { text-align: center; }
.stat strong { font-family: var(--font-display); font-size: 2rem; color: var(--gold-deep); display: block; }
.stat small { text-transform: uppercase; letter-spacing: .06em; font-size: .76rem; color: var(--ink-soft); }

/* ===== Promise ===== */
.promise { background: var(--black); color: var(--cream); text-align: center; }
.promise-inner { max-width: 720px; margin: 0 auto; }
.promise h2 { color: var(--white); }
.promise p { color: #cfc9b8; }
.promise-chips { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 20px; }
.promise-chips span {
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: .82rem;
  letter-spacing: .04em;
}

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-list details {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 12px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.faq-list p { margin: 12px 0 0; color: var(--ink-soft); font-size: .92rem; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}
.contact-form {
  background: var(--white);
  padding: 34px;
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
}
.contact-form h3 { margin-bottom: 20px; }
.contact-form label { display: block; font-size: .82rem; font-weight: 600; margin: 14px 0 6px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .92rem;
  background: var(--cream);
}
.contact-form button { margin-top: 20px; width: 100%; justify-content: center; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.info-block {
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.info-block h3 { font-size: 1rem; margin-bottom: 6px; }
.info-block p { margin: 0; }
.info-block small { color: var(--ink-soft); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(0,0,0,.08); }

/* ===== Footer ===== */
.site-footer { background: var(--black); color: #cfc9b8; padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo { font-size: 1.4rem; color: var(--white); margin-bottom: 12px; display: inline-flex; }
.footer-logo img { height: 52px; width: auto; display: block; }
.footer-grid h4 { color: var(--white); font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-grid ul li { margin-bottom: 10px; font-size: .9rem; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-contact li { color: #b7b0a0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 24px;
  font-size: .82rem;
  color: #948f80;
}
.footer-copy { display: flex; flex-direction: column; gap: 4px; }
.footer-credit { color: #948f80; }
.footer-credit a { color: var(--gold-light); text-decoration: none; }
.footer-credit a:hover { text-decoration: underline; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: var(--gold-light); }

/* ===== WhatsApp float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  z-index: 90;
}



/* ===== Responsive ===== */
@media (max-width: 960px) {
.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}
  /* Header */
  .header-inner{
    padding:16px 24px;
  }

  /* Hero */
  .hero-top{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
  }

  .hero-content{
    order:2;
  }

  .hero-visual{
    order:1;
    max-width:360px;
    margin:0 auto;
  }

  /* Grids */

  .trust-badges,
  .rate-grid,
  .service-grid,
  .purity-grid,
  .stats-grid{
    grid-template-columns:repeat(2,1fr);
    gap:22px;
  }

  .process-grid,
  .gallery-grid,
  .related-services{
    grid-template-columns:repeat(2,1fr);
    gap:22px;
  }

  /* Single-column sections */

  .bridal-inner,
  .story-inner,
  .contact-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  /* Footer */

  .footer-grid{
    grid-template-columns:repeat(2,1fr);
    gap:30px;
  }

  /* Images */

  img{
    max-width:100%;
    height:auto;
  }

  /* Buttons */

  .btn,
  .btn-primary,
  .btn-secondary{
    width:auto;
  }

  /* Sections */

  .section{
    padding:70px 0;
  }

  /* Floating Buttons */

  .whatsapp-float{
    bottom:28px;
    right:20px;
  }

  .back-to-top{
    bottom:95px;
    right:20px;
  }

}
@media (max-width:720px){

/* Header */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:40px;
}

.gallery-tile{
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    transition:.35s;
    cursor:pointer;
}

.gallery-tile img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
    transition:transform .4s;
}

.gallery-tile:hover img{
    transform:scale(1.08);
}

.gallery-tile:hover{
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}
.site-header{
    position:sticky;
    top:0;
    z-index:9999;
}

.header-inner{
    padding:14px 18px;
}

.logo img{
    height:40px;
}

/* Hamburger */

.nav-toggle{
    display:flex;
    justify-content:center;
    align-items:center;
    width:42px;
    height:42px;
    padding:0;
    z-index:10001;
}

.nav-toggle span{
    width:24px;
    height:2px;
    transition:.3s;
}

/* Navigation */

.main-nav{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    max-width:85%;
    min-height:100vh;
    background:var(--cream);
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:85px 24px 30px;
    overflow-y:auto;
    transition:right .35s ease;
    box-shadow:-12px 0 40px rgba(0,0,0,.15);
    z-index:10000;
}

.main-nav.open{
    right:0;
}

.main-nav>a{
    width:100%;
    padding:14px 0;
    border-bottom:1px solid rgba(0,0,0,.08);
}

/* Dropdown */

.has-dropdown{
    width:100%;
}

.has-dropdown>a::after{
    float:right;
}

.dropdown{
    position:static;
    display:none;
    background:transparent;
    min-width:100%;
    padding-left:15px;
    box-shadow:none;
    border:none;
    opacity:1;
    visibility:visible;
    transform:none;
}

.has-dropdown.open .dropdown{
    display:block;
}

.dropdown a{
    display:block;
    padding:10px 0;
}

/* Hide desktop button */

.header-cta{
    display:none;
}

/* Layout */

.utility-inner,
.hero-top,
.bridal-inner,
.story-inner,
.contact-grid{
    display:grid;
    grid-template-columns:1fr;
}

.trust-badges,
.rate-grid,
.service-grid,
.purity-grid,
.stats-grid,
.footer-grid,
.process-grid,
.gallery-grid,
.related-services{
    grid-template-columns:1fr;
}

.section{
    padding:55px 0;
}

.hero-visual{
    max-width:260px;
    margin:auto;
}

/* Floating Buttons */

.mobile-cta-bar{
    display:flex;
}

body{
    padding-bottom:58px;
}

.whatsapp-float{
    bottom:74px;
}

.back-to-top{
    bottom:130px;
}

body.menu-open{
    overflow:hidden;
    touch-action:none;
}

}
@media (max-width:480px){

  /* Header */

  .header-inner{
    padding:12px 15px;
  }

  .logo img{
    height:34px;
  }

  .nav-toggle{
    width:38px;
    height:38px;
  }

  /* Mobile Menu */

  .main-nav{
    width:100%;
    max-width:100%;
    padding:80px 20px 30px;
  }

  .main-nav>a{
    font-size:16px;
    padding:14px 0;
  }

  .dropdown{
    padding-left:12px;
  }

  /* Hero */

  .hero-top{
    gap:24px;
    text-align:center;
  }

  .hero-content h1{
    font-size:2rem;
    line-height:1.2;
  }

  .hero-content p{
    font-size:15px;
    line-height:1.6;
  }

  .hero-visual{
    max-width:220px;
    margin:0 auto;
  }

  /* Buttons */

  .hero-actions{
    display:flex;
    flex-direction:column;
    gap:12px;
  }

  .btn,
  .btn-primary,
  .btn-secondary{
    width:100%;
    justify-content:center;
  }

  /* Layout */

  .trust-badges,
  .rate-grid,
  .service-grid,
  .purity-grid,
  .stats-grid,
  .footer-grid,
  .process-grid,
  .gallery-grid,
  .related-services,
  .contact-grid,
  .bridal-inner,
  .story-inner{
    grid-template-columns:1fr;
    gap:20px;
  }

  /* Cards */

  .card,
  .service-card,
  .gallery-card,
  .rate-card{
    padding:20px;
  }

  /* Images */

  img{
    max-width:100%;
    height:auto;
  }

  /* Section */

  .section{
    padding:45px 0;
  }

  /* Typography */

  h1{
    font-size:2rem;
  }

  h2{
    font-size:1.6rem;
  }

  h3{
    font-size:1.2rem;
  }

  p{
    font-size:15px;
  }

  /* Footer */

  .footer-grid{
    text-align:center;
  }

  /* Floating Buttons */

  .mobile-cta-bar{
    display:flex;
  }

  body{
    padding-bottom:60px;
  }

  .whatsapp-float{
    bottom:72px;
    right:15px;
  }

  .back-to-top{
    bottom:128px;
    right:15px;
  }

}

/* ==========================================================================
   MULTI-PAGE ADDITIONS — utility bar w/ hours, dropdown nav, breadcrumbs,
   inner-page hero, service detail, gallery, FAQ page, legal, 404,
   mobile sticky CTA bar, scroll-reveal animation, back-to-top
   ========================================================================== */

/* Utility bar: add hours item + wrap gracefully */
.utility-hours { opacity: .85; }

/* Skip link (accessibility) */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--black);
  padding: 10px 18px;
  z-index: 999;
  font-weight: 600;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

/* Dropdown nav (Services) */
.main-nav { align-items: center; }
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' \25BE'; font-size: .7em; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 260px;
  box-shadow: 0 18px 36px rgba(0,0,0,.12);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .2s ease;
  z-index: 200;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 22px; font-size: .88rem; }
.dropdown a:hover { background: var(--cream-deep); color: var(--gold-deep); }
.main-nav a.active { color: var(--gold-deep); font-weight: 700; }

/* Breadcrumb */
.breadcrumb { font-size: .8rem; color: #b7b0a0; margin-bottom: 14px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 6px; color: #6b6455; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li:last-child { color: #d8d2c2; }

/* Inner page hero (shorter than homepage hero) */
.page-hero {
  position: relative;
  background: radial-gradient(ellipse at top right, #201d15 0%, var(--black) 55%);
  color: var(--cream);
  padding: 46px 0 56px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(201,162,39,.05) 0 2px, transparent 2px 40px);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: .25em; }
.page-hero p { color: #cfc9b8; max-width: 620px; margin: 0; }

/* Process steps (services hub) */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step {
  text-align: center;
  padding: 20px 14px;
  position: relative;
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-deep);
}
.process-step h4 { font-size: 1rem; margin-bottom: 6px; }
.process-step p { font-size: .86rem; color: var(--ink-soft); margin: 0; }

/* Service detail page */
.service-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  align-items: start;
}
.service-benefits { margin: 20px 0; }
.service-benefits li { padding: 8px 0; font-size: .95rem; border-bottom: 1px dashed rgba(0,0,0,.08); }
.service-benefits li::before { content: '\2726'; color: var(--gold); margin-right: 10px; }
.service-aside {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: sticky;
  top: 100px;
}
.service-aside h3 { font-size: 1.1rem; }
.service-aside .btn { width: 100%; justify-content: center; margin-top: 10px; }
.related-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.related-services a {
  display: block;
  background: var(--white);
  padding: 18px 20px;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  font-weight: 600;
  font-size: .92rem;
}
.related-services a:hover { background: var(--cream-deep); }

/* Gallery */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 34px; }
.gallery-filters button {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.12);
  padding: 9px 18px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all .2s ease;
}
.gallery-filters button.active,
.gallery-filters button:hover { background: var(--black); color: var(--gold-light); border-color: var(--black); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-tile {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: repeating-linear-gradient(135deg, #f3ead6, #f3ead6 10px, #ece0c6 10px, #ece0c6 20px);
  border: 1px solid rgba(201,162,39,.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 16px;
  transition: transform .25s ease;
}
.gallery-tile:hover { transform: translateY(-6px); }
.gallery-tile .motif { font-size: 2.2rem; color: var(--gold-deep); }
.gallery-tile strong { font-family: var(--font-display); font-size: 1rem; }
.gallery-tile small { color: var(--ink-soft); font-size: .76rem; }
.gallery-note {
  text-align: center;
  margin-top: 30px;
  font-size: .88rem;
  color: var(--ink-soft);
  font-style: italic;
}


/* FAQ page categories */
.faq-category { margin-bottom: 44px; }
.faq-category h3 { color: var(--gold-deep); font-size: 1.2rem; margin-bottom: 16px; }

/* Legal pages */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { margin-top: 1.6em; font-size: 1.3rem; }
.legal-content p, .legal-content li { color: var(--ink-soft); font-size: .95rem; }
.legal-content ul { margin: 0 0 1em 1.2em; list-style: disc; }
.legal-updated { font-size: .82rem; color: var(--ink-soft); opacity: .8; margin-bottom: 2em; }

/* 404 page */
.error-page { text-align: center; padding: 130px 0; background: var(--cream); }
.error-page .error-code { font-family: var(--font-display); font-size: clamp(4rem, 12vw, 8rem); color: var(--gold); line-height: 1; margin-bottom: 10px; }
.error-page .btn { margin-top: 20px; }

/* Mobile sticky CTA bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: var(--black);
  border-top: 1px solid rgba(230,198,92,.3);
}
.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.mobile-cta-bar a.whatsapp { background: #1e7d4f; color: #fff; }
.mobile-cta-bar a.call { background: var(--gold); color: var(--black); }

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:40px;
}

.gallery-tile{
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    transition:.35s;
    cursor:pointer;
}

.gallery-tile img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
    transition:transform .4s;
}

.gallery-tile:hover img{
    transform:scale(1.08);
}

.gallery-tile:hover{
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

/* .gallery-tile{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.12);
    transition:.35s ease;
}

.gallery-image{
    width:100%;
    height:340px;
    display:block;
    object-fit:cover;
    transition:transform .4s ease;
}

.gallery-content{
    padding:18px;
    text-align:center;
}

.gallery-content .motif{
    display:block;
    color:#C8A24A;
    font-size:20px;
    margin-bottom:8px;
}

.gallery-content strong{
    display:block;
    font-size:18px;
    margin-bottom:6px;
}

.gallery-content small{
    color:#666;
}

.gallery-tile:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.18);
}

.gallery-tile:hover .gallery-image{
    transform:scale(1.06);
} */

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.12);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 89;
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Focus visibility (accessibility detail) */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 2px;
}

