/* ============================================
   MAYBLISS - POLAROID NOSTALGIA DESIGN SYSTEM
   ============================================ */


:root {
  
  --color-cream: #faf6f0;
  --color-warm-white: #fff9f2;
  --color-parchment: #f5ede0;
  --color-sand: #e8d5bb;
  --color-caramel: #c8935a;
  --color-amber: #b5722a;
  --color-rust: #9c5a1e;
  --color-bark: #6b3d14;
  --color-espresso: #2c1a0e;
  --color-charcoal: #3d2b1f;
  --color-warm-gray: #8a7265;
  --color-light-gray: #d4c4b5;
  --color-polaroid-white: #fdfaf6;
  --color-accent-teal: #4a8b7f;
  --color-accent-teal-light: #6aab9f;
  --color-error: #c0392b;

  
  --gradient-warm: linear-gradient(135deg, #6b3d14 0%, #9c5a1e 40%, #c8935a 80%, #e8b87a 100%);
  --gradient-subtle: linear-gradient(180deg, #faf6f0 0%, #f5ede0 100%);
  --gradient-hero: linear-gradient(135deg, #2c1a0e 0%, #5a2d0c 50%, #8a4a1a 100%);

  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  
  --shadow-sm: 0 1px 3px rgba(44,26,14,0.08), 0 1px 2px rgba(44,26,14,0.06);
  --shadow-md: 0 4px 12px rgba(44,26,14,0.10), 0 2px 6px rgba(44,26,14,0.07);
  --shadow-lg: 0 8px 24px rgba(44,26,14,0.12), 0 4px 12px rgba(44,26,14,0.08);
  --shadow-xl: 0 16px 40px rgba(44,26,14,0.16), 0 8px 20px rgba(44,26,14,0.10);
  --shadow-polaroid: 4px 6px 20px rgba(44,26,14,0.20), 2px 3px 8px rgba(44,26,14,0.12);
  --shadow-polaroid-hover: 8px 12px 32px rgba(44,26,14,0.28), 4px 6px 14px rgba(44,26,14,0.16);

  
  --nav-height: 70px;

  
  --font-primary: 'Space Grotesk', sans-serif;
  --text-base: 1rem;
  --text-sm: 0.875rem;
  --text-xs: 0.75rem;
  --line-height-body: 1.7;
  --line-height-heading: 1.2;
}


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

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

body {
  font-family: var(--font-primary);
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  line-height: var(--line-height-body);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

ul { list-style: none; }

address { font-style: normal; }


h1, h2, h3, h4, h5 {
  font-family: var(--font-primary);
  line-height: var(--line-height-heading);
  color: var(--color-espresso);
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

p {
  font-size: var(--text-base);
  line-height: var(--line-height-body);
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

p:last-child { margin-bottom: 0; }


.section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ============================================
   NAVIGATION
   ============================================ */

.main-navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background-color: var(--color-warm-white);
  border-bottom: 1px solid var(--color-sand);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.main-navigation.scrolled {
  box-shadow: 0 2px 16px rgba(44,26,14,0.14), 0 1px 4px rgba(44,26,14,0.08);
}

.navigation-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.navigation-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navigation-logo img {
  transition: opacity 0.25s ease;
}

.navigation-logo:hover img {
  opacity: 0.8;
}

.navigation-tabs {
  display: none;
  align-items: center;
  gap: var(--space-xs);
}

@media (min-width: 900px) {
  .navigation-tabs {
    display: flex;
  }
}

.nav-tab {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-warm-gray);
  transition: background-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.nav-tab:hover {
  background-color: var(--color-parchment);
  color: var(--color-espresso);
}

.nav-tab.active {
  background-color: var(--color-espresso);
  color: var(--color-cream);
}

.nav-tab-cta {
  background-color: var(--color-caramel);
  color: var(--color-warm-white);
  font-weight: 600;
}

.nav-tab-cta:hover {
  background-color: var(--color-amber);
  color: var(--color-warm-white);
}

.nav-tab-cta.active {
  background-color: var(--color-amber);
  color: var(--color-warm-white);
}


.mobile-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-md);
  transition: background-color 0.25s ease;
}

.mobile-hamburger:hover {
  background-color: var(--color-parchment);
}

.mobile-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-espresso);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (min-width: 900px) {
  .mobile-hamburger {
    display: none;
  }
}


.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(44, 26, 14, 0.5);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-menu-overlay.visible {
  display: block;
  opacity: 1;
}

.mobile-navigation-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 80%;
  max-width: 340px;
  background-color: var(--color-warm-white);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.mobile-navigation-panel.open {
  transform: translateX(0);
}

.mobile-nav-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  background: var(--color-parchment);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-espresso);
  transition: background-color 0.25s ease;
}

.mobile-nav-close:hover {
  background-color: var(--color-sand);
}

.mobile-nav-logo img {
  height: 36px;
  width: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.mobile-nav-links li {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-navigation-panel.open .mobile-nav-links li:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.05s; }
.mobile-navigation-panel.open .mobile-nav-links li:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.10s; }
.mobile-navigation-panel.open .mobile-nav-links li:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.15s; }
.mobile-navigation-panel.open .mobile-nav-links li:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.20s; }
.mobile-navigation-panel.open .mobile-nav-links li:nth-child(5) { opacity: 1; transform: translateX(0); transition-delay: 0.25s; }

