/* ═══════════════════════════════════════
   RANES BUILDTECH — MAIN STYLESHEET
   ═══════════════════════════════════════ */

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

/* ─── RESET & VARIABLES ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:        #0F0D0B;
  --dark2:       #1C1814;
  --gold:        #C4902A;
  --gold-light:  #E2B94A;
  --gold-pale:   #F5EDD8;
  --cream:       #FAF8F4;
  --white:       #FFFFFF;
  --text:        #1A1510;
  --muted:       #6B5E4D;
  --border:      #E0D6C5;
  --border-dark: #2E2820;
  --section-gap: clamp(60px, 8vw, 120px);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ─── ANIMATIONS ─── */
.fade-in { animation: fadeUp .65s ease both; animation-play-state: paused; }
.fade-in.visible { animation-play-state: running; }
.stagger-1 { animation-delay: .1s; }
.stagger-2 { animation-delay: .2s; }
.stagger-3 { animation-delay: .3s; }
.stagger-4 { animation-delay: .4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 clamp(16px, 5vw, 80px);
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  transition: background .4s, box-shadow .4s;
}
nav.scrolled, nav.solid {
  background: rgba(15,13,11,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-dark);
}
nav.transparent { background: transparent; }

/* Logo */
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 46px; width: auto; display: block; object-fit: contain; }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.82); text-decoration: none;
  font-size: .875rem; font-weight: 500; letter-spacing: .04em;
  transition: color .2s;
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold-light); }
.nav-links a.active::after { width: 100%; }

/* Dropdown */
.nav-links .dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; }
.dropdown-menu {
  position: absolute; top: calc(100% + 16px); left: -16px;
  background: var(--dark2); border: 1px solid var(--border-dark);
  border-radius: 8px; padding: 6px 0; min-width: 220px;
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: opacity .25s, transform .25s; z-index: 200;
}
.dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown-menu a {
  display: block !important; padding: 10px 18px !important;
  font-size: .82rem !important; color: rgba(255,255,255,.7) !important;
  border-left: 2px solid transparent !important;
}
.dropdown-menu a:hover { color: var(--gold-light) !important; border-color: var(--gold) !important; background: rgba(196,144,42,.07); }
.dropdown-menu a::after { display: none !important; }

/* CTA button in nav */
.nav-cta {
  background: var(--gold) !important; color: var(--dark) !important;
  padding: 10px 20px !important; border-radius: 4px;
  font-weight: 600 !important; letter-spacing: .05em !important;
  font-size: .8rem !important; text-transform: uppercase;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--dark); flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
}
.mobile-menu.open { display: flex; animation: fadeUp .3s ease; }
.mobile-close { position: absolute; top: 22px; right: 24px; background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem); font-weight: 500;
  color: var(--white); text-decoration: none; padding: 8px 20px;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu .m-cta {
  margin-top: 20px; background: var(--gold) !important;
  color: var(--dark) !important; padding: 14px 40px !important;
  border-radius: 4px; font-family: 'DM Sans', sans-serif !important;
  font-size: .95rem !important; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; border-radius: 4px;
}

@media (max-width: 900px) { .nav-links { display: none; } .hamburger { display: flex; } }

/* ─── UTILITIES ─── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(16px, 5vw, 60px); }
section { padding: var(--section-gap) 0; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-tag::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.text-center .section-tag { justify-content: center; }
.text-center .section-tag::before { display: none; }
.text-center { text-align: center; }

h2.display { font-size: clamp(1.9rem, 3.8vw, 3.1rem); font-weight: 600; color: var(--text); line-height: 1.1; }
h2.display-light { color: var(--white); }

.underline-gold { position: relative; display: inline-block; }
.underline-gold::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 56px; height: 2px; background: var(--gold); }
.text-center .underline-gold::after { left: 50%; transform: translateX(-50%); }

.lead { color: var(--muted); max-width: 520px; margin: 16px auto 0; font-size: .95rem; line-height: 1.8; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 4px; font-size: .85rem;
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: none;
  transition: all .25s; font-family: 'DM Sans', sans-serif;
}
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,144,42,.3); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

.arrow-icon { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; }
.btn:hover .arrow-icon { transform: translateX(4px); }

/* ─── HERO ─── */
.hero {
  height: 100dvh; min-height: 580px; position: relative;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,6,4,.92) 0%, rgba(8,6,4,.5) 55%, rgba(8,6,4,.18) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: clamp(40px, 6vw, 90px) clamp(16px, 5vw, 80px);
  max-width: 860px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 500; margin-bottom: 18px;
}
.hero-eyebrow .pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.6)} }

