/* ============================================================
   LUVZORINVUN — STYLE.CSS
   Clean Modern | Scandinavian warmth | Wooden Shutters
   ============================================================ */


:root {
  --color-bg: #f8f6f2;
  --color-surface: #ffffff;
  --color-surface-tinted: #f2ede6;
  --color-primary: #3a5a40;
  --color-primary-dark: #2c4430;
  --color-primary-light: #e8f0e9;
  --color-accent: #c8873a;
  --color-accent-light: #fdf3e7;
  --color-text: #1e2420;
  --color-text-muted: #6b7a6e;
  --color-text-light: #f8f6f2;
  --color-border: #ddd7ce;
  --color-shadow-sm: rgba(30, 36, 32, 0.06);
  --color-shadow-md: rgba(30, 36, 32, 0.12);
  --color-shadow-lg: rgba(30, 36, 32, 0.20);
  --color-cta-bg: #2c4430;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 100px;

  --shadow-card: 0 2px 4px var(--color-shadow-sm), 0 6px 16px var(--color-shadow-md);
  --shadow-raised: 0 4px 8px var(--color-shadow-sm), 0 12px 32px var(--color-shadow-md), 0 2px 2px var(--color-shadow-sm);
  --shadow-float: 0 8px 16px var(--color-shadow-sm), 0 24px 48px var(--color-shadow-lg);
  --shadow-nav: 0 2px 8px var(--color-shadow-sm), 0 4px 20px var(--color-shadow-md);

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

  --nav-height: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}


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

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

body.canvas {
  font-family: 'Manrope', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
address { font-style: normal; }


.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}


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

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}
.section-label--light { color: rgba(255,255,255,0.75); }

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 680px;
  margin-inline: auto;
  line-height: 1.75;
}

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


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  text-align: center;
  min-height: 48px;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(58,90,64,0.2);
}
.btn--primary:hover {
  background-color: var(--color-primary-dark);
  box-shadow: 0 6px 20px rgba(58,90,64,0.3);
}

.btn--ghost {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost:hover {
  background-color: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.9);
}

.btn--ghost-light {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost-light:hover {
  background-color: rgba(255,255,255,0.12);
}

.btn--outline-dark {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline-dark:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.btn--large {
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
}

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-frame {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.nav-frame--transparent {
  background-color: transparent;
}

.nav-frame--solid {
  background-color: var(--color-surface);
  box-shadow: var(--shadow-nav);
}

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

.nav-frame__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}

.nav-frame__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-frame__logo { width: 36px; height: 36px; flex-shrink: 0; }

.nav-frame__name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
  transition: color var(--transition);
}

.nav-frame--transparent .nav-frame__name,
.nav-frame--transparent .nav-frame__link { color: #fff; }

.nav-frame__links {
  display: none;
  gap: var(--space-lg);
  align-items: center;
}

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

.nav-frame__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--transition);
}

.nav-frame__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition);
  border-radius: 2px;
}

.nav-frame__link:hover::after,
.nav-frame__link--active::after { width: 100%; }

.nav-frame__link--cta {
  background-color: var(--color-primary);
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  transition: background-color var(--transition), transform var(--transition);
}
.nav-frame__link--cta::after { display: none; }
.nav-frame__link--cta:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
}

.nav-frame--transparent .nav-frame__link--cta {
  background-color: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
}
.nav-frame--transparent .nav-frame__link--cta:hover {
  background-color: rgba(255,255,255,0.35);
}


.nav-frame__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition);
}
.nav-frame__burger:hover { background-color: var(--color-primary-light); }

.nav-frame__burger span {
  display: block;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: background-color var(--transition);
}

.nav-frame--transparent .nav-frame__burger span { background-color: #fff; }

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

/* ============================================================
   MOBILE DRAWER (Circular Reveal)
   ============================================================ */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
}

.drawer__stage-curtain {
  position: absolute;
  inset: 0;
  background-color: var(--color-primary-dark);
  clip-path: circle(0px at calc(100% - 36px) 36px);
  transition: clip-path 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}

.drawer--open .drawer__stage-curtain {
  clip-path: circle(150% at calc(100% - 36px) 36px);
}

.drawer--open { pointer-events: all; }

.drawer__nav {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem clamp(2rem, 8vw, 4rem);
  opacity: 0;
  transition: opacity 0.3s ease 0.3s;
}

.drawer--open .drawer__nav { opacity: 1; }

.drawer__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color var(--transition);
}
.drawer__close:hover { background: rgba(255,255,255,0.2); }

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