.mobile-nav-links a {
  display: block;
  padding: 0.85rem var(--space-md);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-charcoal);
  border-radius: var(--radius-md);
  transition: background-color 0.25s ease, color 0.25s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background-color: var(--color-parchment);
  color: var(--color-espresso);
}

/* ============================================
   POLAROID FRAMES
   ============================================ */

.polaroid-frame {
  background-color: var(--color-polaroid-white);
  padding: 12px 12px 36px 12px;
  box-shadow: var(--shadow-polaroid);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: inline-block;
  max-width: 100%;
}

.polaroid-frame:hover {
  box-shadow: var(--shadow-polaroid-hover);
  transform: scale(1.02) !important;
}

.polaroid-frame img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: sepia(15%) saturate(0.9) brightness(1.02);
  transition: filter 0.4s ease;
}

.polaroid-frame:hover img {
  filter: sepia(25%) saturate(0.85) brightness(1.04);
}

.polaroid-caption {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-warm-gray);
  margin-top: 8px;
  letter-spacing: 0.05em;
  font-style: italic;
}

.polaroid-frame-tilt-left { transform: rotate(-2.5deg); }
.polaroid-frame-tilt-right { transform: rotate(2deg); }
.polaroid-frame-tilt-slight { transform: rotate(-1deg); }
.polaroid-frame-straight { transform: rotate(0deg); }

/* ============================================
   BUTTONS
   ============================================ */

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.875rem 2rem;
  background-color: var(--color-caramel);
  color: var(--color-warm-white);
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-primary);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(200,147,90,0.3);
}

.primary-button:hover {
  background-color: var(--color-amber);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,147,90,0.4);
  color: var(--color-warm-white);
}

.primary-button-light {
  background-color: var(--color-warm-white);
  color: var(--color-espresso);
  box-shadow: 0 4px 14px rgba(255,255,255,0.2);
}

.primary-button-light:hover {
  background-color: var(--color-parchment);
  color: var(--color-espresso);
  box-shadow: 0 8px 24px rgba(255,255,255,0.3);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.875rem 1.75rem;
  background-color: transparent;
  color: var(--color-espresso);
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid var(--color-sand);
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.secondary-button:hover {
  border-color: var(--color-caramel);
  background-color: var(--color-parchment);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-caramel);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.25s ease, color 0.25s ease, gap 0.25s ease;
}

.text-link:hover {
  border-color: var(--color-caramel);
  color: var(--color-amber);
  gap: 0.7rem;
}

/* ============================================
   LABELS & TAGS
   ============================================ */

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-caramel);
  background-color: rgba(200,147,90,0.12);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}

.section-label-light {
  color: var(--color-parchment);
  background-color: rgba(255,255,255,0.15);
}

.section-header-centered {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-warm-gray);
  margin-top: var(--space-sm);
}

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */

.decorative-rhythm-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: var(--space-md) var(--space-md);
  background-color: var(--color-parchment);
}

.decorative-rhythm-strip-alt {
  background-color: var(--color-sand);
}

