


:root {
  --primary: #C4622D;
  --secondary: #8B5E3C;
  --accent: #D4845A;
  --bg-warm: #FAF7F2;
  --bg-alt: #F5EFE6;
  --bg-card: #FFFCF8;
  --bg-dark: #2C1A0E;
  --text-dark: #2C1A0E;
  --text-mid: #5C3D2A;
  --text-light: #8B6E5A;
  --text-white: #FFFCF8;

  --primary-light: color-mix(in oklch, var(--primary), white 55%);
  --primary-xlight: color-mix(in oklch, var(--primary), white 82%);
  --primary-dark: color-mix(in oklch, var(--primary), black 18%);
  --secondary-light: color-mix(in oklch, var(--secondary), white 60%);
  --accent-glow: color-mix(in oklch, var(--primary), transparent 65%);
  --border-warm: color-mix(in oklch, var(--secondary), transparent 75%);
  --shadow-warm: color-mix(in oklch, var(--primary), transparent 80%);
  --shadow-mid: color-mix(in oklch, var(--text-dark), transparent 85%);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 100px;

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

  --shadow-card: 0 1px 3px var(--shadow-warm), 0 4px 16px color-mix(in oklch, var(--primary), transparent 88%), 0 12px 40px color-mix(in oklch, var(--text-dark), transparent 94%);
  --shadow-hover: 0 2px 8px var(--shadow-warm), 0 8px 32px color-mix(in oklch, var(--primary), transparent 75%), 0 20px 60px color-mix(in oklch, var(--text-dark), transparent 90%);
  --shadow-btn: 0 2px 8px color-mix(in oklch, var(--primary), transparent 55%), 0 4px 20px color-mix(in oklch, var(--primary), transparent 70%);

  --nav-h: 72px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
}


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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

main { flex: 1; }


.shelf-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: color-mix(in oklch, var(--bg-warm), transparent 8%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-warm);
  transition: transform .35s cubic-bezier(.4,0,.2,1), background .3s;
}

.shelf-nav.nav-hidden { transform: translateY(-100%); }

.shelf-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.shelf-nav-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.shelf-nav-logo img { height: 36px; width: auto; }
.shelf-nav-logo span {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -.025em;
}

.shelf-nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.shelf-nav-links a {
  text-decoration: none;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
  padding: .25rem 0;
  position: relative;
}
.shelf-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: center;
}
.shelf-nav-links a:hover,
.shelf-nav-links a.active { color: var(--primary); }
.shelf-nav-links a:hover::after,
.shelf-nav-links a.active::after { transform: scaleX(1); }

.shelf-nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: .55rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: var(--shadow-btn);
  white-space: nowrap;
}
.shelf-nav-cta:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 24px color-mix(in oklch, var(--primary), transparent 45%);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: var(--text-dark);
  transition: color var(--transition);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger:hover { color: var(--primary); }


.stage {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-xl);
  padding: calc(var(--nav-h) + 5rem) 2rem 5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.stage-content { position: relative; z-index: 2; }

.hero-atropos {
  width: 100%;
  max-width: 580px;
}

.stage-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
  padding: .35rem .9rem;
  background: var(--primary-xlight);
  border-radius: var(--radius-full);
  border: 1px solid color-mix(in oklch, var(--primary), transparent 70%);
}

.stage-headline {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.04em;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
}

.stage-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.stage-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-spotlight {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--primary);
  color: #fff;
  padding: .8rem 2rem;
  border-radius: var(--radius-full);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: var(--shadow-btn);
}
.btn-spotlight:hover {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 6px 32px color-mix(in oklch, var(--primary), transparent 40%);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--text-mid);
  padding: .8rem 1.8rem;
  border-radius: var(--radius-full);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--border-warm);
  transition: all var(--transition);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-xlight);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  color: var(--primary);
  padding: .85rem 2.2rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 2px 20px rgba(0,0,0,.12);
}
.btn-white:hover {
  background: var(--primary-xlight);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0,0,0,.18);
}

