/* ─── HERO ─── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(165deg, #060e1a 0%, var(--navy) 30%, var(--navy-mid) 100%); overflow: hidden; text-align: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 20% 80%, rgba(94,234,212,0.06) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 80% 20%, rgba(13,148,136,0.1) 0%, transparent 50%); }
.hero-water { position: absolute; bottom: -2px; left: 0; width: 100%; }
.hero-water svg { width: 100%; height: auto; display: block; }
.hero-content { position: relative; z-index: 2; max-width: 1000px; padding: 0 2rem; }
.hero-eyebrow { font-size: 0.78rem; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 1.5rem; font-weight: 300; }
.hero-eyebrow span { margin: 0 0.6em; opacity: 0.3; }
.hero-h1 { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(3rem, 6.5vw, 5rem); color: #fff; line-height: 1.1; margin-bottom: 1.2rem; }
.hero-h1 em { font-style: italic; color: var(--cyan); }
.hero-tagline { font-size: 0.85rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cyan); margin-bottom: 2rem; font-weight: 500; opacity: 0.8; }
.hero-sub { font-size: 1.08rem; color: rgba(255,255,255,0.55); max-width: 620px; margin: 0 auto 2.5rem; font-weight: 300; line-height: 1.7; }
.hero-cta { display: inline-flex; align-items: center; gap: 0.6em; padding: 1rem 2.8rem; background: var(--cyan); color: var(--navy); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 3px; transition: all 0.3s; text-decoration: none; }
.hero-cta:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(94,234,212,0.3); }

/* ─── SERVICES STRIP ─── */
.svc-strip { display: flex; flex-wrap: wrap; justify-content: center; background: var(--navy); padding: 1.2rem 2vw; gap: 0; }
.svc-strip-item { padding: 0.8rem 1.6rem; color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 500; border-right: 1px solid rgba(255,255,255,0.08); }
.svc-strip-item:last-child { border-right: none; }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── INTRO ─── */
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 480px; }
.intro-text { padding: 5rem 5vw 5rem 6vw; display: flex; flex-direction: column; justify-content: center; }
.section-label { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--teal); font-weight: 600; margin-bottom: 1.2rem; }
.section-title { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--charcoal); line-height: 1.2; margin-bottom: 1.5rem; }
.intro-text p { font-size: 0.95rem; line-height: 1.8; color: var(--text-body); max-width: 500px; }
.intro-stats { background: var(--navy-mid); display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.stat { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2.5rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); border-right: 1px solid rgba(255,255,255,0.06); }
.stat-num { font-family: 'DM Serif Display', Georgia, serif; font-size: 2.6rem; color: var(--cyan); line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); text-align: center; font-weight: 300; }

