/* ============================================================
   FONTS
   ============================================================ */
@font-face {
  font-family: 'Sacramento';
  src: url('../fonts/sacramento-v17-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-v21-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-v17-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-v17-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand */
  --c-brand:          #d35b94;
  --c-primary:        #9f316a;
  --c-primary-deep:   #841954;

  /* Surfaces */
  --c-bg:             #f9f9f9;
  --c-surface:        #ffffff;
  --c-petal:          #f8f0f4;

  /* Text */
  --c-text:           #1a1c1c;
  --c-text-soft:      #554248;
  --c-text-muted:     #6b5860;

  /* Borders */
  --c-border:         #dac0c8;
  --c-border-subtle:  #e8e8e8;

  /* Glass */
  --glass-bg:         rgba(255, 245, 250, 0.55);
  --glass-border:     rgba(255, 255, 255, 0.55);
  --glass-blur:       32px;

  /* Shadows */
  --shadow-sm:        0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md:        0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-brand:     0 8px 32px rgba(211, 91, 148, 0.22);
  --shadow-glass:     0 10px 40px rgba(211, 91, 148, 0.08);

  /* Radius */
  --r-sm:   0.5rem;
  --r:      1rem;
  --r-md:   1.5rem;
  --r-lg:   2rem;
  --r-xl:   3rem;
  --r-full: 9999px;

  /* Typography */
  --f-display: 'Sacramento', cursive;
  --f-heading: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --sp-xs:  0.25rem;
  --sp-sm:  0.5rem;
  --sp-md:  1rem;
  --sp-lg:  1.5rem;
  --sp-xl:  3rem;
  --sp-2xl: 5rem;
  --sp-3xl: 7.5rem;

  /* Layout */
  --max-w:      1200px;
  --pad-inline: 1.25rem;

  /* Z-Index */
  --z-base:    1;
  --z-card:    10;
  --z-nav:     100;
  --z-float:   200;

  /* Motion */
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --dur:       0.3s;
  --dur-slow:  0.65s;
}


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

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

body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background-color: var(--c-bg);
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }


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


/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.section-kicker {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 0.75rem;
}

.section-headline {
  font-family: var(--f-heading);
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--c-primary);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--c-text-soft);
  max-width: 52ch;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}

