:root {
  /* the room is white. warmth comes only from the gold. */
  --paper:      #FFFFFF;
  --paper-2:    #FBFBFB;
  --paper-3:    #F7F7F6;
  --pearl:      #F2F2F1;
  --silver:     #E9E9E7;
  --silver-2:   #DBDBD8;
  --line:       rgba(90, 88, 84, 0.12);
  --line-soft:  rgba(90, 88, 84, 0.06);

  /* low-contrast, near-neutral grays (tuned to clear WCAG AA: body ~6:1, labels ~4.7:1) */
  --ink:        #474540;   /* headings */
  --ink-2:      #59564F;
  --body:       #5C584F;   /* prose */
  --muted:      #726E66;   /* eyebrows / meta */

  /* soft antique gold */
  --gold:       #BFA06A;
  --gold-soft:  #D6C19A;
  --gold-pale:  #EADBC0;

  /* one grounding warm charcoal, softer than black */
  --char:       #423E39;
  --char-deep:  #34302B;

  --shadow-soft: 0 1px 2px rgba(48, 52, 62, 0.04), 0 14px 32px rgba(48, 52, 62, 0.07);
  --shadow-lift: 0 3px 8px rgba(48, 52, 62, 0.06), 0 28px 62px rgba(48, 52, 62, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
@media (min-width: 768px) { .container { padding: 0 56px; } }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-soft);
}

/* ---- prism light: a soft suncatcher streak, used sparingly ---- */
.prism {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.prism::before {
  content: "";
  position: absolute;
  top: -25%;
  width: 44%;
  height: 150%;
  background: linear-gradient(118deg,
    transparent 42%,
    rgba(255, 196, 206, 0.10) 47%,
    rgba(255, 226, 180, 0.11) 50%,
    rgba(193, 224, 255, 0.13) 54%,
    rgba(201, 248, 224, 0.10) 58%,
    transparent 64%);
  filter: blur(16px);
  transform: rotate(1deg);
}
.prism.left::before  { left: -8%; }
.prism.right::before { right: -6%; }

/* ============ HEADER ============ */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.82);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.monogram {
  width: 34px;
  height: 34px;
  color: var(--gold);
  flex-shrink: 0;
}
.logo-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1;
}
.nav-links {
  display: none;
  gap: 44px;
  list-style: none;
}
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 13px;
  color: var(--ink-2);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  padding: 10px 24px;
  border: 1px solid var(--silver-2);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.nav-cta:hover { border-color: var(--gold); color: var(--ink); background: #fff; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 64px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 72% 18%, rgba(255, 255, 255, 0.9), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, var(--paper) 60%, var(--paper-2) 100%);
}
/* soft window light pouring from the right, like the curtain tile */
.hero-light {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 620px;
  height: 700px;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 60% 40%,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(248, 248, 247, 0.5) 35%,
      rgba(228, 232, 240, 0.2) 60%,
      transparent 80%);
  filter: blur(6px);
}
.hero-light::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 62% 44%, rgba(214, 226, 240, 0.30), transparent 38%),
    radial-gradient(circle at 70% 60%, rgba(255, 224, 210, 0.18), transparent 40%);
  filter: blur(10px);
}
@media (max-width: 900px) { .hero-light { opacity: 0.55; right: -30%; } }

/* hero atmosphere (warm spheres), faded into the right.
   A still image always shows; the video layers on top only once it actually plays,
   so low-power / blocked-autoplay devices get a clean still instead of a frozen frame + button. */
.hero-spheres {
  position: absolute;
  top: 0;
  right: 0;
  width: 64%;
  height: 100%;
  pointer-events: none;
  opacity: 0.9;
  /* mute the rainbow glints and warm it toward the taupe palette */
  -webkit-filter: saturate(0.45) sepia(0.22) brightness(0.97);
  filter: saturate(0.45) sepia(0.22) brightness(0.97);
  -webkit-mask-image: linear-gradient(95deg, transparent 6%, #000 52%);
  mask-image: linear-gradient(95deg, transparent 6%, #000 52%);
}
.hero-spheres-still,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video {
  opacity: 0;                      /* hidden until 'playing' fires (no frozen frame, no button) */
  transition: opacity 0.8s ease;
}
@media (max-width: 900px) { .hero-spheres { width: 100%; opacity: 0.4; } }
/* hide every play-button / control overlay on background videos */
video::-webkit-media-controls,
video::-webkit-media-controls-enclosure,
video::-webkit-media-controls-overlay-enclosure,
video::-webkit-media-controls-overlay-play-button,
video::-webkit-media-controls-start-playback-button,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.hero-content { position: relative; max-width: 960px; }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.6rem, 6.4vw, 5.3rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 34px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
}
.hero-anchor {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--gold-soft), transparent);
  margin: 40px 0 30px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--body);
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 34px;
  background: var(--char);
  color: var(--paper);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid var(--char);
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(66, 62, 57, 0.14);
}
.btn-primary:hover {
  background: var(--char-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(66, 62, 57, 0.2);
}
.btn-primary svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 4px;
  transition: border-color 0.3s ease;
}
.btn-text:hover { border-color: var(--gold); }

