/* ============================================
   LAGOON POP — STYLE.CSS
   Cutout Layers Design System
   ============================================ */


:root {
  --color-primary: oklch(42% 0.08 220);
  --color-secondary: oklch(62% 0.12 80);
  --color-accent: oklch(55% 0.14 30);

  --color-primary-light: color-mix(in oklch, var(--color-primary), white 60%);
  --color-primary-xlight: color-mix(in oklch, var(--color-primary), white 88%);
  --color-primary-dark: color-mix(in oklch, var(--color-primary), black 30%);
  --color-primary-xdark: color-mix(in oklch, var(--color-primary), black 55%);

  --color-secondary-light: color-mix(in oklch, var(--color-secondary), white 55%);
  --color-secondary-xlight: color-mix(in oklch, var(--color-secondary), white 85%);
  --color-secondary-dark: color-mix(in oklch, var(--color-secondary), black 25%);

  --color-accent-light: color-mix(in oklch, var(--color-accent), white 60%);
  --color-accent-xlight: color-mix(in oklch, var(--color-accent), white 88%);
  --color-accent-dark: color-mix(in oklch, var(--color-accent), black 20%);

  --color-surface: oklch(98% 0.005 220);
  --color-surface-warm: oklch(97% 0.01 80);
  --color-surface-dark: oklch(18% 0.04 220);
  --color-surface-xdark: oklch(12% 0.03 220);

  --color-text: oklch(20% 0.04 220);
  --color-text-muted: oklch(45% 0.04 220);
  --color-text-light: oklch(96% 0.01 80);

  --color-border: color-mix(in oklch, var(--color-primary), white 82%);
  --color-border-dark: color-mix(in oklch, var(--color-primary-xdark), white 70%);

  
  --shadow-sm: 0 1px 3px color-mix(in oklch, var(--color-primary), transparent 88%), 0 1px 2px color-mix(in oklch, var(--color-primary), transparent 92%);
  --shadow-md: 0 4px 12px color-mix(in oklch, var(--color-primary), transparent 82%), 0 2px 6px color-mix(in oklch, var(--color-primary), transparent 88%);
  --shadow-lg: 0 12px 32px color-mix(in oklch, var(--color-primary), transparent 75%), 0 4px 12px color-mix(in oklch, var(--color-primary), transparent 85%);
  --shadow-xl: 0 24px 56px color-mix(in oklch, var(--color-primary), transparent 70%), 0 8px 20px color-mix(in oklch, var(--color-primary), transparent 80%);
  --shadow-warm: 0 8px 24px color-mix(in oklch, var(--color-secondary), transparent 72%);
  --shadow-accent: 0 6px 20px color-mix(in oklch, var(--color-accent), transparent 70%);

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

  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 40px;
  --radius-full: 9999px;

  
  --nav-height: 72px;
}


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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  background: var(--color-surface);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s ease; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }


h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-text);
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

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


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

.container--narrow {
  max-width: 800px;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent);
  color: white;
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px color-mix(in oklch, var(--color-accent), transparent 55%);
  color: white;
}

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

.btn--outline-light {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateY(-2px);
}

.btn--hero {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}


.btn--cookie-accept {
  background: var(--color-accent);
  color: white;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  min-height: 36px;
  transition: background 0.2s;
}
.btn--cookie-accept:hover { background: var(--color-accent-dark); }

.btn--cookie-reject {
  background: transparent;
  color: var(--color-text-muted);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  min-height: 36px;
  border: 1px solid var(--color-border);
  transition: all 0.2s;
}
.btn--cookie-reject:hover {
  border-color: var(--color-text-muted);
  color: var(--color-text);
}

.btn--cookie-customize {
  background: transparent;
  color: var(--color-primary);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  min-height: 36px;
  text-decoration: underline;
  transition: color 0.2s;
}
.btn--cookie-customize:hover { color: var(--color-primary-dark); }


.cookie-banner {
  position: fixed;
  top: -150px;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.75rem var(--space-md);
}