.section-header .section-sub {
  margin: 0 auto;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.9rem 1.875rem;
  border-radius: var(--r-full);
  font-family: var(--f-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    background-color var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

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

.btn--primary:hover {
  background-color: var(--c-primary);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(211, 91, 148, 0.35);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-brand);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn--whatsapp svg {
  flex-shrink: 0;
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  transition:
    background-color 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
    backdrop-filter  0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
    box-shadow       0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--c-border-subtle), var(--shadow-sm);
}

.site-header.menu-open {
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: none;
}

.nav-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.875rem var(--pad-inline) 0.75rem;
  transition: padding 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), gap 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.site-header.scrolled .nav-main {
  padding: 0.375rem var(--pad-inline);
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding-bottom: 2px;
  position: relative;
  transition: color var(--dur) var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--c-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.site-header.scrolled .nav-link {
  color: var(--c-text-soft);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
  color: var(--c-primary);
}

/* Logo swap: light on transparent, dark on scrolled */
.nav-logo {
  flex-shrink: 0;
  isolation: isolate;
  transform: translateZ(0);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 48px;
  width: auto;
  transition: height 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.nav-logo img.logo-light {
  height: 80px;
}

.logo-dark { display: none; }

.nav-brand-text {
  display: none;
  font-family: var(--f-heading);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-text);
  white-space: nowrap;
}

.site-header.scrolled .logo-light  { display: none; }
.site-header.scrolled .logo-dark   { display: block; }
.site-header.scrolled .nav-brand-text { display: block; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--r-sm);
  position: absolute;
  right: var(--pad-inline);
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.site-header.scrolled .hamburger-bar {
  background-color: var(--c-text);
}

.nav-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(249, 249, 249, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: calc(var(--z-nav) - 1);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  color: var(--c-primary);
  cursor: pointer;
  padding: 0;
}

.nav-mobile-close:hover {
  color: var(--c-brand);
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.nav-mobile-link {
  font-family: var(--f-heading);
  font-size: clamp(2rem, 8vw, 2.75rem);
  font-weight: 400;
  color: var(--c-primary);
  letter-spacing: 0.01em;
  transition: color var(--dur) var(--ease);
}

.nav-mobile-link:hover {
  color: var(--c-brand);
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-zoom-out 8s linear forwards;
  transform-origin: center center;
}

@keyframes hero-zoom-out {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-img { animation: none; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(25, 10, 18, 0.35) 0%,
    rgba(25, 10, 18, 0.15) 50%,
    rgba(25, 10, 18, 0.45) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: var(--z-card);
  width: 100%;
  text-align: left;
  padding-top: 160px;
}

.hero-brand {
  font-family: var(--f-heading);
  font-weight: 400;
  font-size: clamp(1.3rem, 3.2vw, 2.2rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fad8eb;
  margin-bottom: 3rem;
  white-space: nowrap;
}

.hero-brand br { display: none; }

.hero-headline {
  font-family: var(--f-display);
  font-size: clamp(4.5rem, 11vw, 10rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: #fff;
}

.hero-kicker {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.hero-line {
  display: block;
  white-space: nowrap;
  clip-path: inset(0 100% -0.4em 0);
  animation: write-in forwards;
  animation-timing-function: linear;
}

.hero-line:nth-child(1) {
  animation-duration: 1.8s;
  animation-delay: 0.4s;
}

.hero-line:nth-child(2) {
  animation-duration: 1.8s;
  animation-delay: 1.9s;
}

@keyframes write-in {
  from { clip-path: inset(0 100% -0.4em 0); }
  to   { clip-path: inset(0 0% -0.4em 0); }
}

@keyframes fade-up {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.nav-logo img.logo-light,
.hero-brand,
.nav-links,
.nav-hamburger {
  animation: fade-up 1s ease both;
  animation-delay: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-line,
  .nav-logo img.logo-light,
  .hero-brand {
    clip-path: none;
    animation: none;
    opacity: 1;
  }
}

.hero-sub {
  margin-top: 1.5rem;
  font-family: var(--f-body);
  font-size: clamp(0.875rem, 1.8vw, 1.0625rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
}


/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background-color: var(--c-petal);
  padding: var(--sp-3xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--sp-2xl);
  align-items: center;
}

.about-headline {
  font-family: var(--f-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--c-primary);
  margin-bottom: 1.25rem;
}

.about-role {
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 1.25rem;
}

.about-intro {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--c-text-soft);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-body {
  font-size: 1rem;
  color: var(--c-text);
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 58ch;
}

.about-body strong {
  color: var(--c-primary);
  font-weight: 600;
}


.about-image-wrap {
  aspect-ratio: 3 / 4;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    145deg,
    rgba(211, 91, 148, 0.1) 0%,
    rgba(159, 49, 106, 0.06) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  color: var(--c-text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}


/* ============================================================
   SERVICES – BENTO GRID
   ============================================================ */
.services {
  background-color: var(--c-surface);
  padding: var(--sp-3xl) 0;
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 480px;
  gap: 1.125rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--c-surface);
  border: 1px solid var(--c-border-subtle);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glass);
}

.service-card--wide {
  grid-column: span 3;
}

.service-card:not(.service-card--wide) {
  grid-column: span 2;
}

.service-card-image {
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

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

.service-card:first-child .service-card-image img,
.service-card:nth-child(2) .service-card-image img,
.service-card:nth-child(4) .service-card-image img {
  object-position: center top;
}

.service-card-body {
  flex-shrink: 0;
  min-height: 160px;
  padding: 1.375rem 1.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.service-card-title {
  font-family: var(--f-heading);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--c-primary);
  letter-spacing: -0.01em;
  margin-bottom: 0.375rem;
}

.service-card-text {
  font-size: 0.9rem;
  color: var(--c-text-soft);
  line-height: 1.65;
}


/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background-color: var(--c-bg);
  padding: var(--sp-3xl) 0;
}

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

.review-card {
  background: var(--c-surface);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border-subtle);
  margin: 0;
}

.review-card--a { transform: rotate(-1.8deg); }
.review-card--b { transform: rotate(1.2deg);  margin-top: 2.5rem; }
.review-card--c { transform: rotate(-0.8deg); margin-top: -1.5rem; }
.review-card--d { transform: rotate(1.6deg);  margin-top: 1.5rem; }

.review-text {
  line-height: 1.7;
  color: var(--c-text);
  margin-bottom: 1.25rem;
}

.review-text--script {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--c-primary);
  line-height: 1.5;
}

.review-text--serif {
  font-family: var(--f-heading);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--c-text);
}

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

.review-stars {
  color: var(--c-brand);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}


/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
  background-color: var(--c-petal);
  padding: var(--sp-3xl) 0;
}

.products-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.product-item img {
  height: 88px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity var(--dur) var(--ease);
}

.product-item img:hover {
  opacity: 1;
}

.product-placeholder {
  width: 180px;
  height: 72px;
  border: 2px dashed var(--c-border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}


/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background-color: var(--c-surface);
  padding: var(--sp-3xl) 0;
}

.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--c-border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  box-shadow: var(--shadow-glass);
  border-color: var(--c-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.375rem 1.5rem;
  font-family: var(--f-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--c-primary);
  text-align: left;
  transition: color var(--dur) var(--ease);
}

.faq-question span {
  flex: 1;
}

.faq-question:hover {
  color: var(--c-brand);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--c-brand);
  transition: transform var(--dur) var(--ease);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s var(--ease);
}

.faq-answer.open {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 1.5rem 1.375rem;
  font-size: 0.9375rem;
  color: var(--c-text-soft);
  line-height: 1.75;
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background-color: var(--c-petal);
  padding: var(--sp-3xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.125rem;
  margin-bottom: 2.5rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 1.4rem;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

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

.contact-card--primary {
  background-color: var(--c-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-brand);
}

.contact-card--primary:hover {
  background-color: var(--c-primary);
  box-shadow: 0 14px 40px rgba(211, 91, 148, 0.38);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.15);
}

.contact-card:not(.contact-card--primary) .contact-card-icon {
  background: rgba(211, 91, 148, 0.08);
  color: var(--c-brand);
}

.contact-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  min-width: 0;
}

.contact-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.72;
}

