/* =========================================================
   Ladyz Empire — main stylesheet
   Theme: DARK warm near-black  #141015  with PLUM #A21CAF
   ========================================================= */

:root {
  --bg: #141015;
  --bg-soft: #1b141d;
  --bg-raise: #231824;
  --bg-deep: #2E0B30;
  --ink: #F4EDF3;
  --ink-soft: #C7B6C4;
  --ink-dim: #9C8B99;
  --accent: #A21CAF;
  --accent-dark: #86198F;
  --accent-light: #F0ABFC;
  --accent-glow: #5B1262;
  --line: #2E2230;
  --ok: #6FE3A0;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

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

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

body {
  font-size: 16px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

main {
  display: block;
}

/* ---------- Feather Navigation ---------- */
.feather-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #141015;
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.wordmark {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--ink);
}

.wordmark .wm-accent {
  color: var(--accent-light);
}

/* CSS-drawn feather */
.feather-icon {
  position: relative;
  width: 26px;
  height: 38px;
  flex: 0 0 auto;
}

.feather-icon .shaft {
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  transform: translateX(-50%);
  background: var(--accent-light);
  border-radius: 3px;
}

.feather-icon .shaft::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top: 7px solid #E8C7EC;
}

.feather-icon .vane {
  position: absolute;
  top: 6px;
  width: 11px;
  height: 27px;
  background: linear-gradient(165deg, var(--accent), var(--accent-dark));
  border-radius: 60% 40% 60% 40%;
}

.feather-icon .vane.left {
  left: 1px;
  transform: rotate(9deg);
}

.feather-icon .vane.right {
  right: 1px;
  transform: rotate(-9deg) scaleX(-1);
}

.feather-icon .barb {
  position: absolute;
  left: 50%;
  width: 8px;
  height: 2px;
  background: var(--accent-light);
  border-radius: 2px;
  transform: translateX(-50%);
}

.feather-icon .barb.b1 { top: 10px; }
.feather-icon .barb.b2 { top: 15px; }
.feather-icon .barb.b3 { top: 20px; }
.feather-icon .barb.b4 { top: 25px; }
.feather-icon .barb.b5 { top: 30px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0 auto;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-light);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  flex: 0 0 auto;
  display: inline-block;
  background-color: var(--accent);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 15px;
  padding: 11px 22px;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.nav-cta:hover {
  background-color: var(--accent-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 9px;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background-color: var(--accent);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
  transform: translateY(-2px);
}

/* ---------- Dove Hero ---------- */
.dove-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 130px 40px 70px;
  max-width: 1180px;
  margin: 0 auto;
  gap: 30px;
}

.hero-copy {
  flex: 1 1 55%;
  max-width: 600px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.06;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-meta li {
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-meta .hm-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--ink-dim);
}

/* CSS-drawn dove */
.dove-scene {
  flex: 1 1 45%;
  position: relative;
  height: 440px;
  max-width: 460px;
  filter: drop-shadow(0 0 34px rgba(162, 28, 175, 0.35));
}

.dove-scene .glow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 28, 175, 0.28), rgba(162, 28, 175, 0) 68%);
}

.dove {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 200px;
  transform: translate(-50%, -52%) rotate(-4deg);
}

.dove .body {
  position: absolute;
  left: 66px;
  top: 72px;
  width: 120px;
  height: 78px;
  background: linear-gradient(145deg, var(--accent-light), var(--accent) 55%, var(--accent-dark));
  border-radius: 48% 52% 50% 50%;
}

.dove .head {
  position: absolute;
  left: 40px;
  top: 34px;
  width: 46px;
  height: 44px;
  background: linear-gradient(150deg, var(--accent-light), var(--accent));
  border-radius: 50%;
}

.dove .eye {
  position: absolute;
  left: 50px;
  top: 48px;
  width: 7px;
  height: 7px;
  background: var(--bg-deep);
  border-radius: 50%;
}

.dove .beak {
  position: absolute;
  left: 24px;
  top: 48px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 18px solid var(--accent-dark);
}

.dove .wing {
  position: absolute;
  left: 108px;
  top: 10px;
  width: 108px;
  height: 150px;
  background: linear-gradient(160deg, var(--accent), var(--accent-dark));
  border-radius: 70% 30% 55% 45%;
  transform: rotate(14deg);
  box-shadow: inset -12px -10px 0 rgba(46, 11, 48, 0.4);
}