.hero h1 { font-size: clamp(2.2rem, 5.5vw, 5.2rem); font-weight: 600; color: var(--white); line-height: 1.06; margin-bottom: 18px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p { font-size: clamp(.9rem, 1.4vw, 1.08rem); color: rgba(255,255,255,.7); max-width: 500px; margin-bottom: 34px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-scroll {
  position: absolute; bottom: 28px; right: clamp(16px, 5vw, 80px);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom,rgba(255,255,255,.3),transparent); animation: scrollLine 2s ease infinite; }
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ─── STATS BAR ─── */
.stats-bar { background: var(--dark); }
.stats-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border-dark);
}
.stat-item {
  padding: 34px 28px;
  border-right: 1px solid var(--border-dark);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  transition: background .3s;
}
.stat-item:hover { background: rgba(196,144,42,.06); }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 2.8vw, 2.8rem); font-weight: 600; color: var(--gold-light); line-height: 1; margin-bottom: 6px; }
.stat-num sup { font-size: .5em; vertical-align: super; }
.stat-label { font-size: .75rem; color: rgba(255,255,255,.42); letter-spacing: .06em; text-transform: uppercase; }
@media (max-width: 680px) { .stats-inner { grid-template-columns: repeat(2, 1fr); } }

/* ─── SERVICE CARDS ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 2px; margin-top: 52px;
  background: var(--border); border: 1px solid var(--border);
}
.service-card {
  background: var(--white); padding: 36px 28px;
  cursor: pointer; transition: all .3s; position: relative; overflow: hidden;
  text-decoration: none; display: block; color: inherit;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.11); z-index: 1; }
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--border); line-height: 1; margin-bottom: 14px; transition: color .3s; }
.service-card:hover .service-num { color: var(--gold-pale); }
.service-icon {
  width: 44px; height: 44px; background: var(--gold-pale); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: background .3s;
}
.service-card:hover .service-icon { background: var(--gold); }
.service-icon svg { width: 22px; height: 22px; stroke: var(--gold); stroke-width: 1.5; fill: none; transition: stroke .3s; }
.service-card:hover .service-icon svg { stroke: var(--dark); }
.service-card h3 { font-size: 1.22rem; font-weight: 600; margin-bottom: 10px; color: var(--text); }
.service-card p { font-size: .875rem; color: var(--muted); line-height: 1.65; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: .75rem; font-weight: 600;
  color: var(--gold); text-decoration: none; letter-spacing: .06em;
  text-transform: uppercase; transition: gap .2s;
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 13px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ─── ABOUT SPLIT ─── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; border-radius: 4px; overflow: visible; }
.about-img-wrap img { width: 100%; height: 520px; object-fit: cover; display: block; border-radius: 4px; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--dark); padding: 20px 24px;
  border-radius: 4px; font-family: 'Cormorant Garamond', serif;
  text-align: center; box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.about-badge .num { font-size: 3rem; font-weight: 700; line-height: 1; display: block; }
.about-badge .lbl { font-size: .78rem; font-weight: 500; letter-spacing: .06em; }
.about-text p { color: var(--muted); margin-bottom: 18px; line-height: 1.82; font-size: .95rem; }
.about-text p:first-of-type { margin-top: 20px; }

.value-list { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.value-item { display: flex; align-items: flex-start; gap: 12px; }
.value-icon { width: 26px; height: 26px; background: var(--gold-pale); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.value-icon svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 2.5; }
.value-item p { font-size: .875rem; color: var(--muted); line-height: 1.6; }
.value-item strong { color: var(--text); }

@media (max-width: 800px) {
  .about-split { grid-template-columns: 1fr; gap: 36px; }
  .about-img-wrap img { height: 280px; }
  .about-badge { bottom: 12px; right: 12px; }
}

/* ─── DARK SECTION ─── */
.dark-section { background: var(--dark); }
.dark-section .section-tag { color: var(--gold-light); }
.dark-section h2 { color: var(--white); }

