/* ============================================
   PERIDOT DIRTWORKS — Homepage Styles
   Supplements main style.css
   ============================================ */

/* ── Google Fonts override ── */
:root {
  --font-display: 'Montserrat', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
}
body { font-family: var(--font-body); }
h1, h2, h3, h4, h5, .eyebrow, .nav-links a, .btn, .logo-name { font-family: var(--font-display); }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Header logo ── */
.header-logo {
  height: 42px;
  width: auto;
  display: block;
}
.logo-link { display: block; line-height: 1; }
.site-header.scrolled {
  background: rgba(7,8,14,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

/* ── Mobile nav ── */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark);
  border-top: 1px solid rgba(184,135,42,0.18);
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.mobile-nav a {
  display: block; padding: 13px 0; color: rgba(255,255,255,0.75);
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-display);
}
.mobile-nav a:hover { color: var(--bronze-light); }
.mobile-nav .mobile-cta {
  margin-top: 14px; background: var(--bronze); color: #fff !important;
  text-align: center; padding: 13px !important; border-radius: var(--radius);
  border-bottom: none !important;
}

/* Mobile toggle animation */
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Nav dropdown ── */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%); background: var(--dark-2);
  border: 1px solid rgba(184,135,42,0.2); border-radius: 6px;
  padding: 8px 0; min-width: 175px; list-style: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4); z-index: 100;
}
.nav-dropdown-menu.open { display: block; }
.nav-dropdown-menu li a {
  display: block; padding: 10px 18px; font-size: 0.83rem; font-weight: 600;
  color: rgba(255,255,255,0.72); letter-spacing: 0.03em; border: none !important;
  transition: var(--transition);
}
.nav-dropdown-menu li a:hover { color: var(--bronze-light); background: rgba(184,135,42,0.08); }

/* ── Hero ── */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px 60px;
  position: relative;
  z-index: 1;
}

/* Stars */
.hero-stars { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.star {
  position: absolute; border-radius: 50%; background: #fff;
  animation: twinkle 3s ease-in-out infinite;
}
.s1  { width:2px; height:2px; top:8%;  left:12%; animation-delay:0s;    opacity:0.8; }
.s2  { width:1px; height:1px; top:15%; left:35%; animation-delay:0.4s;  opacity:0.6; }
.s3  { width:2px; height:2px; top:5%;  left:58%; animation-delay:1.2s;  opacity:0.9; }
.s4  { width:1px; height:1px; top:20%; left:72%; animation-delay:0.7s;  opacity:0.5; }
.s5  { width:2px; height:2px; top:3%;  left:88%; animation-delay:1.8s;  opacity:0.75; }
.s6  { width:1px; height:1px; top:28%; left:22%; animation-delay:2.1s;  opacity:0.55; }
.s7  { width:2px; height:2px; top:12%; left:46%; animation-delay:0.3s;  opacity:0.7; }
.s8  { width:1px; height:1px; top:25%; left:64%; animation-delay:1.5s;  opacity:0.5; }
.s9  { width:2px; height:2px; top:7%;  left:80%; animation-delay:0.9s;  opacity:0.65; }
.s10 { width:1px; height:1px; top:18%; left:5%;  animation-delay:2.5s;  opacity:0.45; }
.s11 { width:2px; height:2px; top:10%; left:95%; animation-delay:1.1s;  opacity:0.7; }
.s12 { width:1px; height:1px; top:30%; left:40%; animation-delay:3.0s;  opacity:0.4; }

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.4); }
}

/* Hero scene */
.hero-scene-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(184,135,42,0.18);
}
.hero-landscape {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Hero floating badge */
.hero-badge-float {
  position: absolute; bottom: -16px; left: -20px;
  background: linear-gradient(135deg, #B8872A, #DEB84A);
  border-radius: 10px; padding: 16px 20px;
  box-shadow: 0 8px 28px rgba(184,135,42,0.40);
  display: flex; align-items: center; gap: 0;
}
.hbf-inner { display: flex; flex-direction: column; line-height: 1.25; }
.hbf-num {
  font-size: 2rem; font-weight: 900; color: #fff;
  font-family: var(--font-display); line-height: 1;
  display: inline;
}
.hbf-label {
  font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.85);
  font-family: var(--font-display); letter-spacing: 0.04em;
  margin-top: 2px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
}
.scroll-indicator span:first-child {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(184,135,42,0), rgba(184,135,42,0.5));
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-label {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); font-family: var(--font-display);
  width: auto !important; height: auto !important; animation: none !important;
  background: none !important;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ── Stats bar ── */
.stats-bar {
  background: linear-gradient(90deg, #0C1020, #0F1828, #0C1020);
  border-top: 1px solid rgba(184,135,42,0.22);
  border-bottom: 1px solid rgba(184,135,42,0.22);
  padding: 0 24px;
}
.stats-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 36px 0;
}
.stat-item { text-align: center; flex: 1; }
.stat-num {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900; color: var(--bronze-light);
  font-family: var(--font-display); line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45); font-weight: 600; font-family: var(--font-display);
}
.stat-divider {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(184,135,42,0.3), transparent);
  flex-shrink: 0; margin: 0 16px;
}

/* ── Service cards enhanced ── */
.sc-icon-wrap {
  margin-bottom: 18px;
}
.sc-features {
  list-style: none; padding: 0; margin: 0 0 18px;
  display: flex; flex-direction: column; gap: 5px;
}
.sc-features li {
  font-size: 0.85rem; color: var(--text-light);
  padding-left: 16px; position: relative; margin: 0;
}
.sc-features li::before {
  content: '›'; position: absolute; left: 0; color: var(--bronze); font-weight: 700;
}
.services-cta {
  display: flex; gap: 14px; justify-content: center; margin-top: 48px; flex-wrap: wrap;
}

/* ── Why right visual ── */
.why-visual {
  background: linear-gradient(145deg, #0C1121, #07080E);
  border-radius: 10px; overflow: hidden; position: relative;
  border: 1px solid rgba(184,135,42,0.18);
  padding: 24px;
}
.why-visual img { width: 100%; height: auto; display: block; }
.why-visual-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(7,8,14,0.9), transparent);
  padding: 24px 20px 16px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(222,184,74,0.75);
  font-family: var(--font-display);
}

/* ── Process ── */
.process-grid {
  display: flex; align-items: flex-start; gap: 0;
  position: relative; flex-wrap: nowrap;
}
.process-step {
  flex: 1; text-align: center; padding: 0 20px; position: relative;
}
.ps-number {
  font-size: 0.7rem; font-weight: 900; letter-spacing: 0.15em;
  color: rgba(222,184,74,0.35); font-family: var(--font-display);
  margin-bottom: 14px;
}
.ps-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(184,135,42,0.10); border: 1px solid rgba(184,135,42,0.30);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.process-step h3 {
  color: var(--white); font-size: 1rem; margin-bottom: 10px;
  font-family: var(--font-display);
}
.process-step p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.75; }
.process-connector {
  width: 60px; flex-shrink: 0;
  height: 1px; background: linear-gradient(90deg, rgba(184,135,42,0.3), rgba(184,135,42,0.1));
  margin-top: 72px; position: relative;
}
.process-connector::after {
  content: '›'; position: absolute; right: -6px; top: -10px;
  color: rgba(184,135,42,0.4); font-size: 1.2rem;
}

