/* Decorista - Production CSS Build
   Generated: Thu Jan 29 21:32:16 EET 2026
   DO NOT EDIT - This file is auto-generated from modular source files
*/

@layer tokens, reset, base, layout, components, sections, pages, utilities;

/* ========== Tokens ========== */
@layer tokens {
/* Decorista - Editorial Luxury meets Organic Elegance
   Inspired by high-end wedding magazines and botanical sophistication

   Color Palette:
   - Pine Teal: #1A4E45 (primary)
   - Muted Olive: #B4C581 (accent)
   - Burnt Peach: #F16C40 (accent)
   - Lavender Blush: #FFEEF2 (background)
   - Glaucous: #6D70AA (accent)
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Outfit:wght@200;300;400;500&display=swap');

:root {
  /* Colors */
  --pine-teal: #1A4E45;
  --pine-teal-light: #2a6e62;
  --pine-teal-dark: #0f2e29;
  --olive: #B4C581;
  --olive-muted: rgba(180, 197, 129, 0.3);
  --peach: #F16C40;
  --peach-soft: rgba(241, 108, 64, 0.15);
  --blush: #FFEEF2;
  --blush-deep: #FFE4EA;
  --glaucous: #6D70AA;
  --glaucous-soft: rgba(109, 112, 170, 0.2);
  --white: #ffffff;
  --cream: #FDF9F7;
  --text-dark: #1a1a1a;
  --text-muted: #5a5a5a;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  --space-2xl: 12rem;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.3s var(--ease-out-expo);
  --transition-smooth: 0.6s var(--ease-out-expo);
  --transition-slow: 1s var(--ease-out-expo);

  /* Layout */
  --container-max: 1400px;
  --nav-height: 80px;
}

/* Keyframe Animations */

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageReveal {
  from {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes heroImageZoom {
  to {
    transform: scale(1);
  }
}

@keyframes shapeFloat {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
}

/* ========== Reset ========== */
@layer reset {
/* Reset & Base Styles */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  height: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  max-width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  overflow-x: hidden;
  max-width: 100%;
  flex: 1;
}

::selection {
  background: var(--peach);
  color: var(--white);
}

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

a {
  color: inherit;
  text-decoration: none;
}
}

/* ========== Base ========== */
@layer base {
/* Typography */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
}

.heading-xl {
  font-size: clamp(3.5rem, 10vw, 8rem);
  letter-spacing: -0.03em;
}

.heading-lg {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.02em;
}

.heading-md {
  font-size: clamp(1.75rem, 4vw, 3rem);
}

.text-italic {
  font-style: italic;
}

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

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

/* ========== Layout ========== */
@layer layout {
/* Container Layout */

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

.container-wide {
  max-width: 1600px;
}

/* Decorative Elements */

.organic-shape {
  position: absolute;
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  pointer-events: none;
}

.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.03;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  will-change: transform;
  transform: translateZ(0);
}
}

/* ========== Components ========== */
@layer components {
/* Button Components */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--pine-teal);
  color: var(--white);
  z-index: 0;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--pine-teal-light);
    transition: left var(--transition-fast);
    z-index: -1;
  }

  &:hover::before {
    left: 0;
  }
}

.btn-outline {
  background: transparent;
  color: var(--pine-teal);
  border: 1px solid var(--pine-teal);

  &:hover {
    background: var(--pine-teal);
    color: var(--white);
  }
}

.btn-accent {
  background: var(--peach);
  color: var(--white);

  &:hover {
    background: var(--pine-teal);
  }
}

/* Navigation Component */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: background var(--transition-fast), padding var(--transition-fast);
  will-change: background, padding;
  transform: translateZ(0);

  &.scrolled {
    background: rgba(253, 249, 247, 0.98);
    padding: var(--space-xs) 0;
  }

  /* Light nav for pages with dark headers */
  &.header-light {
    .nav-link {
      color: var(--white);

      &.active {
        color: var(--peach);
      }
    }

    .nav-toggle-bar {
      background: var(--white);
    }

    &.scrolled {
      .nav-link {
        color: var(--pine-teal);

        &.active {
          color: var(--peach);
        }
      }

      .nav-toggle-bar {
        background: var(--pine-teal);
      }
    }
  }
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: transform var(--transition-fast);

  &:hover {
    transform: scale(1.02);
  }
}

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

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: var(--space-lg);
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pine-teal);
  position: relative;
  padding: var(--space-xs) 0;

  &::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--peach);
    transition: width var(--transition-fast), left var(--transition-fast);
  }

  &:hover::before,
  &.active::before {
    width: 100%;
    left: 0;
  }

  &.active {
    color: var(--peach);
  }
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 100;
}