.contact-card-value {
  font-size: 0.9375rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-card:not(.contact-card--primary) .contact-card-value {
  color: var(--c-text);
}

.contact-card-arrow {
  flex-shrink: 0;
  opacity: 0.72;
}

.contact-meta {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--c-text-soft);
}

.contact-meta-item svg {
  flex-shrink: 0;
  color: var(--c-brand);
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--c-surface);
  border-top: 1px solid var(--c-border-subtle);
  padding: var(--sp-2xl) 0 var(--sp-lg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--sp-xl);
  margin-bottom: var(--sp-xl);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-brand img {
  height: 90px;
  width: auto;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--c-text-muted);
}

.footer-nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--c-text-soft);
  transition: color var(--dur) var(--ease);
}

.footer-link:hover {
  color: var(--c-brand);
}

.footer-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-social-link:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid var(--c-border-subtle);
  padding-top: var(--sp-md);
  text-align: center;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
}

.footer-credit {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  opacity: 0.65;
  margin-top: 0.2rem;
}

.footer-credit a {
  color: inherit;
  text-decoration: none;
}

.footer-credit a:hover {
  color: var(--c-brand);
  opacity: 1;
}


/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: var(--z-float);
  width: 58px;
  height: 58px;
  background-color: var(--c-brand);
  border-radius: var(--r-full);
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(211, 91, 148, 0.45);
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(211, 91, 148, 0.55);
}


/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--dur-slow) var(--ease),
    transform var(--dur-slow) var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-child {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
}

.reveal-child.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   RESPONSIVE – LARGE SCREENS
   ============================================================ */
@media (min-width: 1441px) {
  :root { --pad-inline: 2rem; }
}


