/* ============================================
   CREAARE – YogaArt Praxis Maila Marchetta
   Stylesheet – Version 1.0
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --cream: #F5F0EA;
  --brown: #6B4D37;
  --gold: #A5771A;
  --gold-light: #E2B96A;
  --sand: #C9A882;
  --sand-light: #E8D9C5;
  --white: #FDFAF6;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Raleway', Arial, sans-serif;

  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(107, 77, 55, 0.08);
  --shadow-md: 0 4px 20px rgba(107, 77, 55, 0.12);
  --shadow-lg: 0 8px 40px rgba(107, 77, 55, 0.16);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --max-width: 1200px;
  --section-padding: 5rem 1.5rem;
}

/* ============================================
   CSS RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--brown);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-sans);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--brown);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--brown);
}

.lead {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.9;
}

.text-gold { color: var(--gold); }
.text-sand { color: var(--sand); }
.text-center { text-align: center; }
.text-italic { font-style: italic; font-family: var(--font-serif); }

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

.section {
  padding: var(--section-padding);
}

.section--cream { background-color: var(--cream); }
.section--white { background-color: var(--white); }
.section--sand { background-color: var(--sand-light); }
.section--brown { background-color: var(--brown); color: var(--cream); }
.section--brown h1,
.section--brown h2,
.section--brown h3,
.section--brown h4,
.section--brown p { color: var(--cream); }

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

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

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

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--brown);
  opacity: 0.85;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.25rem auto;
  border: none;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(201, 151, 58, 0.35);
}

.btn-primary:hover {
  background-color: var(--brown);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(61, 43, 31, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--brown);
  transform: translateY(-2px);
}

.btn-text {
  padding: 0;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.btn-text:hover {
  color: var(--brown);
}

/* ============================================
   GOLDEN SPIRAL SVG DECORATION
   ============================================ */
.spiral-deco {
  position: absolute;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.spiral-deco--lg { width: 400px; height: 400px; }
.spiral-deco--md { width: 250px; height: 250px; }
.spiral-deco--sm { width: 150px; height: 150px; }

.spiral-inline {
  display: inline-block;
  width: 40px;
  height: 40px;
  vertical-align: middle;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(253, 250, 246, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 130, 0.2);
  transition: var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.nav__logo-brand {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__logo-tagline {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.75rem;
  right: 0.75rem;
  height: 1px;
  background-color: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

.nav__cta {
  margin-left: 1rem;
}

/* Hamburger Menu */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--brown);
  transition: var(--transition);
  border-radius: 2px;
}

.nav__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.nav__mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 0.5rem;
  overflow-y: auto;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile .nav__link {
  font-size: 1.1rem;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--sand-light);
  width: 100%;
}

.nav__mobile .nav__link::after {
  display: none;
}

.nav__mobile .btn {
  margin-top: 1rem;
  text-align: center;
  justify-content: center;
}

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

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__brand {}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer__desc {
  font-size: 0.9rem;
  color: rgba(245, 240, 234, 0.7);
  line-height: 1.8;
  max-width: 280px;
}

.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__col ul li a {
  font-size: 0.875rem;
  color: rgba(245, 240, 234, 0.75);
  transition: var(--transition);
}

.footer__col ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer__contact p {
  font-size: 0.875rem;
  color: rgba(245, 240, 234, 0.75);
  margin-bottom: 0.5rem;
}

.footer__contact a {
  color: var(--gold-light);
}

.footer__bottom {
  max-width: var(--max-width);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 240, 234, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(245, 240, 234, 0.4);
}

.footer__bottom a {
  color: rgba(245, 240, 234, 0.5);
  font-size: 0.8rem;
}

.footer__bottom a:hover {
  color: var(--gold-light);
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 8rem 1.5rem 5rem;
  overflow: hidden;
  background-color: var(--cream);
}

.hero--page {
  min-height: 50vh;
  padding: 8rem 1.5rem 4rem;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--brown);
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--brown);
  opacity: 0.85;
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.9;
}

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