.stage-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stage-img {
  width: 100%;
  max-width: 560px;
  height: 620px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hover);
}


.page-hero-simple {
  padding: calc(var(--nav-h) + 4rem) 2rem 3.5rem;
  background: linear-gradient(160deg, color-mix(in oklch, var(--bg-warm), var(--primary) 5%) 0%, var(--bg-warm) 70%);
}

.page-hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--text-dark);
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}
.page-hero-title.small {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.page-hero-sub {
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.7;
}

.legal-hero { padding-bottom: 2.5rem; }
.legal-date {
  font-size: .85rem;
  color: var(--text-light);
  margin-top: .75rem;
}


.canvas-section {
  padding: var(--space-2xl) 0;
}
.canvas-section.bg-warm-alt {
  background: var(--bg-alt);
}
.canvas-section.bg-accent-warm {
  background: var(--primary);
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.label-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  padding: .3rem .85rem;
  background: var(--primary-xlight);
  border-radius: var(--radius-full);
  border: 1px solid color-mix(in oklch, var(--primary), transparent 72%);
}

.section-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--text-dark);
  max-width: 640px;
}
.section-heading.light { color: #fff; max-width: 700px; }

.text-center { text-align: center; }
.text-center .section-heading { margin: 0 auto; }

.lead-text {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 600px;
  margin: 1.5rem auto 2.5rem;
}
.lead-text.light { color: color-mix(in oklch, #fff, transparent 15%); }


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.spotlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: color-mix(in oklch, var(--primary), transparent 60%);
}

.spotlight-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-xlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
  font-size: 1.3rem;
  transition: transform var(--transition), background var(--transition);
}
.spotlight-card:hover .spotlight-icon {
  transform: rotate(-8deg) scale(1.1);
  background: color-mix(in oklch, var(--primary), white 68%);
}

.spotlight-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .65rem;
  letter-spacing: -.02em;
}
.spotlight-card p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.65;
}


.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.section-split.reverse { direction: rtl; }
.section-split.reverse > * { direction: ltr; }

.split-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.split-text p:last-of-type { margin-bottom: 0; }

.rounded-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hover);
}

.mt-btn { margin-top: 2rem; }


.timeline-track {
  position: relative;
  padding-left: 3rem;
}
.timeline-track::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), color-mix(in oklch, var(--primary), transparent 70%));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-marker {
  position: absolute;
  left: -2.45rem;
  top: .1rem;
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 2px 8px var(--shadow-warm);
}
.timeline-marker span {
  font-size: .7rem;
  font-weight: 800;
  color: var(--primary);
}
.timeline-item:hover .timeline-marker {
  background: var(--primary);
  transform: scale(1.1);
}
.timeline-item:hover .timeline-marker span { color: #fff; }

.timeline-body {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  flex: 1;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}
.timeline-item:hover .timeline-body {
  box-shadow: var(--shadow-hover);
  transform: translateX(4px);
}

.timeline-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem;
}
.timeline-body p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.65;
}


.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.value-item {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.value-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: .75rem;
  font-style: italic;
}

.value-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .6rem;
}
.value-item p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.65;
}


.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.material-card {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.material-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.material-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-xlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.material-card:hover .material-icon {
  transform: rotate(-8deg) scale(1.1);
  background: color-mix(in oklch, var(--primary), white 68%);
}

.material-body h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem;
}
.material-body p {
  font-size: .875rem;
  color: var(--text-mid);
  line-height: 1.65;
}


.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.topic-item {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.topic-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.topic-item i {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: .75rem;
  display: block;
  transition: transform var(--transition);
}
.topic-item:hover i { transform: scale(1.2) rotate(-5deg); }

.topic-item h5 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem;
}
.topic-item p {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.6;
}


