/* ============================================================
   PACIFIC HANDYMAN v2 — Premium Stylesheet
   ============================================================ */

:root {
  --ink:       #0f1923;
  --ink2:      #1c2b3a;
  --ink3:      #243447;
  --gold:      #c9922a;
  --gold-lt:   #e8b860;
  --steel:     #3d7abf;
  --steel-lt:  #5a9fd4;
  --cream:     #faf8f4;
  --stone:     #f0ede6;
  --mid:       #8a95a0;
  --border:    #e2ddd5;
  --white:     #ffffff;

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --max-w: 1160px;
  --pad:   clamp(20px, 5vw, 48px);
  --r:     6px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--white);
  font-family: var(--font-sans); font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.3px; padding: 14px 28px; border-radius: var(--r);
  transition: background 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
  border: none; cursor: pointer;
}
.btn-gold:hover { background: #b5821f; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,146,42,0.35); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.10); color: var(--white);
  font-weight: 600; font-size: 0.92rem;
  padding: 13px 24px; border-radius: var(--r);
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.6); }

.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  font-weight: 600; font-size: 0.92rem;
  padding: 13px 24px; border-radius: var(--r);
  border: 1.5px solid var(--ink);
  transition: background 0.2s;
}
.btn-ghost-light:hover { background: var(--ink); color: var(--white); }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--ink);
  font-weight: 600; font-size: 0.9rem;
  padding: 11px 22px; border-radius: var(--r);
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
  margin-top: 28px;
}
.btn-outline-dark:hover { border-color: var(--ink); background: var(--stone); }

/* ── TOP BAR ── */
.topbar {
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  padding: 7px 0;
}
.topbar-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.55);
}
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-right a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.topbar-right a:hover { color: var(--white); }
.topbar-phone { color: var(--gold-lt) !important; font-weight: 600; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(15,25,35,0.10); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad);
  display: flex; align-items: center; height: 66px; gap: 8px;
}

.logo { display: flex; align-items: baseline; gap: 1px; flex-shrink: 0; }
.logo-pacific {
  font-family: var(--font-serif); font-size: 1.45rem;
  color: var(--ink); letter-spacing: -0.5px;
}
.logo-handyman {
  font-family: var(--font-sans); font-weight: 300; font-size: 1.1rem;
  color: var(--gold); letter-spacing: 1px; text-transform: uppercase;
  margin-left: 4px;
}

.nav-links {
  display: flex; align-items: center; gap: 2px;
  margin-left: auto;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block; padding: 8px 14px;
  font-size: 0.9rem; font-weight: 500; color: var(--ink2);
  border-radius: var(--r);
  transition: background 0.2s, color 0.2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { background: var(--stone); color: var(--ink); }
.nav-cta {
  background: var(--gold) !important; color: var(--white) !important;
  font-weight: 600 !important; padding: 9px 20px !important;
  margin-left: 8px;
}
.nav-cta:hover { background: #b5821f !important; }

/* Mega menu */
.mega-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: -16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px 24px;
  box-shadow: 0 16px 48px rgba(15,25,35,0.12);
  min-width: 420px;
  gap: 32px;
}
.has-dropdown:hover .mega-menu { display: flex; }
.mega-col { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mega-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--mid); margin-bottom: 6px;
}
.mega-col a {
  font-size: 0.88rem; color: var(--ink2); padding: 6px 8px;
  border-radius: 4px; display: flex; align-items: center; gap: 8px;
  transition: background 0.15s, color 0.15s;
}
.mega-col a:hover { background: var(--stone); color: var(--ink); }
.new-tag {
  font-size: 0.68rem; font-weight: 700; background: var(--gold);
  color: var(--white); padding: 1px 6px; border-radius: 10px;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: auto;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.25s; }
.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); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  background: var(--ink2);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(15,25,35,0.97) 40%, rgba(15,25,35,0.55) 100%);
}
.hero-shape {
  position: absolute; border-radius: 50%;
  background: rgba(201,146,42,0.06);
}
.hero-shape-1 { width: 600px; height: 600px; right: -100px; top: -100px; }
.hero-shape-2 { width: 300px; height: 300px; right: 200px; bottom: -50px; background: rgba(61,122,191,0.05); }