.cookie-banner--visible { top: 0; }

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0;
}

.cookie-banner__text a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}


.cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.cookie-modal--open { display: flex; }

.cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.cookie-modal__box {
  position: relative;
  z-index: 1;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  max-width: 480px;
  width: 90%;
  box-shadow: var(--shadow-xl);
}

.cookie-modal__box h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.cookie-modal__box > p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.cookie-modal__category {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  margin-bottom: 0.75rem;
}

.cookie-modal__category p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 0.35rem;
}

.cookie-modal__label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}

.cookie-modal__label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
}

.cookie-modal__note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-left: auto;
}

.cookie-modal__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-md);
  flex-wrap: wrap;
}


.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 249, 252, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.nav--visible,
.nav.nav--visible {
  transform: translateY(0);
}

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

.nav__logo img { display: block; }

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

.nav__link {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: all 0.22s ease;
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-primary);
  background: var(--color-primary-xlight);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.nav__toggle:hover { background: var(--color-primary-xlight); }

.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__toggle--open .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle--open .nav__toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle--open .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.nav__mobile {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid transparent;
}

.nav__mobile--open {
  max-height: 400px;
  border-top-color: var(--color-border);
}

.nav__mobile-links {
  padding: 0.75rem var(--space-md) var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav__mobile-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  transition: all 0.2s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav__mobile-link:hover {
  background: var(--color-primary-xlight);
  color: var(--color-primary);
}


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

.section--light {
  background: var(--color-surface);
}

.section--warm {
  background: var(--color-surface-warm);
}

.section--dark {
  background: var(--color-surface-dark);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section__title {
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.section__title--light {
  color: var(--color-text-light);
}

.section__lead {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.section__lead--light {
  color: color-mix(in oklch, var(--color-text-light), transparent 25%);
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    color-mix(in oklch, var(--color-primary-xdark), transparent 15%) 0%,
    color-mix(in oklch, var(--color-primary-dark), transparent 40%) 50%,
    color-mix(in oklch, var(--color-secondary-dark), transparent 50%) 100%
  );
}


.hero__cutout {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--color-surface);
  clip-path: ellipse(60% 100% at 50% 100%);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: var(--space-3xl) var(--space-md) calc(var(--space-3xl) + 80px);
  max-width: 1200px;
  margin: 0 auto;
}

.hero__text {
  max-width: 680px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-secondary-light);
  margin-bottom: var(--space-sm);
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
}

.hero__headline {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-md);
  color: white;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.05;
}

.hero__line { display: block; }

.hero__line--large {
  font-weight: 800;
  color: white;
}

.hero__line--medium {
  font-weight: 400;
  font-style: italic;
  color: var(--color-secondary-light);
  font-size: 0.75em;
}

.hero__line--small {
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  font-size: 0.5em;
  letter-spacing: 0.04em;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

#hero-sentinel {
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 100%;
}


.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    135deg,
    var(--color-primary-xdark) 0%,
    var(--color-primary-dark) 60%,
    color-mix(in oklch, var(--color-secondary-dark), var(--color-primary-dark) 50%) 100%
  );
}

.page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    color-mix(in oklch, var(--color-primary-xdark), transparent 10%) 0%,
    color-mix(in oklch, var(--color-primary-dark), transparent 35%) 100%
  );
}

.page-hero__cutout {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--color-surface);
  z-index: 2;
}

.page-hero__cutout--oval {
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero__cutout--diamond {
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.page-hero__content {
  position: relative;
  z-index: 3;
  padding: var(--space-xl) var(--space-md) calc(var(--space-xl) + 60px);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero__content--centered {
  text-align: center;
}

.page-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: white;
  font-weight: 800;
  margin-bottom: var(--space-sm);
  line-height: 1.05;
}

.page-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  line-height: 1.7;
}

.page-hero__content--centered .page-hero__sub {
  margin: 0 auto;
}

.page-hero--minimal {
  min-height: 38vh;
  background: linear-gradient(
    135deg,
    var(--color-primary-xdark) 0%,
    var(--color-primary-dark) 100%
  );
}

.page-hero--minimal .page-hero__bg {
  background: none;
}


.blocks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}