/* ============================================================
   RESPONSIVE – SMALL LAPTOPS (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .reviews-scatter {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-card--c { margin-top: 0; }
  .review-card--d { margin-top: 0; }

  .services-bento {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 340px;
  }

  .service-card--wide {
    grid-column: span 1;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-card--primary {
    grid-column: span 2;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-nav {
    order: 3;
    grid-column: span 2;
    justify-content: flex-start;
  }
}


/* ============================================================
   RESPONSIVE – TABLET + NAV HAMBURGER (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .nav-links        { display: none; }
  .nav-hamburger    { display: flex; }
  .nav-main         { flex-direction: row; justify-content: space-between; padding: 0.875rem var(--pad-inline); position: relative; }

  /* Nav: Logo + Brandtext auf Mobile nie umbrechen */
  .nav-logo {
    min-width: 0;
    overflow: hidden;
    flex-shrink: 1;
  }

  .nav-brand-text {
    font-size: clamp(0.55rem, 2.8vw, 0.9rem);
    letter-spacing: clamp(0.08em, 1vw, 0.32em);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-header.scrolled .nav-logo img {
    height: clamp(28px, 5vw, 42px);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image-wrap {
    max-width: 400px;
    aspect-ratio: 3 / 4;
    margin: 0 auto;
  }
}


/* ============================================================
   RESPONSIVE – TABLET PORTRAIT (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --sp-3xl: 5rem; }

  .services-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .service-card-image {
    height: 220px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card--primary {
    grid-column: span 1;
  }

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

  .footer-brand {
    align-items: center;
  }

  .footer-cta {
    justify-content: center;
  }

  .footer-nav {
    justify-content: center;
    order: 0;
    grid-column: span 1;
  }

  /* Show floating WhatsApp on tablet and below – only when scrolled */
  .whatsapp-float {
    display: flex;
    opacity: 0;
    transform: scale(0.8);
    transition:
      opacity 0.3s var(--ease),
      transform 0.3s var(--ease),
      box-shadow var(--dur) var(--ease);
    pointer-events: none;
  }

  .whatsapp-float.is-visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }
}


/* ============================================================
   RESPONSIVE – SMARTPHONE (≤ 520px)
   ============================================================ */
@media (max-width: 520px) {
  :root { --pad-inline: 1.125rem; }

  .reviews-scatter {
    grid-template-columns: 1fr;
  }

  .review-card--a,
  .review-card--b,
  .review-card--c,
  .review-card--d {
    transform: none;
    margin-top: 0;
  }

  .hero {
    align-items: stretch;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding-inline: var(--pad-inline);
    padding-top: 18vh;
    padding-bottom: 38vh;
    min-height: 100%;
  }

  .hero-brand {
    white-space: normal;
    line-height: 1.2;
    font-size: 7vw;
  }

  .hero-brand br { display: block; }

  .hero-headline {
    font-size: 13.5vw;
    text-align: center;
  }

  .products-strip {
    gap: 2rem;
  }

  .product-item img {
    height: 60px;
    max-width: 160px;
  }

  .contact-meta {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}


/* ============================================================
   RESPONSIVE – SMALL SMARTPHONES (≤ 375px)
   ============================================================ */
@media (max-width: 375px) {
  .hero-headline {
    font-size: 12.5vw;
  }

  .faq-question {
    font-size: 1.075rem;
    padding: 1.125rem 1.25rem;
  }

  .faq-answer p {
    padding: 0 1.25rem 1.125rem;
  }
}


/* ============================================================
   PREISE PAGE
   ============================================================ */

/* Page Hero */
.page-hero {
  position: relative;
  padding: calc(var(--sp-3xl) + 7rem) 0 var(--sp-2xl);
  background-image: url('../img/hero/chelson-tamare.webp');
  background-size: cover;
  background-position: center 30%;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 240, 247, 0) 0%,
    rgba(255, 248, 252, 0) 40%,
    rgba(249, 249, 249, 1) 100%
  );
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.page-hero-title {
  font-family: var(--f-heading);
  font-size: clamp(2.8rem, 8vw, 7rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-brand);
  line-height: 1.1;
  margin: 0;
  hyphens: auto;
  overflow-wrap: break-word;
  animation: fade-up 1s ease both;
  animation-delay: 0.2s;
}

.page-hero-sub {
  font-size: 1rem;
  color: #3a3a3a;
  margin: 0;
  animation: fade-up 1s ease both;
  animation-delay: 0.45s;
}

/* Prices Layout */
.prices-section {
  padding: var(--sp-2xl) 0;
  background: var(--c-bg);
}

.prices-layout {
  display: grid;
  gap: 1.5rem;
}

