/* ============================================
   MARKETING SITE — STYLE.CSS
   Visual DNA: nature-organic, vibrant-multi,
   sharp-0, bold-offset, Archivo Black + Archivo
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:wght@400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --primary: #8B2FC9;
  --accent: #FF2D87;
  --bg: #FAF8FF;
  --surface: #F0ECFA;
  --text: #1C1229;
  --muted: #7D7290;
  --lime: #A8E600;
  --shadow-offset: 6px 6px 0 var(--primary);
  --shadow-offset-accent: 6px 6px 0 var(--accent);
  --shadow-offset-lime: 6px 6px 0 var(--lime);
  --font-heading: 'Archivo Black', sans-serif;
  --font-body: 'Archivo', sans-serif;
  --header-height: 72px;
  --container-max: 1200px;
  --transition-base: 0.25s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--accent);
}

ul, ol {
  list-style: none;
}

/* --- Focus Visible --- */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--text);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text);
}

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

.text-accent {
  color: var(--accent);
}

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

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-header p {
  color: var(--muted);
  font-size: 1.1rem;
}

/* --- Decorative Organic Blobs (SVG backgrounds) --- */
.blob-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
}

.blob-decoration--top-right {
  top: -80px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath fill='%238B2FC9' d='M45.3,-58.2C57.1,-49.3,64.1,-33.5,68.8,-16.8C73.5,-0.1,75.8,17.5,68.7,31.2C61.5,44.9,44.8,54.7,27.8,60.8C10.8,66.8,-6.5,69,-22.6,64.1C-38.7,59.1,-53.5,47,-62.1,31.8C-70.7,16.6,-73.1,-1.8,-68.1,-18.1C-63.1,-34.4,-50.8,-48.6,-36.5,-57.1C-22.2,-65.6,-5.9,-68.4,8.8,-74.2C23.5,-80,33.5,-67.1,45.3,-58.2Z' transform='translate(100 100)'/%3E%3C/svg%3E") no-repeat center/contain;
}

.blob-decoration--bottom-left {
  bottom: -60px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath fill='%23FF2D87' d='M39.5,-51.7C52.1,-42.8,63.8,-32.1,69.3,-18.3C74.8,-4.5,74.1,12.4,67.3,25.8C60.5,39.2,47.6,49.1,33.4,55.7C19.2,62.3,3.7,65.6,-10.8,63.5C-25.3,61.4,-38.8,53.9,-49.4,43.1C-60,32.3,-67.7,18.2,-69.3,3.3C-70.9,-11.6,-66.4,-27.3,-56.4,-37.8C-46.4,-48.3,-30.9,-53.6,-16.5,-58.3C-2.1,-63,11.2,-67.1,24.1,-64.2C37,-61.3,26.9,-60.6,39.5,-51.7Z' transform='translate(100 100)'/%3E%3C/svg%3E") no-repeat center/contain;
}

.leaf-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
  width: 180px;
  height: 180px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23A8E600' d='M50,5 C65,15 85,30 90,55 C95,80 75,95 50,95 C25,95 5,80 10,55 C15,30 35,15 50,5Z'/%3E%3Cpath fill='none' stroke='%23A8E600' stroke-width='1.5' d='M50,20 L50,85 M50,40 L35,30 M50,55 L65,45 M50,70 L38,62'/%3E%3C/svg%3E") no-repeat center/contain;
}

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: background var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  height: var(--header-height);
}

.header.scrolled {
  background: rgba(250, 248, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(28, 18, 41, 0.08);
  border-bottom-color: var(--surface);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  text-decoration: none;
  flex-shrink: 0;
}

.logo:hover {
  color: var(--accent);
}

/* --- Navigation --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--text);
  border-radius: 0;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1;
  z-index: 10;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-menu a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--transition-base);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-base);
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a:hover::after {
  width: 100%;
}

@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: inline-block;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 1rem;
    border-top: 1px solid var(--muted);
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(28, 18, 41, 0.1);
  }

  .nav-menu.open a {
    padding: 0.5rem 0;
    font-size: 1.1rem;
  }
}

/* --- Buttons --- */
.btn-primary,
.btn-secondary,
.cta-button,
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  text-align: center;
  line-height: 1.2;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-offset);
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--primary);
  color: #fff;
}

.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--primary);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-offset-accent);
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--accent);
}

.btn-secondary:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--accent);
}

.cta-button {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-offset);
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

.cta-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--primary);
  color: #fff;
}

.cta-button:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--primary);
}

.form-submit {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-offset-accent);
  width: 100%;
}

.form-submit:hover {
  background: var(--accent);
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--primary);
}

.form-submit:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--primary);
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  isolation: isolate;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.85));
  z-index: 0;
}

.hero-section > * {
  position: relative;
  z-index: 1;
}

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

.hero-content h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 560px;
}

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

.hero-badge {
  display: inline-block;
  background: var(--lime);
  color: var(--text);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Features Section --- */
.features-section {
  position: relative;
  overflow: hidden;
}

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

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: 0;
  box-shadow: var(--shadow-offset);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
}

.feature-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--primary);
}

.feature-card:nth-child(2) {
  box-shadow: var(--shadow-offset-accent);
}

.feature-card:nth-child(2):hover {
  box-shadow: 9px 9px 0 var(--accent);
}

.feature-card:nth-child(3) {
  box-shadow: var(--shadow-offset-lime);
}

