/* =========================================================
   D&D Building & Renovation Ltd — Premium Site Stylesheet
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root{
  --white:#ffffff;
  --off-white:#f8f6f2;
  --cream:#f2ede3;
  --black:#0a0a0b;
  --dark:#111113;
  --charcoal:#1b1b1e;
  --grey-900:#1c1c1f;
  --grey-800:#2a2a2e;
  --grey-700:#3f3f46;
  --grey-500:#6f6f76;
  --grey-300:#d6d3cd;
  --grey-100:#f0efec;

  --gold:#bd9a5f;
  --gold-light:#e6d3a8;
  --gold-dark:#8f7238;
  --gold-soft:rgba(189,154,95,0.12);

  --font-head:'Poppins', sans-serif;
  --font-body:'Inter', sans-serif;

  --bg:var(--white);
  --bg-alt:var(--off-white);
  --bg-dark:var(--black);
  --text:var(--grey-900);
  --text-soft:var(--grey-500);
  --text-inverse:var(--white);
  --border-soft: rgba(0,0,0,0.08);
  --card-bg:var(--white);
  --header-bg: rgba(255,255,255,0.7);
  --header-border: rgba(0,0,0,0.06);

  --shadow-sm: 0 2px 10px rgba(20,20,20,0.06);
  --shadow-md: 0 12px 30px rgba(20,20,20,0.10);
  --shadow-lg: 0 24px 60px rgba(20,20,20,0.16);
  --shadow-gold: 0 10px 30px rgba(189,154,95,0.35);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --transition: 0.4s cubic-bezier(.22,.9,.32,1);
}

[data-theme="dark"]{
  --bg:var(--dark);
  --bg-alt:#17171a;
  --text:#f2f0ec;
  --text-soft:#a7a6a2;
  --text-inverse:var(--white);
  --border-soft: rgba(255,255,255,0.08);
  --card-bg:#1e1e21;
  --header-bg: rgba(17,17,19,0.65);
  --header-border: rgba(255,255,255,0.08);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.3);
  --shadow-md: 0 12px 30px rgba(0,0,0,0.4);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.55);
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family:var(--font-body);
  color:var(--text);
  background:var(--bg);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  transition: background var(--transition), color var(--transition);
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font:inherit; cursor:pointer; border:none; background:none; color:inherit; }
input,select,textarea{ font:inherit; color:inherit; }
h1,h2,h3,h4{ font-family:var(--font-head); line-height:1.2; font-weight:600; letter-spacing:-0.01em; }
.container{ width:100%; max-width:1240px; margin-inline:auto; padding-inline:24px; }

:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

/* ---------- Utility ---------- */
.eyebrow{
  display:inline-block; font-family:var(--font-body); font-weight:600; letter-spacing:0.18em; text-transform:uppercase;
  font-size:0.72rem; color:var(--gold-dark); margin-bottom:14px;
}
[data-theme="dark"] .eyebrow{ color:var(--gold-light); }
.eyebrow.center{ display:block; text-align:center; }
.section-title{ font-size:clamp(1.7rem, 3.2vw, 2.6rem); margin-bottom:16px; }
.section-title.center{ text-align:center; }
.section-title.light{ color:var(--white); }
.section-sub{ color:var(--text-soft); max-width:640px; font-size:1.02rem; }
.section-sub.center{ margin-inline:auto; text-align:center; }

section{ padding:100px 0; position:relative; }
@media (max-width:768px){ section{ padding:70px 0; } }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 32px; border-radius:100px; font-weight:600; font-size:0.92rem;
  letter-spacing:0.02em; transition:var(--transition); white-space:nowrap; cursor:pointer;
  border:1px solid transparent;
}
.btn-gold{ background:linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark)); color:#20170a; box-shadow:var(--shadow-gold); }
.btn-gold:hover{ transform:translateY(-3px); box-shadow:0 16px 40px rgba(189,154,95,0.45); }
.btn-outline{ border-color:currentColor; color:var(--text); }
.btn-outline:hover{ background:var(--text); color:var(--bg); }
.btn-ghost{ color:var(--text-soft); }
.btn-lg{ padding:18px 40px; font-size:1rem; }
.btn-sm{ padding:9px 20px; font-size:0.8rem; }
.btn-block{ width:100%; }

