:root {
  --ink: #1c163a;
  --ink-2: #2a2255;
  --cream: #f6f1e6;
  --cream-2: #efe7d4;
  --lavender: #c9b8ff;
  --amber: #eac985;
  --rose: #e8a8a0;
  --line: rgba(28, 22, 58, 0.12);
  --shadow: 0 18px 40px -22px rgba(28, 22, 58, 0.45);
  --radius: 18px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --header-h: 64px;
  --footer-h: 120px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  font-size: 15px;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
h1,
h2,
h3,
h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
}
h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  font-weight: 400;
}
h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  font-weight: 400;
}
h3 {
  font-size: 1.15rem;
  font-weight: 500;
}
p {
  margin: 0.5em 0;
}
a {
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.25s;
}
a:hover {
  opacity: 0.7;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
main {
  flex: 1;
}
section {
  padding: 64px 0;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
}
.site-header.scrolled {
  position: fixed;
  background: rgba(246, 241, 230, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}
.site-header.scrolled.visible {
  transform: translateY(0);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  font-weight: 500;
}
.brand-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--amber), var(--ink) 75%);
  box-shadow: inset -3px -4px 6px rgba(0, 0, 0, 0.35);
}
.brand-text {
  letter-spacing: 0.01em;
}
.menu-toggle {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition:
    transform 0.3s,
    background 0.3s;
  z-index: 101;
}
.menu-toggle:hover {
  transform: rotate(90deg);
}
.menu-toggle .icon-close {
  display: none;
}
.menu-toggle.open .icon-open {
  display: none;
}
.menu-toggle.open .icon-close {
  display: inline;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: linear-gradient(160deg, #1c163a 0%, #2a2255 60%, #3a2b6b 100%);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s;
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}
.nav-overlay::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vmin;
  height: 60vmin;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(234, 201, 133, 0.18),
    transparent 65%
  );
  pointer-events: none;
}
.nav-overlay::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 55vmin;
  height: 55vmin;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 184, 255, 0.16),
    transparent 65%
  );
  pointer-events: none;
}
.nav-overlay nav {
  position: relative;
  text-align: center;
  padding: 30px;
}
.nav-overlay ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nav-overlay a {
  color: var(--cream);
  font-family: "Fraunces", serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 8px;
  transition:
    color 0.3s,
    letter-spacing 0.3s;
}
.nav-overlay a:hover,
.nav-overlay a.active {
  color: var(--amber);
  letter-spacing: 0.04em;
  opacity: 1;
}
.nav-meta {
  margin-top: 34px;
  font-size: 0.85rem;
  opacity: 0.7;
  font-family: "Manrope", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 80% 0%,
      rgba(201, 184, 255, 0.35),
      transparent 55%
    ),
    radial-gradient(
      ellipse at 10% 90%,
      rgba(234, 201, 133, 0.25),
      transparent 55%
    );
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}
.hero p.lede {
  font-size: 1.05rem;
  max-width: 46ch;
  color: #3a335c;
  margin-top: 14px;
}
.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.92rem;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  opacity: 1;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  opacity: 1;
}
.hero-visual {
  position: relative;
}
.hero-frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--cream);
  padding: 14px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
}
.hero-badge i {
  font-size: 1.6rem;
  color: var(--ink);
}
.hero-badge strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1rem;
}
.hero-badge span {
  font-size: 0.78rem;
  opacity: 0.7;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.section-head .kicker {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  display: block;
  margin-bottom: 10px;
}
.section-head p {
  max-width: 42ch;
  color: #3a335c;
  font-size: 0.95rem;
}

.pillars {
  background: var(--cream-2);
  position: relative;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pillar {
  background: var(--cream);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.3s;
}
.pillar:hover {
  transform: translateY(-4px);
}
.pillar i {
  font-size: 1.8rem;
  color: var(--ink);
  margin-bottom: 14px;
  display: block;
}
.pillar h3 {
  margin-bottom: 8px;
}
.pillar p {
  font-size: 0.88rem;
  color: #4a4370;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: var(--shadow);
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.stat {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--cream-2);
  border: 1px solid var(--line);
}
.stat strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
}
.stat span {
  font-size: 0.78rem;
  opacity: 0.7;
}

.timeline {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 24px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  opacity: 0.25;
}
.step i {
  font-size: 1.6rem;
  color: var(--ink);
  display: block;
  margin-bottom: 12px;
}
.step h3 {
  margin-bottom: 6px;
}
.step p {
  font-size: 0.88rem;
  color: #4a4370;
}

.voices {
  background: var(--ink);
  color: var(--cream);
}
.voices h2,
.voices h3 {
  color: var(--cream);
}
.voices .kicker {
  color: var(--lavender);
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.voice {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.voice .stars {
  color: var(--amber);
  font-size: 0.85rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.voice p {
  font-size: 0.92rem;
  font-style: italic;
  color: #e2dcc9;
}
.voice .who {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 0.82rem;
}
.voice .who .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  color: var(--ink);
}

.faq {
  background: var(--cream-2);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
details.qa {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: box-shadow 0.25s;
}
details.qa[open] {
  box-shadow: var(--shadow);
}
details.qa summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
}
details.qa summary::-webkit-details-marker {
  display: none;
}
details.qa summary::after {
  content: "+";
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.3s;
}
details.qa[open] summary::after {
  content: "−";
}
details.qa p {
  margin-top: 10px;
  font-size: 0.92rem;
  color: #4a4370;
}

.cta-band {
  background: linear-gradient(135deg, #1c163a, #3a2b6b);
  color: var(--cream);
  text-align: center;
  padding: 70px 20px;
}
.cta-band h2 {
  color: var(--cream);
  max-width: 22ch;
  margin: 0 auto 14px;
}
.cta-band p {
  opacity: 0.85;
  max-width: 48ch;
  margin: 0 auto 24px;
}

.subhero {
  position: relative;
  padding: 130px 0 60px;
}
.subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(201, 184, 255, 0.35),
    transparent 60%
  );
  pointer-events: none;
}
.subhero-inner {
  position: relative;
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}
.subhero p {
  margin-top: 14px;
  color: #3a335c;
}
.crumbs {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 14px;
}

.products {
  padding-top: 24px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product {
  position: relative;
  padding: 30px 26px;
  border-radius: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.product.featured {
  background: linear-gradient(180deg, #2a2255, #1c163a);
  color: var(--cream);
  border-color: transparent;
}
.product.featured h3 {
  color: var(--cream);
}
.product.featured .price {
  color: var(--amber);
}
.product.featured ul li::before {
  color: var(--amber);
}
.product .tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--amber);
  color: var(--ink);
}
.product .price {
  font-family: "Fraunces", serif;
  font-size: 2.1rem;
  line-height: 1;
}
.product .price small {
  font-size: 0.85rem;
  opacity: 0.7;
}
.product ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
}
.product ul li {
  position: relative;
  padding-left: 22px;
}
.product ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--ink-2);
  font-weight: 700;
}
.product .product-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(201, 184, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.product.featured .product-icon {
  background: rgba(234, 201, 133, 0.18);
  color: var(--amber);
}

.tips {
  background: var(--cream-2);
}
.tip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.tip {
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  gap: 18px;
}
.tip i {
  font-size: 1.8rem;
  color: var(--ink);
  flex-shrink: 0;
}
.tip h3 {
  margin-bottom: 6px;
}
.tip p {
  font-size: 0.9rem;
  color: #4a4370;
}

.checklist-section {
  background: var(--ink);
  color: var(--cream);
}
.checklist-section h2 {
  color: var(--cream);
}
.checklist-section .kicker {
  color: var(--lavender);
}
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}
.check-item {
  display: flex;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}
