@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --linen: #FAF6F0;
  --espresso: #261C19;
  --terracotta: #CD6A4B;
  --amber: #E8A36E;
  --sage: #768475;
  --linen-dark: #F0E8DC;
  --linen-mid: #F5EFE6;
  --espresso-soft: #3D2E2A;
  --terracotta-light: #E08060;
  --amber-light: #F0B880;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--linen);
  color: var(--espresso);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 246, 240, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(118, 132, 117, 0.15);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--espresso);
  text-decoration: none;
}

.nav-logo span { color: var(--terracotta); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--espresso-soft);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--terracotta) !important;
  color: var(--linen) !important;
  padding: 0.55rem 1.35rem;
  border-radius: 100px;
  font-weight: 500 !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover {
  background: var(--terracotta-light) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }

.serif-italic {
  font-style: italic;
  color: var(--terracotta);
}

/* ── SECTIONS ── */
section { padding: 6rem 2.5rem; }

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--linen);
}

.btn-primary:hover {
  background: var(--terracotta-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(205, 106, 75, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border: 1.5px solid rgba(38, 28, 25, 0.25);
}

.btn-ghost:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  transform: translateY(-1px);
}

.btn-amber {
  background: var(--amber);
  color: var(--espresso);
}

.btn-amber:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 163, 110, 0.35);
}

.btn-lg {
  padding: 1.05rem 2.5rem;
  font-size: 1rem;
}

/* ── CARDS ── */
.card {
  background: var(--linen-mid);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(118, 132, 117, 0.15);
  transition: box-shadow 0.25s, transform 0.25s;
}

.card:hover {
  box-shadow: 0 12px 40px rgba(38, 28, 25, 0.08);
  transform: translateY(-3px);
}

.card-warm {
  background: linear-gradient(135deg, #FDF5EC, #F5EAD9);
}

/* ── TAGS ── */
.tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(118, 132, 117, 0.12);
  color: var(--sage);
  border: 1px solid rgba(118, 132, 117, 0.25);
}

/* ── DIVIDER ── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--terracotta);
  border: none;
  margin: 1.5rem 0;
}

.divider-center { margin: 1.5rem auto; }

/* ── HERO (index.html) ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 6rem;
  overflow: hidden;
  position: relative;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-bg-circle-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 163, 110, 0.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.hero-bg-circle-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(205, 106, 75, 0.12) 0%, transparent 70%);
  bottom: 0;
  left: -50px;
}

.hero-content {
  padding: 4rem 2.5rem 4rem 5vw;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-eyebrow span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
}

.hero h1 { margin-bottom: 1.5rem; }

.hero-subtext {
  font-size: 1.1rem;
  color: var(--espresso-soft);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-illustration {
  width: 100%;
  max-width: 380px;
  opacity: 0.9;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* ── MANIFESTO STRIP ── */
.manifesto-strip {
  background: var(--espresso);
  color: var(--linen);
  padding: 3.5rem 2.5rem;
  text-align: center;
}

.manifesto-strip blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.5;
  color: var(--linen);
}

.manifesto-strip blockquote em { color: var(--amber); font-style: normal; }

/* ── HOW IT WORKS ── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.how-card {
  padding: 2rem 1.75rem;
  border-radius: 20px;
  background: var(--linen-mid);
  border: 1px solid rgba(118, 132, 117, 0.15);
  position: relative;
  overflow: hidden;
}

.how-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.how-card:hover::before { transform: scaleX(1); }

.how-step {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(205, 106, 75, 0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.how-card h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.how-card p { font-size: 0.9rem; color: var(--espresso-soft); line-height: 1.75; font-weight: 300; }

/* ── TESTIMONIAL ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--linen-dark);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(118, 132, 117, 0.12);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: rgba(205, 106, 75, 0.15);
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.testimonial-alias {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
}

/* ── ABOUT PAGE ── */
.philosophy-intro {
  padding-top: 10rem;
  padding-bottom: 5rem;
  text-align: center;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.pillar-card {
  padding: 2.5rem;
  border-radius: 24px;
  background: var(--linen-mid);
  border: 1px solid rgba(118, 132, 117, 0.15);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
  color: var(--terracotta);
}

.pillar-card h3 { margin-bottom: 0.75rem; font-size: 1.4rem; }
.pillar-card p { font-size: 0.9rem; color: var(--espresso-soft); line-height: 1.8; font-weight: 300; }

.not-list {
  background: var(--espresso);
  color: var(--linen);
  border-radius: 28px;
  padding: 3rem 3.5rem;
  margin: 4rem 0;
}

.not-list h2 { color: var(--linen); margin-bottom: 2rem; }
.not-list h2 em { color: var(--amber); font-style: normal; }

.not-list-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.not-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
}