.dove .wing .f1,
.dove .wing .f2,
.dove .wing .f3 {
  position: absolute;
  left: 22%;
  height: 3px;
  border-radius: 3px;
  background: var(--accent-light);
}

.dove .wing .f1 { top: 38px; width: 62px; transform: rotate(16deg); }
.dove .wing .f2 { top: 62px; width: 74px; transform: rotate(14deg); }
.dove .wing .f3 { top: 86px; width: 64px; transform: rotate(12deg); }

.dove .tail {
  position: absolute;
  left: 146px;
  top: 110px;
  width: 0;
  height: 0;
}

.dove .tail .tf1,
.dove .tail .tf2,
.dove .tail .tf3 {
  position: absolute;
  width: 44px;
  height: 16px;
  background: var(--accent-dark);
  border-radius: 50%;
  transform-origin: left center;
}

.dove .tail .tf1 { transform: rotate(28deg); }
.dove .tail .tf2 { transform: rotate(52deg); }
.dove .tail .tf3 { transform: rotate(76deg); }

.dove .branch {
  position: absolute;
  left: 16px;
  top: 56px;
  width: 3px;
  height: 40px;
  background: var(--accent-dark);
  border-radius: 3px;
  transform: rotate(14deg);
}

.dove .branch .leaf {
  position: absolute;
  width: 13px;
  height: 7px;
  background: var(--accent-light);
  border-radius: 60% 40% 60% 40%;
}

.dove .branch .l1 { left: -9px; top: 6px; transform: rotate(-30deg); }
.dove .branch .l2 { left: 2px; top: 18px; transform: rotate(24deg); }
.dove .branch .l3 { left: -8px; top: 26px; transform: rotate(-24deg); }

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-light);
}

.particle.p1 { top: 18%; left: 14%; }
.particle.p2 { top: 28%; right: 12%; width: 6px; height: 6px; }
.particle.p3 { bottom: 20%; left: 20%; width: 5px; height: 5px; }
.particle.p4 { bottom: 30%; right: 22%; width: 10px; height: 10px; }

/* ---------- Statement row ---------- */
.statement-row {
  padding: 90px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background-color: var(--bg-soft);
}

.statement {
  max-width: 1000px;
  margin: 0 auto;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.25;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
}

.statement::before {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 0 auto 30px;
  border-radius: 4px;
}