.feature-card:nth-child(3):hover {
  box-shadow: 9px 9px 0 var(--lime);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  border-radius: 0;
}

.feature-card:nth-child(2) .feature-icon {
  background: var(--accent);
}

.feature-card:nth-child(3) .feature-icon {
  background: var(--lime);
  color: var(--text);
}

.feature-card h3 {
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--muted);
  margin-bottom: 0;
}

/* --- Services Section --- */
.services-section {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

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

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: var(--bg);
  padding: 2rem 1.5rem;
  border-radius: 0;
  text-align: center;
  box-shadow: var(--shadow-offset);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.service-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--primary);
}

.service-card h3 {
  font-size: 1.15rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.service-card .service-price {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
}

/* --- About Section --- */
.about-section {
  position: relative;
  overflow: hidden;
}

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

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: var(--shadow-offset);
}

.about-content h2 {
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.about-highlight-item .dot {
  width: 12px;
  height: 12px;
  background: var(--lime);
  flex-shrink: 0;
}

/* --- Stats Section --- */
.stats-section {
  background: var(--primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 0.25rem;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.stat-item:nth-child(2) h2 {
  color: var(--lime);
}

.stat-item:nth-child(3) h2 {
  color: var(--accent);
}

/* --- Testimonials Section --- */
.testimonial-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.85));
  z-index: 0;
}

.testimonial-section > * {
  position: relative;
  z-index: 1;
}

.testimonial-section .section-header h2 {
  color: #fff;
}

.testimonial-section .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

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

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: 0;
  box-shadow: var(--shadow-offset);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.testimonial-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--primary);
}

.testimonial-card:nth-child(2) {
  box-shadow: var(--shadow-offset-accent);
}

.testimonial-card:nth-child(2):hover {
  box-shadow: 8px 8px 0 var(--accent);
}

.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-quote::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 0;
  vertical-align: -0.5rem;
  margin-right: 0.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 0;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testimonial-author-info h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.testimonial-author-info span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* --- CTA Section --- */
.cta-section {
  background: var(--surface);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* --- Contact Section --- */
.contact-section {
  position: relative;
}

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

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

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-row .contact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 1.4rem;
  text-align: center;
  color: var(--primary);
  margin-top: 0.1rem;
}

.contact-row .contact-text {
  font-size: 0.95rem;
}

.contact-row .contact-text strong {
  display: block;
  margin-bottom: 0.15rem;
}

.contact-row .contact-text span {
  color: var(--muted);
}

/* --- Forms --- */
.contact-form {
  background: var(--surface);
  padding: 2rem;
  box-shadow: var(--shadow-offset);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
  width: 100%;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--muted);
  border-radius: 0;
  background: var(--bg);
  color: var(--text);
  font: inherit;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 47, 201, 0.15);
}

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

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

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- Footer --- */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 0;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  max-width: 300px;
}

.footer-column h4 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column ul li {
  margin-bottom: 0.6rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: color var(--transition-base);
}

.footer-column ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  transition: color var(--transition-base);
}

.footer-social a:hover {
  color: var(--accent);
}

/* --- Cookie Popup --- */
.cookie-popup {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  max-width: 420px;
  background: var(--text);
  color: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(28, 18, 41, 0.3);
  z-index: 9999;
  transition: opacity var(--transition-base), transform var(--transition-base);
}

@media (min-width: 768px) {
  .cookie-popup {
    left: auto;
  }
}

.cookie-popup.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.cookie-popup h4 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cookie-popup p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

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

.cookie-popup .cookie-accept {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 0;
  transition: background var(--transition-base);
}

.cookie-popup .cookie-accept:hover {
  background: var(--primary);
}

.cookie-popup .cookie-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 0;
  transition: border-color var(--transition-base), color var(--transition-base);
}

.cookie-popup .cookie-decline:hover {
  border-color: #fff;
  color: #fff;
}

/* --- Policy Pages --- */
.policy-section {
  padding: 4rem 0;
}

.policy-content {
  max-width: 780px;
  margin: 0 auto;
}

.policy-content h1 {
  margin-bottom: 0.5rem;
}

.policy-content .policy-updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--surface);
}

.policy-content h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.policy-content p {
  color: var(--muted);
  line-height: 1.8;
}

.policy-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style: disc;
}

.policy-content ul li {
  color: var(--muted);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.policy-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-content a:hover {
  color: var(--accent);
}

/* --- Photo Background Utility --- */
.has-photo-bg {
  position: relative;
  isolation: isolate;
}

.has-photo-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.85));
  z-index: 0;
}

.has-photo-bg > * {
  position: relative;
  z-index: 1;
}

/* --- Utility Classes --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* --- Organic Divider --- */
.organic-divider {
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 0 auto 1.5rem;
}

.organic-divider--left {
  margin-left: 0;
}

/* --- Card Accent Borders --- */
.accent-border-top {
  border-top: 4px solid var(--accent);
}

.accent-border-left {
  border-left: 4px solid var(--primary);
}

/* --- Scroll to Top --- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 0;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-offset-accent);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--accent);
}

/* --- Page Transition / Loading --- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.4s ease;
}

.page-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--surface);
  border-top-color: var(--primary);
  border-radius: 0;
  animation: spin 0.8s linear infinite;
}

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

/* --- Selection --- */
::selection {
  background: var(--primary);
  color: #fff;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--surface);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border: 2px solid var(--surface);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}