.decorative-rhythm-strip-small {
  padding: var(--space-sm) var(--space-md);
  background-color: transparent;
}

.rhythm-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-caramel);
  opacity: 0.6;
}

.rhythm-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background-color: var(--color-caramel);
  opacity: 0.4;
}

.rhythm-text {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-caramel);
  font-weight: 600;
  opacity: 0.8;
}

.rhythm-icon {
  color: var(--color-caramel);
  font-size: 0.9rem;
  opacity: 0.7;
}

.decorative-accent-bar {
  height: 4px;
  background: var(--gradient-warm);
  width: 100%;
}

.decorative-accent-bar-thin {
  height: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.welcome-banner {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-3xl);
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero-background-layer {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(200,147,90,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(156,90,30,0.20) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  flex-direction: column;
}

@media (min-width: 900px) {
  .hero-content-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}

.hero-text-column {
  flex: 1;
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-caramel);
  background-color: rgba(200,147,90,0.15);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
}

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: var(--color-cream);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.hero-headline em {
  font-style: normal;
  color: var(--color-caramel);
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(250,246,240,0.80);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.hero-polaroid-cluster {
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  padding: var(--space-md);
}

@media (min-width: 900px) {
  .hero-polaroid-cluster {
    display: block;
    width: 420px;
    height: 380px;
  }

  .hero-polaroid-cluster .polaroid-frame:nth-child(1) {
    position: absolute;
    top: 0;
    left: 20px;
    width: 200px;
  }

  .hero-polaroid-cluster .polaroid-frame:nth-child(2) {
    position: absolute;
    top: 40px;
    right: 0;
    width: 200px;
  }

  .hero-polaroid-cluster .polaroid-frame:nth-child(3) {
    position: absolute;
    bottom: 0;
    left: 80px;
    width: 200px;
  }
}

/* ============================================
   INTRO SECTION
   ============================================ */

.service-introduction-section {
  padding: var(--space-3xl) 0;
  background-color: var(--color-cream);
}

.intro-quad-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

.intro-main-text {
  grid-column: 1;
}

@media (min-width: 768px) {
  .intro-main-text {
    grid-column: 1 / 2;
  }
}

.intro-main-text h2 {
  margin-bottom: var(--space-md);
}

.intro-main-text p {
  color: var(--color-warm-gray);
  margin-bottom: var(--space-sm);
}

.intro-main-text .text-link {
  margin-top: var(--space-sm);
}

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

.intro-stat-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.intro-stat-warm {
  background-color: var(--color-parchment);
  border: 1px solid var(--color-sand);
}

.intro-stat-cool {
  background-color: var(--color-espresso);
  color: var(--color-cream);
}

.intro-stat-cool h3,
.intro-stat-cool p {
  color: var(--color-cream);
}

.intro-stat-cool p {
  opacity: 0.85;
}

.intro-stat-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  color: var(--color-caramel);
}

.intro-stat-cool .intro-stat-icon {
  color: var(--color-caramel);
}

/* ============================================
   SERVICES SHOWCASE
   ============================================ */

.service-showcase {
  padding: var(--space-3xl) 0;
  background-color: var(--color-parchment);
}

.services-quad-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .services-quad-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.service-card {
  background-color: var(--color-warm-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-sand);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-caramel);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(200,147,90,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-caramel);
  transition: background-color 0.3s ease;
}

.service-card:hover .service-card-icon {
  background: rgba(200,147,90,0.22);
}

.service-card h3 {
  font-size: 1.05rem;
  color: var(--color-espresso);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-warm-gray);
  flex: 1;
}

.service-card-accent {
  background-color: var(--color-espresso);
  border-color: var(--color-espresso);
}

.service-card-accent h3 {
  color: var(--color-cream);
}

.service-card-accent p {
  color: rgba(250,246,240,0.75);
}

.service-card-accent .service-card-icon {
  background: rgba(200,147,90,0.2);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-caramel);
  transition: gap 0.25s ease, color 0.25s ease;
  margin-top: auto;
}

.card-link:hover {
  gap: 0.6rem;
  color: var(--color-amber);
}

.service-card-accent .card-link {
  color: var(--color-caramel);
}

