/* =============================================
   NEWBORN MOMENTS BY NADIN
   Warm editorial — newborn photography
   ============================================= */

/* Local Fonts (DSGVO-compliant — no external requests) */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/cormorant-garamond-regular.woff2') format('woff2');
}

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

@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('fonts/jost-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('fonts/lora-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/lora-italic.woff2') format('woff2');
}

:root {
  /* Warm palette — cream, sand, taupe, blush */
  --cream: #faf7f2;
  --sand: #f0ebe2;
  --sand-dark: #e3dbd0;
  --taupe: #c4b5a4;
  --taupe-dark: #a6947f;
  --warm-brown: #8c7a68;
  --blush: #e8d5c8;
  --blush-light: #f5ece5;
  --gold: #c9a96e;
  --gold-muted: #d4bc8a;
  --black: #2e2a26;
  --dark: #4a4440;
  --text: #5c554f;
  --text-light: #9a918a;
  --white: #ffffff;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
  --font-serif: 'Lora', 'Georgia', serif;

  /* Spacing & Radii */
  --section-pad: clamp(80px, 10vw, 140px);
  --section-pad-sm: clamp(60px, 8vw, 100px);
  --radius: 4px;
  --radius-lg: 8px;

  /* Shadows */
  --shadow-soft: 0 4px 30px rgba(46, 42, 38, 0.06);
  --shadow-hover: 0 12px 40px rgba(46, 42, 38, 0.1);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--warm-brown);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

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

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

::selection {
  background: var(--blush);
  color: var(--black);
}

/* =============================================
   TYPOGRAPHY SYSTEM
   ============================================= */
.section-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-bottom: 16px;
}

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

.section-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -0.01em;
}

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

.italic {
  font-style: italic;
}

.text-divider {
  width: 40px;
  height: 1px;
  background: var(--taupe);
  margin: 28px 0;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 1px solid var(--warm-brown);
  color: var(--warm-brown);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  text-align: center;
}

.btn:hover {
  background: var(--warm-brown);
  color: var(--white);
}

.btn-light {
  border-color: var(--white);
  color: var(--white);
}

.btn-light:hover {
  background: var(--white);
  color: var(--black);
}

.btn-hero {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  font-weight: 400;
  padding: 18px 48px;
}

.btn-hero:hover {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-full {
  width: 100%;
}

.section-cta {
  text-align: center;
  margin-top: 50px;
}

.process-cta {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 20px;
}

/* =============================================
   IMAGE PLACEHOLDERS
   (Replace with real images)
   ============================================= */
.image-placeholder {
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.image-placeholder span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--taupe-dark);
  opacity: 0.6;
}

.image-placeholder.portrait {
  aspect-ratio: 3/4;
}

.image-placeholder.landscape {
  aspect-ratio: 4/3;
}

.image-placeholder.square {
  aspect-ratio: 1/1;
}

.image-placeholder.wide {
  aspect-ratio: 16/9;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.5s var(--ease);
}

.nav.scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: block;
  line-height: 0;
  transition: opacity 0.4s var(--ease);
}

.nav-logo img {
  display: block;
  height: 52px;
  width: auto;
}

.nav.scrolled .nav-logo img {
  height: 42px;
}

.nav.scrolled .nav-logo {
  color: var(--black);
}

.nav-logo-by {
  font-weight: 300;
  font-style: italic;
  font-size: 0.65em;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color 0.3s var(--ease);
}

.nav.scrolled .nav-links a {
  color: var(--text);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}

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

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

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

.nav-cta {
  padding: 10px 24px;
  border: 1px solid var(--warm-brown) !important;
  color: var(--warm-brown) !important;
}

.nav-cta:hover {
  background: var(--warm-brown);
  color: var(--white) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav.scrolled .nav-cta {
  border-color: var(--warm-brown) !important;
  color: var(--warm-brown) !important;
}

.nav.scrolled .nav-cta:hover {
  background: var(--warm-brown);
  color: var(--white) !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--black);
  transition: all 0.3s var(--ease);
}