.nav-toggle-bar {
  width: 28px;
  height: 2px;
  background: var(--pine-teal);
  transition: var(--transition-fast);
  transform-origin: center;
}

.nav-toggle.active {
  .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* Tablet - reduce spacing */
@media (max-width: 1024px) {
  .nav-links {
    gap: var(--space-md);
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    background: var(--cream);
    transform: translateX(100%);
    transition: transform var(--transition-smooth);

    &.nav-open {
      transform: translateX(0);
    }
  }

  .nav-link {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
  }

  /* Override light header styles for mobile menu */
  .site-header.header-light .nav-link {
    color: var(--pine-teal);

    &.active {
      color: var(--peach);
    }
  }
}

/* Language Switcher - Editorial Luxury Style
   Refined, understated toggle that matches nav link aesthetics */

.nav-lang-item {
  margin-left: var(--space-lg);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.lang-option {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pine-teal);
  text-decoration: none;
  padding: var(--space-xs) 0.375rem;
  position: relative;
  transition: color var(--transition-fast);
  opacity: 0.5;
}

/* Underline animation - matches nav links */
.lang-option::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--peach);
  transition: width var(--transition-fast), left var(--transition-fast);
}

.lang-option:hover {
  opacity: 1;
}

.lang-option:hover::before {
  width: calc(100% - 0.75rem);
  left: 0.375rem;
}

/* Active state */
.lang-option.lang-active {
  color: var(--peach);
  opacity: 1;
}

.lang-option.lang-active::before {
  width: calc(100% - 0.75rem);
  left: 0.375rem;
}

/* Divider - subtle and refined */
.lang-divider {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--olive);
  opacity: 0.6;
  user-select: none;
  margin: 0 0.125rem;
}

/* ----------------------------------------
   Light Header (Dark Background) Variant
   ---------------------------------------- */
.header-light .lang-option {
  color: var(--white);
  opacity: 0.6;
}

.header-light .lang-option:hover {
  opacity: 1;
}

.header-light .lang-option.lang-active {
  color: var(--peach);
  opacity: 1;
}

.header-light .lang-divider {
  color: var(--white);
  opacity: 0.4;
}

/* Light header when scrolled (returns to light bg) */
.header-light.scrolled .lang-option {
  color: var(--pine-teal);
  opacity: 0.5;
}

.header-light.scrolled .lang-option:hover {
  opacity: 1;
}

.header-light.scrolled .lang-option.lang-active {
  color: var(--peach);
  opacity: 1;
}

.header-light.scrolled .lang-divider {
  color: var(--olive);
  opacity: 0.6;
}

/* Tablet - reduce margin */
@media (max-width: 1024px) {
  .nav-lang-item {
    margin-left: var(--space-md);
  }
}

/* ----------------------------------------
   Mobile Responsive
   ---------------------------------------- */
@media (max-width: 900px) {
  .nav-lang-item {
    width: 100%;
    margin-left: 0;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--olive-muted);
  }

  .lang-switcher {
    justify-content: center;
    gap: 0.25rem;
  }

  .lang-option {
    font-size: 1.25rem;
    letter-spacing: 0.2em;
    padding: 0.5rem 0.75rem;
  }

  .lang-divider {
    font-size: 1rem;
  }

  /* Mobile menu always has light background - need more visibility */
  .lang-option {
    color: var(--pine-teal);
    opacity: 0.6;
  }

  .lang-option:hover {
    opacity: 1;
  }

  .lang-option.lang-active {
    color: var(--peach);
    opacity: 1;
  }

  .lang-divider {
    color: var(--pine-teal);
    opacity: 0.5;
  }

  /* Override any header-light styles in mobile */
  .header-light .lang-option,
  .header-light.scrolled .lang-option {
    color: var(--pine-teal);
    opacity: 0.6;
  }

  .header-light .lang-option:hover,
  .header-light.scrolled .lang-option:hover {
    opacity: 1;
  }

  .header-light .lang-option.lang-active,
  .header-light.scrolled .lang-option.lang-active {
    color: var(--peach);
    opacity: 1;
  }

  .header-light .lang-divider,
  .header-light.scrolled .lang-divider {
    color: var(--pine-teal);
    opacity: 0.5;
  }
}

