/* ==============================================
   Ørnsyn — Shared Design System
   style.css · applies to all pages
   ============================================== */

/* TOKENS */
:root {
  --bg:        #09090a;
  --bg1:       #0e0e0f;
  --bg2:       #131314;
  --border:    #1f1f21;
  --border2:   #272729;
  --accent:    #c4ef54;
  --accent-d:  #86a835;
  --accent-bg: #151c04;
  --text:      #e6e4de;
  --mid:       #92908a;
  --muted:     #78766f;
  --red:       #d4533a;
  --pad:       clamp(1.4rem, 6vw, 5rem);
  --mw:        1080px;
  /* aliases used by secondary pages */
  --bg-2:      #0e0e0f;
  --border-2:  #272729;
  --dim:       #78766f;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --mono:      'IBM Plex Mono', monospace;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.012'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
  opacity: 0.6;
}
a { color: inherit; text-decoration: none; }
.container { max-width: var(--mw); margin: 0 auto; padding: 0 var(--pad); }

/* EYEBROW */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before { content: ''; width: 16px; height: 1px; background: var(--accent); flex-shrink: 0; }
.eyebrow.dim { color: var(--muted); }
.eyebrow.dim::before { background: var(--muted); }

/* REVEAL */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.hidden { opacity: 0; transform: translateY(20px); }

/* NAV BRAND */
.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-mark {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}
.brand-tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 300;
  color: var(--muted);
  margin-left: 0.5rem;
  letter-spacing: 0.06em;
}

/* NAV */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 60px;
  background: rgba(9,9,10,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  height: 100%;
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--accent); }
.nav-cta {
  border: 0.5px solid rgba(196,239,84,0.5) !important;
  padding: 0.42rem 1.1rem;
  color: var(--accent) !important;
  transition: background 0.2s, color 0.2s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent) !important; color: var(--bg) !important; }
.mobile-menu .nav-cta {
  align-self: flex-start;
  margin-top: 0.2rem;
  padding: 0.42rem 1.1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--mid);
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: var(--bg1);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem var(--pad);
  z-index: 499;
  flex-direction: column;
  gap: 1.2rem;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
  padding: 0.4rem 0;
}
.mobile-menu a:hover { color: var(--text); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.8rem;
  cursor: pointer;
  transition: all 0.22s;
  white-space: nowrap;
  border: none;
}
.btn-solid { background: var(--accent); color: var(--bg); }
.btn-solid:hover { background: #a8cc3a; }
.btn-outline { background: transparent; color: var(--mid); border: 1px solid var(--border2); }
.btn-outline:hover { border-color: var(--mid); color: var(--text); gap: 1.1rem; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* FOOTER */
footer {
  background: var(--bg1);
  border-top: 1px solid var(--border);
  padding: 1.8rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.7rem; }
.footer-mark { width: 24px; height: 24px; }
.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer-privacy {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-privacy:hover { color: var(--text); }
.footer-copy { font-size: 10px; color: var(--muted); letter-spacing: 0.04em; }
.footer-copy a { color: var(--muted); transition: color 0.2s; }
.footer-copy a:hover { color: var(--text); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

/* HERO */
#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  mask-image: radial-gradient(ellipse 80% 70% at 65% 40%, black 10%, transparent 80%);
}
.hero-glow {
  position: absolute;
  top: 10%; right: 5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,239,84,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--mw);
  margin: 0 auto;
  padding: clamp(4rem, 10vh, 6rem) var(--pad) clamp(3rem, 6vh, 4.5rem);
  width: 100%;
}
.hero-inner .eyebrow { margin-bottom: 2rem; animation: fadeUp 0.7s ease 0.1s both; }
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 800px;
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero-headline em { font-style: italic; font-weight: 300; color: var(--accent); }
.hero-row {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.35s both;
}
.hero-sub {
  font-size: 13px;
  color: var(--mid);
  max-width: 400px;
  line-height: 1.9;
}
.hero-sub strong { color: var(--text); font-weight: 500; }
.hero-no-conflict {
  margin-top: 1.2rem;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  max-width: 400px;
  line-height: 1.7;
  border-left: 2px solid var(--accent);
  padding-left: 0.9rem;
}
.hero-btns { display: flex; gap: 0.8rem; flex-wrap: wrap; flex-shrink: 0; align-self: flex-end; }
.hero-stats {
  margin-top: clamp(2.5rem, 5vh, 4rem);
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: clamp(2rem, 5vw, 4.5rem);
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.5s both;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-num span { color: var(--accent); }
.stat-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ABOUT */
#about {
  padding: clamp(4rem, 9vw, 7rem) 0;
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.about-photo {
  width: 100%;
  max-width: 280px;
  margin-bottom: 1.8rem;
  border: 1px solid var(--border2);
  overflow: hidden;
}
.about-photo img { width: 100%; display: block; filter: grayscale(20%); }
.about-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin: 1.5rem 0 0.4rem;
}
.about-role {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}
.cred-list { display: flex; flex-direction: column; gap: 0.65rem; }
.cred { display: flex; align-items: center; gap: 0.8rem; font-size: 12px; color: var(--mid); }
.cred::before { content: '→'; color: var(--accent); flex-shrink: 0; }
.about-body { font-size: 14px; color: var(--mid); line-height: 1.95; }
.about-body p + p { margin-top: 1.2rem; }
.about-body strong { color: var(--text); font-weight: 500; }
.about-body .no-conflict {
  margin-top: 1.6rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--border2);
  border-left: 2px solid var(--accent);
  background: var(--bg2);
  font-size: 13px;
  color: var(--mid);
  line-height: 1.85;
}
.quote-box {
  margin-top: 2rem;
  border: 1px solid var(--border2);
  background: var(--bg2);
  padding: 1.8rem;
  position: relative;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.55;
  padding-top: 1.8rem;
}
.quote-label {
  margin-top: 0.8rem;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.6;
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.3;
  position: absolute;
  top: 0.2rem;
  left: 1.2rem;
}

/* HOW I WORK */
#how {
  padding: clamp(4rem, 9vw, 7rem) 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg1);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  flex-wrap: wrap;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-top: 1rem;
}
.section-aside {
  font-size: 12px;
  color: var(--muted);
  max-width: 260px;
  line-height: 1.8;
  text-align: right;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.step { background: var(--bg1); padding: 2.2rem 2rem; transition: background 0.25s; }
.step:hover { background: var(--bg2); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--border2);
  line-height: 1;
  margin-bottom: 1.2rem;
  transition: color 0.25s;
}
.step:hover .step-num { color: var(--accent-bg); }
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.step-desc { font-size: 12px; color: var(--muted); line-height: 1.8; }