.nav.scrolled .nav-toggle span {
  background: var(--black);
}

.nav-toggle.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  background: linear-gradient(135deg, #f5ede1 0%, #ebe0cf 100%);
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(100px, 12vw, 160px) clamp(40px, 6vw, 100px);
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-brown);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.hero-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
}

.hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--warm-brown);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.hero-image {
  position: relative;
}

.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--warm-brown);
  opacity: 0.6;
  transition: opacity 0.3s;
  z-index: 2;
}

.hero-scroll:hover {
  opacity: 1;
}

.scroll-dot {
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(14px); }
}

/* =============================================
   INTRO
   ============================================= */
.intro {
  padding: clamp(60px, 9vw, 110px) 0 clamp(20px, 4vw, 40px);
  background: var(--cream);
  text-align: center;
}

.intro-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
}

.intro-eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-brown);
  margin-bottom: 24px;
}

.intro-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: var(--black);
}

.intro-text em {
  font-style: italic;
  color: var(--warm-brown);
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: var(--section-pad) 0;
}

.about-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about-image .image-placeholder {
  max-width: 400px;
}

.about-image img {
  max-width: 400px;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-caption {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--taupe-dark);
  margin-top: 20px;
  max-width: 400px;
}

.about-text-col {
  max-width: 520px;
}

.about-intro {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--warm-brown);
  margin-bottom: 4px;
}

.about-body {
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 16px;
  color: var(--text);
}

.about-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--taupe-dark);
}

.about-location svg {
  color: var(--gold-muted);
  flex-shrink: 0;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  background: transparent;
  color: var(--taupe-dark);
  border: 1px solid var(--taupe);
  padding: 10px 22px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}

.btn-whatsapp:hover {
  background: var(--taupe-dark);
  border-color: var(--taupe-dark);
  color: var(--white);
}

.btn-whatsapp svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}

/* =============================================
   QUOTE BAND
   ============================================= */
.quote-band {
  background: var(--sand);
  padding: var(--section-pad-sm) 0;
}

.quote-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  text-align: center;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.4;
  color: var(--taupe);
  opacity: 0.4;
  margin-bottom: 12px;
}

.quote-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.5;
  color: var(--dark);
  border: none;
}

/* =============================================
   PORTFOLIO
   ============================================= */
.portfolio {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.portfolio-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  margin-bottom: 60px;
}

.portfolio-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(150px, 17vw, 215px);
  gap: 12px;
}

.portfolio-item {
  overflow: hidden;
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  display: block;
}

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

.portfolio-item:hover {
  box-shadow: var(--shadow-hover);
}

/* Row 1-2: large feature (2 cols × 2 rows) + tall item (1 col × 2 rows) */
.portfolio-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.portfolio-item:nth-child(2) {
  grid-row: span 2;
}

/* Row 3: 1 + 1 + 1 (each spans 1 row) */
.portfolio-item:nth-child(3),
.portfolio-item:nth-child(4),
.portfolio-item:nth-child(5) {
  grid-row: span 1;
}

/* Row 4: full width feature */
.portfolio-item.wide {
  grid-column: span 3;
  grid-row: span 1;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.services-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  text-align: center;
  margin-bottom: 60px;
}

.service-cards {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.service-card.reverse {
  direction: rtl;
}

.service-card.reverse > * {
  direction: ltr;
}

.service-image .image-placeholder {
  aspect-ratio: 3/4;
}

.service-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

/* Newborn service: keep mother's head in frame */
.service-card:nth-child(1) .service-image img {
  object-position: center top;
}

/* Babybauch service: show face + belly */
.service-card:nth-child(2) .service-image img {
  object-position: center 42%;
}

.service-body {
  padding: 20px 0;
}

.service-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--black);
  margin-bottom: 4px;
}

