:root {
  --color-primary: #744577;
  --color-cream: #F0E9B6;
  --color-leaf: #ACCFA3;
  --color-aqua: #84C5B1;
  --color-text: #2b2430;
  --color-bg: #fcfcf7;
  --space-xs: 0.5rem;
  --space-sm: 0.9rem;
  --space-md: 1.4rem;
  --space-lg: 2.2rem;
  --space-xl: 3.6rem;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 8px 24px rgba(32, 20, 36, 0.08);
  --shadow-hover: 0 12px 26px rgba(32, 20, 36, 0.14);
  --font-main: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(252, 252, 247, 0.95);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(116, 69, 119, 0.12);
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  gap: var(--space-md);
}

.logo {
  display: block;
}

.logo img {
  width: 4rem;
  position: relative;
  z-index: 20;
}

.logo img {
  display: inline-block;
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.logo:hover img {
  transform: rotate(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .logo img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 768px) {
  .logo img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 576px) {
  .logo img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 400px) {
  .logo img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

.main-nav {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.main-nav a {
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.main-nav a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.hero-slider {
  width: min(1120px, 92%);
  margin: var(--space-xl) auto;
  background: linear-gradient(135deg, var(--color-cream), var(--color-aqua));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  padding: var(--space-xl);
  position: relative;
  min-height: 360px;
}

.slide {
  display: none;
  max-width: 720px;
  animation: fadeIn 0.6s ease;
}

.slide.active {
  display: block;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: #4b3650;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

.btn {
  display: inline-block;
  margin-top: var(--space-md);
  padding: 0.72rem 1.2rem;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  color: #fff;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-muted {
  background: #e8e0eb;
  color: #35213b;
}

.slider-controls {
  position: absolute;
  right: var(--space-md);
  bottom: var(--space-md);
  display: flex;
  gap: var(--space-xs);
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(46, 33, 52, 0.3);
  cursor: pointer;
}

.slider-dot.active {
  background: var(--color-primary);
}

.section-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: var(--space-xl);
}

.section-grid article,
.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.section-grid article:hover,
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-band {
  background: #f5f2df;
  padding: var(--space-xl) 0;
  margin-bottom: var(--space-xl);
}

.feature-layout {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.editorial {
  margin-bottom: var(--space-xl);
}

.editorial-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(3, 1fr);
}

.image-story,
.studio-peek,
.cta-row,
.contact-layout {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: var(--space-xl);
}

.text-link {
  font-weight: 600;
  border-bottom: 1px solid;
}

.cta-panel {
  background: #eef6ed;
  padding: var(--space-lg) 0;
}

.site-footer {
  background: #2e2134;
  color: #f5edf7;
  padding: var(--space-xl) 0;
}

.site-footer a {
  color: #f5edf7;
}

.footer-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(4, 1fr);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(760px, 92%);
  background: #fff;
  border: 1px solid rgba(116, 69, 119, 0.24);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: var(--space-md);
  display: none;
  z-index: 15;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(19, 12, 22, 0.52);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.cookie-modal-panel {
  background: #fff;
  width: min(480px, 92%);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.page-main {
  padding: var(--space-xl) 0;
}

.page-hero {
  margin-bottom: var(--space-lg);
}

form {
  display: grid;
  gap: 0.4rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cdbed0;
  border-radius: 8px;
  padding: 0.65rem;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid #b18eb5;
  border-color: #9a6fa0;
}

.error {
  color: #9f2136;
  min-height: 1.2em;
}

.consent-row {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-xs);
}

iframe {
  width: 100%;
  min-height: 300px;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.legal {
  padding: var(--space-xl) 0;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  border: 1px solid rgba(116, 69, 119, 0.28);
  background: #fff;
  color: #3f2b46;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.pill:hover,
.pill.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.insight-panel {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: var(--space-md);
  margin-bottom: var(--space-xl);
  border-left: 6px solid var(--color-aqua);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.metric {
  background: #f8f6ea;
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
}

.metric strong {
  display: block;
  font-size: 1.4rem;
  color: var(--color-primary);
}

.notice-strip {
  width: min(1120px, 92%);
  margin: 0 auto var(--space-md);
  background: #eef6ed;
  border: 1px solid rgba(132, 197, 177, 0.5);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
  margin-bottom: var(--space-xl);
}

.faq-item {
  border: 1px solid rgba(116, 69, 119, 0.24);
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  border: none;
  text-align: left;
  background: transparent;
  padding: 0.95rem 1rem;
  cursor: pointer;
  font: inherit;
  color: var(--color-text);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 180px;
  padding: 0 1rem 0.95rem;
}

.timeline {
  border-left: 3px solid rgba(116, 69, 119, 0.25);
  padding-left: var(--space-md);
  margin-bottom: var(--space-xl);
}

.timeline-step {
  margin-bottom: var(--space-md);
  position: relative;
}

.timeline-step::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  position: absolute;
  left: -1.38rem;
  top: 0.35rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
}

.tag-cloud span {
  background: #f3eef4;
  border: 1px solid #decfe0;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.9rem;
}

.policy-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: var(--space-md) 0 var(--space-lg);
}

.policy-nav a {
  background: #f8f6ea;
  border: 1px solid #e1dab1;
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {

  .section-grid,
  .editorial-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-layout,
  .image-story,
  .studio-peek,
  .cta-row,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .insight-grid,
  .policy-nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {

  .section-grid,
  .editorial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    padding: var(--space-lg);
  }
}