/* ============ SECTION DEFAULTS ============ */
section { position: relative; padding: 120px 0; }
@media (max-width: 768px) {
  section { padding: 78px 0; }
  .hero { padding: 84px 0 60px; }
}

.section-head { max-width: 760px; margin-bottom: 68px; }
.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-top: 26px;
}
.section-head h2 em { font-style: italic; font-weight: 400; color: var(--muted); }
.section-lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--body);
  max-width: 560px;
  margin-top: 26px;
}

/* ============ ABOUT ============ */
.about {
  position: relative;
  background: var(--paper);
  padding-top: 60px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  position: relative;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 440px 1fr; gap: 80px; }
}
.portrait {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4 / 5.2;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.95), transparent 55%),
    linear-gradient(150deg, #F6F6F5 0%, #ECECEA 48%, #E2E2DF 100%);
}
.portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 70%, rgba(214, 226, 240, 0.4), transparent 50%),
    radial-gradient(circle at 20% 85%, rgba(255, 224, 210, 0.25), transparent 50%);
}
.portrait::after {
  content: "portrait";
  position: absolute;
  bottom: 22px;
  left: 22px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 82%;
  z-index: 2;
}
.portrait:has(img) { border-radius: 4px; }
.portrait:has(img)::before,
.portrait:has(img)::after { display: none; }

.about-prose p {
  font-size: 17px;
  line-height: 1.78;
  color: var(--body);
  margin-bottom: 22px;
  max-width: 620px;
}
.about-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 25px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.005em;
}
.credentials {
  display: inline-block;
  margin-top: 34px;
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  box-shadow: var(--shadow-soft);
}
.credentials-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
}

.about-philosophy {
  margin: 84px auto 0;
  padding-top: 78px;
  border-top: 1px solid var(--line);
  max-width: 940px;
}
.eyebrow.centered { display: flex; justify-content: center; }
.about-prose.narrow p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* the loop diagram */
.loop {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1 / 1;
  margin: 60px auto 56px;
}
.loop-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.loop-node {
  position: absolute;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 17px;
  box-shadow: var(--shadow-soft);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.loop-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.2;
  color: var(--muted);
}
@media (max-width: 560px) {
  .loop { width: min(100%, 340px); margin: 44px auto 40px; }
  .loop-node { font-size: 11px; padding: 7px 12px; }
  .loop-center { font-size: 15px; }
}

/* ============ THE WORK ============ */
.work {
  position: relative;
  background: var(--paper-2);
}
.work-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 900px) {
  .work-grid { grid-template-columns: 340px 1fr; gap: 92px; }
}
.work-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 600px) {
  .work-list { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.work-item {
  padding: 30px 32px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
}
.work-item:hover {
  background: #fff;
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}
.work-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.004em;
}
.clarification {
  margin-top: 60px;
  padding: 26px 30px;
  background: rgba(255, 255, 255, 0.45);
  border-left: 2px solid var(--gold-soft);
  border-radius: 0 4px 4px 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 720px;
}
.clarification-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
}

/* ============ REVIEWS ============ */
.reviews {
  position: relative;
  background: var(--paper);
  overflow: hidden;
}
.reviews-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); max-width: 1000px; }
}
.review {
  padding: 40px 36px;
  background: linear-gradient(180deg, #fff 0%, rgba(251, 250, 247, 0.7) 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}
.review:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.review p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  flex: 1;
  letter-spacing: -0.003em;
}
.review-attr {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.review-attr span {
  display: block;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

/* ============ WAYS ============ */
.ways {
  position: relative;
  background: var(--paper-2);
  overflow: hidden;
}
.ways-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-top: 60px;
}
@media (min-width: 900px) {
  .ways-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
}
.way-card {
  padding: 46px 40px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-height: 450px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.way-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}
/* featured stays in the light: glass on the soap-bubble */
.way-card.featured {
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(3px) saturate(122%);
  -webkit-backdrop-filter: blur(3px) saturate(122%);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow:
    0 2px 4px rgba(60, 70, 92, 0.05),
    0 28px 64px rgba(110, 128, 168, 0.16);
}
.way-card.featured::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.9);
}