/* ---------- Preloader ---------- */
.preloader{
  position:fixed; inset:0; z-index:9999; background:var(--black);
  display:flex; align-items:center; justify-content:center;
  transition:opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.loaded{ opacity:0; visibility:hidden; pointer-events:none; }
.preloader-mark{ position:relative; width:84px; height:84px; display:flex; align-items:center; justify-content:center; }
.preloader-ring{ position:absolute; inset:0; border:2px solid rgba(189,154,95,0.25); border-top-color:var(--gold); border-radius:50%; animation:spin 1s linear infinite; }
.preloader-letter{ font-family:var(--font-head); color:var(--gold-light); font-size:1.6rem; font-weight:700; }
@keyframes spin{ to{ transform:rotate(360deg); } }

/* ---------- Cookie banner ---------- */
.cookie-banner{
  position:fixed; bottom:24px; left:24px; right:24px; max-width:520px; z-index:1200;
  background:var(--card-bg); border:1px solid var(--border-soft); border-radius:var(--radius-md);
  padding:22px 24px; box-shadow:var(--shadow-lg); transform:translateY(140%); transition:transform 0.5s ease;
}
.cookie-banner.show{ transform:translateY(0); }
.cookie-banner p{ font-size:0.86rem; color:var(--text-soft); margin-bottom:14px; }
.cookie-actions{ display:flex; gap:10px; justify-content:flex-end; }

/* ---------- Header ---------- */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:900;
  background:var(--header-bg); backdrop-filter:blur(16px) saturate(160%); -webkit-backdrop-filter:blur(16px) saturate(160%);
  border-bottom:1px solid var(--header-border); transition:var(--transition);
}
.site-header.scrolled{ box-shadow:var(--shadow-sm); }
.nav-inner{ display:flex; align-items:center; justify-content:space-between; height:82px; gap:20px; transition:height var(--transition); }
.site-header.scrolled .nav-inner{ height:68px; }

.logo{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.logo-img{ height:58px; width:auto; display:block; transition:height var(--transition); filter:drop-shadow(0 2px 6px rgba(0,0,0,0.18)); }
.site-header.scrolled .logo-img{ height:46px; }

.main-nav ul{ display:flex; gap:32px; }
.main-nav a{ font-size:0.88rem; font-weight:500; color:var(--text); position:relative; padding:6px 0; }
.main-nav a::after{ content:''; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--gold); transition:width 0.3s ease; }
.main-nav a:hover::after{ width:100%; }

.nav-actions{ display:flex; align-items:center; gap:16px; }
.lang-switch{ display:flex; align-items:center; gap:6px; font-size:0.78rem; font-weight:600; }
.lang-btn{ opacity:0.5; padding:4px 6px; border-radius:6px; }
.lang-btn.active{ opacity:1; color:var(--gold-dark); }
.lang-sep{ opacity:0.3; }

.theme-toggle{ width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; border:1px solid var(--border-soft); transition:var(--transition); }
.theme-toggle:hover{ background:var(--gold-soft); color:var(--gold-dark); }

.burger{ display:none; flex-direction:column; gap:5px; width:26px; }
.burger span{ display:block; height:2px; background:var(--text); border-radius:2px; transition:var(--transition); }
.burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.nav-cta{ display:inline-flex; }

