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

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

:root {
  --bg: #faf8f5;
  --fg: #272829;
  --primary: #d97736;
  --primary-fg: #faf8f5;
  --primary-dark: #b85e25;
  --secondary: #e8a87c;
  --muted: #eeeae3;
  --muted-fg: #636467;
  --border: #e8e3db;
  --white: #ffffff;
  --dark-bg: #272829;
  --dark-fg: #faf8f5;
  --green: #22c55e;
  --green-bg: #f0fdf4;
  --radius: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.08), 0 4px 6px rgba(0,0,0,.04);
  --shadow-xl: 0 20px 25px rgba(0,0,0,.10), 0 8px 10px rgba(0,0,0,.05);
  --container: 1200px;
  --font-sans: 'Nunito Sans', sans-serif;
  --font-serif: 'Lora', serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
  padding: 0.875rem 2rem;
  box-shadow: 0 4px 14px rgba(217,119,54,0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(217,119,54,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--fg);
  padding: 0.875rem 2rem;
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  background: var(--muted);
}

.btn-outline-white {
  background: var(--white);
  color: var(--fg);
  padding: 0.875rem 2rem;
  border: 1.5px solid rgba(255,255,255,0.2);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.9);
}

.btn-sm {
  font-size: 0.875rem;
  padding: 0.625rem 1.5rem;
}

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

.btn-full {
  width: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 4rem;
  background: rgba(250,248,245,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,227,219,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-decoration: none;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  background: rgba(217,119,54,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.logo:hover .logo-icon {
  background: rgba(217,119,54,0.22);
}

.logo-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--primary);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-fg);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-desktop a:hover {
  color: var(--fg);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--fg);
}

.nav-mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 4rem;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid rgba(232,227,219,0.5);
  padding: 1rem 1.5rem;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-md);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(232,227,219,0.4);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile .btn-primary {
  margin-top: 0.75rem;
  border-radius: 100px;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  overflow: hidden;
}

.hero-bg-blob-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60%;
  height: 80%;
  background: rgba(232,168,124,0.15);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-bg-blob-2 {
  position: absolute;
  bottom: 10%;
  left: -10%;
  width: 40%;
  height: 60%;
  background: rgba(217,119,54,0.08);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  background: var(--bg);
  border: 1px solid rgba(217,119,54,0.2);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow);
  width: fit-content;
}

.hero-badge svg {
  width: 1rem;
  height: 1rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.hero h1 em {
  color: var(--primary);
  font-style: italic;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--muted-fg);
  max-width: 30rem;
  line-height: 1.7;
}

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

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  font-weight: 600;
}

.hero-check {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-check svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.hero-image-wrap {
  position: relative;
  max-width: 32rem;
  margin-left: auto;
}

.hero-image-frame {
  aspect-ratio: 4/5;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.08);
  mix-blend-mode: overlay;
}

.hero-floating-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--bg);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
  animation: floatIn 0.7s ease 0.5s both;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(2rem); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-floating-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(232,168,124,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-floating-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--primary);
}

.hero-floating-text p:first-child {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--fg);
}

.hero-floating-text p:last-child {
  font-size: 0.8rem;
  color: var(--muted-fg);
}

.section {
  padding: 6rem 0;
}

.section-light {
  background: var(--white);
}

.section-muted {
  background: rgba(238,234,227,0.35);
}

.section-dark {
  background: var(--dark-bg);
  color: var(--dark-fg);
}

.section-title {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 4rem;
}

.section-title h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1rem;
}

.section-dark .section-title h2 {
  color: var(--dark-fg);
}

.section-title p {
  font-size: 1.1rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

.section-dark .section-title p {
  color: rgba(250,248,245,0.6);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid rgba(232,227,219,0.6);
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s;
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(217,119,54,0.1);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  color: var(--fg);
}

.card p {
  font-size: 0.95rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-grid.reverse .split-content {
  order: 2;
}

.split-grid.reverse .split-image {
  order: 1;
}

.split-image {
  position: relative;
}

.split-image-frame {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}

.split-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.split-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--fg);
}

.split-content > p {
  font-size: 1.1rem;
  color: var(--muted-fg);
  line-height: 1.75;
}

.numbered-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step {
  display: flex;
  gap: 1.5rem;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(217,119,54,0.35);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

.step p {
  font-size: 0.95rem;
  color: var(--muted-fg);
  line-height: 1.65;
}

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
}

.gallery-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--dark-fg);
  margin-bottom: 1rem;
}

.gallery-header p {
  font-size: 1.05rem;
  color: rgba(250,248,245,0.6);
  max-width: 36rem;
  line-height: 1.65;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.gallery-main {
  grid-column: span 2;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-main:hover img {
  transform: scale(1.05);
}

.gallery-main-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.gallery-main:hover .gallery-main-overlay {
  opacity: 1;
}

.gallery-main-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
}

.gallery-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.gallery-card-wide {
  grid-column: span 2;
  aspect-ratio: unset;
  padding: 2rem;
}

.gallery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  z-index: 1;
}

.gallery-card-content {
  position: relative;
  z-index: 2;
}

.gallery-card-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.gallery-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.gallery-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.author-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 60rem;
  margin: 0 auto;
}

.author-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.author-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.author-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.author-content p {
  font-size: 1.05rem;
  color: var(--muted-fg);
  line-height: 1.75;
}

.author-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.author-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.35rem;
}

.author-stat-label {
  font-size: 0.85rem;
  color: var(--muted-fg);
  line-height: 1.4;
}