.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s;
}
.gallery-item.tall img { height: 496px; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.wide img { height: 240px; }
.gallery-item:hover img {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}
.gallery-item { overflow: hidden; border-radius: var(--radius-md); }
.gallery-item.tall { grid-row: span 2; }


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

.chat-window {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.chat-header {
  background: var(--primary);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
}
.chat-avatar {
  width: 44px; height: 44px;
  background: color-mix(in oklch, #fff, transparent 80%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.chat-header strong { display: block; font-size: 1rem; font-weight: 700; }
.chat-header span { font-size: .8rem; opacity: .85; }

.chat-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  background: color-mix(in oklch, var(--bg-warm), var(--bg-card) 50%);
}

.chat-bubble {
  max-width: 85%;
  padding: .85rem 1.1rem;
  border-radius: var(--radius-lg);
  font-size: .9rem;
}
.chat-bubble.company {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  color: var(--text-dark);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px var(--shadow-warm);
}
.chat-bubble.company p { margin: 0; line-height: 1.5; }
.chat-bubble.company a { color: var(--primary); }

.chat-bubble.user-field {
  align-self: flex-end;
  background: color-mix(in oklch, var(--primary), white 88%);
  border: 1px solid color-mix(in oklch, var(--primary), transparent 65%);
  border-bottom-right-radius: 4px;
  padding: .5rem;
  width: 100%;
  max-width: 100%;
}

.chat-bubble.user-field input,
.chat-bubble.user-field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
.chat-bubble.user-field input:focus,
.chat-bubble.user-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--primary), transparent 80%);
}

.privacy-check { padding: .75rem 1rem; }
.check-label {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .85rem;
  color: var(--text-mid);
  cursor: pointer;
}
.check-label input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
}

.chat-send {
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border-warm);
  display: flex;
  justify-content: flex-end;
}

.btn-send {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: var(--shadow-btn);
}
.btn-send:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 20px color-mix(in oklch, var(--primary), transparent 45%);
  transform: translateY(-1px);
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}
.contact-info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.contact-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 38px; height: 38px;
  background: var(--primary-xlight);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-detail-list strong { display: block; font-size: .85rem; font-weight: 700; color: var(--text-dark); margin-bottom: .2rem; }
.contact-detail-list p { font-size: .875rem; color: var(--text-mid); line-height: 1.5; margin: 0; }
.contact-detail-list a { color: var(--text-mid); text-decoration: none; }
.contact-detail-list a:hover { color: var(--primary); }

.transport-list { display: flex; flex-direction: column; gap: 1rem; }
.transport-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.transport-item i {
  width: 36px; height: 36px;
  background: var(--primary-xlight);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: .9rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.transport-item:hover i { transform: scale(1.1); background: color-mix(in oklch, var(--primary), white 68%); }
.transport-item strong { display: block; font-size: .85rem; font-weight: 700; color: var(--text-dark); margin-bottom: .2rem; }
.transport-item p { font-size: .85rem; color: var(--text-mid); line-height: 1.5; margin: 0; }
.transport-item div { flex: 1; }

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.map-wrap iframe { display: block; }


.thanks-stage {
  flex: 1;
  min-height: calc(100vh - var(--nav-h) - 300px);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.thanks-inner { max-width: 540px; }

.thanks-icon {
  font-size: 3.5rem;
  color: color-mix(in oklch, #fff, transparent 25%);
  margin-bottom: 1.75rem;
  animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.08); opacity: 1; }
}

.thanks-stage h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.thanks-stage p {
  font-size: 1.1rem;
  color: color-mix(in oklch, #fff, transparent 15%);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.btn-thanks-home {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: #fff;
  padding: .9rem 2.2rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.7);
  transition: all var(--transition);
}
.btn-thanks-home:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}