.block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.block:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.block__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--color-accent-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: background 0.3s;
}

.block:hover .block__icon-wrap {
  background: var(--color-accent);
}

.block__icon {
  font-size: 1.3rem;
  color: var(--color-accent);
  transition: color 0.3s;
}

.block:hover .block__icon {
  color: white;
}

.block__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--color-text);
}

.block__text {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}


.section--cutout {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-3xl) 0;
  background: var(--color-primary-xdark);
}

.section--cutout-alt {
  background: var(--color-surface-dark);
}

.cutout-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cutout-layer__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}


.cutout-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.cutout-shape--circle {
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--color-surface);
  opacity: 0.06;
}

.cutout-shape--rect {
  left: -60px;
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
  width: 360px;
  height: 360px;
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  opacity: 0.05;
}

.cutout-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.cutout-content--right {
  margin-left: auto;
}

.cutout-content .section__title--light {
  margin-bottom: var(--space-md);
}

.cutout-content__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.cutout-content .btn--outline-light {
  margin-top: var(--space-sm);
}


.section--tabs {
  background: var(--color-surface-warm);
}

.tabs {
  background: var(--color-surface);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.tabs__nav {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs__nav::-webkit-scrollbar { display: none; }

.tabs__btn {
  flex: 1;
  min-width: 140px;
  padding: 1.1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: transparent;
  border-bottom: 3px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.tabs__btn:hover {
  color: var(--color-primary);
  background: var(--color-primary-xlight);
}

.tabs__btn--active {
  color: var(--color-primary);
  border-bottom-color: var(--color-accent);
  background: var(--color-primary-xlight);
}

.tabs__panels { padding: var(--space-lg); }

.tabs__panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tabs__panel--active { display: block; }

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

.tabs__panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.tabs__panel-text h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.tabs__panel-text p {
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 0.97rem;
}

.tabs__panel-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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


.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion__item {
  border: 1px solid color-mix(in oklch, var(--color-primary-light), transparent 60%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.accordion__item:has(.accordion__trigger[aria-expanded="true"]) {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 1.4rem var(--space-lg);
  text-align: left;
  background: transparent;
  transition: background 0.2s ease;
  min-height: 44px;
}

.accordion__trigger:hover {
  background: color-mix(in oklch, var(--color-primary-xlight), transparent 40%);
}

.accordion__trigger[aria-expanded="true"] {
  background: color-mix(in oklch, var(--color-primary-xlight), transparent 20%);
}

.accordion__number {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  min-width: 28px;
}

.accordion__title {
  flex: 1;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.accordion__icon {
  color: var(--color-secondary-light);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion__trigger[aria-expanded="true"] .accordion__icon {
  transform: rotate(45deg);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion__body--open {
  max-height: 600px;
}

.accordion__content {
  padding: 0 var(--space-lg) var(--space-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-lg);
  align-items: start;
}

.accordion__text p {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  line-height: 1.72;
}

.accordion__img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}


.section--faq {
  background: var(--color-surface-warm);
}

.faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease;
}

.faq__item:has(.faq__trigger[aria-expanded="true"]) {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 1.2rem var(--space-lg);
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--color-text);
  transition: background 0.2s;
  min-height: 44px;
}

.faq__trigger:hover { background: var(--color-primary-xlight); }

.faq__chevron {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq__trigger[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
}

.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__body--open { max-height: 400px; }

.faq__body p {
  padding: 0 var(--space-lg) var(--space-md);
  font-size: 0.93rem;
  color: var(--color-text-muted);
  line-height: 1.72;
}


.section--cta {
  position: relative;
  overflow: hidden;
  padding: var(--space-3xl) 0;
  background: var(--color-primary-xdark);
  text-align: center;
}

.cta-cutout {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-cutout__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.cta-block {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.cta-block__title {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: var(--space-sm);
}

.cta-block__text {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}


.footer {
  background: var(--color-surface-xdark);
  padding-top: var(--space-2xl);
  padding-bottom: 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid color-mix(in oklch, var(--color-primary-light), transparent 80%);
}

.footer__col--brand {
  padding-right: var(--space-md);
}

.footer__logo { display: inline-block; margin-bottom: var(--space-sm); }

.footer__tagline {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.footer__address {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.footer__heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

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

.footer__link {
  font-size: 0.88rem;
  color: color-mix(in oklch, var(--color-text-muted), white 20%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
  padding: 0.2rem 0;
}

.footer__link:hover {
  color: var(--color-secondary-light);
}

.footer__link i {
  font-size: 0.78rem;
  color: var(--color-accent);
}

.footer__bottom {
  padding: var(--space-md) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__copy {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin: 0;
}


.back-to-top {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-accent);
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 800;
}

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

.back-to-top:hover {
  background: var(--color-accent-dark);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 28px color-mix(in oklch, var(--color-accent), transparent 50%);
}


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

.story-grid__text h2 {
  margin-bottom: var(--space-md);
}

.story-grid__text p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

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

.img-cutout--arch {
  border-radius: 50% 50% var(--radius-xl) var(--radius-xl) / 40% 40% var(--radius-xl) var(--radius-xl);
  aspect-ratio: 3/4;
}

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

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


.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.value-card {
  padding: var(--space-lg);
  border: 1px solid color-mix(in oklch, var(--color-primary-light), transparent 65%);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--color-secondary-light);
  background: color-mix(in oklch, var(--color-primary-xdark), var(--color-surface-dark) 50%);
}

.value-card__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  opacity: 0.7;
}

.value-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 0.6rem;
}

.value-card__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}


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

.approach-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  transition: all 0.25s ease;
}

.approach-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.approach-item__icon {
  font-size: 1.4rem;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.approach-item h4 {
  margin-bottom: 0.35rem;
}

.approach-item p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}


.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.exp-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.exp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.exp-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.exp-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.exp-card:hover .exp-card__img-wrap img { transform: scale(1.06); }

.exp-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.exp-card:hover .exp-card__overlay { opacity: 1; }

.exp-card__overlay span {
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.exp-card__body {
  padding: var(--space-lg);
}

.exp-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.exp-card__body p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.65;
}

.exp-card__list {
  list-style: disc;
  padding-left: 1.2rem;
}

.exp-card__list li {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
  line-height: 1.55;
}


.timeline {
  position: relative;
  padding-left: var(--space-xl);
  margin-top: var(--space-lg);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-primary-light));
}

.timeline__item {
  position: relative;
  margin-bottom: var(--space-lg);
  padding-left: var(--space-md);
}

.timeline__dot {
  position: absolute;
  left: -36px;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-accent);
}

.timeline__content h4 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.timeline__content p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}


.guide-intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.guide-intro__text {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.78;
}

.section--guide-block {
  background: var(--color-surface);
  padding: var(--space-xl) 0;
}

.guide-block {
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-border);
}

.guide-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.guide-block__header {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.guide-block__num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-accent-xlight);
  line-height: 1;
  flex-shrink: 0;
}