/* Mobile nav */
.mobile-nav{
  position:fixed; top:0; right:-100%; width:min(340px,86vw); height:100vh; z-index:1100;
  background:var(--card-bg); box-shadow:var(--shadow-lg); padding:100px 32px 40px; transition:right 0.45s cubic-bezier(.22,.9,.32,1);
  display:flex; flex-direction:column; gap:28px;
}
.mobile-nav.open{ right:0; }
.mobile-nav ul{ display:flex; flex-direction:column; gap:20px; }
.mobile-nav a{ font-size:1.05rem; font-weight:500; }
.mobile-socials{ display:flex; gap:16px; margin-top:auto; font-size:1.3rem; }
.mobile-overlay{ position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:1050; opacity:0; visibility:hidden; transition:var(--transition); }
.mobile-overlay.show{ opacity:1; visibility:visible; }

@media (max-width:960px){
  .main-nav, .nav-cta, .lang-switch{ display:none; }
  .burger{ display:flex; }
}

/* ---------- Hero ---------- */
.hero{ position:relative; min-height:100vh; display:flex; align-items:center; overflow:hidden; }
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-media img{ width:100%; height:100%; object-fit:cover; object-position:center 30%; transform:scale(1.06); animation:heroZoom 16s ease-in-out infinite alternate; }
@keyframes heroZoom{ from{ transform:scale(1.06); } to{ transform:scale(1); } }
.hero-overlay{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(8,8,10,0.55) 0%, rgba(8,8,10,0.55) 40%, rgba(8,8,10,0.85) 100%); }
.hero-content{ position:relative; z-index:1; color:var(--white); padding-top:80px; }
.hero .eyebrow{ color:var(--gold-light); }
.hero h1{ font-size:clamp(2.4rem, 6vw, 4.6rem); color:var(--white); margin-bottom:22px; }
.hero-subtitle{ max-width:600px; font-size:1.12rem; color:rgba(255,255,255,0.85); margin-bottom:38px; }
.hero-actions{ display:flex; gap:18px; flex-wrap:wrap; margin-bottom:56px; }
.hero .btn-outline{ border-color:rgba(255,255,255,0.5); color:var(--white); }
.hero .btn-outline:hover{ background:var(--white); color:var(--black); }
.hero-trust{ display:flex; gap:48px; flex-wrap:wrap; }
.hero-trust div{ display:flex; flex-direction:column; gap:2px; }
.hero-trust strong{ font-family:var(--font-head); font-size:1.7rem; color:var(--gold-light); }
.hero-trust span{ font-size:0.8rem; color:rgba(255,255,255,0.7); }

.scroll-indicator{ position:absolute; bottom:30px; left:50%; transform:translateX(-50%); z-index:1; color:var(--white); }
.scroll-mouse{ width:26px; height:42px; border:2px solid rgba(255,255,255,0.6); border-radius:16px; display:block; position:relative; }
.scroll-mouse span{ position:absolute; top:6px; left:50%; width:4px; height:8px; background:var(--gold-light); border-radius:2px; transform:translateX(-50%); animation:scrollDot 1.8s ease infinite; }
@keyframes scrollDot{ 0%{ opacity:1; top:6px;} 70%{ opacity:0; top:22px;} 100%{ opacity:0; top:6px;} }

/* ---------- Reveal animation ---------- */
.reveal-up{ opacity:0; transform:translateY(34px); transition:opacity 0.8s ease, transform 0.8s cubic-bezier(.22,.9,.32,1); }
.reveal-up.in-view{ opacity:1; transform:translateY(0); }
.hero .reveal-up{ transition-delay:0.15s; }
.hero h1.reveal-up{ transition-delay:0.05s; }
.hero-subtitle.reveal-up{ transition-delay:0.25s; }
.hero-actions.reveal-up{ transition-delay:0.35s; }
.hero-trust.reveal-up{ transition-delay:0.45s; }