/* ============================================
   ALTERNATING FEATURES
   ============================================ */

.feature-alternating-section {
  padding: var(--space-3xl) 0;
  background-color: var(--color-cream);
}

.feature-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
  align-items: center;
}

.feature-row:last-child {
  margin-bottom: 0;
}

@media (min-width: 900px) {
  .feature-row {
    flex-direction: row;
  }

  .feature-row-reversed {
    flex-direction: row-reverse;
  }
}

.feature-visual {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

@media (min-width: 900px) {
  .feature-visual {
    width: 380px;
  }
}

.feature-content {
  flex: 1;
  max-width: 560px;
}

.feature-content h2 {
  margin-bottom: var(--space-md);
}

.feature-content p {
  color: var(--color-warm-gray);
  margin-bottom: var(--space-sm);
}

.feature-list {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  font-size: 0.95rem;
  color: var(--color-charcoal);
}

.feature-list li i {
  color: var(--color-caramel);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ============================================
   GRADIENT SECTION
   ============================================ */

.gradient-highlight-section {
  padding: var(--space-3xl) 0;
  background: var(--gradient-warm);
  position: relative;
  overflow: hidden;
}

.gradient-highlight-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 90%, rgba(255,255,255,0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.gradient-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .gradient-content-wrapper {
    flex-direction: row;
    align-items: center;
    gap: var(--space-2xl);
  }
}

.gradient-content-centered {
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.gradient-text-side {
  flex: 1;
  max-width: 560px;
}

.gradient-heading {
  color: var(--color-warm-white);
  margin-bottom: var(--space-md);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

.gradient-text-side p {
  color: rgba(250,246,240,0.82);
  margin-bottom: var(--space-sm);
}

.gradient-text-side .primary-button-light {
  margin-top: var(--space-sm);
}

.gradient-image-side {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.gradient-polaroid {
  max-width: 280px;
}

/* ============================================
   TIMELINE SECTION
   ============================================ */

.project-timeline-section {
  padding: var(--space-3xl) 0;
  background-color: var(--color-parchment);
}

.timeline-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.timeline-connector {
  display: none;
}

@media (min-width: 900px) {
  .timeline-track {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }

  .timeline-connector {
    display: block;
    position: absolute;
    top: 28px;
    left: calc(10% + 28px);
    right: calc(10% + 28px);
    height: 2px;
    background: linear-gradient(90deg, var(--color-caramel), var(--color-sand));
    z-index: 0;
  }
}

.timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-step-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  box-shadow: 0 0 0 4px var(--color-parchment), 0 0 0 6px var(--color-sand);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-step:hover .timeline-step-marker {
  transform: scale(1.1);
  box-shadow: 0 0 0 4px var(--color-parchment), 0 0 0 8px var(--color-caramel);
}

.timeline-step-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-caramel);
  letter-spacing: 0.05em;
}

.timeline-step-content {
  padding: 0 var(--space-sm);
}

.timeline-step-content h3 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
  color: var(--color-espresso);
}

.timeline-step-content p {
  font-size: 0.875rem;
  color: var(--color-warm-gray);
}

/* ============================================
   GALLERY / SWIPER
   ============================================ */

.photo-gallery-section {
  padding: var(--space-3xl) 0;
  background-color: var(--color-cream);
  overflow: hidden;
}

.gallery-swiper {
  padding-bottom: 60px !important;
  padding-left: var(--space-md) !important;
  padding-right: var(--space-md) !important;
  overflow: visible;
}

.gallery-polaroid-card {
  display: flex;
  justify-content: center;
  padding: var(--space-md);
}

.gallery-polaroid-card .polaroid-frame {
  width: 100%;
}

.gallery-polaroid-card .polaroid-frame img {
  height: 260px;
}

.swiper-pagination-bullet {
  background-color: var(--color-caramel) !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background-color: var(--color-amber) !important;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--color-caramel) !important;
  background-color: var(--color-warm-white);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: var(--color-parchment);
  transform: scale(1.08);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 14px !important;
  font-weight: 700;
}

/* ============================================
   CTA SECTION
   ============================================ */

.call-to-action-section {
  padding: var(--space-3xl) 0;
  background-color: var(--color-espresso);
}

.cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-inner h2 {
  color: var(--color-cream);
  margin-bottom: var(--space-sm);
}

.cta-inner p {
  color: rgba(250,246,240,0.75);
  margin-bottom: var(--space-lg);
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */

.page-hero-section {
  padding-top: calc(var(--nav-height) + var(--space-2xl));
  padding-bottom: var(--space-2xl);
  background-color: var(--color-espresso);
}

.page-hero-section-compact {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-xl);
}

.page-hero-content {
  max-width: 700px;
}

.page-hero-title {
  color: var(--color-cream);
  margin-bottom: var(--space-sm);
}

.page-hero-description {
  color: rgba(250,246,240,0.78);
  font-size: 1.1rem;
}

.legal-last-updated {
  color: rgba(250,246,240,0.5);
  font-size: 0.85rem;
  margin-top: var(--space-sm);
}

/* ============================================
   PROCESS DETAIL (cum-lucram)
   ============================================ */

.process-detail-section {
  padding: var(--space-3xl) 0;
  background-color: var(--color-cream);
}

.process-steps-detailed {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.process-step-detailed {
  position: relative;
}

.process-step-number-large {
  font-size: 5rem;
  font-weight: 700;
  color: var(--color-sand);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.process-step-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: flex-start;
}

@media (min-width: 900px) {
  .process-step-body {
    flex-direction: row;
    align-items: center;
    gap: var(--space-2xl);
  }

  .process-step-detailed-reversed .process-step-body {
    flex-direction: row-reverse;
  }
}

.process-step-text {
  flex: 1;
}

.process-step-text h2 {
  margin-bottom: var(--space-md);
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.process-step-text p {
  color: var(--color-warm-gray);
  margin-bottom: var(--space-sm);
}

.process-step-image {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

@media (min-width: 900px) {
  .process-step-image {
    width: 320px;
  }
}


.values-section {
  padding: var(--space-3xl) 0;
  background-color: var(--color-parchment);
}

.values-quad-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .values-quad-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.value-card {
  background-color: var(--color-warm-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-sand);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon {
  font-size: 1.8rem;
  color: var(--color-caramel);
  margin-bottom: var(--space-sm);
}

.value-card h3 {
  margin-bottom: var(--space-xs);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--color-warm-gray);
}

/* ============================================
   SERVICE DETAIL (servicii)
   ============================================ */

.service-detail-section {
  padding: var(--space-3xl) 0;
  background-color: var(--color-cream);
}

.service-detail-block {
  margin-bottom: var(--space-xl);
}

.service-detail-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.service-detail-icon {
  width: 64px;
  height: 64px;
  background: rgba(200,147,90,0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-caramel);
  flex-shrink: 0;
}

.service-detail-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

@media (min-width: 900px) {
  .service-detail-body {
    flex-direction: row;
    align-items: flex-start;
  }
}

.service-detail-text {
  flex: 1;
}

.service-detail-text h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

.service-detail-text p {
  color: var(--color-warm-gray);
  margin-bottom: var(--space-sm);
}

.service-includes-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.service-includes-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  font-size: 0.95rem;
  color: var(--color-charcoal);
}

.service-includes-list li i {
  color: var(--color-caramel);
  margin-top: 3px;
  flex-shrink: 0;
}

.service-detail-aside {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (min-width: 900px) {
  .service-detail-aside {
    width: 300px;
  }
}

.service-aside-info {
  background-color: var(--color-parchment);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid var(--color-sand);
}

.service-aside-info h4 {
  color: var(--color-espresso);
  margin-bottom: var(--space-xs);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-aside-info p {
  font-size: 0.875rem;
  color: var(--color-warm-gray);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
  padding: var(--space-3xl) 0;
  background-color: var(--color-cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.faq-category-title {
  font-size: 1.3rem;
  color: var(--color-espresso);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-sand);
}

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

.faq-accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-espresso);
  transition: color 0.25s ease;
}

.faq-accordion-trigger:hover {
  color: var(--color-caramel);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-caramel);
}

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

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

.faq-accordion-content.open {
  max-height: 600px;
  padding-bottom: var(--space-md);
}

.faq-accordion-content p {
  font-size: 0.9rem;
  color: var(--color-warm-gray);
  margin-bottom: var(--space-xs);
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-main-section {
  padding: var(--space-3xl) 0;
  background-color: var(--color-cream);
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

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

.inquiry-form-column h2,
.contact-info-column h2 {
  margin-bottom: var(--space-sm);
}

.contact-form-intro {
  color: var(--color-warm-gray);
  margin-bottom: var(--space-xl);
}


.chat-conversation {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.chat-bubble-question {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.chat-avatar {
  width: 36px;
  height: 36px;
  background-color: var(--color-caramel);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--color-warm-white);
  flex-shrink: 0;
}

.chat-bubble-text {
  background-color: var(--color-parchment);
  border: 1px solid var(--color-sand);
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--color-espresso);
  font-weight: 500;
  max-width: 80%;
}

.chat-bubble-reply {
  margin-left: 52px;
  display: flex;
}

.chat-bubble-reply input,
.chat-bubble-reply-textarea textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--color-warm-white);
  border: 2px solid var(--color-sand);
  border-radius: var(--radius-lg) 0 var(--radius-lg) var(--radius-lg);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-charcoal);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  resize: vertical;
  min-height: 44px;
}

.chat-bubble-reply input:focus,
.chat-bubble-reply-textarea textarea:focus {
  outline: none;
  border-color: var(--color-caramel);
  box-shadow: 0 0 0 3px rgba(200,147,90,0.12);
}

.chat-bubble-reply-textarea {
  margin-left: 52px;
}

.chat-privacy-row {
  margin-left: 52px;
  margin-top: var(--space-xs);
}

.privacy-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--color-warm-gray);
  line-height: 1.5;
}