.legal-doc {
  max-width: 860px;
  padding-bottom: 4rem;
}
.legal-doc h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 2.5rem;
  margin-bottom: .85rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border-warm);
}
.legal-doc p {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.legal-doc ul {
  margin: .75rem 0 1rem 1.5rem;
}
.legal-doc ul li {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: .4rem;
}
.legal-doc a { color: var(--primary); }

.legal-box {
  background: var(--primary-xlight);
  border: 1px solid color-mix(in oklch, var(--primary), transparent 65%);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1rem 0 1.5rem;
}
.legal-box p { margin: 0; font-size: .9rem; line-height: 1.7; }

.cookie-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-warm);
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
.cookie-table th {
  background: var(--primary-xlight);
  color: var(--text-dark);
  font-weight: 700;
  padding: .75rem 1rem;
  text-align: left;
  white-space: nowrap;
}
.cookie-table td {
  padding: .75rem 1rem;
  color: var(--text-mid);
  border-top: 1px solid var(--border-warm);
  vertical-align: top;
}
.cookie-table code {
  font-family: monospace;
  font-size: .85em;
  background: color-mix(in oklch, var(--primary), white 88%);
  padding: .1em .4em;
  border-radius: 4px;
  color: var(--primary-dark);
}


.drawer-footer {
  background: var(--bg-dark);
  margin-top: auto;
}

.footer-canvas { max-width: 1280px; margin: 0 auto; padding: 4rem 2rem 0; }