/* ---------- Section head ---------- */
.section-head {
  max-width: 720px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-lede {
  font-size: 17px;
  color: var(--ink-soft);
}

/* ---------- Impact / stats ---------- */
.impact-section {
  padding: 90px 28px;
}

.stats-band {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat {
  background-color: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 24px;
  text-align: center;
}

.stat-num {
  display: block;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-num::after {
  content: "+";
  color: var(--accent);
}

.stat-label {
  font-size: 14px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* ---------- Studio / who we are ---------- */
.studio-section {
  padding: 90px 28px;
  background-color: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.studio-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.studio-copy h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
}

.studio-copy p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-size: 17px;
}

.studio-points {
  margin-top: 10px;
}

.studio-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  color: var(--ink);
  font-size: 16px;
}

.pt-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
  box-shadow: 0 0 0 4px var(--bg-deep);
}

.studio-panel {
  position: relative;
}

.panel-card {
  background: linear-gradient(150deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
}

.panel-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #F3D7F6;
  margin-bottom: 14px;
}

.panel-quote {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.panel-note {
  font-size: 13px;
  color: #F3D7F6;
}

.panel-bar {
  position: absolute;
  left: 26px;
  bottom: -18px;
  width: 60%;
  height: 36px;
  background: var(--bg-deep);
  border-radius: 8px;
  z-index: -1;
}

/* ---------- Process list ---------- */
.process-section {
  padding: 90px 28px;
}

.process-list {
  max-width: 820px;
  margin: 0 auto;
  counter-reset: step;
}

.process-step {
  position: relative;
  display: flex;
  gap: 28px;
  padding: 0 0 44px;
}

.process-step::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 62px;
  bottom: 6px;
  width: 2px;
  background: var(--line);
}

.process-step:last-child::before {
  display: none;
}

.step-num {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--accent-light);
  background-color: var(--bg-raise);
  border: 1px solid var(--accent);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.step-body {
  padding-top: 6px;
}

.step-body h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.step-body p {
  color: var(--ink-soft);
  max-width: 560px;
}

/* ---------- Tiers / comparison table ---------- */
.tiers-section {
  padding: 90px 28px;
  background-color: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.compare-wrap {
  max-width: 980px;
  margin: 0 auto;
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 620px;
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.compare-table thead th {
  background-color: var(--bg-deep);
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.compare-table thead th.co-featured {
  background-color: var(--accent);
  color: #FFFFFF;
}

.compare-table tbody th {
  text-align: left;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 15px;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.yes {
  background-color: var(--ok);
}

.dot.no {
  background-color: var(--bg-deep);
  border: 1px solid var(--line);
}

/* ---------- Catalog horizontal scroll ---------- */
.catalog-section {
  padding: 90px 0;
}

.catalog-section .section-head {
  padding: 0 28px;
}

.catalog-scroll {
  overflow-x: auto;
  padding: 8px 28px 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-raise);
}

.catalog-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.cat-card {
  width: 300px;
  flex: 0 0 auto;
  background-color: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.cat-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.cat-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-deep);
  color: var(--accent-light);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
}

.cat-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.cat-card p {
  font-size: 15px;
  color: var(--ink-soft);
}

.catalog-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
  padding: 0 28px;
}

.scroll-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background-color: var(--bg-raise);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.scroll-btn:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
}

/* ---------- Solutions tabs ---------- */
.solutions-section {
  padding: 90px 28px;
  background-color: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.tabs {
  max-width: 620px;
  margin: 0 auto 30px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background-color: var(--bg-raise);
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
}

.tab-panels {
  max-width: 720px;
  margin: 0 auto;
}

.tab-panel {
  display: none;
  background-color: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 34px;
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.tab-panel p {
  color: var(--ink-soft);
  font-size: 16px;
}

/* ---------- Split CTA band ---------- */
.split-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 70px 28px;
  max-width: 1080px;
  margin: 0 auto;
}

.cta-left h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
}

.cta-right p {
  color: var(--ink-soft);
  margin-bottom: 22px;
  font-size: 17px;
}

/* ---------- Contact ---------- */
.contact-section {
  padding: 90px 28px;
  background-color: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.contact-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.contact-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-list .c-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--ink-dim);
}

.contact-list a {
  color: var(--accent-light);
  font-weight: 600;
}

.contact-form {
  background-color: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}

.field input,
.field textarea {
  width: 100%;
  background-color: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 16px;
  font-family: inherit;
  padding: 13px 15px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-light);
}

.form-note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--accent-light);
  min-height: 20px;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 3px solid var(--accent);
  background-color: var(--bg);
  padding: 56px 28px 0;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}

.footer-brand span {
  color: var(--accent-light);
}

.footer-about p {
  color: var(--ink-soft);
  font-size: 15px;
}

.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: var(--ink-soft);
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: var(--ink);
}

.footer-base {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  text-align: center;
}

.footer-base p {
  font-size: 14px;
  color: var(--ink-dim);
}

/* ---------- Scroll reveal ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-inner {
    gap: 0;
    flex-wrap: wrap;
    align-items: center;
  }

  .feather-nav.open .nav-inner {
    height: auto;
    padding-top: 14px;
    padding-bottom: 18px;
  }

  .feather-nav.open .nav-links {
    display: flex;
    order: 3;
    flex: 1 0 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: #141015;
    border-top: 1px solid var(--line);
    margin: 14px 0 0;
    padding: 4px 0 0;
  }

  .feather-nav.open .nav-links a {
    width: 100%;
    padding: 13px 0;
    font-size: 17px;
    border-bottom: 1px solid var(--line);
  }

  .feather-nav.open .nav-cta {
    display: block;
    order: 4;
    flex: 1 0 100%;
    margin: 16px 0 0;
    text-align: center;
  }

  .nav-toggle span.active:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle span.active:nth-child(2) { opacity: 0; }
  .nav-toggle span.active:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .dove-hero {
    flex-direction: column;
    padding-top: 120px;
    min-height: 0;
  }

  .hero-copy {
    max-width: none;
  }

  .dove-scene {
    width: 100%;
    height: 340px;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .studio-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-cta {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .stats-band {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    flex-direction: column;
    gap: 14px;
  }
}