/* ─── WHY CARDS ─── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin-top: 52px; }
.why-card { background: var(--dark2); border: 1px solid var(--border-dark); border-radius: 8px; padding: 36px 28px; transition: border-color .3s, transform .3s; }
.why-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.why-icon { width: 50px; height: 50px; border: 1px solid var(--border-dark); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: border-color .3s, background .3s; }
.why-card:hover .why-icon { border-color: var(--gold); background: rgba(196,144,42,.1); }
.why-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.why-card h3 { font-size: 1.15rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: .875rem; color: rgba(255,255,255,.42); line-height: 1.72; }

/* ─── TESTIMONIALS ─── */
.testimonials-wrap { margin-top: 52px; overflow: hidden; }
.testimonials-track { display: flex; gap: 24px; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.testimonial-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 38px 34px;
  min-width: min(100%, 440px); flex-shrink: 0; position: relative;
}
.testimonial-card::before {
  content: '\201C'; font-family: 'Cormorant Garamond', serif;
  font-size: 7rem; font-weight: 700; color: var(--gold-pale); line-height: .7;
  position: absolute; top: 18px; left: 26px; z-index: 0;
}
.stars { color: var(--gold); font-size: .85rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--text); line-height: 1.75; font-style: italic; position: relative; z-index: 1; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gold-pale); overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--gold); }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 600; font-size: .88rem; color: var(--text); }
.author-role { font-size: .76rem; color: var(--muted); }
.t-nav { display: flex; gap: 8px; margin-top: 32px; justify-content: center; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: background .3s, transform .3s; }
.t-dot.active { background: var(--gold); transform: scale(1.35); }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #271900 100%);
  padding: clamp(56px, 7vw, 96px) clamp(16px, 5vw, 80px);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between;
  gap: 36px; flex-wrap: wrap;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(196,144,42,.14) 0%, transparent 70%);
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.8rem); max-width: 540px; position: relative; z-index: 1; }
.cta-banner h2 em { font-style: italic; color: var(--gold-light); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-phone { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.65); font-size: .875rem; position: relative; z-index: 1; margin-top: 10px; }
.cta-phone svg { stroke: var(--gold); fill: none; stroke-width: 1.8; }
.cta-phone strong { color: var(--gold-light); }

/* ─── GUARANTEE STRIP ─── */
.guarantee-strip {
  background: var(--gold); padding: 16px clamp(16px, 5vw, 60px);
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.guarantee-strip svg { stroke: var(--dark); fill: none; stroke-width: 2; width: 20px; height: 20px; flex-shrink: 0; }
.guarantee-strip p { font-size: .88rem; font-weight: 600; color: var(--dark); }

/* ─── FOOTER ─── */
footer { background: #060503; padding: clamp(56px, 6vw, 80px) clamp(16px, 5vw, 60px) 28px; }
.footer-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-logo img { height: 50px; width: auto; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: .875rem; line-height: 1.82; color: rgba(255,255,255,.38); max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 6px; border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); text-decoration: none; font-size: .8rem; font-weight: 700;
  transition: all .25s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.38); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }
.fc-item { display: flex; align-items: flex-start; gap: 12px; }
.fc-item svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 2px; }
.fc-item span, .fc-item a { font-size: .84rem; color: rgba(255,255,255,.38); line-height: 1.6; text-decoration: none; }
.fc-item a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1240px; margin: 44px auto 0;
  padding-top: 22px; border-top: 1px solid var(--border-dark);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: .76rem; color: rgba(255,255,255,.25);
}

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

/* ─── PAGE HERO ─── */
.page-hero {
  height: clamp(320px, 42vw, 420px); position: relative;
  display: flex; align-items: flex-end; overflow: hidden;
  margin-top: 0;
}
.page-hero-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,6,4,.88) 0%, rgba(8,6,4,.38) 100%); }
.page-hero-content { position: relative; z-index: 2; padding: 44px clamp(16px, 5vw, 80px); }
.breadcrumb { font-size: .74rem; color: rgba(255,255,255,.48); margin-bottom: 10px; letter-spacing: .04em; }
.breadcrumb a { color: var(--gold-light); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero-content h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 3.4rem); font-weight: 600; }

/* ─── ABOUT PAGE ─── */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-story img { width: 100%; height: 460px; object-fit: cover; border-radius: 4px; display: block; }
.about-story .text-side p { color: var(--muted); margin-bottom: 16px; line-height: 1.82; font-size: .95rem; }
.about-story .text-side p:first-of-type { margin-top: 18px; }

.quote-pull {
  border-left: 3px solid var(--gold); padding: 14px 22px;
  background: var(--gold-pale); border-radius: 0 6px 6px 0; margin: 24px 0;
}
.quote-pull blockquote { font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; color: var(--text); font-style: italic; line-height: 1.6; }
.quote-pull cite { display: block; margin-top: 8px; font-size: .78rem; color: var(--muted); font-style: normal; font-weight: 500; }

@media (max-width: 800px) { .about-story { grid-template-columns: 1fr; gap: 32px; } .about-story img { height: 260px; } }

/* Values grid */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-top: 52px; }
.value-card { border: 1px solid var(--border); border-radius: 6px; padding: 30px 24px; background: var(--white); transition: all .3s; }
.value-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.07); }
.vc-icon { width: 48px; height: 48px; border-radius: 8px; background: var(--gold-pale); margin-bottom: 18px; display: flex; align-items: center; justify-content: center; transition: background .3s; }
.value-card:hover .vc-icon { background: var(--gold); }
.vc-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; transition: stroke .3s; }
.value-card:hover .vc-icon svg { stroke: var(--dark); }
.value-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; }
.value-card p { font-size: .875rem; color: var(--muted); line-height: 1.7; }

/* Team grid */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; margin-top: 52px; }
.team-card { text-align: center; }
.team-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; border-radius: 4px; margin-bottom: 14px; filter: grayscale(15%); transition: filter .35s; display: block; }
.team-card:hover .team-photo { filter: grayscale(0); }
.team-card h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; color: var(--white); }
.team-card span { font-size: .76rem; color: var(--gold); font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }

/* ─── SERVICES PAGE ─── */
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 52px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 27px; left: 16.66%; right: 16.66%;
  height: 1px; background: var(--gold); z-index: 0;
}
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-circle {
  width: 54px; height: 54px; border-radius: 50%; background: var(--gold); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 700;
  margin: 0 auto 18px; border: 4px solid var(--cream);
}
.process-step h3 { font-size: 1.08rem; font-weight: 600; margin-bottom: 8px; }
.process-step p { font-size: .85rem; color: var(--muted); line-height: 1.65; }
@media (max-width: 640px) { .process-steps { grid-template-columns: 1fr; } .process-steps::before { display: none; } }