/* ---------- About ---------- */
.about{ background:var(--bg); }
.about-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:70px; align-items:center; }
.about-media{ position:relative; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); }
.about-media img{ width:100%; height:100%; object-fit:cover; aspect-ratio:3/4; }
.about-media-badge{
  position:absolute; bottom:22px; left:22px; background:var(--card-bg); border-radius:var(--radius-md);
  padding:16px 22px; box-shadow:var(--shadow-md); display:flex; flex-direction:column; line-height:1.1;
}
.about-media-badge strong{ font-family:var(--font-head); font-size:1.7rem; color:var(--gold-dark); }
.about-media-badge span{ font-size:0.74rem; color:var(--text-soft); text-transform:uppercase; letter-spacing:0.06em; }
.about-text{ color:var(--text-soft); margin:20px 0 32px; }
.about-values{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.value-card{ padding:26px 22px; border-radius:var(--radius-md); background:var(--bg-alt); border:1px solid var(--border-soft); transition:var(--transition); }
.value-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.value-card i{ color:var(--gold-dark); font-size:1.4rem; margin-bottom:12px; display:block; }
.value-card h3{ font-size:1.02rem; margin-bottom:8px; }
.value-card p{ font-size:0.88rem; color:var(--text-soft); }

@media (max-width:960px){
  .about-grid{ grid-template-columns:1fr; gap:40px; }
  .about-values{ grid-template-columns:1fr; }
}

/* ---------- Services ---------- */
.services{ background:var(--bg-alt); }
.services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:50px; }
.service-card{
  background:var(--card-bg); border-radius:var(--radius-md); overflow:hidden; border:1px solid var(--border-soft);
  transition:var(--transition); display:flex; flex-direction:column;
}
.service-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.service-img{ height:190px; overflow:hidden; }
.service-img img{ width:100%; height:100%; object-fit:cover; transition:transform 0.6s ease; }
.service-card:hover .service-img img{ transform:scale(1.08); }
.service-body{ padding:26px 26px 30px; }
.service-icon{ width:46px; height:46px; border-radius:50%; background:var(--gold-soft); color:var(--gold-dark); display:flex; align-items:center; justify-content:center; font-size:1.1rem; margin-bottom:16px; }
.service-body h3{ font-size:1.12rem; margin-bottom:10px; }
.service-body p{ color:var(--text-soft); font-size:0.9rem; margin-bottom:18px; }
.service-link{ font-weight:600; font-size:0.85rem; color:var(--gold-dark); display:inline-flex; align-items:center; gap:8px; transition:gap 0.3s ease; }
.service-link:hover{ gap:12px; }

@media (max-width:960px){ .services-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){ .services-grid{ grid-template-columns:1fr; } }

/* ---------- Why Us ---------- */
.why-us{ background:linear-gradient(160deg, var(--black), var(--charcoal)); color:var(--white); }
.why-us .eyebrow{ color:var(--gold-light); }
.stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin:50px 0 60px; }
.stat-card{ text-align:center; padding:34px 16px; border-radius:var(--radius-md); border:1px solid rgba(255,255,255,0.1); background:rgba(255,255,255,0.03); }
.stat-number{ display:block; font-family:var(--font-head); font-size:clamp(2.2rem,4vw,3rem); color:var(--gold-light); font-weight:700; }
.stat-label{ font-size:0.82rem; color:rgba(255,255,255,0.72); text-transform:uppercase; letter-spacing:0.05em; }
.features-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.feature-item{ display:flex; align-items:center; gap:14px; padding:18px 22px; border-radius:var(--radius-sm); background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.08); }
.feature-item i{ color:var(--gold-light); font-size:1.2rem; }
.feature-item span{ font-size:0.92rem; font-weight:500; }

@media (max-width:768px){ .stats-grid{ grid-template-columns:repeat(2,1fr); } .features-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:480px){ .features-grid{ grid-template-columns:1fr; } }

