:root {
    --primary: #1a1a2e;       /* Deep midnight navy */
    --primary-hover: #0d0d1a;
    --accent: #c9a84c;        /* Warm champagne gold */
    --accent-hover: #a8863a;
    --surface: #f7f5f2;       /* Warm off-white */
    --dark: #0f0f1a;
    --dark-2: #1c1c2e;
    --mid: #5a5a72;
    --text-body: #6b6b80;
    --border: #e8e6e1;
    --white: #ffffff;

    --font-sans: 'Sora', sans-serif;
    --font-serif: 'Crimson Pro', serif;
    --radius: 12px;
    --radius-sm: 6px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 48px rgba(0,0,0,0.14);
    --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text-body); background: var(--white); line-height: 1.7; }
h1,h2,h3,h4 { font-family: var(--font-serif); color: var(--dark); line-height: 1.15; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { display: block; width: 100%; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 28px; border-radius: 50px;
    font-family: var(--font-sans); font-weight: 600;
    font-size: 0.95rem; letter-spacing: 0.3px;
    border: 2px solid transparent; cursor: pointer; transition: var(--transition);
}
.btn-xl { padding: 18px 40px; font-size: 1.1rem; }
.btn-primary { background: var(--accent); color: var(--dark); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.btn-ghost { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: white; backdrop-filter: blur(8px); }
.btn-ghost:hover { background: white; color: var(--dark); border-color: white; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(201,168,76,0.6);} 70%{box-shadow:0 0 0 18px rgba(201,168,76,0);} 100%{box-shadow:0 0 0 0 rgba(201,168,76,0);} }
.btn-pulse { animation: pulse 2.2s infinite; }

/* Top Bar */
.top-bar { background: var(--dark-2); color: #9090aa; padding: 9px 0; font-size: 0.82rem; font-weight: 500; }
.top-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-left { display: flex; gap: 24px; flex-wrap: wrap; }
.top-left i { color: var(--accent); margin-right: 5px; }
.top-phone { color: var(--accent); font-weight: 700; }
.top-phone:hover { color: white; }

/* Header */
header { background: white; padding: 18px 0; box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 100; }
.header-row { display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-monogram { width: 48px; height: 48px; background: var(--primary); color: var(--accent); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; color: var(--dark); line-height: 1.1; }
.brand-sub { font-size: 0.75rem; font-weight: 600; color: var(--mid); text-transform: uppercase; letter-spacing: 1.5px; }
.main-nav { display: flex; gap: 32px; }
.main-nav a { font-weight: 500; color: var(--mid); font-size: 0.9rem; }
.main-nav a:hover { color: var(--dark); }
.mobile-btn { display: none; background: none; border: none; font-size: 1.8rem; color: var(--dark); cursor: pointer; }

/* Hero */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; padding: 120px 0; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(15,15,26,0.94) 0%, rgba(15,15,26,0.72) 55%, rgba(15,15,26,0.2) 100%); }
.hero-content { position: relative; z-index: 1; }
.hero-text { max-width: 680px; color: white; }
.hero-pill { display: inline-block; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4); color: var(--accent); padding: 5px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 24px; }
.hero h1 { color: white; font-size: 5rem; margin-bottom: 24px; letter-spacing: -0.5px; }
.hero h1 em { color: var(--accent); font-style: italic; }
.hero p { font-size: 1.2rem; color: #c8c8d8; margin-bottom: 40px; font-weight: 300; max-width: 540px; line-height: 1.8; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-trust span { font-size: 0.85rem; font-weight: 600; color: #8888a8; }
.hero-trust i { color: var(--accent); margin-right: 6px; }

/* Services */
.services { padding: 100px 0; background: var(--surface); }
.section-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-title { font-size: 2.8rem; margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; margin-bottom: 60px; max-width: 580px; margin-left: auto; margin-right: auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border); }
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.svc-featured { grid-column: span 2; display: flex; flex-direction: row; }
.svc-featured .svc-img { flex: 1; }
.svc-featured .svc-body { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 40px; }
.svc-img { height: 200px; overflow: hidden; }
.svc-featured .svc-img { height: auto; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.svc-card:hover .svc-img img { transform: scale(1.06); }
.svc-body { padding: 24px; }
.svc-featured:hover .svc-img img { transform: scale(1.04); }
.svc-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.svc-card p { font-size: 0.92rem; line-height: 1.7; }

/* Gallery */
.gallery-section { padding: 100px 0; background: white; }
.gallery-mosaic { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 320px 320px; gap: 16px; margin-top: 48px; }
.gallery-mosaic > div { border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-mosaic > div:hover img { transform: scale(1.06); }
.gallery-mosaic span { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(0deg, rgba(15,15,26,0.8) 0%, transparent 100%); color: white; padding: 24px 18px 14px; font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.gal-a { grid-column: 1; grid-row: span 2; }
.gal-b { grid-column: 2; }
.gal-c { grid-column: 3; }
.gal-d { grid-column: 2 / span 2; }

/* Process */
.process-section { padding: 100px 0; background: var(--primary); color: white; }
.process-section .section-eyebrow { color: var(--accent); }
.process-section .section-title { color: white; }
.process-section .section-sub { color: #9090aa; }
.process-steps { display: flex; align-items: flex-start; gap: 0; }
.step { flex: 1; text-align: center; padding: 0 24px; }
.step-arrow { display: flex; align-items: center; padding-top: 36px; color: var(--accent); font-size: 1.4rem; opacity: 0.5; }
.step-num { font-family: var(--font-serif); font-size: 4rem; font-weight: 600; color: var(--accent); opacity: 0.3; line-height: 1; margin-bottom: 16px; }
.step h4 { color: white; font-size: 1.2rem; margin-bottom: 12px; font-family: var(--font-sans); font-weight: 700; }
.step p { font-size: 0.9rem; color: #9090aa; line-height: 1.8; }

/* Final CTA */
.final-cta { padding: 120px 0; background: var(--surface); }
.final-cta h2 { font-size: 4rem; margin-bottom: 16px; }
.final-cta > .container > p { font-size: 1.1rem; margin-bottom: 40px; }
.cta-group { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.cta-sub { font-size: 0.85rem; color: var(--mid); }
.section-eyebrow.light { color: var(--accent); }

/* Footer */
footer { background: var(--dark); color: #60607a; padding: 60px 0 0; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; padding-bottom: 40px; }
.f-logo { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: white; margin-bottom: 16px; }
.footer-brand p { max-width: 340px; font-size: 0.9rem; line-height: 1.8; }
.footer-contact h4 { font-family: var(--font-serif); color: white; font-size: 1.2rem; margin-bottom: 20px; }
.footer-contact ul { list-style: none; }
.footer-contact li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 0.9rem; }
.footer-contact i { color: var(--accent); width: 18px; flex-shrink: 0; }
.footer-contact a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; font-size: 0.82rem; }

/* Responsive */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .svc-featured { grid-column: span 2; flex-direction: column; }
    .svc-featured .svc-img { height: 280px; }
    .svc-featured .svc-body { padding: 28px; }
    .process-steps { flex-wrap: wrap; gap: 24px; }
    .step-arrow { display: none; }
    .step { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 768px) {
    .top-left { gap: 10px; flex-wrap: wrap; }
    .main-nav, .nav-btn { display: none; }
    .mobile-btn { display: block; }
    .hero { padding: 80px 0; }
    .hero h1 { font-size: 3rem; }
    .hero-text { text-align: center; margin: 0 auto; }
    .hero-overlay { background: rgba(15,15,26,0.88); }
    .hero-actions, .hero-trust { justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .svc-featured { grid-column: span 1; }
    .gallery-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
    .gal-a, .gal-b, .gal-c, .gal-d { grid-column: 1; height: 260px; }
    .section-title { font-size: 2.3rem; }
    .final-cta h2 { font-size: 3rem; }
    .step { flex: 0 0 100%; }
}