.guide-block__title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
}

.guide-block__body p {
  color: var(--color-text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
}

.guide-block__tips {
  background: var(--color-primary-xlight);
  border-radius: var(--radius-xl);
  padding: var(--space-md) var(--space-lg);
  margin-top: var(--space-md);
  border-left: 4px solid var(--color-accent);
}

.guide-block__tips h4 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-dark);
  margin-bottom: 0.75rem;
}

.guide-block__tips ul {
  list-style: none;
  padding: 0;
}

.guide-block__tips ul li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.55;
}

.guide-block__tips ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}


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

.contact-form__title {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.contact-form__sub {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.form-row--inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group--name { margin-bottom: 0; }

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-family: inherit;
  font-size: 0.93rem;
  color: var(--color-text);
  background: var(--color-surface);
  transition: all 0.22s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-xlight);
}

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

.form-row--bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--color-accent);
}

.form-checkbox a {
  color: var(--color-primary);
  text-decoration: underline;
}

.contact-info-block {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.contact-info-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.contact-info-block__title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.contact-info-block__address {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.65;
}

.contact-info-block__link {
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 500;
  transition: color 0.2s;
}

.contact-info-block__link:hover { color: var(--color-accent); }


.section--hours {
  background: var(--color-surface-warm);
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.hours-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease;
}

.hours-card:hover { box-shadow: var(--shadow-md); }

.hours-card--closed {
  background: var(--color-primary-xlight);
  opacity: 0.75;
}

.hours-card__day {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.hours-card__time {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.hours-card__note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}


.section--map {
  background: var(--color-surface);
}

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  margin-top: var(--space-lg);
}


.thanks-page {
  min-height: calc(100vh - var(--nav-height) - 300px);
  padding: var(--space-3xl) 0;
  background: var(--color-surface-warm);
}

.thanks-block {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--space-md);
}