/* ---------- Portfolio ---------- */
.portfolio-filters{ display:flex; flex-wrap:wrap; justify-content:center; gap:12px; margin:44px 0 46px; }
.filter-btn{ padding:10px 22px; border-radius:100px; border:1px solid var(--border-soft); font-size:0.85rem; font-weight:500; transition:var(--transition); }
.filter-btn.active, .filter-btn:hover{ background:var(--gold); border-color:var(--gold); color:#20170a; }
.portfolio-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.portfolio-item{ position:relative; border-radius:var(--radius-md); overflow:hidden; aspect-ratio:3/4; box-shadow:var(--shadow-sm); transition:opacity 0.4s ease, transform 0.4s ease; }
.portfolio-item.filtered-out{ display:none; }
.portfolio-item img{ width:100%; height:100%; object-fit:cover; transition:transform 0.6s ease; }
.portfolio-item:hover img{ transform:scale(1.1); }
.portfolio-overlay{
  position:absolute; inset:0; display:flex; flex-direction:column; justify-content:flex-end; padding:22px;
  background:linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  opacity:0; transition:opacity 0.4s ease; color:var(--white);
}
.portfolio-overlay.static{ opacity:1; }
.portfolio-item:hover .portfolio-overlay{ opacity:1; }
.portfolio-tag{ align-self:flex-start; background:var(--gold); color:#20170a; font-size:0.68rem; font-weight:700; text-transform:uppercase; letter-spacing:0.05em; padding:5px 12px; border-radius:100px; margin-bottom:10px; }
.portfolio-overlay h3{ font-size:1.02rem; margin-bottom:4px; }
.portfolio-overlay p{ font-size:0.8rem; color:rgba(255,255,255,0.75); }
.portfolio-zoom{ position:absolute; top:18px; right:18px; width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,0.15); backdrop-filter:blur(6px); display:flex; align-items:center; justify-content:center; color:var(--white); transition:var(--transition); }
.portfolio-zoom:hover{ background:var(--gold); color:#20170a; }

.portfolio-placeholder{ background:var(--bg-alt); border:1.5px dashed var(--border-soft); display:flex; align-items:center; justify-content:center; }
.placeholder-fill{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:2.6rem; color:var(--grey-300); }
[data-theme="dark"] .placeholder-fill{ color:var(--grey-700); }
.portfolio-placeholder .portfolio-overlay{ background:linear-gradient(0deg, rgba(0,0,0,0.7), transparent); color:var(--white); }

@media (max-width:960px){ .portfolio-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .portfolio-grid{ grid-template-columns:1fr; } }

/* ---------- Before / After ---------- */
.before-after{ background:var(--bg-alt); }
.ba-slider{ position:relative; max-width:900px; margin:50px auto 0; aspect-ratio:16/10; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); user-select:none; }
.ba-after, .ba-before{ position:absolute; inset:0; }
.ba-after img, .ba-before img{ width:100%; height:100%; object-fit:cover; }
.ba-before{ width:50%; overflow:hidden; border-right:2px solid var(--white); }
.ba-before img{ position:absolute; top:0; left:0; height:100%; object-fit:cover; max-width:none; }
.ba-label{ position:absolute; top:18px; padding:6px 16px; border-radius:100px; font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.05em; background:rgba(0,0,0,0.6); color:var(--white); }
.ba-label-after{ right:18px; }
.ba-label-before{ left:18px; }
.ba-handle{ position:absolute; top:0; bottom:0; left:50%; width:46px; margin-left:-23px; display:flex; align-items:center; justify-content:center; cursor:ew-resize; }
.ba-handle::before{ content:''; position:absolute; top:0; bottom:0; left:50%; width:2px; background:var(--white); transform:translateX(-50%); }
.ba-handle i{ position:relative; width:46px; height:46px; background:var(--gold); color:#20170a; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-md); }

/* ---------- Testimonials ---------- */
.testimonials{ background:var(--bg); }
.testimonial-track-wrap{ position:relative; margin-top:44px; }
.testimonial-track{ display:flex; gap:24px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:10px; scrollbar-width:none; }
.testimonial-track::-webkit-scrollbar{ display:none; }
.testimonial-card{
  scroll-snap-align:start; flex:0 0 min(360px,86vw); background:var(--card-bg); border:1px solid var(--border-soft);
  border-radius:var(--radius-md); padding:32px 28px; box-shadow:var(--shadow-sm);
}
.stars{ color:var(--gold); font-size:0.85rem; margin-bottom:16px; letter-spacing:2px; }
.testimonial-card p{ font-size:0.95rem; color:var(--text); margin-bottom:22px; font-style:italic; }
.testimonial-author strong{ display:block; font-size:0.92rem; }
.testimonial-author span{ font-size:0.78rem; color:var(--text-soft); }
.testimonial-nav{ display:flex; gap:12px; justify-content:center; margin-top:28px; }
.testimonial-nav button{ width:42px; height:42px; border-radius:50%; border:1px solid var(--border-soft); display:flex; align-items:center; justify-content:center; transition:var(--transition); }
.testimonial-nav button:hover{ background:var(--gold); color:#20170a; border-color:var(--gold); }

/* ---------- FAQ ---------- */
.faq{ background:var(--bg-alt); }
.faq-grid{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:70px; }
.faq-intro .btn{ margin-top:14px; }
.faq-item{ border-bottom:1px solid var(--border-soft); }
.faq-question{ width:100%; display:flex; justify-content:space-between; align-items:center; padding:22px 4px; text-align:left; font-weight:500; font-size:1rem; }
.faq-question i{ color:var(--gold-dark); transition:transform 0.3s ease; }
.faq-item.active .faq-question i{ transform:rotate(45deg); }
.faq-answer{ max-height:0; overflow:hidden; transition:max-height 0.4s ease; }
.faq-item.active .faq-answer{ max-height:220px; }
.faq-answer p{ padding:0 4px 22px; color:var(--text-soft); font-size:0.92rem; }

@media (max-width:900px){ .faq-grid{ grid-template-columns:1fr; gap:36px; } }

/* ---------- Quote Form ---------- */
.quote-section{ background:linear-gradient(160deg, var(--charcoal), var(--black)); color:var(--white); }
.quote-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:70px; }
.quote-section .eyebrow{ color:var(--gold-light); }
.quote-section .section-title{ color:var(--white); }
.quote-section .section-sub{ color:rgba(255,255,255,0.7); }
.quote-points{ margin:26px 0; display:flex; flex-direction:column; gap:14px; }
.quote-points li{ display:flex; align-items:center; gap:12px; font-size:0.92rem; }
.quote-points i{ color:var(--gold-light); }
.quote-contact-mini{ display:flex; flex-direction:column; gap:12px; }
.quote-contact-mini a{ display:inline-flex; align-items:center; gap:10px; font-weight:600; color:var(--gold-light); }

.quote-form{ background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.1); border-radius:var(--radius-lg); padding:40px; backdrop-filter:blur(10px); position:relative; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:20px; }
.form-group.full{ grid-column:1/-1; }
.form-group label{ display:block; font-size:0.8rem; margin-bottom:8px; color:rgba(255,255,255,0.75); }
.form-group input, .form-group select, .form-group textarea{
  width:100%; padding:13px 16px; border-radius:var(--radius-sm); background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.14); color:var(--white); transition:var(--transition);
}
.form-group select option{ color:#111; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{ border-color:var(--gold); background:rgba(255,255,255,0.1); }
.form-note{ font-size:0.76rem; color:rgba(255,255,255,0.5); margin-top:14px; text-align:center; }
.form-success{ display:none; align-items:center; gap:10px; justify-content:center; margin-top:18px; padding:14px; border-radius:var(--radius-sm); background:rgba(189,154,95,0.14); color:var(--gold-light); font-size:0.9rem; }
.form-success.show{ display:flex; }

@media (max-width:900px){ .quote-grid{ grid-template-columns:1fr; gap:40px; } }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } .quote-form{ padding:26px; } }