/* Gallery Component */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 5;

  &:hover {
    .gallery-image {
      transform: scale(1.08);
    }

    .gallery-overlay {
      opacity: 1;
    }
  }
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 78, 69, 0.95) 0%,
    rgba(26, 78, 69, 0.4) 40%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.gallery-category {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive);
}

.gallery-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .gallery-overlay {
    opacity: 1;
  }
}

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

  .gallery-item {
    aspect-ratio: 3 / 4;

    /* No stagger on single column */
    &:nth-child(n) {
      transform: none;
    }
  }
}

/* Cookie Consent - Editorial Luxury Aesthetic
   Elegant GDPR compliance with refined typography
*/

/* ═══════════════════════════════════════════════════════════════
   BANNER - Fixed bottom
   ═══════════════════════════════════════════════════════════════ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 1px solid rgba(26, 78, 69, 0.1);
  box-shadow:
    0 -8px 32px rgba(26, 78, 69, 0.08),
    0 -2px 8px rgba(26, 78, 69, 0.04);
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-lg);
  align-items: center;
}

.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.cookie-banner-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--pine-teal);
  margin: 0;
  letter-spacing: -0.01em;
}

.cookie-banner-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 60ch;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.cookie-btn-primary {
  background: var(--pine-teal);
  color: var(--white);
}

.cookie-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--pine-teal-light);
  transition: left var(--transition-fast);
  z-index: 0;
}

.cookie-btn-primary:hover::before {
  left: 0;
}

.cookie-btn-primary span {
  position: relative;
  z-index: 1;
}

.cookie-btn-secondary {
  background: transparent;
  color: var(--pine-teal);
  border: 1px solid var(--pine-teal);
}

.cookie-btn-secondary:hover {
  background: var(--pine-teal);
  color: var(--white);
}

.cookie-btn-text {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.cookie-btn-text:hover {
  color: var(--pine-teal);
}


/* ═══════════════════════════════════════════════════════════════
   SETTINGS MODAL - Overlay with elegant panel
   ═══════════════════════════════════════════════════════════════ */

.cookie-settings {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.cookie-settings.visible {
  display: flex;
}

.cookie-settings-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 78, 69, 0.4);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.cookie-settings-panel {
  position: relative;
  background: var(--white);
  width: 100%;
  max-width: 540px;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 32px 64px rgba(26, 78, 69, 0.2),
    0 16px 32px rgba(26, 78, 69, 0.1);
}

/* Decorative top border accent */
.cookie-settings-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--pine-teal) 0%,
    var(--olive) 50%,
    var(--peach) 100%
  );
}

.cookie-settings-header {
  padding: var(--space-md) var(--space-md) var(--space-sm);
  border-bottom: 1px solid rgba(26, 78, 69, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-sm);
}

.cookie-settings-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--pine-teal);
  margin: 0;
  letter-spacing: -0.01em;
}

.cookie-settings-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
  line-height: 1.6;
}

.cookie-settings-close {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: color var(--transition-fast), transform var(--transition-fast);
  flex-shrink: 0;
  margin: -0.25rem -0.25rem 0 0;
}

.cookie-settings-close:hover {
  color: var(--pine-teal);
  transform: rotate(90deg);
}

.cookie-settings-close svg {
  width: 20px;
  height: 20px;
  display: block;
}

.cookie-settings-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-sm) var(--space-md);
  overscroll-behavior: contain;
}

/* Custom scrollbar */
.cookie-settings-body::-webkit-scrollbar {
  width: 6px;
}

.cookie-settings-body::-webkit-scrollbar-track {
  background: var(--blush);
}

.cookie-settings-body::-webkit-scrollbar-thumb {
  background: var(--olive-muted);
  border-radius: 3px;
}

.cookie-settings-body::-webkit-scrollbar-thumb:hover {
  background: var(--olive);
}

.cookie-settings-footer {
  padding: var(--space-sm) var(--space-md) var(--space-md);
  border-top: 1px solid rgba(26, 78, 69, 0.08);
  display: flex;
  justify-content: flex-end;
  gap: var(--space-sm);
}


/* ═══════════════════════════════════════════════════════════════
   CATEGORY ITEMS - Toggle cards with refined styling
   ═══════════════════════════════════════════════════════════════ */

