/* ============================================================
   Auris AI — aurisaivoice.com
   Dark warm "studio" aesthetic · Fraunces + Archivo
   ============================================================ */

:root {
  --bg: #0F0D0A;
  --bg-tint: #16120D;
  --surface: #1C1712;
  --surface-2: #241D15;
  --line: rgba(244, 237, 227, 0.10);
  --line-strong: rgba(244, 237, 227, 0.18);
  --cream: #F4EDE3;
  --muted: #A29581;
  --faint: #6E6354;
  --accent: #FF7A50;
  --accent-soft: #FFB088;
  --amber: #F5B841;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--bg); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

em { font-style: italic; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: "Fraunces", serif; font-weight: 400; letter-spacing: -0.01em; }

h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  line-height: 1.18;
  max-width: 760px;
}
h2 em { color: var(--accent-soft); }

.eyebrow {
  font-family: "Archivo Expanded", "Archivo", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-solid {
  background: var(--accent);
  color: #1A0E07;
}
.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 122, 80, 0.35);
}
.btn-ghost {
  border-color: var(--line-strong);
  color: var(--cream);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-soft);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15, 13, 10, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-text {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.logo-text em { color: var(--accent); font-style: italic; }

.logo-wave { display: flex; align-items: center; gap: 2.5px; height: 20px; }
.logo-wave i {
  width: 3px;
  border-radius: 2px;
  background: var(--accent);
  animation: wave 1.3s ease-in-out infinite;
}
.logo-wave i:nth-child(1) { height: 8px;  animation-delay: 0s; }
.logo-wave i:nth-child(2) { height: 14px; animation-delay: 0.15s; }
.logo-wave i:nth-child(3) { height: 20px; animation-delay: 0.3s; }
.logo-wave i:nth-child(4) { height: 12px; animation-delay: 0.45s; }
.logo-wave i:nth-child(5) { height: 7px;  animation-delay: 0.6s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.55); }
  50% { transform: scaleY(1); }
}

.nav-links { display: flex; gap: 30px; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 170px 0 90px;
  text-align: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -240px; left: 50%;
  transform: translateX(-50%);
  width: 1100px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(255, 122, 80, 0.16) 0%, rgba(245, 184, 65, 0.05) 42%, transparent 70%);
  pointer-events: none;
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; }