/* ─── SERVICES ─── */
.services { padding: 6rem 6vw; background: var(--ice); }
.section-header { text-align: center; margin-bottom: 4rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.svc-card { background: #fff; padding: 2.2rem 2rem; border-radius: 4px; border-left: 3px solid var(--navy-light); transition: all 0.35s; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(10,22,40,0.1); border-left-color: var(--teal); }
.svc-icon { width: 44px; height: 44px; background: var(--cyan-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; color: var(--navy-light); font-size: 1.2rem; }
.svc-card-title { font-family: 'DM Serif Display', Georgia, serif; font-size: 1.15rem; color: var(--charcoal); margin-bottom: 0.7rem; }
.svc-card-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ─── PORTFOLIO ─── */
.portfolio { padding: 6rem 6vw; background: var(--white); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; max-width: 1200px; margin: 0 auto; }
.p-card { position: relative; aspect-ratio: 4/3; border-radius: 4px; overflow: hidden; text-decoration: none; display: block; }
.p-thumb { position: absolute; inset: 0; transition: transform 0.6s ease; }
.p-thumb img { width: 100%; height: 100%; object-fit: cover; }
.p-card:hover .p-thumb { transform: scale(1.06); }
.p-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.1) 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.8rem; opacity: 0; transition: opacity 0.4s; }
.p-card:hover .p-card-overlay { opacity: 1; }
.p-card-overlay h4 { font-family: 'DM Serif Display', Georgia, serif; color: #fff; font-size: 1.1rem; margin-bottom: 0.3rem; }
.p-card-overlay span { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cyan); font-weight: 500; }

/* placeholder images */
.ph-img { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem; text-align: center; }
.ph-img .ph-icon { font-size: 2.2rem; opacity: 0.5; }
.ph-img .ph-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.4; font-weight: 500; }
.ph-1 { background: linear-gradient(135deg, #0d2847, #091c38, #134268); color: #5eead4; }
.ph-2 { background: linear-gradient(135deg, #0a1628, #060e1a, #0d2847); color: #99f6e4; }
.ph-3 { background: linear-gradient(135deg, #134268, #0d2847, #0d9488); color: #ccfbf1; }
.ph-4 { background: linear-gradient(135deg, #0d2847, #0a1628, #134268); color: #5eead4; }
.ph-5 { background: linear-gradient(135deg, #0d9488, #0f766e, #134268); color: #ccfbf1; }
.ph-6 { background: linear-gradient(135deg, #0a1628, #134268, #0d2847); color: #99f6e4; }

/* ─── ABOUT SECTION ─── */
.about-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.about-img-wrap { position: relative; overflow: hidden; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.about-content { padding: 5rem 5vw; display: flex; flex-direction: column; justify-content: center; background: var(--navy-mid); }
.about-label { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cyan); font-weight: 600; margin-bottom: 1.2rem; }
.about-h2 { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(1.7rem, 2.8vw, 2.2rem); color: #fff; line-height: 1.25; margin-bottom: 1.5rem; }
.about-p { font-size: 0.92rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 1rem; max-width: 500px; }
.team-cards { display: flex; gap: 1.5rem; margin-top: 2rem; }
.team-card { display: flex; align-items: center; gap: 1rem; }
.team-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--navy-light); display: flex; align-items: center; justify-content: center; color: var(--cyan); font-family: 'DM Serif Display', Georgia, serif; font-size: 1.1rem; flex-shrink: 0; border: 2px solid rgba(94,234,212,0.2); }
.team-name { color: #fff; font-size: 0.88rem; font-weight: 500; }
.team-role { color: rgba(255,255,255,0.4); font-size: 0.74rem; letter-spacing: 0.05em; }

/* ─── PROCESS ─── */
.process { padding: 6rem 6vw; background: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 32px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--cyan-pale), var(--teal), var(--cyan-pale)); }
.step { text-align: center; position: relative; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: var(--navy-mid); color: var(--cyan); font-family: 'DM Serif Display', Georgia, serif; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; position: relative; z-index: 2; border: 3px solid var(--cyan-pale); }
.step-title { font-family: 'DM Serif Display', Georgia, serif; font-size: 1rem; color: var(--charcoal); margin-bottom: 0.5rem; }
.step-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ─── CONTACT ─── */
.contact { padding: 6rem 6vw; background: var(--ice); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; max-width: 1100px; margin: 0 auto; }
.contact-info h3 { font-family: 'DM Serif Display', Georgia, serif; font-size: 1.6rem; color: var(--charcoal); margin-bottom: 1.5rem; }
.contact-text { font-size: 0.92rem; color: var(--text-body); line-height: 1.8; margin-bottom: 1.5rem; }
.cd { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; }
.cd-icon { width: 36px; height: 36px; background: var(--navy-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.cd-icon svg { width: 16px; height: 16px; }
.cd-label { display: block; color: var(--charcoal); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 2px; }
.cd-value { font-size: 0.88rem; color: var(--text-body); line-height: 1.6; }
.form-field { margin-bottom: 1.2rem; }
.form-field label { display: block; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem; font-weight: 500; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--cyan-pale); border-radius: 3px; font-family: 'Outfit', sans-serif; font-size: 0.9rem; color: var(--charcoal); background: #fff; transition: border-color 0.3s; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,148,136,0.15); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit { display: inline-flex; align-items: center; gap: 0.6em; padding: 0.85rem 2.2rem; background: var(--navy-mid); color: #fff; border: none; font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 3px; cursor: pointer; transition: all 0.3s; }
.btn-submit:hover { background: var(--teal); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(13,148,136,0.25); }
/* honeypot */
.hp-field { position: absolute; left: -9999px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .intro { grid-template-columns: 1fr; }
  .about-section { grid-template-columns: 1fr; }
  .about-img-wrap { min-height: 300px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-cards { flex-direction: column; }
}
@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .svc-strip { flex-direction: column; align-items: center; }
  .svc-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
}