.cookie-category {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(26, 78, 69, 0.06);
}

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

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: 0.375rem;
}

.cookie-category-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--pine-teal);
  margin: 0;
  letter-spacing: 0.02em;
}

.cookie-category-badge {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  background: var(--olive-muted);
  padding: 0.25rem 0.625rem;
  border-radius: 2px;
}

.cookie-category-desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  padding-right: 60px;
}


/* ═══════════════════════════════════════════════════════════════
   TOGGLE SWITCH - Elegant pill-style toggle
   ═══════════════════════════════════════════════════════════════ */

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

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

.cookie-toggle-track {
  position: absolute;
  inset: 0;
  background: rgba(26, 78, 69, 0.15);
  border-radius: 26px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.cookie-toggle-track::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(26, 78, 69, 0.2);
  transition: transform var(--transition-fast);
}

.cookie-toggle input:checked + .cookie-toggle-track {
  background: var(--pine-teal);
}

.cookie-toggle input:checked + .cookie-toggle-track::after {
  transform: translateX(22px);
}

.cookie-toggle input:focus-visible + .cookie-toggle-track {
  outline: 2px solid var(--peach);
  outline-offset: 2px;
}

/* Disabled state for essential cookies */
.cookie-toggle input:disabled + .cookie-toggle-track {
  cursor: not-allowed;
  opacity: 0.7;
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE - Mobile-first refinements
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .cookie-banner-inner {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    padding: var(--space-md);
  }

  .cookie-banner-content {
    text-align: center;
  }

  .cookie-banner-text {
    max-width: none;
  }

  .cookie-banner-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .cookie-btn {
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .cookie-banner-inner {
    padding: var(--space-sm) var(--space-sm) calc(var(--space-sm) + 0.5rem);
  }

  .cookie-banner-title {
    font-size: 1.1rem;
  }

  .cookie-banner-text {
    font-size: 0.8rem;
    line-height: 1.6;
  }

  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .cookie-btn {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.7rem;
  }

  .cookie-btn-text {
    order: 3;
    padding: 0.5rem;
    width: auto;
  }

  .cookie-settings {
    padding: 0;
    align-items: flex-end;
  }

  .cookie-settings-panel {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 16px 16px 0 0;
  }

  .cookie-settings-header {
    padding: var(--space-sm);
  }

  .cookie-settings-title {
    font-size: 1.2rem;
  }

  .cookie-settings-subtitle {
    font-size: 0.8rem;
  }

  .cookie-settings-body {
    padding: 0 var(--space-sm);
  }

  .cookie-settings-footer {
    padding: var(--space-sm);
    flex-direction: column;
    gap: 0.5rem;
  }

  .cookie-settings-footer .cookie-btn {
    width: 100%;
  }

  .cookie-category-desc {
    padding-right: 0;
    font-size: 0.75rem;
  }

  .cookie-category-header {
    gap: var(--space-xs);
  }

  .cookie-category-title {
    font-size: 0.9rem;
  }
}
}

/* ========== Sections ========== */
@layer sections {
/* Section Base Styles */

.section {
  padding: var(--space-xl) 0;
  position: relative;
  width: 100%;
}

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

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--glaucous);
  margin-bottom: var(--space-sm);
}

.section-title {
  color: var(--pine-teal);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: var(--space-md) auto 0;
}

/* Hero Section */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  padding: var(--space-xl) var(--space-lg);
  padding-left: calc((100vw - var(--container-max)) / 2 + var(--space-md));
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--glaucous);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out-expo) 0.2s forwards;
}

.hero-title {
  color: var(--pine-teal);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out-expo) 0.4s forwards;

  .line {
    display: block;
    overflow: hidden;
  }

  .text-italic {
    color: var(--peach);
  }
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 450px;
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out-expo) 0.6s forwards;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out-expo) 0.8s forwards;
}