.check-item i {
  color: var(--amber);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.value {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--cream-2);
  border: 1px solid var(--line);
}
.value i {
  font-size: 1.7rem;
  color: var(--ink);
  margin-bottom: 12px;
  display: block;
}
.value h3 {
  margin-bottom: 6px;
}
.value p {
  font-size: 0.9rem;
  color: #4a4370;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.member {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--cream-2);
  border: 1px solid var(--line);
  text-align: center;
}
.member .avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--lavender), var(--amber));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  color: var(--ink);
}
.member h3 {
  margin-bottom: 4px;
}
.member .role {
  font-size: 0.8rem;
  opacity: 0.65;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.member p {
  font-size: 0.88rem;
  color: #4a4370;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: start;
}
.contact-card {
  position: relative;
  padding: 36px 32px;
  border-radius: 28px;
  background: linear-gradient(160deg, #2a2255, #1c163a);
  color: var(--cream);
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(234, 201, 133, 0.18),
    transparent 60%
  );
}
.contact-card h2 {
  color: var(--cream);
  position: relative;
}
.contact-card > p {
  opacity: 0.85;
  margin: 10px 0 28px;
  position: relative;
}
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.contact-list li {
  display: flex;
  gap: 14px;
  align-items: start;
  font-size: 0.92rem;
}
.contact-list i {
  font-size: 1.3rem;
  color: var(--amber);
  margin-top: 2px;
}
.contact-list strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1rem;
  margin-bottom: 2px;
}
.contact-list a {
  color: var(--cream);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}