.not-item-cross {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(205, 106, 75, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--terracotta);
  font-size: 0.75rem;
}

/* ── RESOURCES PAGE ── */
.resources-hero {
  padding-top: 10rem;
  padding-bottom: 4rem;
  text-align: center;
}

.resource-category {
  margin-bottom: 4rem;
}

.resource-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(118, 132, 117, 0.2);
}

.resource-category-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.resource-category-icon.emergency { background: rgba(205, 106, 75, 0.12); color: var(--terracotta); }
.resource-category-icon.legal { background: rgba(118, 132, 117, 0.12); color: var(--sage); }
.resource-category-icon.financial { background: rgba(232, 163, 110, 0.18); color: #B8732E; }
.resource-category-icon.mental { background: rgba(205, 106, 75, 0.08); color: var(--terracotta); }

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.resource-card {
  background: var(--linen-mid);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(118, 132, 117, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.2s;
}

.resource-card:hover {
  border-color: var(--terracotta);
  box-shadow: 0 4px 20px rgba(205, 106, 75, 0.1);
  transform: translateY(-2px);
}

.resource-card-name {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--espresso);
}

.resource-card-desc {
  font-size: 0.825rem;
  color: var(--sage);
  line-height: 1.6;
}

.resource-card-contact {
  margin-top: 0.5rem;
  font-size: 0.825rem;
  color: var(--terracotta);
  font-weight: 500;
  text-decoration: none;
}

.resource-card-contact:hover { text-decoration: underline; }

.resources-disclaimer {
  background: linear-gradient(135deg, #FDF5EC, #F5EAD9);
  border-radius: 20px;
  padding: 2.5rem;
  border-left: 4px solid var(--amber);
  margin-top: 3rem;
}

/* ── REGISTER PAGE ── */
.register-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  padding-top: 8rem;
  min-height: 100vh;
  align-items: start;
  padding-bottom: 6rem;
}

.register-sidebar {
  position: sticky;
  top: 7rem;
}

.register-sidebar-inner {
  background: var(--espresso);
  border-radius: 24px;
  padding: 2.5rem;
  color: var(--linen);
}

.register-sidebar-inner h3 {
  color: var(--linen);
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.sidebar-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.sidebar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  margin-top: 6px;
}

.sidebar-item p {
  font-size: 0.875rem;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(250, 246, 240, 0.8);
}

.sidebar-item strong { color: var(--linen); font-weight: 500; }

.form-section {
  background: var(--linen-mid);
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(118, 132, 117, 0.15);
}

.form-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-section-desc {
  font-size: 0.85rem;
  color: var(--sage);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group:last-child { margin-bottom: 0; }

label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--espresso-soft);
  margin-bottom: 0.5rem;
}

.label-optional {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: var(--sage);
  font-size: 0.75rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  border: 1.5px solid rgba(118, 132, 117, 0.25);
  background: var(--linen);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--espresso);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

input:focus, select:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(205, 106, 75, 0.1);
}

input::placeholder { color: rgba(118, 132, 117, 0.6); font-weight: 300; }

select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23768475' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }

select:disabled { opacity: 0.6; cursor: not-allowed; }

.input-hint {
  margin-top: 0.4rem;
  font-size: 0.775rem;
  color: var(--sage);
  font-weight: 300;
}

