:root {
  --cream: #F5F0E8;
  --warm-white: #FAF7F2;
  --parchment: #EDE6D6;
  --ink: #2C2416;
  --ink-light: #4A3F2F;
  --ink-muted: #7A6E5F;
  --amber: #C8860A;
  --amber-light: #E8A020;
  --amber-pale: #F5DFA0;
  --rust: #9B4A1C;
  --sage: #6B7C5E;
  --polaroid-white: #FEFCF8;
  --shadow-sm: 0 2px 8px rgba(44,36,22,0.08), 0 1px 3px rgba(44,36,22,0.05);
  --shadow-md: 0 6px 24px rgba(44,36,22,0.12), 0 2px 8px rgba(44,36,22,0.07), 0 1px 2px rgba(44,36,22,0.04);
  --shadow-lg: 0 16px 48px rgba(44,36,22,0.16), 0 6px 18px rgba(44,36,22,0.10), 0 2px 6px rgba(44,36,22,0.06);
  --shadow-polaroid: 4px 6px 20px rgba(44,36,22,0.18), 1px 2px 6px rgba(44,36,22,0.10);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--warm-white);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Progress Bar */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--rust));
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 5.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

p { color: var(--ink-light); line-height: 1.75; }

a { color: var(--amber); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--rust); }

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

/* Handwriting accent font */
.handwriting {
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
}

/* Utility */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad { padding: var(--space-lg) 0; }
.section-pad-xl { padding: var(--space-xl) 0; }

.text-amber { color: var(--amber); }
.text-muted { color: var(--ink-muted); }
.text-rust { color: var(--rust); }

.label-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-pale);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--ink-light);
  color: var(--amber-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-amber {
  background: var(--amber);
  color: var(--polaroid-white);
  box-shadow: var(--shadow-md);
}
.btn-amber:hover {
  background: var(--rust);
  color: var(--polaroid-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Navigation */
.site-header {
  position: sticky;
  top: 3px;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44,36,22,0.08);
  box-shadow: 0 2px 16px rgba(44,36,22,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img { height: 40px; width: auto; }
.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.nav-logo-text span { color: var(--amber); }

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

.nav-links > li { position: relative; }

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--ink);
  background: var(--parchment);
}

.nav-links > li > a .chevron {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}

.nav-links > li:hover > a .chevron { transform: rotate(180deg); }

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--polaroid-white);
  border: 1px solid rgba(44,36,22,0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.75rem;
  min-width: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateX(-50%) translateY(-8px);
}

.nav-links > li:hover .mega-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
}

.mega-item:hover { background: var(--parchment); }

.mega-icon {
  width: 40px;
  height: 40px;
  background: var(--amber-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 1rem;
  flex-shrink: 0;
}

.mega-item-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.mega-item-text p {
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.4;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--parchment);
  border-radius: 100px;
  padding: 0.3rem 0.6rem;
}

.lang-btn {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  transition: var(--transition);
  text-decoration: none;
}

.lang-btn.active, .lang-btn:hover {
  color: var(--ink);
  background: var(--polaroid-white);
  box-shadow: var(--shadow-sm);
}

.lang-divider { color: var(--ink-muted); font-size: 0.75rem; }

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--ink);
  font-size: 1.4rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 100vw);
  height: 100vh;
  background: var(--warm-white);
  z-index: 2000;
  padding: 2rem;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(44,36,22,0.15);
}

.mobile-nav.open { right: 0; }

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.mobile-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink);
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-links { list-style: none; }

.mobile-nav-links li { border-bottom: 1px solid var(--parchment); }

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: var(--transition);
}

.mobile-nav-links a:hover { color: var(--amber); padding-left: 0.5rem; }

.mobile-lang-switcher {
  margin-top: 2rem;
  display: flex;
  gap: 0.75rem;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,36,22,0.4);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-overlay.open { opacity: 1; pointer-events: all; }

/* ===== POLAROID FRAMES ===== */
.polaroid {
  background: var(--polaroid-white);
  padding: 1rem 1rem 2.5rem;
  box-shadow: var(--shadow-polaroid);
  display: inline-block;
  position: relative;
  transition: var(--transition);
}

.polaroid:hover {
  transform: translateY(-4px) rotate(0deg) !important;
  box-shadow: 0 20px 60px rgba(44,36,22,0.22), 2px 4px 12px rgba(44,36,22,0.12);
}

.polaroid img {
  width: 100%;
  display: block;
  filter: sepia(15%) contrast(1.05) brightness(0.98);
  transition: filter 0.4s ease;
}

.polaroid:hover img { filter: sepia(5%) contrast(1.08) brightness(1.02); }

.polaroid-caption {
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-muted);
  font-style: italic;
  padding: 0 0.5rem;
}

.polaroid-rotate-l { transform: rotate(-2.5deg); }
.polaroid-rotate-r { transform: rotate(2deg); }
.polaroid-rotate-sl { transform: rotate(-1deg); }
.polaroid-rotate-sr { transform: rotate(1.5deg); }

/* ===== HERO ===== */
.hero {
  background: var(--cream);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60vw;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(200,134,10,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 40vw;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(155,74,28,0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.hero-eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--amber);
}

.hero-eyebrow span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}

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

.hero-title .line-accent {
  color: var(--amber);
  display: block;
}

.hero-title .line-light {
  font-weight: 300;
  color: var(--ink-muted);
  font-size: 0.65em;
  letter-spacing: -0.01em;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--ink-light);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.8;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
  font-weight: 500;
}

.hero-proof-item i { color: var(--amber); font-size: 0.9rem; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.hero-polaroid-main {
  position: relative;
  z-index: 2;
  width: 72%;
}

.hero-polaroid-secondary {
  position: absolute;
  z-index: 1;
  width: 52%;
}

.hero-polaroid-secondary.pos-tl {
  top: -5%;
  left: -8%;
}

.hero-polaroid-secondary.pos-br {
  bottom: -5%;
  right: -5%;
  z-index: 3;
}

/* ===== INFO BLOCKS ===== */
.info-blocks { background: var(--warm-white); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: var(--polaroid-white);
  border: 1px solid rgba(44,36,22,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

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

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,134,10,0.15);
}

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

.info-icon {
  width: 52px;
  height: 52px;
  background: var(--amber-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.info-card:hover .info-icon {
  background: var(--amber);
  color: var(--polaroid-white);
}

.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.info-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* ===== PROCESS SECTION ===== */
.process-section { background: var(--cream); }

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

.process-steps { display: flex; flex-direction: column; gap: 0; }

.process-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--parchment);
  transition: var(--transition);
}

.process-step:last-child { border-bottom: none; }

.step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber-pale);
  line-height: 1;
  min-width: 3rem;
  transition: var(--transition);
}

.process-step:hover .step-num { color: var(--amber); }

.step-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ===== BLOG SECTION ===== */
.blog-section { background: var(--parchment); }

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

.blog-card {
  background: var(--polaroid-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(10%) contrast(1.05);
  transition: transform 0.5s ease, filter 0.4s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
  filter: sepia(5%) contrast(1.08);
}

.blog-card-body { padding: 1.5rem; }

.blog-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
  display: block;
}

.blog-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.blog-card p {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.blog-read-more {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.blog-read-more:hover { gap: 0.7rem; color: var(--rust); }

/* Blog Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,36,22,0.7);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(24px);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-box { transform: translateY(0); }

.modal-header {
  position: sticky;
  top: 0;
  background: var(--warm-white);
  padding: 1.5rem 2rem 1rem;
  border-bottom: 1px solid var(--parchment);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 1;
}

.modal-close-btn {
  background: var(--parchment);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.modal-close-btn:hover { background: var(--amber); color: white; }

.modal-body { padding: 1.5rem 2rem 2rem; }

.modal-body h2 { font-size: 1.6rem; margin-bottom: 1rem; }

.modal-body p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.modal-body h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.5rem;
}

/* ===== SECTION HEADER ===== */
.section-header { margin-bottom: 3.5rem; }

.section-header.centered { text-align: center; }

.section-header h2 { margin-bottom: 0.75rem; }

.section-header p {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 560px;
  line-height: 1.75;
}

.section-header.centered p { margin: 0 auto; }

/* ===== INNER PAGES ===== */
.page-hero {
  background: var(--cream);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(200,134,10,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-content { max-width: 720px; }

/* ===== TEAM PAGE ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.team-card {
  text-align: center;
}

.team-polaroid {
  background: var(--polaroid-white);
  padding: 1rem 1rem 3rem;
  box-shadow: var(--shadow-polaroid);
  margin-bottom: 0;
  display: inline-block;
  width: 100%;
  transition: var(--transition);
}

.team-polaroid:hover {
  transform: rotate(0deg) !important;
  box-shadow: 0 20px 60px rgba(44,36,22,0.2);
}

.team-polaroid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: sepia(12%) contrast(1.04);
}

.team-card-info {
  margin-top: 1.25rem;
  text-align: center;
}

.team-card-info h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.team-card-info .role { color: var(--amber); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; display: block; }
.team-card-info p { font-size: 0.88rem; color: var(--ink-muted); }

/* ===== VALUES ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.value-item {
  padding: 1.75rem;
  background: var(--polaroid-white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--amber);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.value-item h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.value-item p { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.65; }

/* ===== INVESTOR PAGE ===== */
.investor-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.investor-feature.reverse { direction: rtl; }
.investor-feature.reverse > * { direction: ltr; }

.feature-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--ink-light);
}

.feature-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--amber-pale);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23C8860A'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--amber-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item h4 { font-size: 0.85rem; font-weight: 700; color: var(--ink); margin-bottom: 0.25rem; }
.contact-info-item p, .contact-info-item a { font-size: 0.9rem; color: var(--ink-muted); }
.contact-info-item a:hover { color: var(--amber); }

.contact-form-wrap {
  background: var(--polaroid-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--parchment);
  border-radius: var(--radius-md);
  background: var(--warm-white);
  color: var(--ink);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(200,134,10,0.12);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.2rem;
  accent-color: var(--amber);
  cursor: pointer;
}

.form-check label {
  font-size: 0.83rem;
  color: var(--ink-muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-check a { color: var(--amber); }

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 3rem;
}

.map-wrap iframe { display: block; width: 100%; border: none; }

/* ===== THANKS PAGE ===== */
.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--cream);
}