.privacy-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.privacy-checkbox-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background-color: var(--color-warm-white);
  border: 2px solid var(--color-sand);
  border-radius: var(--radius-sm);
  margin-top: 1px;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.privacy-checkbox-label input:checked + .privacy-checkbox-custom {
  background-color: var(--color-caramel);
  border-color: var(--color-caramel);
}

.privacy-checkbox-label input:checked + .privacy-checkbox-custom::after {
  content: '';
  display: block;
  width: 6px;
  height: 10px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.privacy-checkbox-label a {
  color: var(--color-caramel);
  text-decoration: underline;
}

.form-error-message {
  color: var(--color-error);
  font-size: 0.875rem;
  min-height: 1.4em;
  margin-bottom: var(--space-xs);
}

.chat-send-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.875rem 2rem;
  background-color: var(--color-caramel);
  color: var(--color-warm-white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(200,147,90,0.3);
}

.chat-send-button:hover {
  background-color: var(--color-amber);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,147,90,0.4);
}


.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background-color: var(--color-parchment);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-sand);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background-color: var(--color-caramel);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-warm-white);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-card h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-warm-gray);
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.95rem;
  color: var(--color-charcoal);
  margin: 0;
}

.contact-info-card a:hover {
  color: var(--color-caramel);
}

.office-environment-description {
  margin-top: var(--space-md);
}