/* ---------- Blog ---------- */
.blog-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; margin-top:50px; }
.blog-card{ background:var(--card-bg); border:1px solid var(--border-soft); border-radius:var(--radius-md); overflow:hidden; transition:var(--transition); }
.blog-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.blog-card img{ height:160px; width:100%; object-fit:cover; }
.blog-body{ padding:22px; }
.blog-tag{ display:inline-block; font-size:0.68rem; font-weight:700; text-transform:uppercase; letter-spacing:0.05em; color:var(--gold-dark); background:var(--gold-soft); padding:5px 12px; border-radius:100px; margin-bottom:12px; }
.blog-body h3{ font-size:0.98rem; margin-bottom:10px; }
.blog-body p{ font-size:0.85rem; color:var(--text-soft); margin-bottom:16px; }

@media (max-width:960px){ .blog-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .blog-grid{ grid-template-columns:1fr; } }

/* ---------- Instagram strip ---------- */
.instagram-strip{ background:var(--bg-alt); }
.insta-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:14px; margin-top:40px; }
.insta-item{ position:relative; aspect-ratio:1/1; border-radius:var(--radius-sm); overflow:hidden; }
.insta-item img{ width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; }
.insta-item i{ position:absolute; inset:0; margin:auto; width:fit-content; height:fit-content; color:var(--white); font-size:1.4rem; opacity:0; transition:var(--transition); display:flex; align-items:center; justify-content:center; }
.insta-item::after{ content:''; position:absolute; inset:0; background:rgba(0,0,0,0); transition:var(--transition); }
.insta-item:hover::after{ background:rgba(0,0,0,0.45); }
.insta-item:hover img{ transform:scale(1.1); }
.insta-item:hover i{ opacity:1; }