/* SERVICES */
#services {
  padding: clamp(4rem, 9vw, 7rem) 0;
  border-bottom: 1px solid var(--border);
}
.services-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--mid);
  max-width: 640px;
  line-height: 1.4;
  margin: 1rem 0 clamp(2.5rem, 5vw, 4rem);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}
.svc {
  background: var(--bg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.svc::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.35s ease;
}
.svc:hover { background: var(--bg2); }
.svc:hover::after { width: 100%; }
.svc-icon {
  width: 34px; height: 34px;
  border: 1px solid var(--border2);
  display: grid;
  place-items: center;
  font-size: 15px;
  color: var(--accent);
}
.svc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.svc-desc { font-size: 12px; color: var(--muted); line-height: 1.85; flex: 1; }
.svc-tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-d);
  border: 1px solid rgba(196,239,84,0.15);
  background: var(--accent-bg);
  padding: 3px 8px;
  width: fit-content;
}
.not-offered-card {
  background: var(--bg1);
  border-left: 2px solid var(--red);
  cursor: default;
}
.not-offered-card::after { display: none; }
.not-offered-card:hover { background: var(--bg1); }
.no-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
}
.no-text { font-size: 12px; color: var(--muted); line-height: 1.7; }
.no-text strong { color: var(--mid); font-weight: 500; }

/* PRICING */
#pricing {
  padding: clamp(4rem, 9vw, 7rem) 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg1);
}
.p-section { margin-top: 0.5rem; }
.p-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  padding: 2.2rem 0 0;
  border-top: 1px solid var(--border2);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.p-label::after { content: ''; flex: 1; height: 1px; background: var(--border); max-width: 60px; }