.service-age {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--taupe-dark);
  margin-bottom: 20px;
}

.service-desc {
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-includes {
  list-style: none;
  padding: 0;
}

.service-includes li {
  font-size: 0.88rem;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text);
}

.service-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-muted);
  transform: translateY(-50%);
}

/* =============================================
   PROCESS / SO LÄUFT'S
   ============================================= */
.process {
  padding: var(--section-pad) 0;
  background: var(--sand);
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.process-steps {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-number {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--black);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 0.9rem;
  line-height: 1.75;
}

.process-image .image-placeholder {
  max-width: 420px;
  margin-left: auto;
}

.process-image-col img {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-left: auto;
  border-radius: var(--radius-lg);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.testimonial {
  background: var(--cream);
  padding: 40px 32px 36px;
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand-dark);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.testimonial:nth-child(2) {
  transform: translateY(20px);
}

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

.testimonial:nth-child(2):hover {
  transform: translateY(16px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 24px;
}

.testimonial-author {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe-dark);
}

/* =============================================
   PRICING TEASER
   ============================================= */
.pricing-teaser {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.pricing-body {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.pricing-start {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 32px;
}

.pricing-start strong {
  font-weight: 500;
}

.pricing-image .image-placeholder {
  max-width: 380px;
  margin-left: auto;
}

.pricing-image img {
  max-width: 380px;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-left: auto;
  border-radius: var(--radius);
}

/* =============================================
   PACKAGES / BUCHEN
   ============================================= */
.packages {
  padding: var(--section-pad) 0;
  background: var(--sand);
}

.packages-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  text-align: center;
}

.packages-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--taupe-dark);
  margin-top: 12px;
  margin-bottom: 50px;
}

.package-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.package-card.featured {
  border: 2px solid var(--gold-muted);
}

.package-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold-muted);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 2;
}

.package-image {
  overflow: hidden;
}

.package-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease);
}

/* Newborn card: keep mother's head in frame */
.package-card:nth-child(1) .package-image img {
  object-position: center top;
}

/* Babybauch card: show face + belly */
.package-card:nth-child(3) .package-image img {
  object-position: center 42%;
}

.package-card:hover .package-image img {
  transform: scale(1.03);
}

.package-body {
  padding: 28px 24px 32px;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-body .btn-full {
  margin-top: auto;
}

.package-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 4px;
}

.package-age {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--taupe-dark);
  margin-bottom: 16px;
}

.package-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sand);
}

.package-price strong {
  font-weight: 500;
}

.package-includes {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.package-includes li {
  font-size: 0.85rem;
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text);
}

.package-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-muted);
  transform: translateY(-50%);
}

.btn-featured {
  background: var(--warm-brown);
  color: var(--white);
  border-color: var(--warm-brown);
}

.btn-featured:hover {
  background: var(--black);
  border-color: var(--black);
}

@media (max-width: 1024px) {
  .package-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  padding: var(--section-pad) 0;
  background: var(--sand);
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--sand-dark);
}

.faq-item:first-child {
  border-top: 1px solid var(--sand-dark);
}

.faq-question {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--black);
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--taupe-dark);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

details[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  font-size: 0.9rem;
  line-height: 1.8;
  padding-bottom: 22px;
  color: var(--text);
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-body {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
}

.contact-row svg {
  color: var(--taupe-dark);
  flex-shrink: 0;
}

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

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

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  font-weight: 400;
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--black);
  background: var(--cream);
  border: 1px solid var(--sand-dark);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s var(--ease);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--taupe);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--taupe);
  font-weight: 300;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23a6947f' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.contact-form .btn {
  margin-top: 8px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #4a4038;
  color: rgba(255,255,255,0.65);
  padding: 60px 0 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  text-align: center;
}