.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 4.8rem);
  line-height: 1.06;
  font-weight: 300;
}
.hero-title span { display: block; }
.hero-title em {
  font-weight: 500;
  background: linear-gradient(100deg, var(--accent-soft) 10%, var(--accent) 55%, var(--amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub {
  margin: 26px auto 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
}
.hero-actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* animated equalizer */
.hero-wave {
  margin: 64px auto 0;
  height: 88px;
  max-width: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.hero-wave i {
  flex: 1;
  max-width: 6px;
  border-radius: 3px;
  background: linear-gradient(to top, rgba(255, 122, 80, 0.25), var(--accent));
  animation: wave var(--dur, 1.4s) ease-in-out var(--del, 0s) infinite;
  height: var(--h, 30px);
}

.hero-stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.stat {
  padding: 28px 12px 4px;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: none; }
.stat-num {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--accent-soft);
  line-height: 1.1;
}
.stat-label { display: block; margin-top: 8px; font-weight: 600; font-size: 0.88rem; }
.stat-sub { display: block; color: var(--faint); font-size: 0.8rem; margin-top: 2px; }

.hero-badge {
  position: absolute;
  top: 96px; right: 38px;
  font-family: "Archivo Expanded", "Archivo", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--faint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  transform: rotate(90deg) translateY(-50%);
  transform-origin: right top;
}

/* ---------- Sections ---------- */
.section { padding: 104px 0; position: relative; }
.section-tint { background: var(--bg-tint); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { margin-bottom: 56px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 30px;
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 80, 0.4);
  background: var(--surface-2);
}
.card h3, .card h4 {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.card p { color: var(--muted); font-size: 0.95rem; }

.card-index {
  display: block;
  font-family: "Archivo Expanded", "Archivo", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 18px;
}

/* ---------- Comparison ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.compare-col { padding: 40px 38px; }
.compare-col h3 {
  font-size: 1.15rem;
  font-family: "Archivo Expanded", "Archivo", sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 24px;
}
.compare-col ul { list-style: none; }
.compare-col li {
  padding: 13px 0 13px 32px;
  border-top: 1px solid var(--line);
  position: relative;
  font-size: 0.95rem;
}
.compare-col li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
}
.compare-old { background: var(--surface); color: var(--muted); }
.compare-old h3 { color: var(--faint); }
.compare-old li::before { content: "✗"; color: var(--faint); }
.compare-new {
  background: linear-gradient(160deg, rgba(255, 122, 80, 0.12), rgba(245, 184, 65, 0.05) 70%), var(--surface-2);
}
.compare-new h3 { color: var(--accent); }
.compare-new li::before { content: "✓"; color: var(--accent); }

/* ---------- Use cases ---------- */
.uc-group { margin-bottom: 44px; }
.uc-group:last-child { margin-bottom: 0; }
.uc-label {
  font-family: "Archivo Expanded", "Archivo", sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.uc-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.uc-card h4 { font-size: 1.18rem; }
.uc-card p { font-style: italic; font-family: "Fraunces", serif; font-size: 1.02rem; color: var(--muted); }
.uc-wide { max-width: none; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 26px;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 122, 80, 0.14);
  border: 1px solid rgba(255, 122, 80, 0.45);
  color: var(--accent);
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.step h3 { font-size: 1.15rem; font-weight: 500; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.9rem; }

.emotion-banner {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 22px;
  background: linear-gradient(120deg, rgba(255, 122, 80, 0.13), rgba(245, 184, 65, 0.06)), var(--surface);
  border: 1px solid rgba(255, 122, 80, 0.3);
  border-radius: 18px;
  padding: 26px 32px;
}
.emotion-banner p { font-size: 1.02rem; color: var(--cream); }
.emotion-banner strong { color: var(--accent-soft); font-weight: 600; }
.emotion-wave { display: flex; align-items: center; gap: 3px; height: 34px; flex-shrink: 0; }
.emotion-wave i {
  width: 4px;
  border-radius: 2px;
  background: var(--accent);
  animation: wave 1.2s ease-in-out infinite;
}
.emotion-wave i:nth-child(1) { height: 12px; animation-delay: 0s; }
.emotion-wave i:nth-child(2) { height: 22px; animation-delay: 0.12s; }
.emotion-wave i:nth-child(3) { height: 34px; animation-delay: 0.24s; }
.emotion-wave i:nth-child(4) { height: 18px; animation-delay: 0.36s; }
.emotion-wave i:nth-child(5) { height: 28px; animation-delay: 0.48s; }
.emotion-wave i:nth-child(6) { height: 14px; animation-delay: 0.6s; }
.emotion-wave i:nth-child(7) { height: 8px;  animation-delay: 0.72s; }

/* ---------- Insight + why cards ---------- */
.insight-card h3, .why-card h3 { font-size: 1.15rem; }

/* ---------- Integrations ---------- */
.integ-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
}
.integ-card h3 {
  font-family: "Archivo Expanded", "Archivo", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill-list li {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.85rem;
  color: var(--cream);
  transition: border-color 0.25s, color 0.25s;
}
.pill-list li:hover { border-color: var(--accent); color: var(--accent-soft); }
.integ-note {
  margin-top: 28px;
  color: var(--faint);
  font-size: 0.88rem;
  text-align: center;
}

/* ---------- Pricing ---------- */
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.price-featured {
  background: linear-gradient(165deg, rgba(255, 122, 80, 0.14), rgba(245, 184, 65, 0.05) 60%), var(--surface-2);
  border-color: rgba(255, 122, 80, 0.45);
  position: relative;
}
.price-tag {
  font-family: "Archivo Expanded", "Archivo", sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.price-card h3 { font-size: 1.3rem; font-weight: 500; }
.price-amount {
  font-family: "Fraunces", serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--cream);
  margin-top: 12px;
  line-height: 1.1;
}
.price-amount span { font-size: 1.05rem; color: var(--muted); }
.price-sub { color: var(--faint); font-size: 0.85rem; margin: 6px 0 24px; }
.check-list { list-style: none; margin-top: auto; }
.check-list li {
  padding: 10px 0 10px 28px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--muted);
  position: relative;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  color: var(--accent);
  font-weight: 700;
}
.price-note {
  text-align: center;
  color: var(--faint);
  font-size: 0.88rem;
  margin-top: 28px;
}

.cost-compare {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cost-side {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 32px;
}
.cost-side h3 { font-size: 1.25rem; font-weight: 500; margin-bottom: 6px; }
.cost-formula { color: var(--faint); font-size: 0.85rem; margin-bottom: 22px; }
.cost-rows { list-style: none; }
.cost-rows li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--muted);
}
.cost-rows strong { color: var(--cream); font-weight: 600; white-space: nowrap; }
.cost-total { border-top: 1px solid var(--line-strong) !important; }
.cost-total span { color: var(--cream); font-weight: 600; }
.cost-total strong {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent-soft);
}
.cost-human { opacity: 0.85; }
.cost-human .cost-total strong { color: var(--muted); }
.cost-verdict {
  margin-top: 32px;
  text-align: center;
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.cost-verdict strong { color: var(--accent-soft); font-weight: 500; }

/* ---------- Savings calculator ---------- */
.calc {
  margin-top: 64px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 40px 38px 28px;
}
.calc-head h3 {
  font-size: 1.6rem;
  font-weight: 500;
}
.calc-head h3 em { color: var(--accent-soft); }
.calc-head p { color: var(--muted); font-size: 0.92rem; margin-top: 6px; }
.calc-body {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: stretch;
}
.calc-control { margin-bottom: 26px; }
.calc-control label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.calc-control output {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent-soft);
}
.calc-control input[type="range"] {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--accent) 0%, var(--accent) var(--fill, 4%), rgba(244, 237, 227, 0.14) var(--fill, 4%));
  outline: none;
  cursor: pointer;
}
.calc-control input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #1A0E07;
  box-shadow: 0 0 0 1px var(--accent), 0 4px 12px rgba(255, 122, 80, 0.4);
  transition: transform 0.15s var(--ease);
}
.calc-control input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-control input[type="range"]::-moz-range-thumb {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #1A0E07;
  box-shadow: 0 0 0 1px var(--accent), 0 4px 12px rgba(255, 122, 80, 0.4);
}
.calc-rows { margin-top: 4px; }
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--muted);
}
.calc-row small { display: block; font-size: 0.75rem; color: var(--faint); }
.calc-row strong {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  white-space: nowrap;
}
.calc-result {
  background: linear-gradient(165deg, rgba(255, 122, 80, 0.16), rgba(245, 184, 65, 0.06) 65%), var(--surface-2);
  border: 1px solid rgba(255, 122, 80, 0.45);
  border-radius: 18px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.calc-result-label {
  font-family: "Archivo Expanded", "Archivo", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}
.calc-saving {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 4.4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-top: 10px;
  background: linear-gradient(100deg, var(--accent-soft), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.calc-percent { color: var(--cream); font-size: 0.95rem; margin-top: 6px; }
.calc-annual {
  margin: 22px 0 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 122, 80, 0.3);
  font-size: 0.95rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.calc-annual strong {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--accent-soft);
}
.calc-note { font-size: 0.8rem; color: var(--faint); }
.calc-fine {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.78rem;
  line-height: 1.55;
}

/* ---------- Contact ---------- */
.contact { overflow: hidden; }
.contact-glow {
  position: absolute;
  bottom: -300px; left: 50%;
  transform: translateX(-50%);
  width: 1200px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(255, 122, 80, 0.13) 0%, transparent 65%);
  pointer-events: none;
}
.contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-copy h2 { font-size: clamp(2rem, 4vw, 3rem); }
.contact-sub { margin-top: 18px; color: var(--muted); max-width: 400px; }
.contact-stats {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 380px;
}
.contact-stats div {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  font-size: 0.82rem;
  color: var(--faint);
}
.contact-stats span {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  color: var(--accent-soft);
  line-height: 1.2;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 38px 36px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.contact-form h3 {
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 26px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--cream);
  font-family: "Archivo", sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--faint); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 122, 80, 0.18);
}
.form-field input.invalid,
.form-field textarea.invalid { border-color: #E2574C; }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A29581' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.contact-form .btn { margin-top: 6px; }
.form-status {
  margin-top: 14px;
  font-size: 0.88rem;
  min-height: 1.4em;
  color: var(--muted);
}
.form-status.ok { color: #8FD694; }
.form-status.err { color: #E2574C; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 44px;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.footer-tag {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--muted);
}
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent-soft); }
.footer-fine { color: var(--faint); font-size: 0.8rem; margin-top: 10px; }

/* ---------- Reveal animations ----------
   Hidden state only applies when JS is running (html.js set inline
   in <head>), so content is always visible without JavaScript. */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: 0.1s; }
.js .reveal.d2 { transition-delay: 0.2s; }
.js .reveal.d3 { transition-delay: 0.3s; }
.js .reveal.d4 { transition-delay: 0.4s; }
.js .reveal.d5 { transition-delay: 0.5s; }
.js .reveal.d6 { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .logo-wave i, .hero-wave i, .emotion-wave i { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-badge { display: none; }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .hero { padding: 130px 0 64px; }
  .grid-2, .grid-3, .steps { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .cost-compare { grid-template-columns: 1fr; }
  .calc { padding: 30px 24px 22px; }
  .calc-body { grid-template-columns: 1fr; gap: 28px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); border-top: none; }
  .stat { border-left: none; border-top: 1px solid var(--line); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .br-desk { display: none; }
  .emotion-banner { flex-direction: column; text-align: center; }

  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(15, 13, 10, 0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-burger { display: flex; }
}