.services-full { margin-top: 60px; display: flex; flex-direction: column; gap: 80px; }
.sfi { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.sfi.rev { direction: rtl; }
.sfi.rev > * { direction: ltr; }
.sfi img { width: 100%; height: 400px; object-fit: cover; border-radius: 4px; display: block; }
.sfi-text .num-large { font-family: 'Cormorant Garamond', serif; font-size: 5.5rem; font-weight: 300; color: var(--border); line-height: 1; margin-bottom: -12px; }
.sfi-text h3 { font-size: 1.9rem; font-weight: 600; margin-bottom: 14px; }
.sfi-text p { font-size: .95rem; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.sfi-bullets { display: flex; flex-direction: column; gap: 9px; margin: 16px 0 24px; }
.sfi-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .875rem; color: var(--text); list-style: none;
}
.sfi-bullets li::before {
  content: ''; flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px;
  background: var(--gold-pale);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23C4902A' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M5 10l3.5 3.5L15 7'/%3E%3C/svg%3E");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
  border-radius: 50%;
}
@media (max-width: 800px) { .sfi { grid-template-columns: 1fr; gap: 28px; } .sfi.rev { direction: ltr; } .sfi img { height: 240px; } }

/* ─── BLOG PAGE ─── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)); gap: 28px; margin-top: 52px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; transition: box-shadow .3s, transform .3s; text-decoration: none; display: block; color: inherit; }
.blog-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.1); transform: translateY(-4px); }
.blog-card-img { height: 210px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 26px; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.blog-cat { font-size: .66rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); background: var(--gold-pale); padding: 3px 9px; border-radius: 20px; }
.blog-date { font-size: .76rem; color: var(--muted); }
.blog-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; line-height: 1.32; }
.blog-card p { font-size: .875rem; color: var(--muted); line-height: 1.7; }
.blog-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: .76rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: .06em; transition: gap .2s; }
.blog-more:hover { gap: 10px; }
.blog-more svg { width: 13px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ─── CONTACT PAGE ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; margin-top: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.ci-item { display: flex; gap: 16px; }
.ci-icon { width: 46px; height: 46px; border-radius: 8px; background: var(--gold-pale); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.ci-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.ci-item h4 { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.ci-item p, .ci-item a { font-size: .95rem; color: var(--text); text-decoration: none; line-height: 1.65; }
.ci-item a:hover { color: var(--gold); }

.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 40px; }
.contact-form h3 { font-size: 1.6rem; font-weight: 600; margin-bottom: 5px; }
.form-subtitle { font-size: .875rem; color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: .72rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group textarea, .form-group select {
  border: 1px solid var(--border); border-radius: 4px; padding: 12px 15px;
  font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--text);
  background: var(--cream); outline: none; transition: border-color .2s; width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { display: none; background: #e8f5e9; border: 1px solid #a5d6a7; border-radius: 4px; padding: 12px 16px; color: #2e7d32; font-size: .875rem; margin-top: 14px; }

.map-wrap { margin-top: 56px; border-radius: 8px; overflow: hidden; height: 320px; background: var(--dark2); display: flex; align-items: center; justify-content: center; }
.map-inner { text-align: center; color: rgba(255,255,255,.4); }
.map-inner svg { width: 40px; height: 40px; stroke: var(--gold); fill: none; stroke-width: 1.5; display: block; margin: 0 auto 12px; }
.map-inner p { font-size: .875rem; }
.map-inner strong { color: var(--gold-light); display: block; margin-top: 4px; }

@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } .form-row { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .contact-form { padding: 24px; } }

/* ─── SERVICE DETAIL PAGE ─── */
.service-detail-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.service-detail-intro img { width: 100%; height: 480px; object-fit: cover; border-radius: 4px; display: block; }
.sdi-text .section-tag { margin-bottom: 10px; }
.sdi-text p { color: var(--muted); margin-bottom: 16px; line-height: 1.82; font-size: .95rem; }
.sdi-text p:first-of-type { margin-top: 18px; }
@media (max-width: 800px) { .service-detail-intro { grid-template-columns: 1fr; gap: 30px; } .service-detail-intro img { height: 240px; } }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .25s, box-shadow .25s; text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }
