/* ===========================
   ATELIER MAVEN — DESIGN SYSTEM
   Style: friendly modern, editorial
   Cream + ink + sage + coral accent
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Geist:wght@300;400;500;600;700&display=swap');

:root {
  /* Palette */
  --cream: #f5f1ea;
  --cream-2: #ebe5d8;
  --ink: #1a1a1a;
  --ink-soft: #2a2a2a;
  --sage: #6b8e6e;
  --sage-light: #a8c4a8;
  --coral: #e87554;
  --coral-soft: #f5b7a3;
  --sand: #d4c5a9;
  --paper: #fafaf7;
  --line: rgba(26, 26, 26, 0.08);
  --line-strong: rgba(26, 26, 26, 0.18);
  --shadow: 0 12px 32px -16px rgba(26, 26, 26, 0.15);
  --shadow-lg: 0 24px 60px -20px rgba(26, 26, 26, 0.2);

  /* Typography */
  --font-serif: 'Instrument Serif', serif;
  --font-sans: 'Geist', -apple-system, sans-serif;

  /* Spacing */
  --container: 1240px;
  --gutter: clamp(1.2rem, 4vw, 2rem);
  --radius: 14px;
  --radius-lg: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button { font-family: inherit; cursor: pointer; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { font-size: clamp(2.6rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-size: 1.2rem; }

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

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sage);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--sage);
}

p { color: var(--ink-soft); }

/* ============ LAYOUT ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}

/* ============ NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 234, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ink);
}

.brand-mark {
  width: 32px;
  height: 32px;
  background: var(--coral);
  border-radius: 50% 50% 50% 0;
  position: relative;
  transform: rotate(-12deg);
  transition: transform 0.4s;
}

.brand:hover .brand-mark { transform: rotate(0deg); }

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

.nav-links a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 400;
  position: relative;
  padding: 0.3rem 0;
}

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

.nav-links a.active {
  color: var(--ink);
  font-weight: 500;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 0.7rem 1.3rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s;
  border: none;
}

.nav-cta:hover {
  background: var(--coral);
  color: var(--cream);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--ink);
  cursor: pointer;
}

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 1.5rem var(--gutter);
    gap: 1rem;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-cta { align-self: flex-start; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
  text-decoration: none;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--coral);
  border-color: var(--coral);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.25s;
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============ HERO ============ */
.hero {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 9vw, 7rem);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

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

.hero-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.hero-stat .num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--ink);
  display: block;
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 0.4rem;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--cream);
  padding: 1rem 1.3rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow);
}

.hero-badge .dot {
  width: 10px;
  height: 10px;
  background: var(--sage);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-badge-text {
  font-size: 0.85rem;
  line-height: 1.3;
}
.hero-badge-text strong { display: block; color: var(--ink); }

.hero-decor {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--coral-soft) 0%, transparent 70%);
  opacity: 0.5;
  z-index: -1;
  top: -100px;
  right: -100px;
  filter: blur(40px);
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; aspect-ratio: 4/5; margin: 0 auto; }
}

/* ============ SECTION HEADER ============ */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header .eyebrow { margin-bottom: 0.8rem; }

.section-header h2 { max-width: 720px; }

.section-header-text { max-width: 720px; }

.section-link {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 0.2rem;
  transition: all 0.2s;
}

.section-link:hover {
  color: var(--coral);
  border-color: var(--coral);
}

/* ============ DISCIPLINES (3 col) ============ */
.disciplines {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
}

.discipline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.discipline {
  position: relative;
}

.discipline-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--coral);
  margin-bottom: 1rem;
  display: block;
}

.discipline h3 {
  margin-bottom: 1rem;
}

.discipline p {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.discipline ul {
  list-style: none;
  padding: 0;
}

.discipline li {
  font-size: 0.92rem;
  padding: 0.6rem 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--ink-soft);
}

.discipline li::before {
  content: '→';
  color: var(--sage);
  margin-right: 0.7rem;
  flex-shrink: 0;
}

@media (max-width: 880px) {
  .discipline-grid { grid-template-columns: 1fr; }
}

/* ============ COURSES GRID ============ */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.course-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.course-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.course-card:hover .course-image img { transform: scale(1.04); }

.course-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--cream);
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink);
}

.course-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.course-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}

.course-body p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  margin-bottom: 1.3rem;
  flex: 1;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--ink-soft);
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.course-meta .level {
  color: var(--sage);
  font-weight: 500;
}

@media (max-width: 880px) {
  .courses-grid { grid-template-columns: 1fr; }
}

/* ============ FEATURE BAND ============ */
.feature-band {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.feature-band::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 70%);
  opacity: 0.3;
  filter: blur(60px);
  bottom: -150px;
  right: -150px;
}

