/* ════════════════════════════════════════════════════
   STEADY OPERATIONS — SHARED STYLES
   Cormorant Garamond / DM Sans — original brand system
═══════════════════════════════════════════════════════ */

:root {
  --ink:         #171717;
  --text:        #545657;
  --accent:      #ff876e;
  --accent-soft: #ffd6ce;
  --blush:       #f3d9d2;
  --bg:          #fff5f2;
  --neutral:     #f6f5f4;
  --white:       #ffffff;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'DM Sans', sans-serif;
  --transition:  0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 4rem;
}

h1, h2, h3 { font-family: var(--serif); color: var(--ink); font-weight: 300; }

h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
}

h3 {
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.3;
}

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--accent);
}

p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text);
}

p.lead {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 46ch;
  margin-top: 1.4rem;
  margin-bottom: 2.6rem;
}

a { color: inherit; }

.label, .eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
  display: block;
}

/* ─── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.4rem;
  border: 1px solid;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--white); }

.actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 2rem 0;
}

/* ─── HEADER / NAV ────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 135, 110, 0.12);
  transition: var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  max-width: 1200px;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.brand { display: flex; align-items: center; text-decoration: none; line-height: 1; }
.brand-logo { height: 64px; width: auto; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--ink); }

/* ─── SECTION RHYTHM ──────────────────────────── */
.section { padding: 7rem 0; }
.section.alt { background: var(--white); }

main { padding-top: 88px; }

/* ─── HERO ────────────────────────────────────── */
.hero {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff5f2 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,135,110,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}

.hero h1 {
  margin-bottom: 0.4rem;
  letter-spacing: -0.015em;
}

.hero .actions { margin-top: 0.5rem; }

.hero-card {
  background: var(--neutral);
  padding: 1.8rem 2rem;
  border-left: 2px solid var(--accent);
}

.hero-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.hero-card p {
  font-size: 0.93rem;
  color: var(--text);
}

.copy-stack {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.copy-stack > p { margin-bottom: 0; max-width: 56ch; }

/* ─── TEXT GRID (Sound Familiar / intro section) ── */
.section .text-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.text-grid h2 { max-width: 30ch; }

.section:nth-of-type(2) { background: var(--bg); }

/* ─── ABOUT (portrait + copy) ─────────────────── */
.portrait-card {
  background: var(--neutral);
  padding: 1.4rem;
  border: 1.5px dashed var(--blush);
  max-width: 320px;
}

.portrait-card img { border-radius: 2px; }

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.4rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--neutral);
}

.metric strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.metric span {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.75;
}

/* ═══════════════════════════════════════════════
   SERVICES — original design
═══════════════════════════════════════════════ */
.services-section {
  background: var(--white);
  padding: 7rem 4rem;
}

.services-inner { max-width: 1080px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 4rem;
  background: var(--neutral);
}

.service-card {
  background: var(--white);
  padding: 3rem;
  transition: background var(--transition);
  cursor: default;
}

.service-card:hover { background: var(--bg); }

.service-icon {
  width: 36px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 2rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--ink);
}

.service-card .service-outcome {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.service-card p {
  font-size: 0.95rem;
  max-width: none;
  margin-bottom: 1.4rem;
  color: var(--text);
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 135, 110, 0.18);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.service-card ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   CONTACT — original design
═══════════════════════════════════════════════ */
.contact-page {
  background: var(--bg);
  padding: 7rem 4rem;
}

.contact-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.contact-left h1 { margin-bottom: 1.6rem; font-size: clamp(2.4rem, 5vw, 4rem); }
.contact-left p { margin-bottom: 1.2rem; }

.contact-expect {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--neutral);
}

.contact-expect .label { margin-bottom: 1.4rem; }

.expect-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
  align-items: flex-start;
}

.expect-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.6rem;
  flex-shrink: 0;
}

.expect-item p {
  font-size: 0.95rem;
  max-width: none;
}

.contact-form {
  background: var(--white);
  padding: 3.5rem;
}

.form-note {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text);
  text-align: center;
}

.form-note a { color: var(--text); border-bottom: 1px solid rgba(84,86,87,0.3); text-decoration: none; }

/* ═══════════════════════════════════════════════
   FOOTER — original design
═══════════════════════════════════════════════ */
.site-footer { background: var(--ink); }

.footer-cta {
  padding: 5rem 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1080px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-cta-left h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.footer-cta-left h3 em { font-style: italic; color: var(--blush); }

.footer-cta-email {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  margin-top: 0.8rem;
}

.footer-cta-email a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}
.footer-cta-email a:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }

.btn-footer {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.4rem;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  background: transparent;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}
.btn-footer:hover { background: var(--accent); border-color: var(--accent); }

.footer-bottom {
  padding: 1.8rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-text {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

.footer-text:hover { color: var(--white); }

.footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-nav a {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  .wrap { padding: 0 1.8rem; }
  .nav { padding: 1.1rem 1.8rem; }
  .section { padding: 5rem 0; }
  .hero { padding-top: 7rem; padding-bottom: 4rem; }
  .hero-grid,
  .section .text-grid,
  .metric-grid,
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .services-section, .contact-page { padding: 5rem 1.8rem; }
  .footer-cta { flex-direction: column; text-align: center; padding: 3.5rem 1.8rem; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 1.8rem; }
}