@media (max-width:768px){ .insta-grid{ grid-template-columns:repeat(3,1fr); } }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:60px; align-items:stretch; }
.contact-list{ display:flex; flex-direction:column; gap:20px; margin:26px 0 30px; }
.contact-list li{ display:flex; align-items:flex-start; gap:16px; font-size:0.94rem; }
.contact-list i{ color:var(--gold-dark); width:20px; margin-top:4px; }
.contact-socials{ display:flex; gap:14px; }
.contact-socials a{ width:44px; height:44px; border-radius:50%; border:1px solid var(--border-soft); display:flex; align-items:center; justify-content:center; transition:var(--transition); }
.contact-socials a:hover{ background:var(--gold); color:#20170a; border-color:var(--gold); }
.contact-map{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); min-height:340px; }
.contact-map iframe{ width:100%; height:100%; min-height:340px; border:0; }

@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }

/* ---------- Footer ---------- */
.site-footer{ background:var(--black); color:rgba(255,255,255,0.85); padding-top:90px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:60px; border-bottom:1px solid rgba(255,255,255,0.08); }
.footer-brand p{ color:rgba(255,255,255,0.6); font-size:0.88rem; margin:18px 0 22px; max-width:280px; }
.footer-brand .logo-img{ height:80px; }
.footer-socials{ display:flex; gap:12px; }
.footer-socials a{ width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,0.15); display:flex; align-items:center; justify-content:center; transition:var(--transition); }
.footer-socials a:hover{ background:var(--gold); color:#20170a; }
.footer-col h4{ color:var(--white); font-size:0.95rem; margin-bottom:20px; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ color:rgba(255,255,255,0.62); font-size:0.88rem; transition:color 0.3s ease; }
.footer-col a:hover{ color:var(--gold-light); }
.footer-col li{ color:rgba(255,255,255,0.62); font-size:0.88rem; }
.footer-contact li{ display:flex; align-items:flex-start; gap:10px; }
.footer-contact i{ color:var(--gold-light); margin-top:3px; }
.footer-bottom-inner{ display:flex; justify-content:space-between; align-items:center; padding:26px 24px; flex-wrap:wrap; gap:14px; }
.footer-bottom p{ font-size:0.82rem; color:rgba(255,255,255,0.5); }
.footer-legal{ display:flex; gap:22px; }
.legal-link{ font-size:0.82rem; color:rgba(255,255,255,0.5); transition:color 0.3s ease; }
.legal-link:hover{ color:var(--gold-light); }

@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } .footer-bottom-inner{ flex-direction:column; text-align:center; } }