.p-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(196,239,84,0.2);
  background: var(--accent-bg);
  padding: 2px 8px;
  font-weight: 400;
}
.p-section-intro {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 580px;
  padding: 0.6rem 0 0.4rem;
}
.p-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 3rem;
  align-items: start;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  position: relative;
  cursor: default;
}
.p-row::before {
  content: '';
  position: absolute;
  left: calc(var(--pad) * -1);
  right: calc(var(--pad) * -1);
  top: 0; bottom: 0;
  background: var(--bg2);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.p-row:hover::before { opacity: 1; }
.p-body { position: relative; z-index: 1; }
.p-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.p-desc { font-size: 12px; color: var(--muted); line-height: 1.8; max-width: 520px; }
.p-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 0.5rem;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-bg);
  border: 1px solid rgba(196,239,84,0.15);
  padding: 3px 8px;
}
.p-badge::before { content: '●'; font-size: 6px; }
.p-price { position: relative; z-index: 1; text-align: right; white-space: nowrap; }
.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1.1;
}
.price.agree {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.price-sub { font-size: 10px; color: var(--muted); letter-spacing: 0.06em; margin-top: 3px; display: block; }
.p-disclaimer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* CONTACT */
#contact {
  padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(5rem, 11vw, 9rem);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.contact-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  margin: 1.2rem 0 1.4rem;
}
.contact-heading em { font-style: italic; font-weight: 300; color: var(--accent); }
.contact-note { font-size: 13px; color: var(--mid); line-height: 1.85; max-width: 380px; }
.contact-note strong { color: var(--text); font-weight: 500; }
.c-label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.2rem; }
.c-value { font-size: 13px; color: var(--text); }
.contact-location {
  display: flex;
  gap: 0.7rem;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.contact-location::before { content: '◉'; color: var(--accent); font-size: 10px; }

/* CONTACT LINKS */
.contact-links {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.c-link {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
}
.c-link:last-child { border-bottom: 1px solid var(--border); }
.c-link-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.2s;
}
.c-link-line {
  height: 0px;
  background: var(--border);
  transition: background 0.2s;
}
.c-link-value {
  font-size: 13px;
  color: var(--text);
  white-space: nowrap;
  transition: color 0.2s;
}
.c-link-arrow {
  color: var(--text);
  font-size: 1rem;
  transition: transform 0.2s, color 0.2s;
  margin-right: 0.5rem;
}
.c-link:hover .c-link-arrow { color: var(--text); transform: translateX(2px); }
.c-link:hover .c-link-value { color: var(--text); }
.c-link:hover .c-link-label { color: var(--accent); }
.c-link:hover .c-link-line { background: var(--border2); }

/* CONTACT SEPARATOR */
.cf-separator {
  margin: 1.8rem 0 1.4rem;
  height: 1px;
  background: var(--border2);
  position: relative;
}

/* CONTACT FORM */
.cf-honeypot { display: none; }
.cf-form-items {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
.cf-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.cf-group:focus-within .c-label { color: var(--accent); }
.cf-field {
  border: 1px solid var(--border2);
  background: var(--bg1);
  transition: border-color 0.2s, background 0.2s;
  cursor: text;
}
.cf-field:not(:focus-within):hover {
  border-color: var(--accent);
  background: var(--bg2);
}
.cf-group:not(:focus-within):hover .c-label { color: var(--mid); }
.cf-field:focus-within {
  border-color: var(--accent);
  background: var(--bg2);
}
.cf-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  line-height: 1.6;
  width: 100%;
  -webkit-appearance: none;
  padding: 1rem 1.5rem;
  display: block;
}
.cf-input::placeholder { color: var(--muted); }
.cf-textarea { resize: none; min-height: 120px; }
.cf-footer {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
}
.cf-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 1.4rem;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-bg);
  border: 1px solid rgba(196,239,84,0.18);
  padding: 4px 10px;
}
.cf-btn {
  width: 100%;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.2rem 1.8rem;
}
.cf-privacy {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.7;
}
.cf-success {
  border: 1px solid var(--border2);
  border-left: 2px solid var(--accent);
  background: var(--bg1);
  padding: 1.2rem 1.5rem;
  font-size: 13px;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 0.8rem;
}

/* RESPONSIVE */
@media (max-width: 750px) {
  .brand-tagline { display: none; }
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .section-aside { text-align: left; }
}
@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    width: 100%;
  }
  .footer-copy,
  .footer-privacy {
    text-align: left;
  }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .brand-tagline { display: none; }
  .p-row { grid-template-columns: 1fr; }
  .p-price { text-align: left; }
  .hero-stats { gap: 1.5rem; }
  .hero-row { flex-direction: column; align-items: flex-start; }
  #hero { justify-content: flex-start; min-height: auto; }
  .hero-inner { padding-top: 3.5rem; }
}

/* NAV BACK */
.nav-back {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--dim);
  text-transform: none;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--accent); }

/* PRIVACY */
.privacy-content {
  padding: clamp(5rem, 10vw, 7rem) 0 clamp(4rem, 8vw, 6rem);
  max-width: 680px;
}
.privacy-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 1.2rem 0 0.6rem;
}
.privacy-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin: 2.8rem 0 0.8rem;
  letter-spacing: -0.01em;
}
.privacy-content p:not(.eyebrow) {
  font-size: 12px;
  color: var(--text);
  line-height: 2;
  margin-bottom: 1.2rem;
}
.privacy-content p.updated {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.privacy-content .highlight {
  border-left: 2px solid var(--accent);
  padding: 1rem 1.4rem;
  margin: 2rem 0;
  background: var(--accent-bg);
}
.privacy-content .highlight p {
  margin: 0;
  color: var(--text);
}