.author-image-wrap {
  position: relative;
}

.author-image-frame {
  aspect-ratio: 4/5;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 8px solid var(--bg);
  position: relative;
  z-index: 2;
  transform: rotate(2deg);
}

.author-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-image-outline {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(217,119,54,0.3);
  border-radius: var(--radius-2xl);
  transform: rotate(-3deg);
  z-index: 1;
}

.form-section {
  position: relative;
  overflow: hidden;
}

.form-section-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background: rgba(217,119,54,0.04);
  filter: blur(100px);
  pointer-events: none;
}

.form-card {
  max-width: 56rem;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 5fr 7fr;
  border: 1px solid var(--border);
}

.form-info {
  background: var(--primary);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.form-info-blob {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  filter: blur(40px);
  transform: translate(50%, -50%);
  pointer-events: none;
}

.form-info h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-fg);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.form-info > p {
  font-size: 1.05rem;
  color: rgba(250,248,245,0.9);
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.form-perks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.form-perk {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.form-perk-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-perk-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--white);
}

.form-perk span {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(250,248,245,0.95);
}

.form-fields {
  padding: 3rem;
}

.form-fields h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.35rem;
}

.form-fields > p {
  font-size: 0.9rem;
  color: var(--muted-fg);
  margin-bottom: 2rem;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.field-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
}

.field-input {
  height: 3rem;
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 0 1rem;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--fg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.field-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(217,119,54,0.12);
}

.field-input::placeholder {
  color: rgba(99,100,103,0.5);
}

.field-error {
  font-size: 0.8rem;
  color: #dc2626;
  margin-top: 0.2rem;
  display: none;
}

.field-error.visible {
  display: block;
}

.form-note {
  font-size: 0.78rem;
  color: var(--muted-fg);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}

.form-note a {
  text-decoration: underline;
  color: var(--fg);
  transition: color 0.2s;
}

.form-note a:hover {
  color: var(--primary);
}

footer {
  background: var(--dark-bg);
  color: var(--dark-fg);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem 2rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  color: var(--dark-fg);
  margin-bottom: 1.5rem;
  display: inline-flex;
}

.footer-brand .logo-icon {
  background: var(--primary);
}

.footer-brand .logo-icon svg {
  color: var(--primary-fg);
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.7;
  max-width: 22rem;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-fg);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--muted-fg);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.footer-legal {
  font-size: 0.75rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--muted-fg);
  text-align: right;
  line-height: 1.7;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem 1.5rem 1.5rem;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-inner {
  max-width: 56rem;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}

.cookie-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted-fg);
  display: none;
  padding: 0.25rem;
}

.cookie-close svg {
  width: 1.1rem;
  height: 1.1rem;
}

.cookie-text h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.35rem;
}

.cookie-text p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.6;
}

.cookie-text a {
  text-decoration: underline;
  color: var(--fg);
  transition: color 0.2s;
}

.cookie-text a:hover {
  color: var(--primary);
}

.cookie-action {
  flex-shrink: 0;
}

.legal-page {
  padding: 8rem 0 5rem;
  background: var(--bg);
}

.legal-inner {
  max-width: 48rem;
  margin: 0 auto;
}

.legal-inner h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 2rem;
}

.legal-date {
  font-size: 0.9rem;
  color: var(--muted-fg);
  margin-bottom: 2.5rem;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1rem;
}

.legal-section p {
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legal-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-section ul li {
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.65;
}

.legal-box {
  background: var(--muted);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 0.75rem;
}

.legal-box p {
  margin-bottom: 0.35rem !important;
  font-size: 0.95rem !important;
}

.legal-box p:last-child {
  margin-bottom: 0 !important;
}

.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 5rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.success-bg-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50rem;
  height: 50rem;
  background: rgba(217,119,54,0.04);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.success-card {
  max-width: 32rem;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  padding: 3.5rem;
  text-align: center;
  border: 1px solid rgba(232,227,219,0.5);
  position: relative;
  z-index: 1;
  animation: successIn 0.5s ease both;
}

@keyframes successIn {
  from { opacity: 0; transform: scale(0.95) translateY(1.5rem); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.success-icon {
  width: 5rem;
  height: 5rem;
  background: var(--green-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: successIconIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes successIconIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.success-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--green);
}

.success-card h1 {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1rem;
}

.success-card > p {
  font-size: 1.05rem;
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.success-steps {
  background: rgba(238,234,227,0.5);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.success-steps h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1rem;
}

.success-steps ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.success-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.success-step-num {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: rgba(217,119,54,0.18);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.success-step span {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.5;
}

.fade-up {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-image-wrap {
    max-width: 100%;
    margin: 0;
  }

  .hero-floating-badge {
    bottom: -1rem;
    left: 1rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .split-grid.reverse .split-content,
  .split-grid.reverse .split-image {
    order: unset;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-main {
    grid-column: span 1;
  }

  .gallery-card-wide {
    grid-column: span 1;
  }

  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .author-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .author-image-wrap {
    max-width: 22rem;
    margin: 0 auto;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-copy {
    text-align: center;
  }

  .nav-desktop {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-close {
    display: block;
  }

  .cookie-action {
    width: 100%;
  }

  .cookie-action .btn {
    width: 100%;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 4rem 0;
  }

  .hero {
    padding: 6rem 0 4rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .form-info, .form-fields {
    padding: 2rem;
  }

  .success-card {
    padding: 2.5rem 1.75rem;
  }
}