.hero-visual {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-image-container {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 80%;
  height: 75%;
  border-radius: 0 0 50% 50% / 0 0 30% 30%;
  overflow: hidden;
  opacity: 0;
  animation: heroImageReveal 1.2s var(--ease-out-expo) 0.5s forwards;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: heroImageZoom 1.5s var(--ease-out-expo) 0.5s forwards;
}

.hero-shape-1 {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: var(--olive-muted);
  opacity: 0;
  animation: shapeFloat 1s var(--ease-out-expo) 0.3s forwards;
}

.hero-shape-2 {
  position: absolute;
  bottom: 15%;
  right: -5%;
  width: 200px;
  height: 200px;
  background: var(--peach-soft);
  opacity: 0;
  animation: shapeFloat 1s var(--ease-out-expo) 0.5s forwards;
}

.hero-logo-watermark {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  width: 400px;
  opacity: 0.08;
  z-index: 1;
}

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

  .hero-content {
    padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-lg);
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-visual {
    height: 60vh;
  }

  .hero-image-container {
    top: 0;
    right: 10%;
    width: 80%;
    height: 90%;
  }

  .hero-logo-watermark {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-visual {
    height: 40vh;
  }

  .hero-cta {
    flex-direction: column;
    gap: var(--space-sm);

    .btn {
      width: 100%;
      justify-content: center;
    }
  }
}

/* About/Intro Section */

.intro-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}

.intro-image-stack {
  position: relative;
  height: 600px;
}

.intro-image {
  position: absolute;
  border-radius: 200px 200px 20px 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(26, 78, 69, 0.15);

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.intro-image-1 {
  width: 60%;
  height: 80%;
  left: 0;
  top: 10%;
  z-index: 2;
}

.intro-image-2 {
  width: 50%;
  height: 60%;
  right: 0;
  bottom: 0;
  z-index: 1;
  border-radius: 20px 20px 200px 200px;
}

.intro-content {
  padding: var(--space-lg) 0;
  overflow-wrap: break-word;
  word-wrap: break-word;

  .section-eyebrow {
    text-align: left;
  }

  .section-title {
    text-align: left;
    margin-bottom: var(--space-md);
  }
}

.intro-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.9;
}

.intro-stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(26, 78, 69, 0.1);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--peach);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: var(--space-xs);
}

@media (max-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .intro-image-stack {
    height: 350px;
    max-width: 400px;
    margin: 0 auto;
    order: 2;
  }

  .intro-content {
    text-align: center;
    max-width: 100%;
    padding: 0 var(--space-sm);
    order: 1;
    min-width: 0;

    .section-eyebrow,
    .section-title {
      text-align: center;
    }

    .section-title {
      font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
  }

  .intro-stats {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .intro-image-stack {
    display: none;
  }
}

/* Services Section */

.services-section {
  background: var(--pine-teal);
  color: var(--white);
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(180, 197, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
  }

  .section-eyebrow {
    color: var(--olive);
  }

  .section-title {
    color: var(--white);
  }

  .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.service-card {
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--peach);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-fast);
  }

  &:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);

    &::before {
      transform: scaleX(1);
    }
  }

  h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--white);
  }

  p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
  }
}

.service-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* CTA Section */

.cta-section {
  background: var(--blush-deep);
  text-align: center;
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, var(--peach-soft) 0%, transparent 60%);
    pointer-events: none;
  }
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  color: var(--pine-teal);
  margin-bottom: var(--space-sm);
}

.cta-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

/* Featured Work Section */

.featured-section {
  background: var(--blush);
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--white), transparent);
  }
}
}

/* ========== Pages ========== */
@layer pages {
/* Page Header */

.page-header {
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
  background: var(--pine-teal);
  text-align: center;
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(180, 197, 129, 0.15) 0%, transparent 60%);
  }
}

.page-title {
  color: var(--white);
  margin-bottom: var(--space-xs);
  position: relative;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--olive);
  position: relative;
}

/* Portfolio Page */

.portfolio-section {
  background: var(--cream);
  padding-top: var(--space-lg);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: none;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;

  &::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--peach);
    transition: width var(--transition-fast), left var(--transition-fast);
  }

  &:hover,
  &.active {
    color: var(--pine-teal);
  }

  &.active::after {
    width: 100%;
    left: 0;
  }
}

/* Contact Page */

.contact-section {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info {
  padding: var(--space-lg);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(26, 78, 69, 0.08);
}

.contact-card {
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(26, 78, 69, 0.1);

  &:last-child {
    border-bottom: none;
  }

  h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--pine-teal);
    margin-bottom: var(--space-xs);
  }

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

  a {
    color: var(--text-dark);
    transition: color var(--transition-fast);

    &:hover {
      color: var(--peach);
    }
  }
}

.social-section {
  margin-top: var(--space-lg);

  h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--pine-teal);
    margin-bottom: var(--space-md);
  }
}