.office-environment-description h3 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

.office-environment-description p {
  font-size: 0.9rem;
  color: var(--color-warm-gray);
}

.office-polaroid {
  max-width: 260px;
  margin-bottom: var(--space-sm);
}


.contact-map-section {
  margin-top: var(--space-2xl);
}

.contact-map-section h2 {
  margin-bottom: var(--space-md);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--color-warm-white);
}

.map-container iframe {
  display: block;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-content-section {
  padding: var(--space-3xl) 0 var(--space-2xl);
  background-color: var(--color-cream);
}

.legal-document {
  max-width: 780px;
}

.legal-intro {
  font-size: 1.05rem;
  color: var(--color-charcoal);
  padding: var(--space-lg);
  background-color: var(--color-parchment);
  border-left: 4px solid var(--color-caramel);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.legal-section {
  margin-bottom: var(--space-xl);
}

.legal-section h2 {
  font-size: 1.3rem;
  color: var(--color-espresso);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-sand);
}

.legal-section p {
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

.legal-section a {
  color: var(--color-caramel);
  text-decoration: underline;
}


.legal-document-terms h2 {
  color: var(--color-espresso);
  font-size: 1.3rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-sand);
}

.legal-document-terms h2:first-of-type {
  margin-top: 0;
}

.legal-document-terms p {
  font-size: 0.95rem;
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}


.cookies-explainer-box {
  background-color: var(--color-parchment);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-sand);
  margin-bottom: var(--space-xl);
}