/* ---------- Floating actions ---------- */
.floating-actions{ position:fixed; bottom:26px; right:26px; z-index:800; display:flex; flex-direction:column; align-items:center; gap:14px; }
.fab-back-top{
  width:48px; height:48px; border-radius:50%; background:var(--card-bg); color:var(--text); box-shadow:var(--shadow-md);
  display:flex; align-items:center; justify-content:center; opacity:0; transform:translateY(10px); pointer-events:none; transition:var(--transition);
}
.fab-back-top.show{ opacity:1; transform:translateY(0); pointer-events:auto; }
.fab-cluster{ position:relative; display:flex; flex-direction:column; align-items:center; gap:14px; }
.fab-item{
  width:50px; height:50px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--white);
  font-size:1.2rem; box-shadow:var(--shadow-md); opacity:0; transform:translateY(14px) scale(0.8); pointer-events:none; transition:var(--transition);
}
.fab-cluster.open .fab-item{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }
.fab-cluster.open .fab-item:nth-child(1){ transition-delay:0.05s; }
.fab-cluster.open .fab-item:nth-child(2){ transition-delay:0.1s; }
.fab-cluster.open .fab-item:nth-child(3){ transition-delay:0.15s; }
.fab-call{ background:#3f6fdb; }
.fab-whatsapp{ background:#25d366; }
.fab-email{ background:var(--grey-700); }
.fab-main{
  width:60px; height:60px; border-radius:50%; background:linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color:#20170a; font-size:1.4rem; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-gold);
  transition:var(--transition); position:relative; z-index:1;
}
.fab-cluster.open .fab-main{ transform:rotate(45deg); }

/* ---------- Lightbox ---------- */
.lightbox{ position:fixed; inset:0; background:rgba(5,5,6,0.94); z-index:2000; display:flex; align-items:center; justify-content:center; opacity:0; visibility:hidden; transition:var(--transition); }
.lightbox.open{ opacity:1; visibility:visible; }
.lightbox img{ max-width:88vw; max-height:84vh; border-radius:var(--radius-sm); box-shadow:var(--shadow-lg); }
.lightbox-close{ position:absolute; top:26px; right:30px; color:var(--white); font-size:1.4rem; width:46px; height:46px; border-radius:50%; background:rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; }
.lightbox-nav{ position:absolute; top:50%; transform:translateY(-50%); color:var(--white); width:52px; height:52px; border-radius:50%; background:rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; font-size:1.2rem; transition:var(--transition); }
.lightbox-nav:hover{ background:var(--gold); color:#20170a; }
.lightbox-prev{ left:20px; } .lightbox-next{ right:20px; }

/* ---------- Modals ---------- */
.modal-overlay{ position:fixed; inset:0; background:rgba(5,5,6,0.7); z-index:2000; display:flex; align-items:center; justify-content:center; padding:24px; opacity:0; visibility:hidden; transition:var(--transition); }
.modal-overlay.open{ opacity:1; visibility:visible; }
.modal-box{ background:var(--card-bg); border-radius:var(--radius-lg); max-width:560px; width:100%; max-height:82vh; overflow-y:auto; padding:44px; position:relative; box-shadow:var(--shadow-lg); transform:translateY(20px); transition:var(--transition); }
.modal-overlay.open .modal-box{ transform:translateY(0); }
.modal-close{ position:absolute; top:18px; right:18px; width:38px; height:38px; border-radius:50%; background:var(--bg-alt); display:flex; align-items:center; justify-content:center; }
.modal-content h3{ margin-bottom:16px; font-size:1.3rem; }
.modal-content p{ color:var(--text-soft); margin-bottom:12px; }
.modal-content img{ border-radius:var(--radius-md); margin-bottom:20px; width:100%; aspect-ratio:16/9; object-fit:cover; }

/* ---------- Section separators ---------- */
section + section{ box-shadow: inset 0 1px 0 var(--border-soft); }

/* ---------- Scrollbar (subtle, optional) ---------- */
::selection{ background:var(--gold); color:#20170a; }