.drawer__link {
  display: block;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  padding: 0.4rem 0;
  transition: color var(--transition), transform var(--transition);
  transform: translateX(0);
}
.drawer__link:hover {
  color: #fff;
  transform: translateX(8px);
}

.drawer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: var(--space-lg);
}

.drawer__contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.drawer__contact-link:hover { color: #fff; }
.drawer__contact-link i { width: 20px; color: var(--color-accent); }

/* ============================================================
   HERO / STAGE
   ============================================================ */
.stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.stage__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 40, 30, 0.75) 0%,
    rgba(28, 40, 30, 0.45) 60%,
    rgba(28, 40, 30, 0.3) 100%
  );
}

.stage__overlay--solid {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, rgba(44,68,48,0.92) 100%);
}

.stage__content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin-inline: auto;
  padding: calc(var(--nav-height) + 4rem) clamp(1rem, 5vw, 2.5rem) 6rem;
  width: 100%;
}

.stage__content--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stage__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 135, 58, 0.2);
  border: 1px solid rgba(200, 135, 58, 0.4);
  color: #f0c07a;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
}

.stage__heading {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.stage__heading--md { font-size: clamp(2rem, 5vw, 3.5rem); }

.stage__subheading {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: var(--space-xl);
}

.stage__subheading--narrow { max-width: 520px; }

.stage__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.stage--inner {
  min-height: 45vh;
  max-height: 520px;
}

.stage--inner .stage__content {
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 4rem;
}

.stage__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stage__scroll-hint span {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.4);
  animation: scrollHint 1.8s ease-in-out infinite;
}

.stage__scroll-hint span:nth-child(2) { animation-delay: 0.3s; }