.hero__spiral {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(600px, 55vw);
  height: min(600px, 55vw);
  opacity: 0.08;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.card--offer {
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
}

.card--offer.featured {
  border-top-color: var(--brown);
  background: linear-gradient(135deg, var(--white) 0%, rgba(201, 151, 58, 0.05) 100%);
}

.card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background-color: var(--gold);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.card__badge--brown {
  background-color: var(--brown);
}

.card__icon {
  width: 48px;
  height: 48px;
  background-color: rgba(201, 151, 58, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  fill: var(--gold);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--brown);
  opacity: 0.8;
  flex: 1;
  margin-bottom: 1.5rem;
}

.card__footer {
  margin-top: auto;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--brown);
  margin-bottom: 1.5rem;
}

.testimonial__quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.8rem;
  margin-right: 0.25rem;
  font-family: var(--font-serif);
}

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

.testimonial__avatar {
  width: 44px;
  height: 44px;
  background-color: var(--sand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--brown);
  font-weight: 500;
  flex-shrink: 0;
}

.testimonial__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown);
}

.testimonial__role {
  font-size: 0.8rem;
  color: var(--sand);
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.stars span {
  color: var(--gold);
  font-size: 0.9rem;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq {
  max-width: 780px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--sand-light);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--brown);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  gap: 1rem;
}

.faq__question:hover {
  color: var(--gold);
}

.faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 300;
}

.faq__item.open .faq__icon {
  background-color: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__answer-inner {
  padding: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--brown);
  opacity: 0.85;
}

.faq__item.open .faq__answer {
  max-height: 500px;
}

/* ============================================
   PROCESS / STEPS
   ============================================ */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 500;
}

.step__content h4 {
  margin-bottom: 0.4rem;
}

.step__content p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.comparison-table th {
  background-color: var(--brown);
  color: var(--cream);
  padding: 1.25rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table td {
  padding: 1rem 1rem;
  border-bottom: 1px solid var(--sand-light);
  font-size: 0.9rem;
  text-align: center;
  background-color: var(--white);
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  background-color: var(--cream);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table .check {
  color: var(--gold);
  font-size: 1.1rem;
}

.comparison-table .dash {
  color: var(--sand);
}

/* ============================================
   BANNER / QUOTE SECTIONS
   ============================================ */
.banner {
  position: relative;
  overflow: hidden;
}

.banner__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: var(--cream);
}

.banner__source {
  display: block;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 1.25rem;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.blog-card__image {
  height: 200px;
  background-color: var(--sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card__image-inner {
  width: 80px;
  height: 80px;
  opacity: 0.3;
}

.blog-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.blog-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--brown);
  margin-bottom: 0.75rem;
}

.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--brown);
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}

.blog-card__meta {
  font-size: 0.75rem;
  color: var(--sand);
  margin-bottom: 1rem;
}

/* ============================================
   ARTICLE STYLES
   ============================================ */
.article-body {
  max-width: 720px;
  margin: 0 auto;
}

.article-body h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin: 2.5rem 0 1rem;
  color: var(--brown);
}

.article-body h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  margin: 2rem 0 0.75rem;
  color: var(--brown);
}

.article-body p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.9;
}

.article-body ul,
.article-body ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }

.article-body li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background-color: rgba(201, 151, 58, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.article-body blockquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.article__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--sand-light);
  border-bottom: 1px solid var(--sand-light);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.article__meta span {
  font-size: 0.8rem;
  color: var(--sand);
  font-weight: 500;
}

