/* Recoboth Services — standalone styles */
:root {
  --gold: #D4AF37;
  --dark-gold: #AA882E;
  --light-gold: #F3E5AB;
  --bg-dark: #0A0A0A;
  --bg-cream: #FDFCF0;
  --surface: #FFFFFF;
  --text: #111111;
  --text-muted: #4B5563;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-cream);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #F3E5AB; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--gold); color: var(--bg-dark); }

.font-display { font-family: 'Cormorant Garamond', serif; }
.font-body { font-family: 'Outfit', sans-serif; }

/* Layout helpers */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 6rem 0; }
@media (min-width: 768px) { .section { padding: 8rem 0; } }

.eyebrow {
  font-size: 12px; letter-spacing: 0.4em; text-transform: uppercase;
  font-weight: 600; color: var(--dark-gold); display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--dark-gold); display: inline-block; }
.eyebrow.light { color: var(--gold); }
.eyebrow.light::before { background: var(--gold); }

/* Typography */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1; letter-spacing: -0.01em; }
.h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
.h2 { font-size: clamp(2rem, 4.5vw, 4rem); }
.h3 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); }
em.gold { color: var(--gold); font-style: normal; font-weight: 500; }
em.dark-gold { color: var(--dark-gold); font-style: normal; font-weight: 500; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 1rem 2rem; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 600; transition: all 0.3s ease; cursor: pointer; }
.btn-primary { background: var(--gold); color: #000; }
.btn-primary:hover { background: var(--dark-gold); color: #fff; }
.btn-outline-dark { border: 1px solid #000; color: #000; }
.btn-outline-dark:hover { background: #000; color: #fff; }
.btn-outline-light { border: 1px solid rgba(255,255,255,0.3); color: #fff; }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold-outline { border: 1px solid var(--gold); color: var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: #000; }

.btn .arrow { transition: transform 0.3s; }
.btn:hover .arrow { transform: translateX(4px); }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: all 0.4s ease; }
.navbar.transparent { background: rgba(0,0,0,0.3); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.1); }
.navbar.solid { background: rgba(253,252,240,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.05); box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
@media (min-width: 1024px) { .navbar-inner { height: 96px; } }

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-img { width: 48px; height: 48px; background: #000; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.nav-logo-img img { width: 100%; height: 100%; object-fit: contain; }
.nav-logo-text { line-height: 1.1; }
.nav-logo-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; letter-spacing: 0.1em; }
.nav-logo-sub { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }

.nav-links { display: none; align-items: center; gap: 2.5rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link { font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 500; position: relative; transition: color 0.2s; }
.nav-link::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 1px; background: var(--gold); transition: width 0.35s ease; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.navbar.transparent .nav-link { color: rgba(255,255,255,0.9); }
.navbar.transparent .nav-link:hover, .navbar.transparent .nav-link.active { color: var(--gold); }
.navbar.solid .nav-link { color: var(--text); }
.navbar.solid .nav-link:hover, .navbar.solid .nav-link.active { color: var(--dark-gold); }

.nav-right { display: none; align-items: center; gap: 1rem; }
@media (min-width: 1024px) { .nav-right { display: flex; } }
.nav-phone { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.navbar.transparent .nav-phone { color: rgba(255,255,255,0.8); }
.navbar.solid .nav-phone { color: var(--text); }

.nav-mobile-toggle { display: flex; padding: 8px; }
@media (min-width: 1024px) { .nav-mobile-toggle { display: none; } }
.navbar.transparent .nav-mobile-toggle { color: #fff; }
.navbar.solid .nav-mobile-toggle { color: var(--text); }

.mobile-menu { display: none; background: var(--bg-dark); color: #fff; }
.mobile-menu.open { display: block; }
.mobile-menu-inner { padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 1.875rem; }
.mobile-menu a.active { color: var(--gold); }
.mobile-menu-footer { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 1rem; }
.mobile-menu-footer .btn { width: 100%; }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--bg-dark); color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.55), rgba(0,0,0,0.2)); }
.hero-content { position: relative; padding: 8rem 0; max-width: 56rem; }
.hero-title { font-size: clamp(3rem, 8vw, 6.5rem); line-height: 0.95; margin: 2rem 0; font-weight: 300; }
.hero-sub { font-size: 1.125rem; color: rgba(255,255,255,0.75); margin-bottom: 3rem; max-width: 600px; line-height: 1.6; }
@media (min-width: 640px) { .hero-sub { font-size: 1.25rem; } }
.hero-ctas { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }
.hero-stats { margin-top: 5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 32rem; }
.stat-n { font-family: 'Cormorant Garamond', serif; font-size: 2.25rem; color: var(--gold); }
@media (min-width: 768px) { .stat-n { font-size: 2.5rem; } }
.stat-l { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* Page header (inner pages) */
.page-header { position: relative; padding: 10rem 0 6rem; background: var(--bg-dark); color: #fff; overflow: hidden; }
.page-header h1 { font-size: clamp(3rem, 7vw, 5rem); line-height: 0.95; max-width: 56rem; margin: 1.5rem 0 0; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 1.125rem; max-width: 42rem; margin-top: 2rem; }

/* Trust strip */
.trust-strip { background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.05); padding: 1.5rem 0; overflow: hidden; }
.marquee { display: flex; white-space: nowrap; animation: marquee 40s linear infinite; }
.marquee-item { padding: 0 3rem; display: flex; align-items: center; gap: 3rem; font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.marquee-item .dot { color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Service grid */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(12, 1fr); gap: 2rem; } }
.service-card { position: relative; display: block; aspect-ratio: 4/5; overflow: hidden; background: #000; color: #fff; }
@media (min-width: 768px) { .service-card { aspect-ratio: auto; height: 420px; } }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.service-card:hover img { transform: scale(1.05); }
.service-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3), transparent); }
.service-card-inner { position: relative; z-index: 1; height: 100%; padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; }
.service-card-icon { width: 48px; height: 48px; border: 1px solid rgba(212,175,55,0.5); background: rgba(0,0,0,0.2); backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.service-card-num { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.service-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; margin-bottom: 0.5rem; line-height: 1.1; }
@media (min-width: 768px) { .service-card-title { font-size: 1.875rem; } }
.service-card-tag { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 1rem; max-width: 28rem; }
.service-card-cta { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; }
.service-card:hover .service-card-cta .arrow { transform: translateX(4px); }
.service-card .arrow { transition: transform 0.3s; }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(0,0,0,0.1); }
@media (min-width: 768px) { .feature-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 640px) { .feature-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.feature-card { background: var(--surface); padding: 2.5rem; transition: background 0.3s; }
.feature-card:hover { background: var(--bg-cream); }
.feature-card .icon { width: 28px; height: 28px; color: var(--gold); margin-bottom: 1.5rem; }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; line-height: 1.2; }
.feature-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* Equipment cards */
.equip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(0,0,0,0.1); }
@media (min-width: 768px) { .equip-grid { grid-template-columns: repeat(4, 1fr); } }
.equip-card { background: var(--surface); padding: 2rem; }
.equip-card .icon { width: 24px; height: 24px; color: var(--dark-gold); margin-bottom: 1.25rem; }
.equip-card h3 { font-size: 1.25rem; margin-bottom: 1rem; line-height: 1.2; }
.equip-card ul { list-style: none; }
.equip-card li { font-size: 14px; color: var(--text-muted); padding: 4px 0 4px 16px; position: relative; }
.equip-card li::before { content: '·'; color: var(--gold); position: absolute; left: 4px; top: 4px; }

/* Testimonials */
.testimonials { position: relative; background: var(--bg-dark); color: #fff; overflow: hidden; }
.testimonials-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.2; }
.testimonials-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,10,0.95), rgba(10,10,10,0.9), rgba(10,10,10,0.95)); }
.testimonials .container { position: relative; }
.t-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .t-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.t-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); padding: 2.5rem; backdrop-filter: blur(4px); transition: border-color 0.3s; }
.t-card:hover { border-color: rgba(212,175,55,0.4); }
.t-quote-icon { width: 32px; height: 32px; color: rgba(212,175,55,0.6); margin-bottom: 1.5rem; }
.t-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; line-height: 1.3; color: rgba(255,255,255,0.9); margin-bottom: 2rem; }
.t-meta { display: flex; justify-content: space-between; align-items: center; }
.t-name { font-weight: 500; }
.t-role { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }
.t-stars { display: flex; gap: 4px; color: var(--gold); }