.social-links {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(26, 78, 69, 0.2);
  border-radius: 50%;
  font-size: 1.25rem;
  transition: all var(--transition-fast);

  &:hover {
    background: var(--pine-teal);
    border-color: var(--pine-teal);
    color: var(--white);
    transform: translateY(-3px);
  }
}

.hours-section {
  padding: var(--space-lg);
  background: var(--blush);
  border-radius: 8px;

  h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--pine-teal);
    margin-bottom: var(--space-md);
    text-align: center;
  }
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(26, 78, 69, 0.1);

  &:last-child {
    border-bottom: none;
  }
}

.hours-day {
  font-weight: 400;
  color: var(--pine-teal);
}

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

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* Coming Soon Page */

.coming-soon-page {
  background: var(--cream);
  min-height: 100vh;
  overflow: hidden;
}

.coming-soon {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--space-md);
}

.coming-soon-content {
  text-align: center;
  max-width: 600px;
  z-index: 2;
}

.coming-soon-eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--glaucous);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out-expo) 0.4s forwards;
}

.coming-soon-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--pine-teal);
  margin-bottom: var(--space-md);
}

.coming-soon-title .line {
  display: block;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out-expo) forwards;
}

.coming-soon-title .line:nth-child(1) {
  animation-delay: 0.6s;
}

.coming-soon-title .line:nth-child(2) {
  animation-delay: 0.8s;
}

.coming-soon-title .line:nth-child(3) {
  animation-delay: 1s;
}

.coming-soon-title .text-accent {
  color: var(--peach);
  font-style: italic;
}

.coming-soon-subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 450px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out-expo) 1.2s forwards;
}

/* Decorative Shapes */
.coming-soon-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.coming-soon-shape-1 {
  position: absolute;
  top: -5%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: var(--olive-muted);
  opacity: 0;
  animation: shapeFloat 1.2s var(--ease-out-expo) 0.2s forwards;
}

.coming-soon-shape-2 {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: var(--peach-soft);
  opacity: 0;
  animation: shapeFloat 1.2s var(--ease-out-expo) 0.4s forwards;
}

.coming-soon-shape-3 {
  position: absolute;
  top: 40%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: var(--glaucous-soft);
  opacity: 0;
  animation: shapeFloat 1.2s var(--ease-out-expo) 0.6s forwards;
}

/* Logo Watermark */
.coming-soon-watermark {
  position: fixed;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 200px;
  opacity: 0;
  z-index: 1;
  animation: watermarkReveal 1s var(--ease-out-expo) 1.4s forwards;
}

@keyframes watermarkReveal {
  to {
    opacity: 0.1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .coming-soon-shape-1 {
    width: 250px;
    height: 250px;
  }

  .coming-soon-shape-2 {
    width: 200px;
    height: 200px;
  }

  .coming-soon-shape-3 {
    display: none;
  }

  .coming-soon-watermark {
    width: 150px;
    bottom: var(--space-md);
  }
}

/* Footer */

.site-footer {
  background: var(--pine-teal-dark);
  color: var(--white);
  padding: var(--space-xl) 0 var(--space-md);
  position: relative;
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: var(--space-md);
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--olive);
  margin-bottom: var(--space-sm);
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.footer-nav h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  color: var(--olive);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);

  a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);

    &:hover {
      color: var(--peach);
    }
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-cookie-link {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-fast);

  &:hover {
    color: var(--peach);
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}
}

/* ========== Utilities ========== */
@layer utilities {
/* Utility Classes */

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

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);

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

/* Staggered animations for children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
}

.stagger-children.visible > *:nth-child(1) { animation: fadeSlideUp 0.6s var(--ease-out-expo) 0.1s forwards; }
.stagger-children.visible > *:nth-child(2) { animation: fadeSlideUp 0.6s var(--ease-out-expo) 0.2s forwards; }
.stagger-children.visible > *:nth-child(3) { animation: fadeSlideUp 0.6s var(--ease-out-expo) 0.3s forwards; }
.stagger-children.visible > *:nth-child(4) { animation: fadeSlideUp 0.6s var(--ease-out-expo) 0.4s forwards; }
.stagger-children.visible > *:nth-child(5) { animation: fadeSlideUp 0.6s var(--ease-out-expo) 0.5s forwards; }
.stagger-children.visible > *:nth-child(6) { animation: fadeSlideUp 0.6s var(--ease-out-expo) 0.6s forwards; }
}