.hero-content { position: relative; z-index: 2; padding: 100px 0 80px; }
.hero-text { max-width: 640px; animation: heroIn 0.9s var(--ease) both; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,146,42,0.12); border: 1px solid rgba(201,146,42,0.3);
  color: var(--gold-lt); font-size: 0.8rem; font-weight: 500;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.badge-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white); line-height: 1.05;
  margin-bottom: 22px; letter-spacing: -1px;
}
.hero h1 em { color: var(--gold-lt); font-style: italic; }

.hero-sub {
  color: rgba(255,255,255,0.65); font-size: 1.08rem;
  max-width: 520px; margin-bottom: 36px; line-height: 1.7;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-trust {
  display: flex; align-items: center; gap: 28px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-item strong { display: block; font-family: var(--font-serif); font-size: 2rem; color: var(--gold-lt); line-height: 1; }
.trust-item span { font-size: 0.78rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.5px; }
.trust-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.12); }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.3); font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase;
  z-index: 2;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent); animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

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

/* ── SECTION COMMON ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header--light .section-header { color: var(--white); }
.eyebrow {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--steel); margin-bottom: 10px;
}
.eyebrow--gold { color: var(--gold-lt); }
.section-header h2, .section-header > h2 {
  font-family: var(--font-serif); font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--ink); line-height: 1.15; margin-bottom: 16px;
}
.section-header--light h2 { color: var(--white); }
.section-header h2 em { font-style: italic; color: var(--gold); }
.section-header--light h2 em { color: var(--gold-lt); }
.section-desc { color: var(--mid); max-width: 540px; margin: 0 auto; font-size: 0.97rem; }

/* ── SERVICES ── */
.services-section { padding: 100px 0; background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px 28px;
  display: block; position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--border);
  transition: background 0.3s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(15,25,35,0.10); border-color: transparent; }
.svc-card:hover::before { background: var(--steel-lt); }
.svc-card--featured::before { background: var(--gold); }
.svc-card--featured:hover::before { background: var(--gold-lt); }

.svc-number {
  font-family: var(--font-serif); font-size: 3.5rem; color: var(--stone);
  line-height: 1; margin-bottom: -8px; font-weight: 400;
}
.svc-new-ribbon {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold); color: var(--white);
  font-size: 0.68rem; font-weight: 700;
  padding: 2px 9px; border-radius: 20px; letter-spacing: 0.5px;
}
.svc-icon-wrap {
  width: 50px; height: 50px;
  background: var(--stone); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink2); margin: 16px 0 16px;
  transition: background 0.2s, color 0.2s;
}
.svc-card:hover .svc-icon-wrap { background: var(--steel); color: var(--white); }
.svc-card--featured:hover .svc-icon-wrap { background: var(--gold); color: var(--white); }