/* Footer */
footer { background: var(--bg-dark); color: #fff; position: relative; overflow: hidden; }
.footer-inner { padding: 5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 4fr 3fr 2fr 3fr; } }
.footer-heading { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-list a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-list a:hover { color: #fff; }
.footer-list li { color: rgba(255,255,255,0.7); font-size: 14px; display: flex; align-items: flex-start; gap: 12px; }
.footer-list li .icon { width: 16px; height: 16px; color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-bottom { padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem; justify-content: space-between; align-items: flex-start; font-size: 12px; color: rgba(255,255,255,0.4); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; } }
.footer-bottom-right { display: flex; gap: 1.5rem; }
.footer-socials { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-social { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.footer-social:hover { border-color: var(--gold); color: var(--gold); }
.footer-newsletter { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-newsletter input { background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.3); padding: 0.75rem 0; color: #fff; font-size: 14px; outline: none; transition: border-color 0.3s; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter input:focus { border-bottom-color: var(--gold); }
.footer-newsletter button { align-self: flex-start; }

/* Floating WhatsApp */
.whatsapp-fab { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 40; }
.whatsapp-fab .pulse { position: absolute; inset: 0; border-radius: 9999px; background: #25D366; animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.whatsapp-fab .core { position: relative; width: 56px; height: 56px; border-radius: 9999px; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 25px rgba(0,0,0,0.2); transition: background 0.2s; }
.whatsapp-fab .core:hover { background: #1ebe5d; }
@keyframes pulse-ring { 0% { transform: scale(0.95); opacity: 0.7; } 70% { transform: scale(1.4); opacity: 0; } 100% { transform: scale(1.4); opacity: 0; } }

/* Modal */
.modal { display: none; position: fixed; inset: 0; z-index: 60; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); align-items: flex-start; justify-content: center; padding: 2rem 1rem; overflow-y: auto; }
.modal.open { display: flex; }
.modal-content { background: var(--bg-cream); width: 100%; max-width: 42rem; max-height: 92vh; overflow-y: auto; position: relative; }
.modal-close { position: absolute; top: 1rem; right: 1rem; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 10; }
.modal-close:hover { background: rgba(0,0,0,0.05); }
.modal-body { padding: 3rem 2rem; }
@media (min-width: 640px) { .modal-body { padding: 3rem; } }

/* Form fields */
.field { display: block; }
.field-label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: #6B7280; font-weight: 600; display: block; margin-bottom: 4px; }
.field input, .field textarea, .field select {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid #D1D5DB; padding: 0.75rem 0;
  outline: none; transition: border-color 0.3s; font: inherit; color: var(--text); border-radius: 0;
}
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--gold); }
.field textarea { resize: vertical; min-height: 80px; }
.field select { -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3e%3cpath fill='%23AA882E' d='M6 8L2 4h8z'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 8px center; }

.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; column-gap: 1.5rem; } }
.form-grid .col-span-2 { grid-column: 1 / -1; }

/* Success states */
.success-state { padding: 3rem; text-align: center; }
.success-state .icon-wrap { width: 64px; height: 64px; border-radius: 9999px; background: rgba(212,175,55,0.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: var(--dark-gold); }
.success-state h3 { font-size: 2.5rem; margin-bottom: 0.75rem; }
.success-state p { color: var(--text-muted); max-width: 28rem; margin: 0 auto 2rem; }

/* Services page styles */
.services-subnav { position: sticky; top: 80px; z-index: 30; background: rgba(253,252,240,0.95); backdrop-filter: blur(12px); border-top: 1px solid rgba(0,0,0,0.1); border-bottom: 1px solid rgba(0,0,0,0.1); }
@media (min-width: 1024px) { .services-subnav { top: 96px; } }
.services-subnav-inner { display: flex; overflow-x: auto; padding: 1.25rem 0; gap: 2rem; scrollbar-width: none; }
.services-subnav-inner::-webkit-scrollbar { display: none; }
.services-subnav a { flex-shrink: 0; font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: #6B7280; font-weight: 500; transition: color 0.2s; }
.services-subnav a:hover { color: var(--dark-gold); }

.service-section { padding: 6rem 0; border-top: 1px solid rgba(0,0,0,0.05); }
.service-section.alt { background: var(--surface); }
@media (min-width: 768px) { .service-section { padding: 8rem 0; } }
.service-section-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .service-section-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.service-section.reverse .service-section-grid > div:first-child { order: 2; }
@media (max-width: 767px) { .service-section.reverse .service-section-grid > div:first-child { order: 0; } }
.service-section-image { position: relative; aspect-ratio: 4/5; background: #000; overflow: hidden; }
.service-section-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-section-badge { position: absolute; top: 1.5rem; left: 1.5rem; background: var(--gold); color: #000; padding: 0.5rem 1rem; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; }
.service-items { list-style: none; display: grid; grid-template-columns: 1fr; gap: 0; margin: 2.5rem 0; }
@media (min-width: 640px) { .service-items { grid-template-columns: 1fr 1fr; column-gap: 1.5rem; } }
.service-items li { display: flex; align-items: flex-start; gap: 12px; padding: 0.75rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 14px; }
.service-items li .icon { color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; margin-top: 4px; }

/* About page values */
.values-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(0,0,0,0.1); }
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

/* Blog */
.blog-featured { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; margin-bottom: 6rem; }
@media (min-width: 768px) { .blog-featured { grid-template-columns: 7fr 5fr; gap: 4rem; } }
.blog-img { position: relative; aspect-ratio: 16/10; background: #000; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.blog-img:hover img { transform: scale(1.05); }
.blog-meta { display: flex; align-items: center; gap: 1rem; font-size: 12px; color: #6B7280; margin-bottom: 1rem; flex-wrap: wrap; }
.blog-meta .featured-pill { background: var(--gold); color: #000; padding: 0.25rem 0.75rem; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; }
.blog-meta span { display: inline-flex; align-items: center; gap: 6px; }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { background: var(--surface); border: 1px solid rgba(0,0,0,0.05); transition: border-color 0.3s; }
.blog-card:hover { border-color: var(--gold); }
.blog-card-img { aspect-ratio: 5/4; overflow: hidden; background: #000; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 2rem; }
.blog-card-body h3 { font-size: 1.5rem; line-height: 1.2; margin-bottom: 0.75rem; transition: color 0.3s; }
.blog-card:hover .blog-card-body h3 { color: var(--dark-gold); }
.blog-card-body p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 1.25rem; }
.blog-cta { display: inline-flex; align-items: center; gap: 8px; color: var(--dark-gold); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.contact-card { background: var(--surface); border: 1px solid rgba(0,0,0,0.05); padding: 1.5rem; display: flex; gap: 1.25rem; align-items: flex-start; transition: border-color 0.3s; }
.contact-card:hover { border-color: var(--gold); }
.contact-card-icon { width: 48px; height: 48px; background: rgba(212,175,55,0.1); display: flex; align-items: center; justify-content: center; color: var(--dark-gold); flex-shrink: 0; transition: all 0.3s; }
.contact-card:hover .contact-card-icon { background: var(--gold); color: #000; }
.contact-card-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: #6B7280; margin-bottom: 4px; }
.contact-card-value { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--text); }
.contact-card.dark { background: var(--bg-dark); color: #fff; border: none; }
.contact-card.dark .contact-card-icon { background: transparent; color: var(--gold); width: auto; height: auto; }
.contact-card.dark .contact-card-label { color: rgba(255,255,255,0.5); }

.form-card { background: var(--surface); border: 1px solid rgba(0,0,0,0.05); padding: 2rem; }
@media (min-width: 768px) { .form-card { padding: 3rem; } }
.form-card > h3 { font-size: 2rem; margin-bottom: 0.5rem; }
.form-card > p { color: var(--text-muted); margin-bottom: 2.5rem; }

/* CTA Section */
.cta-light { background: var(--bg-cream); text-align: center; }
.cta-light .container { max-width: 64rem; }
.cta-light h2 { font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 2rem; line-height: 1; }
.cta-light p { color: var(--text-muted); font-size: 1.125rem; max-width: 36rem; margin: 0 auto 2.5rem; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: center; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }

.cta-dark { background: var(--bg-dark); color: #fff; text-align: center; }
.cta-dark h2 { font-size: clamp(2rem, 5vw, 4rem); margin-bottom: 2rem; line-height: 1; }
.cta-dark p { color: rgba(255,255,255,0.7); font-size: 1.125rem; max-width: 36rem; margin: 0 auto 2.5rem; }

/* Grain overlay */
.grain { position: relative; }
.grain::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.2; mix-blend-mode: overlay;
}

/* Toast */
.toast { position: fixed; bottom: 6rem; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--bg-dark); color: #fff; border: 1px solid var(--gold); padding: 1rem 1.5rem; font-size: 14px; opacity: 0; pointer-events: none; transition: all 0.3s; z-index: 100; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Scroll-in animation */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Stat numbers band */
.stat-band { background: var(--bg-dark); color: #fff; padding: 5rem 0; }
.stat-band-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; text-align: center; }
@media (min-width: 768px) { .stat-band-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-big { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 5vw, 4rem); color: var(--gold); margin-bottom: 0.75rem; }

/* Section headers */
.section-header { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: end; margin-bottom: 4rem; }
@media (min-width: 768px) { .section-header { grid-template-columns: 7fr 5fr; } }
.section-header h2 { font-size: clamp(2rem, 5vw, 4rem); margin-top: 1rem; }
.section-header p { color: var(--text-muted); font-size: 1.125rem; line-height: 1.6; }
.section-header.centered { text-align: center; max-width: 48rem; margin-left: auto; margin-right: auto; }
.section-header.centered .eyebrow { justify-content: center; }

.utility-text-muted { color: var(--text-muted); }
.scroll-cue { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, var(--gold), transparent); display: none; }
@media (min-width: 1024px) { .scroll-cue { display: block; } }
