/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', system-ui, sans-serif; font-weight: 300; font-size: 16px; line-height: 1.7; color: #0A1628; background: #FAFCFB; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
.skip-link { position: absolute; left: -9999px; z-index: 200; padding: 0.75rem 1.5rem; background: #0A1628; color: #A8E6CF; font-size: 0.875rem; }
.skip-link:focus { left: 1rem; top: 1rem; }

/* ── Custom Properties ── */
:root {
    --midnight:    #0A1628;
    --midnight-lt: #132744;
    --mint:        #A8E6CF;
    --mint-dark:   #7BC8A8;
    --cream:       #FAFCFB;
    --cream-alt:   #F0F7F3;
    --line:        rgba(10, 22, 40, 0.10);
    --line-strong: rgba(10, 22, 40, 0.20);
    --text-muted:  #5A6F80;
    --radius:      4px;
    --font-serif:  'Cormorant Garamond', Georgia, serif;
    --font-sans:   'Inter', system-ui, sans-serif;
    --container:   1200px;
    --gutter:      clamp(1.25rem, 4vw, 3rem);
}

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

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 300; line-height: 1.15; color: var(--midnight); }
h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { color: var(--text-muted); }
.eyebrow, .section-eyebrow { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mint-dark); margin-bottom: 1rem; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem 2rem; border-radius: var(--radius); font-family: var(--font-sans); font-size: 0.875rem; font-weight: 400; letter-spacing: 0.04em; transition: all 0.3s ease; cursor: pointer; white-space: nowrap; }
.btn-primary { background: var(--midnight); color: #fff; border: 1px solid var(--midnight); }
.btn-primary:hover { background: var(--midnight-lt); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(10,22,40,0.2); }
.btn-ghost { background: transparent; color: var(--midnight); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--midnight); background: rgba(10,22,40,0.03); }
.btn-light { background: #fff; color: var(--midnight); border: 1px solid #fff; }
.btn-light:hover { background: var(--cream-alt); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-outline-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.5); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-full { width: 100%; }

/* ── Header ── */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(250,252,251,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); transition: box-shadow 0.3s ease; }
.site-header.scrolled { box-shadow: 0 2px 20px rgba(10,22,40,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-mark { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 300; color: var(--midnight); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line-strong); border-radius: 50%; }
.logo-word { font-family: var(--font-sans); font-size: 0.8rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--midnight); }
.primary-nav ul { display: flex; align-items: center; gap: 2rem; }
.primary-nav a { font-size: 0.8125rem; font-weight: 400; letter-spacing: 0.04em; color: var(--text-muted); transition: color 0.2s; }
.primary-nav a:hover { color: var(--midnight); }
.nav-cta { padding: 0.5rem 1.25rem; border: 1px solid var(--midnight); border-radius: var(--radius); color: var(--midnight) !important; transition: all 0.3s !important; }
.nav-cta:hover { background: var(--midnight); color: #fff !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; cursor: pointer; padding: 8px; }
.nav-toggle-line { width: 22px; height: 1px; background: var(--midnight); transition: all 0.3s; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { transform: rotate(-45deg) translate(4px, -4px); }

/* ── Hero ── */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding-top: 72px; background: var(--cream); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; padding-bottom: 4rem; }
.hero-content { max-width: 560px; }
.hero-eyebrow { margin-bottom: 1.5rem; }
.hero-headline { margin-bottom: 1.75rem; }
.hero-headline em { font-style: italic; color: var(--mint-dark); }
.hero-body { font-size: 1.0625rem; line-height: 1.8; margin-bottom: 2.5rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-meta { display: flex; align-items: center; gap: 0.75rem; font-size: 0.8125rem; color: var(--text-muted); }
.hero-meta a { color: var(--text-muted); transition: color 0.2s; }
.hero-meta a:hover { color: var(--midnight); }
.meta-dot { opacity: 0.4; }
.hero-image { position: relative; }
.hero-image-frame { position: relative; overflow: hidden; border-radius: var(--radius); }
.hero-image-frame img { width: 100%; height: auto; display: block; transition: transform 0.6s ease; }
.hero-image-frame:hover img { transform: scale(1.02); }
.hero-image-accent { position: absolute; bottom: -24px; right: -24px; width: 120px; height: 120px; border: 1px solid var(--mint); border-radius: 50%; opacity: 0.5; z-index: -1; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.hero-scroll span { font-size: 0.6875rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.scroll-line { width: 1px; height: 40px; background: var(--line-strong); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ── Section shared ── */
.section-header { margin-bottom: 4rem; }
.section-title { margin-bottom: 0; }

/* ── Services ── */
.services { padding: 8rem 0; background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.service-card { background: var(--cream); padding: clamp(2rem, 3vw, 3rem); transition: background 0.3s; }
.service-card:hover { background: var(--cream-alt); }
.service-number { font-family: var(--font-serif); font-size: 0.875rem; color: var(--mint-dark); margin-bottom: 1.25rem; letter-spacing: 0.05em; }
.service-name { margin-bottom: 0.75rem; }
.service-desc { font-size: 0.9375rem; margin-bottom: 1.5rem; line-height: 1.7; }
.service-list { display: flex; flex-direction: column; gap: 0.5rem; }
.service-list li { font-size: 0.8125rem; color: var(--text-muted); padding-left: 1rem; position: relative; }
.service-list li::before { content: ''; position: absolute; left: 0; top: 0.45em; width: 4px; height: 1px; background: var(--mint-dark); }

/* ── About ── */
.about { padding: 8rem 0; background: var(--cream-alt); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about-image { border-radius: var(--radius); overflow: hidden; }
.about-image img { width: 100%; height: auto; display: block; }
.about-content { max-width: 520px; }
.about-body { font-size: 1rem; line-height: 1.85; margin-bottom: 1.25rem; }
.about-stats { display: flex; align-items: center; gap: 2rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-number { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 300; color: var(--midnight); }
.stat-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.stat-divider { width: 1px; height: 48px; background: var(--line); }

/* ── Gallery ── */
.gallery { padding: 8rem 0; background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item { overflow: hidden; border-radius: var(--radius); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.04); }

/* ── CTA Banner ── */
.cta-banner { padding: 6rem 0; background: var(--midnight); }
.cta-grid { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-content .section-eyebrow { color: var(--mint); }
.cta-content .section-title { color: #fff; }
.cta-content .section-title em { color: var(--mint); }
.cta-body { font-size: 1rem; margin-top: 1rem; }
.cta-body a { color: var(--mint); border-bottom: 1px solid rgba(168,230,207,0.3); transition: border-color 0.2s; }
.cta-body a:hover { border-color: var(--mint); }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Contact ── */
.contact { padding: 8rem 0; background: var(--cream-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); }
.contact-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-row { display: grid; grid-template-columns: 5ch 1fr; gap: 1rem; }
.contact-label { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); padding-top: 0.3em; }
.contact-value { font-size: 1rem; color: var(--midnight); line-height: 1.6; }
.contact-link { color: var(--midnight); border-bottom: 1px solid var(--line); transition: border-color 0.2s; }
.contact-link:hover { border-color: var(--midnight); }
.contact-map { margin-top: 2.5rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }

/* ── Form ── */
.contact-form-wrap { background: #fff; border-radius: var(--radius); padding: clamp(2rem, 3vw, 3rem); border: 1px solid var(--line); }
.form-title { font-size: 1.5rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 0; border-bottom: 1px solid var(--line); background: transparent; font-size: 0.9375rem; color: var(--midnight); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--mint-dark); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #B0C4D4; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A6F80' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0 center; padding-right: 1.5rem; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success { text-align: center; padding: 3rem 1rem; }
.success-icon { color: var(--mint-dark); margin-bottom: 1rem; }
.success-title { font-size: 1.5rem; margin-bottom: 0.75rem; }
.success-body { font-size: 0.9375rem; }

/* ── Footer ── */
.site-footer { background: var(--midnight); color: rgba(255,255,255,0.6); padding: 4rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-brand .logo-mark { border-color: rgba(255,255,255,0.2); color: var(--mint); }
.footer-brand .logo-word { color: #fff; }
.footer-tagline { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--mint); }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.footer-contact a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact a:hover { color: var(--mint); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; display: flex; justify-content: space-between; font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ── Reveal animation ── */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr 0.6fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image { order: -1; }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .primary-nav { position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: rgba(250,252,251,0.98); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: 3rem var(--gutter); transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
    .primary-nav.open { transform: translateX(0); }
    .primary-nav ul { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .primary-nav a { font-size: 1.125rem; }
    .nav-cta { padding: 0.75rem 1.5rem; font-size: 1rem; }
    .hero-grid { grid-template-columns: 1fr; padding-top: 2rem; }
    .hero-image { order: -1; max-width: 500px; }
    .hero-image-accent { display: none; }
    .hero-scroll { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-grid { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .gallery-grid { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; }
}