.svc-card h3 { font-family: var(--font-serif); font-size: 1.25rem; color: var(--ink); margin-bottom: 10px; }
.svc-card p { font-size: 0.88rem; color: var(--mid); line-height: 1.65; margin-bottom: 16px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.svc-tags span {
  font-size: 0.72rem; font-weight: 500;
  background: var(--stone); color: var(--ink2);
  padding: 3px 10px; border-radius: 20px;
  border: 1px solid var(--border);
}
.svc-link {
  font-size: 0.85rem; font-weight: 600; color: var(--steel);
  display: flex; align-items: center; gap: 6px;
  transition: gap 0.2s, color 0.2s;
}
.svc-link span { transition: transform 0.2s; }
.svc-card:hover .svc-link { color: var(--ink); gap: 10px; }
.svc-card:hover .svc-link span { transform: translateX(4px); }

/* ── WHY ── */
.why-section { padding: 100px 0; background: var(--white); }
.why-inner { display: flex; gap: clamp(40px,6vw,80px); align-items: center; flex-wrap: wrap; }
.why-img-col { flex: 0 0 clamp(280px,40%,440px); }
.why-img-stack { position: relative; }
.why-img-main {
  width: 100%; aspect-ratio: 4/5; border-radius: 12px; overflow: hidden;
}
.why-img-accent {
  position: absolute; bottom: -24px; right: -24px;
  width: 55%; aspect-ratio: 1; border-radius: 10px; overflow: hidden;
  border: 4px solid var(--white);
}
.why-years-badge {
  position: absolute; top: -16px; right: -16px;
  background: var(--gold); color: var(--white);
  width: 90px; height: 90px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; box-shadow: 0 8px 24px rgba(201,146,42,0.4);
}
.why-years-badge strong { font-family: var(--font-serif); font-size: 1.8rem; line-height: 1; }
.why-years-badge span { font-size: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.85; }

.img-placeholder-dark {
  background: var(--ink2); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  gap: 8px; padding: 24px;
}
.img-placeholder-dark p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.img-placeholder-dark small { color: rgba(255,255,255,0.3); font-size: 0.75rem; }
.img-placeholder-light {
  background: var(--stone); display: flex; align-items: center; justify-content: center;
}
.img-placeholder-light p { color: var(--mid); font-size: 0.78rem; }

.why-content { flex: 1; min-width: 300px; }
.why-content h2 { font-family: var(--font-serif); font-size: clamp(2rem,4vw,2.8rem); color: var(--ink); line-height: 1.15; margin-bottom: 16px; }
.why-content h2 em { font-style: italic; color: var(--gold); }
.why-intro { color: var(--mid); font-size: 0.97rem; margin-bottom: 32px; }
.why-list { display: flex; flex-direction: column; gap: 22px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.why-item-text h4 { font-size: 0.97rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.why-item-text p { font-size: 0.87rem; color: var(--mid); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 100px 0; background: var(--ink); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 20px; margin-top: 48px; }
.testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 32px;
  transition: background 0.3s, border-color 0.3s;
}
.testimonial:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,146,42,0.25); }
.t-stars { color: var(--gold-lt); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.t-quote { color: rgba(255,255,255,0.75); font-size: 0.93rem; font-style: italic; line-height: 1.75; margin-bottom: 24px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(201,146,42,0.2); border: 1px solid rgba(201,146,42,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; color: var(--gold-lt); flex-shrink: 0;
}
.t-author strong { display: block; color: var(--white); font-size: 0.9rem; }
.t-author span { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ── PROCESS ── */
.process-section { padding: 100px 0; background: var(--cream); }
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 0; margin-top: 56px; position: relative;
}
.process-step {
  padding: 0 28px 0 0; position: relative;
}
.process-step:last-child { padding-right: 0; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--ink); color: var(--white);
  font-family: var(--font-serif); font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; flex-shrink: 0;
  position: relative; z-index: 1;
}
.step-line {
  position: absolute; top: 26px; left: 52px; right: 0;
  height: 1px; background: var(--border);
}
.process-step h4 { font-weight: 600; font-size: 0.97rem; color: var(--ink); margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: var(--mid); line-height: 1.65; }

/* ── CTA STRIP ── */
.cta-strip { padding: 70px 0; background: var(--stone); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-strip-text h2 { font-family: var(--font-serif); font-size: 2rem; color: var(--ink); margin-bottom: 6px; }
.cta-strip-text p { color: var(--mid); font-size: 0.95rem; }
.cta-strip-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer { background: var(--ink); padding: 72px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { margin-bottom: 16px; display: flex; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.87rem; line-height: 1.7; margin-bottom: 20px; }
.footer-contact-details { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-details a,
.footer-contact-details span { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: color 0.2s; }
.footer-contact-details a:hover { color: var(--white); }
.footer-col h4 {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.55); font-size: 0.87rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.78rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--ink2); padding: 120px 0 70px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,146,42,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .eyebrow { display: block; margin-bottom: 12px; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem,6vw,4rem);
  color: var(--white); margin-bottom: 18px; line-height: 1.1;
}
.page-hero p { color: rgba(255,255,255,0.6); max-width: 520px; font-size: 1rem; font-weight: 300; }

/* ── SERVICE DETAIL ── */
.service-body { padding: 80px 0; }
.service-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.service-layout p { color: var(--mid); margin-bottom: 18px; font-size: 0.95rem; line-height: 1.75; }
.service-layout h3 {
  font-family: var(--font-serif); font-size: 1.5rem;
  color: var(--ink); margin: 32px 0 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.check-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.9rem; color: var(--ink2); padding: 10px 14px;
  background: var(--cream); border-radius: var(--r);
  border-left: 3px solid var(--gold);
}
.check-list li::before { content: "✓"; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* Gallery */
.img-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.img-grid-item {
  aspect-ratio: 4/3; border-radius: 8px; overflow: hidden;
  background: var(--stone); display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; border: 2px dashed var(--border);
  color: var(--mid); text-align: center; padding: 16px; font-size: 0.82rem;
}
.img-grid-item img { width:100%; height:100%; object-fit:cover; }

/* Sidebar contact box */
.sidebar-contact {
  background: var(--ink); border-radius: 10px; padding: 28px;
  margin-top: 20px;
}
.sidebar-contact h4 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--white); margin-bottom: 12px; }
.sidebar-contact p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 20px; }
.sidebar-contact a { display: flex; align-items: center; gap: 8px; color: var(--gold-lt); font-size: 0.9rem; font-weight: 500; margin-bottom: 10px; }
.sidebar-contact a:hover { color: var(--white); }