.cookies-explainer-box h2 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.legal-document-cookies h2 {
  font-size: 1.3rem;
  color: var(--color-espresso);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-sand);
}

.legal-document-cookies h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-document-cookies p {
  font-size: 0.95rem;
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.cookies-table-wrapper {
  overflow-x: auto;
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.cookies-table th {
  background-color: var(--color-espresso);
  color: var(--color-cream);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
}

.cookies-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-sand);
  color: var(--color-charcoal);
  vertical-align: top;
}

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

.cookies-table tr:nth-child(even) td {
  background-color: var(--color-parchment);
}

.cookies-table code {
  background-color: var(--color-parchment);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.85em;
  font-family: monospace;
  color: var(--color-espresso);
}

.cookies-browser-list {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.cookies-browser-list li {
  font-size: 0.9rem;
  color: var(--color-charcoal);
  margin-bottom: var(--space-xs);
}

/* ============================================
   THANKS PAGE
   ============================================ */

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
}

.thanks-section {
  padding: var(--space-3xl) var(--space-md);
  width: 100%;
}

.thanks-content {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.thanks-icon {
  font-size: 3rem;
  color: var(--color-caramel);
  margin-bottom: var(--space-lg);
}

.thanks-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-espresso);
  margin-bottom: var(--space-md);
}

.thanks-content p {
  font-size: 1.1rem;
  color: var(--color-warm-gray);
  margin-bottom: var(--space-xl);
}

.thanks-home-link {
  margin-top: var(--space-sm);
}

/* ============================================
   FOOTER
   ============================================ */

.page-footer {
  background-color: var(--color-espresso);
  margin-top: auto;
}

.footer-testimonial-strip {
  background-color: var(--color-bark);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid rgba(200,147,90,0.2);
}

.footer-featured-quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.footer-quote-icon {
  font-size: 2.5rem;
  color: var(--color-caramel);
  opacity: 0.5;
  margin-bottom: var(--space-sm);
  display: block;
}

.footer-featured-quote p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--color-parchment);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.footer-featured-quote cite {
  font-size: 0.85rem;
  color: var(--color-warm-gray);
  font-style: normal;
  letter-spacing: 0.03em;
}

.footer-main-content {
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

.footer-logo {
  margin-bottom: var(--space-md);
}

.footer-brand-column p {
  font-size: 0.875rem;
  color: rgba(212,196,181,0.7);
  margin-bottom: var(--space-md);
  max-width: 300px;
}

.footer-brand-column address p {
  font-size: 0.85rem;
  color: rgba(212,196,181,0.65);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.footer-brand-column address p i {
  color: var(--color-caramel);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-brand-column address a {
  color: rgba(212,196,181,0.65);
  transition: color 0.25s ease;
}

.footer-brand-column address a:hover {
  color: var(--color-caramel);
}

.footer-links-column h4 {
  color: var(--color-parchment);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

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

.footer-links-column a {
  font-size: 0.875rem;
  color: rgba(212,196,181,0.6);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links-column a:hover {
  color: var(--color-caramel);
  padding-left: 4px;
}

.footer-bottom-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-xs);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(212,196,181,0.1);
}

.footer-bottom-bar p {
  font-size: 0.8rem;
  color: rgba(212,196,181,0.4);
  margin: 0;
}

.footer-bottom-tagline {
  font-size: 0.75rem;
  color: rgba(212,196,181,0.3);
}

/* ============================================
   COOKIE CONSENT
   ============================================ */

.cookie-preferences-trigger {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--color-warm-gray);
  cursor: pointer;
  padding: 6px 12px;
  background-color: var(--color-warm-white);
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.cookie-preferences-trigger:hover {
  color: var(--color-caramel);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.cookie-preferences-trigger.pulse {
  animation: cookiePulse 2s ease-in-out 3;
}

@keyframes cookiePulse {
  0%, 100% { box-shadow: var(--shadow-sm); }
  50% { box-shadow: 0 0 0 6px rgba(200,147,90,0.2), var(--shadow-md); }
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(44,26,14,0.55);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.cookie-modal-overlay.visible {
  display: flex;
}

.cookie-modal-dialog {
  background-color: var(--color-warm-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 480px;
  width: 100%;
  overflow: hidden;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-sand);
  background-color: var(--color-parchment);
}

.cookie-modal-header h2 {
  font-size: 1.1rem;
  color: var(--color-espresso);
}

.cookie-modal-close {
  width: 36px;
  height: 36px;
  background: var(--color-sand);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-espresso);
  font-size: 1rem;
  transition: background-color 0.25s ease;
}

.cookie-modal-close:hover {
  background-color: var(--color-light-gray);
}

.cookie-modal-body {
  padding: var(--space-md) var(--space-lg);
}

.cookie-modal-body > p {
  font-size: 0.875rem;
  color: var(--color-warm-gray);
  margin-bottom: var(--space-md);
}

.cookie-category-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-sand);
}

.cookie-category-item:last-child {
  border-bottom: none;
}

.cookie-category-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-espresso);
  margin-bottom: 3px;
}