.thanks-block__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-accent-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.8rem;
  color: var(--color-accent);
}

.thanks-block__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: var(--space-sm);
}

.thanks-block__text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.thanks-next {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  text-align: left;
  margin-bottom: var(--space-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.thanks-next__title {
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  text-align: center;
}

.thanks-next__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.thanks-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.thanks-step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.thanks-step h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.thanks-step p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}


.legal-page {
  padding: var(--space-2xl) 0 var(--space-3xl);
  background: var(--color-surface);
  min-height: calc(100vh - 300px);
}

.legal-header {
  margin-bottom: var(--space-xl);
  padding-top: var(--nav-height);
}

.legal-header__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.legal-header__date {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0;
}

.legal-body h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.legal-body p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.legal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
}

.legal-body ul li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0.35rem;
}

.legal-body a {
  color: var(--color-primary);
  text-decoration: underline;
}


.cookie-table-wrap {
  overflow-x: auto;
  margin: var(--space-md) 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.cookie-table th {
  background: var(--color-primary-xlight);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  color: var(--color-primary-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cookie-table td {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  vertical-align: top;
}

.cookie-table tr:hover td {
  background: var(--color-primary-xlight);
}


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


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

  .footer__col--brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

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

  .tabs__panel-img {
    order: -1;
  }

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

  .accordion__img {
    width: 100%;
    height: 200px;
    order: -1;
  }
}

@media (max-width: 768px) {
  :root {
    --space-2xl: 4rem;
    --space-3xl: 6rem;
  }

  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .hero__content {
    padding: var(--space-xl) var(--space-md) calc(var(--space-xl) + 60px);
  }

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

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

  .story-grid__img {
    order: -1;
  }

  .img-cutout--arch {
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
  }

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

  .form-row--inline {
    grid-template-columns: 1fr;
  }

  .form-row--bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .tabs__btn { min-width: 120px; }

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

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

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

  .footer__col--brand {
    grid-column: auto;
  }

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

  .cutout-content--right {
    margin-left: 0;
  }

  .section--cutout {
    padding: var(--space-xl) 0;
  }

  .accordion__trigger {
    padding: 1.1rem var(--space-md);
  }

  .accordion__content {
    padding: 0 var(--space-md) var(--space-md);
  }
}

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

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

  .hero__headline {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
  }

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

  .cookie-banner__actions {
    width: 100%;
  }

  .back-to-top {
    bottom: var(--space-md);
    right: var(--space-md);
  }

  .tabs__nav {
    flex-wrap: nowrap;
  }

  .tabs__btn {
    min-width: 110px;
    font-size: 0.82rem;
    padding: 0.9rem 0.9rem;
  }
}