/* ── PRICING CARDS ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.pricing-card {
  position: relative;
  cursor: pointer;
}

.pricing-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.pricing-label {
  display: block;
  padding: 1.25rem;
  border-radius: 16px;
  border: 2px solid rgba(118, 132, 117, 0.2);
  background: var(--linen);
  cursor: pointer;
  transition: all 0.2s;
}

.pricing-label:hover {
  border-color: var(--amber);
  background: #FDF8F2;
}

.pricing-card input:checked + .pricing-label {
  border-color: var(--terracotta);
  background: linear-gradient(135deg, #FDF5EC, #F9EDE0);
  box-shadow: 0 4px 16px rgba(205, 106, 75, 0.15);
}

.pricing-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  background: rgba(205, 106, 75, 0.12);
  color: var(--terracotta);
  margin-bottom: 0.6rem;
}

.pricing-badge.best-value {
  background: var(--terracotta);
  color: var(--linen);
}

.pricing-plan-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  display: block;
}

.pricing-amount {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--espresso);
  line-height: 1;
}

.pricing-amount sup { font-size: 0.9rem; vertical-align: super; font-weight: 400; }
.pricing-cadence { font-size: 0.75rem; color: var(--sage); }
.pricing-detail { font-size: 0.8rem; color: var(--espresso-soft); margin-top: 0.4rem; font-weight: 300; line-height: 1.5; }

/* ── DISCLAIMER PANEL ── */
.disclaimer-panel {
  background: linear-gradient(135deg, #FFF7EE, #FAEEDD);
  border-radius: 20px;
  padding: 2rem;
  border: 1.5px solid rgba(232, 163, 110, 0.4);
  margin-bottom: 1.5rem;
}

.disclaimer-panel h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.disclaimer-text {
  font-size: 0.875rem;
  color: var(--espresso-soft);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.disclaimer-checkbox-wrap {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.disclaimer-checkbox-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--terracotta);
  margin-top: 2px;
  cursor: pointer;
}

.disclaimer-checkbox-wrap label {
  font-size: 0.875rem;
  line-height: 1.65;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  cursor: pointer;
  color: var(--espresso);
}

/* ── SUBMIT BUTTON ── */
#submit-btn {
  width: 100%;
  padding: 1.1rem;
  font-size: 1rem;
  border-radius: 14px;
  background: var(--terracotta);
  color: var(--linen);
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

#submit-btn:disabled {
  background: rgba(118, 132, 117, 0.3);
  color: rgba(118, 132, 117, 0.7);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

#submit-btn:not(:disabled):hover {
  background: var(--terracotta-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(205, 106, 75, 0.3);
}

/* ── LOADING OVERLAY ── */
#loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

#loading-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.loading-content { text-align: center; }

.loading-spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid rgba(205, 106, 75, 0.15);
  border-top-color: var(--terracotta);
  animation: spin 0.9s linear infinite;
  margin: 0 auto 1.5rem;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-content h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.loading-content p { font-size: 0.875rem; color: var(--sage); font-weight: 300; }

/* ── FOOTER ── */
footer {
  background: var(--espresso);
  color: rgba(250, 246, 240, 0.7);
  padding: 3.5rem 2.5rem 2rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--linen);
  margin-bottom: 0.75rem;
}

.footer-brand-name span { color: var(--amber); }

.footer-brand-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 260px;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.45);
  margin-bottom: 1.1rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }

.footer-col a {
  text-decoration: none;
  font-size: 0.875rem;
  color: rgba(250, 246, 240, 0.65);
  transition: color 0.2s;
  font-weight: 300;
}

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

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 246, 240, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(250, 246, 240, 0.35);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .register-layout {
    grid-template-columns: 1fr;
  }
  .register-sidebar { position: static; order: -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .not-list-items { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--linen);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav-links.open a { font-size: 0.9rem; }
  .nav-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--espresso);
  padding: 0.4rem;
  border-radius: 8px;
  display: none;
}

.nav-links.open .nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
}

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { display: none; }
  .hero-content { padding: 7rem 1.25rem 4rem; }

  section { padding: 4rem 1.25rem; }

  .form-row { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .not-list { padding: 2rem 1.5rem; }
}