.cookie-category-info p {
  font-size: 0.8rem;
  color: var(--color-warm-gray);
  margin: 0;
}

.cookie-toggle-always {
  font-size: 0.75rem;
  color: var(--color-accent-teal);
  font-weight: 600;
  white-space: nowrap;
  padding-top: 2px;
}

.cookie-toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}

.cookie-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background-color: var(--color-light-gray);
  border-radius: var(--radius-pill);
  transition: background-color 0.3s ease;
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.cookie-toggle-switch input:checked + .cookie-toggle-slider {
  background-color: var(--color-caramel);
}

.cookie-toggle-switch input:checked + .cookie-toggle-slider::before {
  transform: translateX(20px);
}

.cookie-modal-footer {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--color-sand);
  background-color: var(--color-parchment);
}

.cookie-btn-reject,
.cookie-btn-accept,
.cookie-btn-save {
  flex: 1;
  min-width: 100px;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease;
  border: none;
}

.cookie-btn-reject {
  background-color: var(--color-sand);
  color: var(--color-espresso);
}

.cookie-btn-reject:hover {
  background-color: var(--color-light-gray);
  transform: translateY(-1px);
}

.cookie-btn-accept {
  background-color: var(--color-caramel);
  color: var(--color-warm-white);
}

.cookie-btn-accept:hover {
  background-color: var(--color-amber);
  transform: translateY(-1px);
}

.cookie-btn-save {
  background-color: var(--color-espresso);
  color: var(--color-cream);
}

.cookie-btn-save:hover {
  background-color: var(--color-charcoal);
  transform: translateY(-1px);
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

@media (max-width: 599px) {
  .section-container {
    padding: 0 var(--space-sm);
  }

  .welcome-banner {
    padding-top: calc(var(--nav-height) + var(--space-lg));
    padding-bottom: var(--space-2xl);
  }

  .hero-polaroid-cluster .polaroid-frame {
    width: 180px;
  }

  .hero-polaroid-cluster .polaroid-frame img {
    height: 160px;
  }

  .polaroid-frame img {
    height: 180px;
  }

  .feature-row,
  .feature-row-reversed {
    gap: var(--space-lg);
  }

  .process-step-number-large {
    font-size: 3.5rem;
  }

  .timeline-step-marker {
    width: 44px;
    height: 44px;
  }

  .chat-bubble-reply,
  .chat-bubble-reply-textarea,
  .chat-privacy-row {
    margin-left: 0;
  }

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

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }

  .cookie-modal-footer {
    flex-direction: column;
  }

  .cookie-btn-reject,
  .cookie-btn-accept,
  .cookie-btn-save {
    width: 100%;
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .hero-polaroid-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
  }

  .hero-polaroid-cluster .polaroid-frame {
    width: 200px;
  }
}


* {
  max-width: 100%;
}

img, video, iframe {
  max-width: 100%;
}


body > main {
  padding-top: 0;
}