/* ── CONTACT FORM ── */
.contact-section { padding: 80px 0; background: var(--cream); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.contact-info-title { font-family: var(--font-serif); font-size: 1.6rem; color: var(--ink); margin-bottom: 24px; }
.c-detail { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.c-detail-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--ink2); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.c-detail-body strong { display: block; font-size: 0.78rem; font-weight: 600; color: var(--mid); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.c-detail-body a, .c-detail-body span { color: var(--ink2); font-size: 0.92rem; }
.c-detail-body a:hover { color: var(--gold); }

.form-wrap { background: var(--white); border-radius: 12px; padding: 40px; box-shadow: 0 4px 32px rgba(15,25,35,0.07); border: 1px solid var(--border); }
.form-wrap h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--ink); margin-bottom: 28px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-group { margin-bottom: 18px; }
.f-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--ink); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.f-group input, .f-group select, .f-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--r);
  font-family: var(--font-sans); font-size: 0.92rem; color: var(--ink);
  background: var(--cream); transition: border-color 0.2s, background 0.2s;
}
.f-group input:focus, .f-group select:focus, .f-group textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
}
.f-group textarea { resize: vertical; min-height: 120px; }
.f-submit {
  width: 100%; padding: 15px; background: var(--gold); color: var(--white);
  font-family: var(--font-sans); font-size: 1rem; font-weight: 600;
  border: none; border-radius: var(--r); cursor: pointer;
  transition: background 0.2s, transform 0.2s; margin-top: 6px;
}
.f-submit:hover { background: #b5821f; transform: translateY(-1px); }

/* ── PROJECTS PAGE ── */
.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; padding: 80px 0; }
.project-card {
  border-radius: 10px; overflow: hidden; position: relative;
  background: var(--stone); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  border: 2px dashed var(--border); font-size: 0.82rem; color: var(--mid); text-align: center; padding: 16px;
}
.project-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.project-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,25,35,0.8) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 16px; }
.project-card:hover .project-card-overlay { opacity: 1; }
.project-card-label { color: var(--white); font-size: 0.88rem; font-weight: 600; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-content { padding: 80px 0 60px; }
  .why-inner { flex-direction: column; }
  .why-img-col { width: 100%; max-width: 480px; }
  .service-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .step-line { display: none; }
}
@media (max-width: 700px) {
  .topbar-right a:first-child { display: none; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 66px; left: 0; right: 0; bottom: 0; background: var(--white); padding: 24px; gap: 4px; overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-links > li > a { font-size: 1rem; padding: 12px 16px; }
  .hamburger { display: flex; }
  .mega-menu { position: static; box-shadow: none; border: none; background: var(--cream); flex-direction: column; gap: 0; min-width: 0; padding: 8px 16px; }
  .has-dropdown:hover .mega-menu, .mega-menu { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .cta-strip-inner { flex-direction: column; }
  .f-row { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .img-grid { grid-template-columns: 1fr; }
}