.footer-logo {
  display: inline-block;
  line-height: 0;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 64px;
  width: auto;
  /* invert logo (dark text) → light for dark footer bg */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-logo-by {
  font-weight: 300;
  font-style: italic;
  font-size: 0.6em;
  letter-spacing: 0.08em;
  opacity: 0.6;
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.6);
}

.footer-social {
  margin-bottom: 24px;
}

.footer-social a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

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

.footer-links {
  font-size: 0.78rem;
  margin-bottom: 20px;
}

.footer-links a {
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

.footer-links a:hover {
  color: rgba(255,255,255,0.7);
}

.footer-sep {
  margin: 0 12px;
  opacity: 0.3;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.stagger {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 140px clamp(24px, 6vw, 60px) 60px;
  }

  .hero-image {
    height: 60vh;
    min-height: 420px;
  }

  .hero-image img {
    position: relative;
    height: 100%;
  }

  .hero-scroll {
    display: none;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-col {
    max-width: 400px;
    margin: 0 auto;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card.reverse {
    direction: ltr;
  }

  .process-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .process-image-col {
    order: -1;
  }

  .process-image .image-placeholder,
  .process-image-col img {
    max-width: 100%;
    margin-left: 0;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial:nth-child(2) {
    transform: translateY(0);
  }

  .testimonial:nth-child(2):hover {
    transform: translateY(-4px);
  }

  .pricing-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-image .image-placeholder,
  .pricing-image img {
    max-width: 100%;
    margin-left: 0;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .portfolio-item.large {
    grid-column: span 2;
    grid-row: auto;
    aspect-ratio: 16/9;
  }

  .portfolio-item.wide {
    grid-column: span 2;
    grid-row: auto;
    aspect-ratio: 16/9;
  }

  .portfolio-item:nth-child(2),
  .portfolio-item:nth-child(3),
  .portfolio-item:nth-child(4),
  .portfolio-item:nth-child(5) {
    grid-row: auto;
    aspect-ratio: 1/1;
  }
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
    z-index: 1002;
  }

  /* Card-style mobile menu */
  .nav-links {
    position: fixed;
    top: 16px;
    right: 20px;
    left: 20px;
    bottom: auto;
    background: var(--cream);
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.18);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 52px 24px 32px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
    z-index: 1001;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .nav-links a {
    color: var(--black) !important;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    display: block;
    padding: 14px 0;
  }

  .nav-cta {
    border-color: var(--warm-brown) !important;
    color: var(--warm-brown) !important;
    display: inline-block !important;
    padding: 12px 36px !important;
    margin-top: 8px;
  }
}

@media (max-width: 768px) {

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

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

  .portfolio-item.large,
  .portfolio-item.wide {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }

  .portfolio-item:nth-child(2),
  .portfolio-item:nth-child(3),
  .portfolio-item:nth-child(4),
  .portfolio-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 1/1;
  }

  .process-step {
    gap: 16px;
  }

  .step-number {
    font-size: 1.8rem;
    width: 40px;
  }
}

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

  .portfolio-item,
  .portfolio-item.large,
  .portfolio-item.wide {
    grid-column: span 1;
    aspect-ratio: 4/3;
    grid-row: span 1;
  }
}

/* =============================================
   GDPR CHECKBOX
   ============================================= */
.form-checkbox {
  flex-direction: row !important;
  gap: 0 !important;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--text) !important;
  line-height: 1.6;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--warm-brown);
  cursor: pointer;
}

.checkbox-label a {
  color: var(--warm-brown);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--sand-dark);
  color: var(--warm-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.4s var(--ease);
  box-shadow: var(--shadow-soft);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--warm-brown);
  border-color: var(--warm-brown);
  color: var(--white);
  box-shadow: var(--shadow-hover);
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  cursor: pointer;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2.4rem;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--white);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 3rem;
  cursor: pointer;
  padding: 16px;
  transition: color 0.3s;
  line-height: 1;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--white);
}

.portfolio-item {
  cursor: pointer;
}