@keyframes scrollHint {
  0%, 100% { opacity: 0.2; transform: scaleY(0.5); }
  50% { opacity: 0.8; transform: scaleY(1); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.canvas__section {
  padding: var(--space-2xl) 0;
}

.canvas__section--white { background-color: var(--color-surface); }
.canvas__section--tinted { background-color: var(--color-surface-tinted); }
.canvas__section--narrow { padding: var(--space-xl) 0; }

.canvas__section--accent-strip {
  background-color: var(--color-primary);
  padding: var(--space-lg) 0;
}

.canvas__section--cta {
  background: linear-gradient(135deg, var(--color-cta-bg) 0%, var(--color-primary) 100%);
  padding: var(--space-2xl) 0;
}

.canvas__section--thanks {
  background-color: var(--color-surface);
  min-height: calc(100vh - var(--nav-height) - 200px);
  display: flex;
  align-items: center;
  padding: var(--space-2xl) 0;
}


.canvas__angle {
  height: 60px;
  position: relative;
  overflow: hidden;
}

.canvas__angle--down {
  background-color: var(--color-surface);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

.canvas__angle--up {
  background-color: var(--color-surface-tinted);
  clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}

/* ============================================================
   ACCENT STRIP
   ============================================================ */
.shelf--four {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .shelf--four { grid-template-columns: repeat(4, 1fr); }
}

.shelf__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  padding: var(--space-sm);
}

.shelf__icon {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.75);
}

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery {
  display: grid;
  gap: var(--space-md);
}

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

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

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

@media (min-width: 640px) {
  .gallery--three { grid-template-columns: repeat(2, 1fr); }
  .gallery--two { grid-template-columns: repeat(2, 1fr); }
  .gallery--two-plus { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .gallery--three { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   SPOTLIGHT CARDS
   ============================================================ */
.spotlight--card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.spotlight__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.spotlight__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.spotlight--card:hover .spotlight__img { transform: scale(1.04); }

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

.spotlight__icon {
  width: 44px;
  height: 44px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

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

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


.spotlight--pullquote {
  background: linear-gradient(135deg, var(--color-accent-light) 0%, #fef9f3 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) clamp(var(--space-lg), 6vw, var(--space-2xl));
  position: relative;
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-card);
  max-width: 860px;
  margin-inline: auto;
}

.spotlight__quote-mark {
  font-size: 6rem;
  line-height: 0.8;
  color: var(--color-accent);
  font-family: Georgia, serif;
  margin-bottom: var(--space-sm);
  display: block;
  opacity: 0.6;
}

.spotlight__quote-text {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: var(--space-md);
}

.spotlight__quote-attr {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


.spotlight--value {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
  border-top: 3px solid var(--color-primary-light);
}

.spotlight--value:hover {
  box-shadow: var(--shadow-raised);
  transform: translateY(-3px);
  border-top-color: var(--color-primary);
}

.spotlight__value-icon {
  width: 52px;
  height: 52px;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.spotlight--value h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

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


.spotlight--approach {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}

.spotlight--approach:hover {
  box-shadow: var(--shadow-raised);
  transform: translateY(-3px);
}

.spotlight__approach-icon {
  width: 52px;
  height: 52px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.spotlight--approach h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

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

/* ============================================================
   TWO COLUMN LAYOUT
   ============================================================ */
.canvas__two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .canvas__two-col {
    grid-template-columns: 1fr 1fr;
  }
  .canvas__two-col--reverse .canvas__two-col__text {
    order: 2;
  }
  .canvas__two-col--reverse .canvas__two-col__visual {
    order: 1;
  }
}

.canvas__two-col__text p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.canvas__two-col__text .btn { margin-top: var(--space-sm); }

.canvas__img-full {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-raised);
  aspect-ratio: 4/3;
  object-fit: cover;
}


.canvas__img-stack {
  position: relative;
}

.canvas__img-stack__main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-raised);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.canvas__img-stack__badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background-color: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-float);
}

.canvas__img-stack__badge i { color: #a8d5b5; }


.canvas__area-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.canvas__area-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 0.75rem;
  border-radius: var(--radius-md);
  background-color: var(--color-primary-light);
  transition: background-color var(--transition);
}

.canvas__area-item i { color: var(--color-primary); }

.canvas__area-item--muted {
  background-color: transparent;
  color: var(--color-text-muted);
  font-weight: 400;
}

.canvas__area-item--muted i { color: var(--color-border); }


.canvas__intro-wide {
  max-width: 820px;
  margin-inline: auto;
}

.canvas__intro-wide p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
  font-size: 1.05rem;
}

.canvas__intro-lead {
  font-size: 1.2rem !important;
  color: var(--color-text) !important;
  font-weight: 500;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.shelf--process {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  counter-reset: none;
}

@media (min-width: 640px) {
  .shelf--process { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .shelf--process { grid-template-columns: repeat(4, 1fr); }
}

.shelf__step {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

.shelf__step:hover {
  box-shadow: var(--shadow-raised);
  transform: translateY(-3px);
}

.shelf__step-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary-light);
  line-height: 1;
  margin-bottom: var(--space-sm);
  font-variant-numeric: tabular-nums;
}

.shelf__step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

/* ============================================================
   SWIPER / GALLERY SLIDER
   ============================================================ */
.gallery-swiper {
  padding-bottom: 3rem !important;
}

.gallery-slide {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background-color: var(--color-surface);
}

.gallery-slide__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-slide:hover .gallery-slide__img { transform: scale(1.03); }

.gallery-slide__caption {
  padding: 0.75rem var(--space-sm);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

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

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

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-primary) !important;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

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

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  min-height: 60px;
  transition: background-color var(--transition);
}

.faq-item__trigger:hover { background-color: var(--color-primary-light); }

.faq-item__trigger[aria-expanded="true"] { color: var(--color-primary); }

.faq-item__icon {
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--color-accent);
  transition: transform var(--transition);
}

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

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding var(--transition);
  padding: 0 var(--space-md);
}

.faq-item__body.faq-item__body--open {
  max-height: 400px;
  padding: 0 var(--space-md) var(--space-md);
}

.faq-item__body p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-sm);
}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.canvas__cta-block {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.canvas__cta-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-sm);
}

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

.canvas__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

/* ============================================================
   SERVICE PAGE
   ============================================================ */
.service-num {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-primary-light);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

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

.contact-form-wrap__title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.contact-form-wrap__desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.65;
}

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

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-label span { color: var(--color-accent); }

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  color: var(--color-text);
  background-color: var(--color-surface);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(58, 90, 64, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-field--checkbox { flex-direction: row; align-items: flex-start; }

.form-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  display: none;
}

.form-check__box {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  background-color: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background-color var(--transition);
  position: relative;
}

.form-check input:checked + .form-check__box {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.form-check input:checked + .form-check__box::after {
  content: '\2713';
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.form-check__text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

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

.form-error {
  font-size: 0.88rem;
  color: #c0392b;
  font-weight: 500;
  min-height: 20px;
}


.contact-info__card {
  background-color: var(--color-surface-tinted);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--space-sm);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-info__item:last-child { border-bottom: none; }

.contact-info__icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}

.contact-info__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition);
}

a.contact-info__value:hover { color: var(--color-primary); }

.contact-info__note {
  background-color: var(--color-accent-light);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  border-left: 3px solid var(--color-accent);
}

.contact-info__note i {
  color: var(--color-accent);
  margin-top: 3px;
  flex-shrink: 0;
}

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