.feature-band-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.feature-band h2 {
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.feature-band p {
  color: rgba(245, 241, 234, 0.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.feature-band .eyebrow { color: var(--coral-soft); margin-bottom: 1rem; }
.feature-band .eyebrow::before { background: var(--coral-soft); }

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: rgba(245, 241, 234, 0.9);
}

.feature-list li::before {
  content: '✓';
  color: var(--sage-light);
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 880px) {
  .feature-band-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--paper);
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 2rem;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  font-size: 0.9rem;
  line-height: 1.3;
}

.testimonial-info strong { display: block; color: var(--ink); }

.testimonial-info span { color: var(--ink-soft); font-size: 0.82rem; }

@media (max-width: 880px) {
  .testimonials { grid-template-columns: 1fr; }
}

/* ============ ARTICLES ============ */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.article-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.article-image {
  aspect-ratio: 16/11;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 1.3rem;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.article-card:hover .article-image img { transform: scale(1.04); }

.article-cat {
  font-size: 0.78rem;
  color: var(--sage);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.article-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
  transition: color 0.2s;
}

.article-card:hover h3 { color: var(--coral); }

.article-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.article-meta {
  font-size: 0.82rem;
  color: var(--ink-soft);
  display: flex;
  gap: 1rem;
}

@media (max-width: 880px) {
  .articles-grid { grid-template-columns: 1fr; }
}

/* ============ CTA NEWSLETTER ============ */
.newsletter {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter h2 { margin-bottom: 1rem; }

.newsletter p {
  max-width: 520px;
  margin: 0 auto 2.5rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.newsletter-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  gap: 0.5rem;
  background: var(--cream);
  padding: 0.4rem;
  border-radius: 100px;
  border: 1.5px solid var(--ink);
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1.2rem;
  font-family: inherit;
  font-size: 0.95rem;
  border: none;
  background: transparent;
  outline: none;
  color: var(--ink);
}

.newsletter-form button {
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 0.8rem 1.6rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-form button:hover { background: var(--coral); }

.newsletter-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 1.2rem;
}

@media (max-width: 600px) {
  .newsletter-form { flex-direction: column; border-radius: var(--radius); padding: 1rem; }
  .newsletter-form button { padding: 1rem; }
}

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

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

footer h4 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral-soft);
  margin-bottom: 1.2rem;
}

.footer-brand p {
  color: rgba(245, 241, 234, 0.7);
  margin-top: 1rem;
  max-width: 360px;
  font-size: 0.95rem;
}

.footer-brand .brand { color: var(--cream); margin-bottom: 0; }

footer ul { list-style: none; }
footer li { margin-bottom: 0.6rem; }
footer a {
  color: rgba(245, 241, 234, 0.7);
  font-size: 0.92rem;
}
footer a:hover { color: var(--coral-soft); }

.footer-bottom {
  border-top: 1px solid rgba(245, 241, 234, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(245, 241, 234, 0.5);
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============ INTERIOR PAGES ============ */
.page-header {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 5vw, 4rem);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.breadcrumb a:hover { color: var(--coral); }

.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 900px;
  margin-bottom: 1.2rem;
}

.page-header .lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 700px;
}

/* Prose for legal & content pages */
.prose {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.8;
}

.prose h2 {
  font-size: 1.7rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--ink);
}

.prose h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
}

.prose p, .prose ul, .prose ol {
  margin-bottom: 1.2rem;
  color: var(--ink-soft);
}

.prose ul, .prose ol { padding-left: 1.5rem; }
.prose li { margin-bottom: 0.5rem; }
.prose strong { color: var(--ink); font-weight: 600; }

.prose a {
  color: var(--coral);
  border-bottom: 1px solid var(--coral);
}

.prose .info-box {
  background: var(--paper);
  border-left: 3px solid var(--coral);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.contact-info-block {
  background: var(--paper);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.contact-info-block .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.contact-info-block .value {
  font-size: 1.05rem;
  color: var(--ink);
}

form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.95rem 1.1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--coral);
}

.field textarea { resize: vertical; min-height: 140px; }

.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.field-checkbox input { width: auto; margin-top: 0.25rem; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============ COURSE DETAIL ============ */
.course-detail {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.course-detail-image {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow);
}

.course-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.curriculum {
  margin-top: 2.5rem;
}

.module {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.module-num {
  width: 40px;
  height: 40px;
  background: var(--coral);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.module-content h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.module-content p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

.module-meta {
  font-size: 0.8rem;
  color: var(--sage);
  font-weight: 500;
}

@media (max-width: 880px) {
  .course-detail { grid-template-columns: 1fr; }
  .course-detail-image { position: static; }
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 480px;
  background: var(--ink);
  color: var(--cream);
  padding: 1.5rem;
  border-radius: var(--radius);
  z-index: 1000;
  display: none;
  box-shadow: var(--shadow-lg);
}

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

.cookie-banner h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.cookie-banner p {
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  color: rgba(245, 241, 234, 0.8);
}

.cookie-banner a { color: var(--coral-soft); border-bottom: 1px solid var(--coral-soft); }

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

.cookie-banner button {
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid rgba(245, 241, 234, 0.4);
  background: transparent;
  color: var(--cream);
  font-family: inherit;
  transition: all 0.2s;
}

.cookie-banner .accept {
  background: var(--coral);
  color: var(--cream);
  border-color: var(--coral);
}

.cookie-banner .accept:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.cookie-banner .decline:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* ============ ANIMATIONS ============ */
.fade-in {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeIn 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.25s; }
.fade-in:nth-child(3) { animation-delay: 0.4s; }
.fade-in:nth-child(4) { animation-delay: 0.55s; }

@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ============ PRINT FRIENDLY ============ */
@media print {
  .nav, footer, .cookie-banner, .nav-cta { display: none; }
  body { background: white; color: black; }
}