/* Price Block (Card) */
.price-block {
  background: var(--c-surface);
  border: 1px solid var(--c-border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.price-block-header {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid rgba(211, 91, 148, 0.18);
  background: linear-gradient(135deg, rgba(211, 91, 148, 0.13) 0%, rgba(211, 91, 148, 0.04) 100%);
}

.price-block-title {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--c-primary);
  margin: 0 0 0.35rem;
}

.price-block-desc {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Price Table */
.price-table {
  padding: 0.5rem 0;
}

.price-row-group-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-brand);
  padding: 1rem 1.75rem 0.35rem;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  align-items: baseline;
  gap: 0.75rem 1.25rem;
  padding: 0.9rem 1.75rem;
  border-bottom: 1px solid var(--c-border-subtle);
  transition: background var(--dur) var(--ease);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row:hover {
  background: rgba(211, 91, 148, 0.03);
}

.price-row--indent {
  padding-left: 2.25rem;
  background: rgba(211, 91, 148, 0.02);
}

.price-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.4;
}

.price-desc {
  font-size: 0.8375rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

.price-desc em {
  font-style: normal;
  color: var(--c-text-soft);
  font-size: 0.78rem;
}

.price-amount {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-text);
  white-space: nowrap;
  text-align: right;
}

.price-amount--discount {
  color: var(--c-brand);
}

/* Notices */
.prices-notice-section {
  padding: var(--sp-xl) 0 var(--sp-2xl);
  background: var(--c-bg);
}

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

.price-notice-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.price-notice-card--highlight {
  background: linear-gradient(135deg, rgba(211, 91, 148, 0.12) 0%, rgba(211, 91, 148, 0.04) 100%);
  border-color: rgba(211, 91, 148, 0.3);
}

.price-notice-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r);
  background: rgba(211, 91, 148, 0.1);
  color: var(--c-brand);
}

.price-notice-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-text);
  margin: 0 0 0.35rem;
}

.price-notice-text {
  font-size: 0.8375rem;
  color: var(--c-text-muted);
  margin: 0;
  line-height: 1.55;
}

/* CTA */
.prices-cta {
  padding: var(--sp-2xl) 0;
  background: linear-gradient(160deg, var(--c-surface) 0%, var(--c-petal) 100%);
  text-align: center;
}

.prices-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.prices-cta-script {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--c-brand);
  margin: 0;
  line-height: 1;
}

.prices-cta-title {
  font-family: var(--f-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--c-text);
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .prices-notice-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .price-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.2rem 0.75rem;
    padding: 0.9rem 1.25rem;
  }

  .price-desc {
    grid-column: 1;
    grid-row: 2;
  }

  .price-amount {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }

  .price-block-header {
    padding: 1.25rem;
  }

  .price-row-group-label {
    padding: 0.9rem 1.25rem 0.3rem;
  }
}

/* ============================================================
   GALERIE PAGE
   ============================================================ */

.gallery-section {
  padding: var(--sp-xl) 0 var(--sp-2xl);
  background: var(--c-bg);
}

.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin: 0 0 1rem;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s var(--ease);
  background-color: var(--c-petal);
}

.gallery-item img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.gallery-item img.loaded {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-float);
  background: rgba(10, 8, 10, 0.93);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: min(90vw, 1000px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--r);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  user-select: none;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.1);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.1);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.lightbox-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--f-body);
}

@media (max-width: 768px) {
  .gallery-grid {
    columns: 2;
  }
}

@media (max-width: 380px) {
  .gallery-grid {
    columns: 1;
  }
}

/* ============================================================
   LEGAL PAGES (Impressum, Datenschutz, Barrierefreiheit)
   ============================================================ */
.legal-section {
  padding: 64px 0 96px;
}

.legal-container {
  max-width: 760px;
}

.legal-block {
  margin-bottom: 48px;
}

.legal-block:last-child {
  margin-bottom: 0;
}

.legal-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-border);
}

.legal-block p {
  color: var(--color-text-muted, #555);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block a {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-block a:hover {
  color: var(--color-primary-dark, #b84a7e);
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-list li {
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* ============================================================
   HOMESTUDIO
   ============================================================ */
.homestudio {
  padding: 80px 0;
  background: var(--color-bg-alt, #faf9f8);
}

.homestudio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.homestudio-item {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 3 / 4;
}

.homestudio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.homestudio-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .homestudio-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .homestudio-item {
    aspect-ratio: 4 / 3;
  }
}

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

  .reveal,
  .reveal-child {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