/* iridescent soap-bubble brushstroke: organic, soft-edged, bleeds onto the page */
.soap {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 60% 40% 56% 44% / 54% 48% 52% 46%;
  background: conic-gradient(from 210deg at 50% 50%,
    rgba(255, 212, 226, 0.55),
    rgba(228, 214, 255, 0.50),
    rgba(200, 226, 255, 0.55),
    rgba(204, 248, 226, 0.50),
    rgba(255, 230, 212, 0.50),
    rgba(255, 212, 226, 0.55));
  filter: blur(48px) saturate(125%);
  -webkit-mask-image: radial-gradient(ellipse 58% 60% at 50% 50%, #000 30%, transparent 72%);
  mask-image: radial-gradient(ellipse 58% 60% at 50% 50%, #000 30%, transparent 72%);
}
.ways .container, .reviews .container { position: relative; z-index: 1; }
.soap-ways {
  left: 50%; top: 56%;
  width: 620px; height: 480px; max-width: 78vw;
  transform: translate(-50%, -50%) rotate(-10deg);
  filter: blur(52px) saturate(118%);
  opacity: 0.55;
}
.soap-reviews {
  left: 31%; top: 60%;
  width: 560px; height: 440px; max-width: 82vw;
  transform: translate(-50%, -50%) rotate(8deg);
  opacity: 0.8;
}
@media (max-width: 700px) {
  .soap-ways, .soap-reviews { opacity: 0.7; filter: blur(40px) saturate(120%); }
}
.way-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.way-card.featured .way-tag { color: #8B91A6; }
.way-card.featured .way-divider {
  background: linear-gradient(to right, rgba(190, 204, 224, 0.9), rgba(212, 222, 234, 0.5));
}
.way-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 35px;
  line-height: 1.1;
  color: var(--ink);
  margin-top: 18px;
  letter-spacing: -0.008em;
}
.way-meta {
  flex: 0 0 auto;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.4;
  min-height: 2.8em;   /* reserve up to 2 lines so the dividers stay level */
}
.way-divider { width: 34px; height: 1px; background: var(--gold-soft); margin: 30px 0; }
.way-card p {
  font-size: 15px;
  line-height: 1.68;
  color: var(--body);
}
.way-card p:not(.way-meta) { flex: 1; }   /* description fills, so the specs pin to the bottom and align */
.way-specs {
  margin-top: 26px;
  display: grid;
  gap: 9px;
}
.way-specs > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
}
.way-specs > div:last-child { border-bottom: none; padding-bottom: 0; }
.way-specs dt { color: var(--muted); letter-spacing: 0.02em; }
.way-specs dd { color: var(--ink); font-variant-numeric: tabular-nums; }
.way-link {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 24px;
  border: 1px solid var(--silver-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.3s ease;
}
.way-link:hover { border-color: var(--gold); background: #fff; }
.way-link svg { width: 12px; height: 12px; transition: transform 0.3s ease; }
.way-link:hover svg { transform: translateX(4px); }

/* ============ CONTACT ============ */
.contact {
  position: relative;
  background: var(--paper);
  overflow: hidden;
}
.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 68px;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 92px; }
}
.contact-info { max-width: 460px; }
.contact-info .eyebrow { display: flex; }   /* drop inline line-box leading so "Begin" aligns with "Your name" */
.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.1;
  color: var(--ink);
  margin-top: 26px;
  letter-spacing: -0.01em;
}
.contact-info h2 em { font-style: italic; font-weight: 400; color: var(--muted); }
.contact-info p {
  margin-top: 30px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  max-width: 410px;
}
.form { display: flex; flex-direction: column; gap: 34px; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--silver-2);
  padding: 12px 0 14px;
  outline: none;
  transition: border-color 0.3s ease;
  resize: none;
}
.field textarea { min-height: 96px; line-height: 1.5; }
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); font-style: italic; }
.field input:focus,
.field textarea:focus { border-color: var(--gold); }

.form-submit {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 36px;
  background: var(--char);
  color: var(--paper);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(66, 62, 57, 0.14);
}
.form-submit:hover {
  background: var(--char-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(66, 62, 57, 0.2);
}
.form-submit svg { width: 14px; height: 14px; }

/* ============ FOOTER ============ */
footer {
  position: relative;
  padding: 56px 0 48px;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.footer-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