.thanks-card {
  background: var(--polaroid-white);
  padding: 3rem 2.5rem 2.5rem;
  box-shadow: var(--shadow-polaroid);
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}

.thanks-icon {
  width: 72px;
  height: 72px;
  background: var(--amber-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 0.75rem;
  color: var(--ink);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 1.75rem 0 0.5rem;
  color: var(--ink-light);
}

.legal-content p {
  font-size: 0.93rem;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 0.85rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  font-size: 0.93rem;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 0.4rem;
}

.legal-meta {
  background: var(--parchment);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 2.5rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250,247,242,0.1);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.03em;
}

.footer-logo-text span { color: var(--amber); }

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.65);
  transition: var(--transition);
  text-decoration: none;
}

.footer-col ul li a:hover { color: var(--cream); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--amber);
  font-size: 0.9rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.5;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.45);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.45);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--cream); }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: var(--ink);
  color: var(--cream);
  padding: 1.25rem 1.5rem;
  display: none;
  box-shadow: 0 -4px 24px rgba(44,36,22,0.25);
}

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

.cookie-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-text { flex: 1; min-width: 240px; }
.cookie-text p { font-size: 0.85rem; color: rgba(245,240,232,0.8); margin: 0; }
.cookie-text a { color: var(--amber-light); }

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  min-height: 44px;
}

.cookie-btn-accept { background: var(--amber); color: white; }
.cookie-btn-accept:hover { background: var(--amber-light); }
.cookie-btn-reject { background: transparent; color: var(--cream); border: 1px solid rgba(245,240,232,0.3); }
.cookie-btn-reject:hover { background: rgba(245,240,232,0.1); }
.cookie-btn-customize { background: transparent; color: var(--amber-light); border: 1px solid rgba(200,134,10,0.4); }
.cookie-btn-customize:hover { background: rgba(200,134,10,0.1); }

/* Cookie Modal */
#cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(44,36,22,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

#cookie-modal.visible { display: flex; }

.cookie-modal-box {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  max-width: 540px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  padding: 2rem;
}

.cookie-modal-box h3 { font-size: 1.3rem; margin-bottom: 1rem; }

.cookie-category {
  border: 1px solid var(--parchment);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 0.75rem;
}

.cookie-cat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.cookie-cat-header h4 { font-size: 0.95rem; color: var(--ink); }

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--parchment);
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider { background: var(--amber); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }

.cookie-category p { font-size: 0.82rem; color: var(--ink-muted); }

.cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* ===== SPLIDE OVERRIDES ===== */
.splide__pagination__page.is-active { background: var(--amber); }
.splide__arrow { background: var(--polaroid-white); box-shadow: var(--shadow-md); }
.splide__arrow svg { fill: var(--ink); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { gap: 2.5rem; }
  .investor-feature { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-eyebrow { justify-content: center; }
  .hero-cta-row { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-desc { margin: 0 auto 2.5rem; }

  .hero-visual {
    min-height: 360px;
    order: -1;
  }

  .hero-polaroid-main { width: 65%; }
  .hero-polaroid-secondary { width: 45%; }

  .process-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .investor-feature { grid-template-columns: 1fr; }
  .investor-feature.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-polaroid-secondary.pos-tl { top: -8%; left: -5%; }
  .hero-polaroid-secondary.pos-br { bottom: -8%; right: -3%; }
  .modal-body { padding: 1rem 1.25rem 1.5rem; }
  .modal-header { padding: 1.25rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
}

/* Guide page */
.guide-section { margin-bottom: 4rem; }
.guide-section h2 { margin-bottom: 1rem; }
.guide-step-list { list-style: none; counter-reset: guide-counter; }
.guide-step-list li {
  counter-increment: guide-counter;
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--parchment);
}
.guide-step-list li::before {
  content: counter(guide-counter, decimal-leading-zero);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--amber-pale);
  min-width: 3rem;
  line-height: 1;
}
.guide-step-list li div h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.guide-step-list li div p { font-size: 0.87rem; color: var(--ink-muted); line-height: 1.65; }

.tip-box {
  background: var(--amber-pale);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.tip-box p { font-size: 0.9rem; color: var(--ink-light); }
.tip-box strong { color: var(--amber); }

/* Dividers */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--parchment), transparent);
  margin: 0;
}

/* Highlight text */
.highlight-block {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
}

.highlight-block h2 { margin-bottom: 1rem; }
.highlight-block p { max-width: 560px; margin: 0 auto 2rem; }

/* Splide blog */
.splide-blog .splide__slide {
  padding-bottom: 1rem;
}