/* ============================================
   FEATURE LIST / BENEFITS
   ============================================ */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-item__icon {
  width: 24px;
  height: 24px;
  background-color: rgba(201, 151, 58, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item__icon::after {
  content: '✓';
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
}

.feature-item p {
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================
   STATS / NUMBERS
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat__number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown);
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   PHOTO PLACEHOLDER
   ============================================ */
.photo-placeholder {
  width: 100%;
  background-color: var(--sand-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}

.photo-placeholder::after {
  content: 'Foto Maila Marchetta';
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--sand);
  letter-spacing: 0.1em;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.breadcrumb a {
  font-size: 0.8rem;
  color: var(--sand);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  font-size: 0.8rem;
  color: var(--sand);
}

.breadcrumb .sep {
  color: var(--sand-light);
}

/* ============================================
   PAGE HEADER (for subpages)
   ============================================ */
.page-header {
  padding: 7rem 1.5rem 3rem;
  background-color: var(--cream);
  position: relative;
  overflow: hidden;
}

.page-header__content {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-header__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.page-header h1 {
  margin-bottom: 1rem;
  max-width: 700px;
}

.page-header p {
  font-size: 1.05rem;
  max-width: 580px;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--brown) 0%, #6b4d37 100%);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2, .cta-section p {
  color: var(--cream);
}

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

.cta-section p {
  max-width: 580px;
  margin: 0 auto 2rem;
  opacity: 0.85;
  font-size: 1.05rem;
}

.cta-section .btn-primary {
  background-color: var(--gold);
  margin-right: 1rem;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--sand-light);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--brown);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 151, 58, 0.1);
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9973A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ============================================
   PROVEN EXPERT WIDGET
   ============================================ */
#proven-expert-widget {
  background-color: var(--sand-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  border: 2px dashed var(--sand);
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#proven-expert-widget::after {
  content: 'ProvenExpert Bewertungs-Widget wird hier geladen';
  font-size: 0.8rem;
  color: var(--sand);
  font-style: italic;
}

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

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

/* Fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 3.5rem 1.25rem;
  }

  .nav__menu {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 80vh;
    padding: 9rem 1.25rem 4rem;
  }

  .hero__spiral {
    right: -20%;
    opacity: 0.05;
    width: 300px;
    height: 300px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer__desc {
    max-width: 100%;
  }

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

  .comparison-table {
    font-size: 0.8rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
  }

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

  .cta-section .btn-primary {
    margin-right: 0;
    margin-bottom: 0.75rem;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .article__meta {
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .photo-placeholder {
    aspect-ratio: 1/1;
  }
}

/* ============================================
   COMPATIBILITY NAV (used by sub-pages)
   ============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 2.5rem;
  background: rgba(253,250,246,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,130,0.2);
  transition: box-shadow 0.3s;
}

.nav-logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.nav-logo .brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
}
.nav-logo .tagline {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6B4D37;
  padding: 0;
  border-radius: 0;
  transition: color 0.3s;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a.active { color: #C9973A; }

.nav-cta {
  background: #6B4D37 !important;
  color: #FDFAF6 !important;
  padding: 10px 24px !important;
  border-radius: 2px !important;
  font-size: 11px;
  letter-spacing: 2px;
}
.nav-cta:hover { background: #C9973A !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
  box-shadow: 0 8px 30px rgba(107,77,55,0.12);
}
.mobile-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--sand-light);
}
.mobile-menu.open { display: flex; }

@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ============================================
   COMPATIBILITY FOOTER (used by sub-pages)
   ============================================ */
footer {
  background: var(--cream);
  color: var(--brown);
  padding: 3.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  border-top: 1px solid var(--sand-light);
}
.footer-brand .brand {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  color: var(--brown);
  display: block;
  margin-bottom: 4px;
}
.footer-brand .tagline {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.85rem; opacity: 0.7; line-height: 1.8; color: var(--brown); }
.footer-social { display: flex; gap: 12px; margin-top: 36px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border: 1.5px solid var(--gold); color: var(--gold); border-radius: 50%; text-decoration: none; transition: background 0.2s, color 0.2s; }
.footer-social a:hover { background: var(--gold); color: var(--white); }
footer h4 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.5rem; }
footer ul li a {
  font-size: 0.85rem;
  color: var(--brown);
  opacity: 0.7;
  text-decoration: none;
  transition: color 0.2s;
}
footer ul li a:hover { color: var(--gold); opacity: 1; }

.footer-bottom {
  background: var(--cream);
  padding: 1rem 2.5rem;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--brown);
  opacity: 0.7;
}
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  footer { grid-template-columns: 1fr; padding: 2.5rem 1.25rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; padding: 1rem 1.25rem; text-align: center; justify-content: center; align-items: center; }
}