.footer-shelf {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid color-mix(in oklch, #fff, transparent 88%);
}

.footer-card h5 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: color-mix(in oklch, #fff, transparent 30%);
  margin-bottom: 1.25rem;
}

.footer-about p {
  font-size: .875rem;
  color: color-mix(in oklch, #fff, transparent 40%);
  line-height: 1.7;
  margin-top: .75rem;
}

.footer-logo { height: 32px; width: auto; }

.footer-card ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-card ul li a {
  font-size: .875rem;
  color: color-mix(in oklch, #fff, transparent 40%);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-card ul li a:hover { color: var(--primary-light); }

.contact-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: color-mix(in oklch, #fff, transparent 40%);
}
.contact-list li i { color: var(--primary-light); font-size: .85rem; margin-top: .15rem; flex-shrink: 0; }
.contact-list li a { color: color-mix(in oklch, #fff, transparent 40%); text-decoration: none; }
.contact-list li a:hover { color: var(--primary-light); }

.vat-info {
  font-size: .78rem;
  color: color-mix(in oklch, #fff, transparent 55%);
  line-height: 1.7;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in oklch, #fff, transparent 88%);
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: .8rem;
  color: color-mix(in oklch, #fff, transparent 55%);
}


.drawer-mobile-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 950;
  background: var(--bg-card);
  border-top: 1px solid var(--border-warm);
  box-shadow: 0 -4px 20px color-mix(in oklch, var(--text-dark), transparent 90%);
  padding: .5rem 0 env(safe-area-inset-bottom, .5rem);
}

.drawer-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  padding: .4rem .5rem;
  text-decoration: none;
  color: var(--text-light);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: color var(--transition);
  flex: 1;
  min-height: 44px;
  justify-content: center;
}
.drawer-tab i { font-size: 1.1rem; transition: transform var(--transition); }
.drawer-tab:hover, .drawer-tab.active { color: var(--primary); }
.drawer-tab.active i { transform: translateY(-2px); }
.drawer-tab:hover i { transform: scale(1.15); }


.stage-curtain {
  position: fixed;
  inset: 0;
  background: rgba(44, 26, 14, .45);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.stage-curtain.visible { opacity: 1; pointer-events: all; }

.cookie-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 320px;
  background: var(--bg-card);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 40px color-mix(in oklch, var(--text-dark), transparent 80%);
}
.cookie-panel.open { transform: translateX(0); }

.cookie-panel-header {
  padding: 1.5rem;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.cookie-panel-header i { font-size: 1.5rem; margin-top: .1rem; flex-shrink: 0; }
.cookie-panel-header h3 { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.cookie-panel-header p { font-size: .8rem; opacity: .88; line-height: 1.5; }

.cookie-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-category {
  background: var(--bg-warm);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-md);
  padding: 1rem;
}
.cookie-cat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
}
.cookie-cat-header strong { font-size: .9rem; font-weight: 700; color: var(--text-dark); }
.cookie-category p { font-size: .8rem; color: var(--text-mid); line-height: 1.55; }

.toggle-switch {
  position: relative;
  width: 44px; height: 24px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: color-mix(in oklch, var(--text-light), transparent 50%);
  border-radius: 24px;
  cursor: pointer;
  transition: background .3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .3s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--primary); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle-switch input:disabled + .toggle-slider { opacity: .6; cursor: not-allowed; }

.cookie-panel-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-warm);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.btn-accept-all {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: .75rem;
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-btn);
}
.btn-accept-all:hover { background: var(--primary-dark); }
.btn-reject-all {
  background: transparent;
  color: var(--text-mid);
  border: 1.5px solid var(--border-warm);
  padding: .7rem;
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-reject-all:hover { border-color: var(--primary); color: var(--primary); }
.btn-save-prefs {
  background: transparent;
  color: var(--text-light);
  border: none;
  font-size: .8rem;
  cursor: pointer;
  text-decoration: underline;
  transition: color var(--transition);
  padding: .25rem;
}
.btn-save-prefs:hover { color: var(--primary); }

.cookie-manage-trigger {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 800;
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-full);
  padding: .6rem 1.2rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  display: none;
}
.cookie-manage-trigger.show { display: flex; align-items: center; gap: .4rem; }
.cookie-manage-trigger:hover { color: var(--primary); border-color: var(--primary); }


[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}


.desktop-only { display: inline-flex; }


@media (max-width: 1024px) {
  .stage {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding-top: calc(var(--nav-h) + 3rem);
  }
  .stage-content { display: flex; flex-direction: column; align-items: center; }
  .hero-atropos { max-width: 100%; }
  .stage-sub { max-width: 600px; }
  .stage-visual { order: -1; }
  .stage-img { height: 420px; max-width: 100%; }

  .section-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .section-split.reverse { direction: ltr; }

  .footer-shelf {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-about { grid-column: span 2; }
}

@media (max-width: 768px) {
  .shelf-nav-links { display: none; }
  .shelf-nav-cta.desktop-only { display: none; }
  .hamburger { display: flex; }
  .desktop-only { display: none; }

  .drawer-mobile-nav {
    display: flex;
    align-items: stretch;
  }

  .canvas-section { padding: 3.5rem 0; }

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

  .photo-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.tall img { height: 200px; }
  .gallery-item img { height: 180px; }
  .gallery-item.wide img { height: 180px; }

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

  .footer-shelf {
    grid-template-columns: 1fr 1fr;
  }
  .footer-about { grid-column: span 2; }

  .cookie-panel { width: 100%; }

  .timeline-track { padding-left: 2.5rem; }

  .rounded-img { height: 320px; }

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

  body { padding-bottom: 70px; }
}

@media (max-width: 480px) {
  .stage-headline { font-size: clamp(2.5rem, 12vw, 3.5rem); }
  .page-hero-title { font-size: clamp(2rem, 10vw, 3rem); }
  .section-heading { font-size: clamp(1.5rem, 7vw, 2rem); }

  .gallery-grid { grid-template-columns: 1fr; }
  .photo-gallery { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }

  .footer-shelf { grid-template-columns: 1fr; }
  .footer-about { grid-column: span 1; }

  .stage-actions { flex-direction: column; align-items: center; width: 100%; }
  .btn-spotlight, .btn-ghost { width: 100%; justify-content: center; }

  .section-container { padding: 0 1.25rem; }

  .chat-bubble { max-width: 100%; }
}