/* ── Equipment section ── */
.equipment-grid { display: flex; flex-direction: column; gap: 64px; }
.eq-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center;
}
.eq-card-reverse { direction: rtl; }
.eq-card-reverse > * { direction: ltr; }
.eq-img-wrap {
  border-radius: 10px; overflow: hidden;
  background: linear-gradient(145deg, #0C1829, #07080E);
  border: 1px solid rgba(184,135,42,0.18);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.eq-img-wrap img { width: 100%; height: auto; display: block; }
.eq-content h3 { color: var(--navy); font-size: 1.4rem; margin-bottom: 14px; font-family: var(--font-display); }
.eq-content p { color: var(--text-light); line-height: 1.82; margin-bottom: 20px; }
.eq-specs { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.eq-specs li {
  font-size: 0.88rem; color: var(--text-light); padding: 10px 14px;
  background: var(--off-white); border-radius: 5px; border-left: 3px solid var(--bronze);
}
.eq-specs li strong { color: var(--navy); display: inline; }

/* ── Coverage / Map ── */
.coverage-section {
  background: linear-gradient(145deg, #07080E, #0C1020);
  color: var(--white);
}
.coverage-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  max-width: var(--max-width); margin: 0 auto;
}
.coverage-left .eyebrow { color: var(--bronze-light); }
.coverage-left h2 { color: var(--white); margin-bottom: 16px; }
.coverage-left p { color: rgba(255,255,255,0.62); line-height: 1.82; margin-bottom: 28px; }
.coverage-cities h4 {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.38); margin-bottom: 14px; font-family: var(--font-display);
}
.city-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.city-link {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(184,135,42,0.2);
  border-radius: 4px; padding: 9px 10px; text-align: center;
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.72);
  transition: var(--transition); font-family: var(--font-display); letter-spacing: 0.02em;
}
.city-link:hover { background: rgba(184,135,42,0.15); border-color: var(--bronze-light); color: #fff; }
.city-hq {
  background: rgba(184,135,42,0.12) !important;
  border-color: rgba(184,135,42,0.45) !important;
  color: var(--bronze-light) !important;
}
.city-hq span {
  font-size: 0.65rem; background: var(--bronze); color: #fff;
  padding: 1px 5px; border-radius: 3px; font-weight: 700;
}
.map-wrap { position: relative; }
.map-wrap img {
  width: 100%; height: auto; display: block; border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.map-caption {
  margin-top: 10px; text-align: center;
  font-size: 0.72rem; color: rgba(255,255,255,0.30); letter-spacing: 0.1em;
  text-transform: uppercase; font-family: var(--font-display);
}

/* ── FAQ more link ── */
.faq-more { text-align: center; margin-top: 40px; }

/* ── CTA Banner enhanced ── */
.cta-content { max-width: 660px; margin: 0 auto; }
.cta-badge {
  display: flex; justify-content: center; margin-bottom: 20px;
}
.cta-sub {
  font-size: 0.78rem; color: rgba(255,255,255,0.40); margin-top: 18px;
  letter-spacing: 0.06em; font-family: var(--font-display);
}

/* ── Footer logo ── */
.footer-logo { height: 38px; width: auto; margin-bottom: 18px; }

/* ── Button size variant ── */
.btn-lg { padding: 16px 38px; font-size: 1.02rem; }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 40px; }
  .hero-badge-float { bottom: -12px; left: 12px; }
  .process-grid { flex-wrap: wrap; justify-content: center; }
  .process-step { min-width: 180px; max-width: 220px; }
  .process-connector { display: none; }
  .eq-card { grid-template-columns: 1fr; gap: 28px; }
  .eq-card-reverse { direction: ltr; }
  .coverage-grid { grid-template-columns: 1fr; gap: 40px; }
  .city-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .hero-inner { padding: 40px 20px 36px; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .hero-badge-float { position: relative; bottom: auto; left: auto; margin-top: 16px; align-self: flex-start; }
  .hero-scene-wrap { margin: 0; }
  .stats-inner { flex-wrap: wrap; gap: 28px; justify-content: center; }
  .stat-divider { display: none; }
  .stat-item { min-width: 120px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-left .section-header { text-align: center; }
  .why-left .section-header .sub { margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .coverage-left .btn { width: 100%; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { padding: 0 10px; }
  .hero-badge-float { padding: 12px 16px; }
  .hbf-num { font-size: 1.6rem; }
}

/* ═══════════════════ SERVICES PAGE ═══════════════════ */

/* Service jump nav */
.service-jump-nav {
  background: var(--dark);
  border-bottom: 1px solid rgba(184,135,42,0.18);
  position: sticky; top: 72px; z-index: 90;
  overflow-x: auto;
}
.sjn-list {
  display: flex; list-style: none; padding: 0; margin: 0;
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  gap: 0; white-space: nowrap;
}
.sjn-list li a {
  display: block; padding: 14px 18px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.52);
  border-bottom: 2px solid transparent; transition: var(--transition);
  font-family: var(--font-display);
}
.sjn-list li a:hover { color: var(--bronze-light); border-bottom-color: var(--bronze); }

/* Services page sections */
.services-page-wrap { }
.service-full-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-light);
}
.service-full-section.sfs-alt { background: var(--off-white); }
.service-full-section:last-child { border-bottom: none; }

.sfs-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.sfs-grid-reverse { direction: rtl; }
.sfs-grid-reverse > * { direction: ltr; }

.sfs-content .eyebrow { margin-bottom: 8px; display: block; }
.sfs-content h2 { color: var(--navy); margin-bottom: 16px; }
.sfs-content .sfs-lead {
  font-size: 1.05rem; color: var(--text); line-height: 1.8;
  margin-bottom: 16px; font-weight: 500;
}
.sfs-content p { color: var(--text-light); line-height: 1.82; margin-bottom: 16px; }
.sfs-content h3 { color: var(--navy); margin: 24px 0 12px; font-size: 1.05rem; }

.sfs-list {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 6px;
}
.sfs-list li {
  padding: 8px 14px 8px 32px; position: relative;
  color: var(--text-light); font-size: 0.93rem;
  background: rgba(22,43,77,0.04); border-radius: 4px;
}
.sfs-list li::before {
  content: '✓'; position: absolute; left: 10px; color: var(--bronze);
  font-weight: 700; font-size: 0.85rem;
}
.sfs-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

.sfs-visual { display: flex; flex-direction: column; gap: 20px; }
.sfs-img-box {
  border-radius: 10px; overflow: hidden;
  border: 1px solid var(--gray-light);
  background: var(--off-white);
}
.sfs-img-box img { width: 100%; height: auto; display: block; }
.sfs-img-box svg { width: 100%; height: auto; display: block; }
.sfs-img-dark {
  background: linear-gradient(145deg, #0C1829, #07080E) !important;
  border-color: rgba(184,135,42,0.18) !important;
}

.sfs-sidebar-cta {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border: 1px solid rgba(184,135,42,0.25); border-radius: 8px;
  padding: 24px; color: var(--white);
}
.sfs-sidebar-cta p {
  color: rgba(255,255,255,0.72); font-size: 0.9rem; margin-bottom: 16px; line-height: 1.6;
}
.sfs-sidebar-cta .btn-secondary {
  border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.8);
}
.sfs-sidebar-cta .btn-secondary:hover { background: rgba(255,255,255,0.1); color: #fff; }

@media (max-width: 900px) {
  .sfs-grid { grid-template-columns: 1fr; gap: 32px; }
  .sfs-grid-reverse { direction: ltr; }
  .service-full-section { padding: 52px 0; }
}

/* ═══════════════════ ABOUT PAGE ═══════════════════ */
.about-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  max-width: var(--max-width); margin: 0 auto; padding: 80px 24px;
}
.about-intro-left h2 { color: var(--navy); margin-bottom: 18px; }
.about-intro-left p { color: var(--text-light); line-height: 1.85; margin-bottom: 14px; }
.about-intro-right {
  background: linear-gradient(145deg, #0C1829, #07080E);
  border-radius: 10px; border: 1px solid rgba(184,135,42,0.18);
  padding: 28px; overflow: hidden;
}
.about-intro-right img { width: 100%; height: auto; display: block; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: 8px; padding: 30px 24px; text-align: center;
  border-top: 3px solid var(--bronze);
}
.value-icon { font-size: 2.2rem; margin-bottom: 14px; }
.value-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1rem; }
.value-card p { color: var(--text-light); font-size: 0.90rem; margin: 0; }

.credentials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cred-item {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(184,135,42,0.2);
  border-radius: 8px; padding: 24px 18px; text-align: center;
}
.cred-icon { font-size: 1.8rem; margin-bottom: 10px; }
.cred-item h4 { color: var(--white); font-size: 0.88rem; margin-bottom: 6px; font-family: var(--font-display); }
.cred-item p { color: rgba(255,255,255,0.50); font-size: 0.8rem; margin: 0; }

.service-area-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 32px; }
.sa-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(184,135,42,0.15);
  border-radius: 5px; padding: 10px 14px;
  font-size: 0.85rem; color: rgba(255,255,255,0.70);
}
.sa-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--bronze); flex-shrink: 0; }