.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}


.gallery--mini {
  gap: var(--space-sm);
}

.gallery-mini-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}

.gallery-mini-item:hover {
  box-shadow: var(--shadow-raised);
  transform: translateY(-3px);
}

.gallery-mini-item__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-mini-item:hover .gallery-mini-item__img { transform: scale(1.04); }

/* ============================================================
   THANKS PAGE
   ============================================================ */
.thanks-block {
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
  padding: var(--space-xl) 0;
}

.thanks-block__anim {
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
}

.thanks-checkmark {
  width: 80px;
  height: 80px;
}

.thanks-checkmark__circle {
  stroke: var(--color-primary);
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: drawCircle 0.6s ease-in-out 0.3s forwards;
}

.thanks-checkmark__check {
  stroke: var(--color-primary);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: drawCheck 0.4s ease-in-out 1s forwards;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.thanks-block__content {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.5s ease 1.5s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.thanks-block__title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.thanks-block__text {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-header {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  padding: calc(var(--nav-height) + 3rem) 0 3rem;
}

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

.legal-header__meta {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}

.legal-body {
  max-width: 780px;
  margin-inline: auto;
}

.legal-body h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--color-primary-light);
}

.legal-body p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
  font-size: 0.97rem;
}

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

.legal-body a:hover { color: var(--color-primary-dark); }

.legal-body strong { color: var(--color-text); font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-frame {
  background-color: var(--color-text);
  color: rgba(255,255,255,0.75);
  padding: var(--space-2xl) 0 0;
  margin-top: auto;
}

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

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

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

.footer-frame__logo { width: 40px; height: 40px; margin-bottom: 0.75rem; }

.footer-frame__brand .nav-frame__name {
  color: #fff;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-frame__tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-md);
}

.footer-frame__address {
  font-size: 0.88rem;
  line-height: 2;
  color: rgba(255,255,255,0.55);
}

.footer-frame__address a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-frame__address a:hover { color: rgba(255,255,255,0.95); }

.footer-frame__address i {
  width: 16px;
  color: var(--color-accent);
  margin-right: 4px;
}

.footer-frame__col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-sm);
}

.footer-frame__list { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-frame__list a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition), transform var(--transition);
  display: inline-block;
}

.footer-frame__list a:hover {
  color: rgba(255,255,255,0.95);
  transform: translateX(3px);
}

.footer-frame__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-md) 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-frame__domain {
  font-weight: 600;
  color: rgba(255,255,255,0.25);
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background-color: var(--color-text);
  color: rgba(255,255,255,0.85);
  padding: 0.75rem clamp(1rem, 4vw, 2rem);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.cookie-banner--visible { transform: translateY(0); }

.cookie-banner__inner {
  max-width: 1180px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-between;
}

.cookie-banner__text {
  font-size: 0.88rem;
  flex: 1;
  min-width: 200px;
}

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

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

.cookie-btn {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
  min-height: 36px;
  white-space: nowrap;
}

.cookie-btn--primary {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.cookie-btn--primary:hover { background-color: var(--color-primary-dark); }

.cookie-btn--secondary {
  background-color: transparent;
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.25);
}
.cookie-btn--secondary:hover {
  background-color: rgba(255,255,255,0.1);
  color: #fff;
}


.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  padding: 1rem;
}

.cookie-modal--open {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}

.cookie-modal__box {
  position: relative;
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-float);
}

.cookie-modal__title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.cookie-modal__category {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.cookie-modal__category:last-of-type { border-bottom: none; }

.cookie-modal__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 0.4rem;
}

.cookie-modal__label span:first-child {
  font-weight: 700;
  font-size: 0.95rem;
}

.cookie-modal__category p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.cookie-modal__category input[type="checkbox"] { display: none; }

.cookie-toggle {
  width: 44px;
  height: 24px;
  background-color: var(--color-border);
  border-radius: 12px;
  position: relative;
  flex-shrink: 0;
  transition: background-color var(--transition);
  cursor: pointer;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.cookie-modal__category input:checked + .cookie-toggle {
  background-color: var(--color-primary);
}

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

.cookie-toggle--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 639px) {
  .canvas__section { padding: var(--space-xl) 0; }
  .stage__actions { flex-direction: column; align-items: flex-start; }
  .canvas__cta-actions { flex-direction: column; align-items: center; }
  .canvas__img-stack__badge { right: 0; bottom: -1.5rem; }
  .cookie-banner__inner { flex-direction: column; }
  .cookie-banner__actions { width: 100%; justify-content: stretch; }
  .cookie-btn { flex: 1; text-align: center; }
}

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