.contact-form {
  background: var(--cream);
  padding: 32px;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.field {
  margin-bottom: 16px;
  position: relative;
}
.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream-2);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition:
    border 0.25s,
    background 0.25s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.field.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: #4a4370;
}
.field.checkbox input {
  width: auto;
  margin-top: 3px;
}
.field.checkbox label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.85rem;
  opacity: 1;
  margin: 0;
}
.contact-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.map-wrap {
  margin-top: 36px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
  filter: grayscale(0.1) contrast(1.03);
}

.error-page,
.thanks-page {
  min-height: calc(100vh - var(--header-h) - var(--footer-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background:
    radial-gradient(
      ellipse at 50% 30%,
      rgba(201, 184, 255, 0.3),
      transparent 60%
    ),
    var(--cream);
}
.error-inner,
.thanks-inner {
  max-width: 560px;
}
.error-code {
  font-family: "Fraunces", serif;
  font-size: clamp(5rem, 15vw, 9rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.04em;
}
.thanks-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--ink);
  margin: 0 auto 18px;
  box-shadow: var(--shadow);
}
.error-inner p,
.thanks-inner p {
  color: #3a335c;
  margin: 14px 0 24px;
}

.policy main {
  padding-top: 120px;
}
.policy article {
  max-width: 820px;
  margin: 0 auto;
  padding: 20px 20px 60px;
}
.policy article h1 {
  margin-bottom: 8px;
}
.policy article .updated {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 30px;
  display: block;
}
.policy article h2 {
  margin: 36px 0 10px;
  font-size: 1.4rem;
}
.policy article h3 {
  margin: 22px 0 6px;
}
.policy article p,
.policy article li {
  font-size: 0.94rem;
  color: #3a335c;
}
.policy article ul,
.policy article ol {
  margin: 10px 0 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer {
  background: var(--ink);
  color: #cfc7b0;
  padding: 28px 0;
  margin-top: auto;
  min-height: var(--footer-h);
  display: flex;
  align-items: center;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  width: 100%;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-family: "Fraunces", serif;
}
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.footer-links a {
  color: #cfc7b0;
  border-bottom: 1px dotted rgba(207, 199, 176, 0.4);
}
.footer-copy {
  font-size: 0.78rem;
  opacity: 0.7;
  width: 100%;
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 12px;
}

.privacy-popup {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  max-width: 420px;
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 20px 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  z-index: 200;
  transform: translateY(150%);
  transition: transform 0.5s ease;
}
.privacy-popup.visible {
  transform: translateY(0);
}
.privacy-popup h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.privacy-popup p {
  font-size: 0.85rem;
  color: #4a4370;
  margin-bottom: 14px;
}
.privacy-popup .pp-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.privacy-popup .btn {
  padding: 9px 18px;
  font-size: 0.82rem;
}
.privacy-popup a {
  text-decoration: underline;
}

@media (max-width: 960px) {
  .hero {
    padding: 110px 0 60px;
  }
  .hero-grid,
  .about-split,
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps,
  .voice-grid,
  .product-grid,
  .values,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tip-grid,
  .checklist {
    grid-template-columns: 1fr;
  }
  .hero-frame {
    aspect-ratio: 5/4;
    max-width: 540px;
    margin: 0 auto;
  }
}
@media (max-width: 620px) {
  section {
    padding: 48px 0;
  }
  .pillar-grid,
  .steps,
  .voice-grid,
  .product-grid,
  .values,
  .team-grid,
  .about-stats {
    grid-template-columns: 1fr;
  }
 
  .footer-inner {
    justify-content: center;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .hero-badge {
    left: 14px;
    right: 14px;
    bottom: -30px;
    justify-content: center;
  }
  .contact-form,
  .contact-card {
    padding: 24px;
  }
  .privacy-popup {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px 18px;
  }
}
@media (max-width: 380px) {
  body {
    font-size: 14px;
  }
  .container {
    padding: 0 14px;
  }
  .btn {
    padding: 11px 18px;
    font-size: 0.86rem;
  }
  .menu-toggle {
    width: 42px;
    height: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