@media (max-width: 900px) {
  .about-intro-grid { grid-template-columns: 1fr; padding: 48px 24px; gap: 36px; }
  .values-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .service-area-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .credentials-grid { grid-template-columns: 1fr; }
  .service-area-list { grid-template-columns: 1fr; }
}

/* ═══════════════════ CONTACT PAGE ═══════════════════ */
.contact-page-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px;
  max-width: var(--max-width); margin: 0 auto; padding: 80px 24px;
  align-items: start;
}
.contact-info-card {
  background: linear-gradient(145deg, var(--navy-dark), var(--navy));
  border: 1px solid rgba(184,135,42,0.25); border-radius: 10px;
  padding: 36px; color: var(--white); position: sticky; top: 92px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 28px; font-size: 1.1rem; }
.ci-row {
  display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px;
}
.ci-row:last-of-type { margin-bottom: 0; }
.ci-ico {
  width: 42px; height: 42px; border-radius: 8px; flex-shrink: 0;
  background: rgba(184,135,42,0.15); border: 1px solid rgba(184,135,42,0.3);
  display: flex; align-items: center; justify-content: center;
}
.ci-ico svg { color: var(--bronze-light); }
.ci-text strong { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-bottom: 4px; font-family: var(--font-display); }
.ci-text a, .ci-text span { color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 600; }
.ci-text a:hover { color: var(--bronze-light); }
.ci-hours { margin-top: 28px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); }
.ci-hours h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-bottom: 12px; font-family: var(--font-display); }
.ci-hours p { color: rgba(255,255,255,0.60); font-size: 0.88rem; line-height: 2.0; margin: 0; }

.contact-form-card {
  background: var(--off-white); border-radius: 10px; padding: 40px;
  border-top: 3px solid var(--bronze);
}
.contact-form-card h3 { color: var(--navy); margin-bottom: 8px; }
.contact-form-card > p { color: var(--text-light); margin-bottom: 28px; font-size: 0.93rem; }

@media (max-width: 900px) {
  .contact-page-grid { grid-template-columns: 1fr; padding: 48px 24px; gap: 32px; }
  .contact-info-card { position: relative; top: auto; }
}
