/* ============================================================
   WOOD SPARK DESIGN — Design System
   "Workshop Luxe" — warm, tactile, confident
   Exposed wood grain meets Swiss typography.
   ============================================================ */

/* --- FONTS ------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif&family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500&display=swap');

/* --- CUSTOM PROPERTIES ------------------------------------- */
:root {
  /* Backgrounds */
  --bg-dark:    #1a1a1a;
  --bg-cream:   #f5f0e8;
  --bg-warm:    #2a2420;
  --surface:    #242424;
  --surface-hover: #2e2e2e;

  /* Accents */
  --amber:      #d4943a;
  --amber-glow: rgba(212, 148, 58, .25);
  --sage:       #7c9a6e;
  --sage-muted: rgba(124, 154, 110, .15);

  /* Text */
  --text-primary:   #f5f0e8;
  --text-secondary: rgba(245, 240, 232, .78);
  --text-muted:     rgba(245, 240, 232, .52);
  --text-dark:      #1a1a1a;

  /* Borders & Shadows */
  --line:       rgba(245, 240, 232, .08);
  --line-hover: rgba(245, 240, 232, .15);
  --shadow:     0 20px 60px rgba(0, 0, 0, .3);
  --shadow-sm:  0 8px 24px rgba(0, 0, 0, .2);

  /* Radii */
  --radius:      16px;
  --radius-lg:   24px;
  --radius-full: 999px;

  /* Layout */
  --max-w:       1200px;
  --section-pad: clamp(60px, 8vw, 120px);

  /* Internal: topbar height for sticky offsets */
  --topbar-h: 64px;
}


/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html, body {
  height: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(ellipse 900px 700px at 8% 0%, rgba(212, 148, 58, .10), transparent 60%),
    radial-gradient(ellipse 700px 600px at 92% 100%, rgba(124, 154, 110, .06), transparent 60%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Wood-grain noise texture — CSS-only pseudo-element with SVG filter */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* Ensure all page content sits above the noise layer */
body > * {
  position: relative;
  z-index: 1;
}

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

ul, ol {
  list-style: none;
}

a {
  color: var(--amber);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--text-primary);
}

::selection {
  background: var(--amber);
  color: var(--bg-dark);
}

/* Focus-visible ring for accessibility */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}


/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

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


/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

.section {
  padding-block: var(--section-pad);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-family: 'Instrument Serif', serif;
  margin: 0;
}

.section-head .hint,
.section-head .subtitle {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

/* Grid utilities */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 16px;
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

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

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


/* ============================================================
   HEADER / TOPBAR
   ============================================================ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(26, 26, 26, .82);
  border-bottom: 1px solid var(--line);
}

/* Offset body content so it doesn't hide behind the fixed header */
body {
  padding-top: var(--topbar-h);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  min-height: var(--topbar-h);
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-primary);
  flex-shrink: 0;
}
.brand:hover {
  color: var(--text-primary);
}

.brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.brand-mark {
  width: 240px;
  height: 36px;
  flex-shrink: 0;
  background-image: url('/assets/wood-spark-design-logo.svg');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

@media (min-width: 768px) {
  .brand-mark {
    width: 280px;
    height: 40px;
  }
}

/* Logo already contains the brand text — hide the HTML text */
.brand-name {
  display: none;
}

.brand-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 1px;
}

/* Navigation */
.nav {
  display: none;
  gap: 4px;
  align-items: center;
}

.nav a {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.nav a:hover {
  background: var(--surface);
  color: var(--text-primary);
}
.nav a[aria-current="page"],
.nav a.active {
  background: var(--surface);
  color: var(--amber);
}

/* Language switch */
.lang-switch {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-shrink: 0;
}

.lang-switch a,
.lang-switch button {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}
.lang-switch a:hover,
.lang-switch button:hover {
  border-color: var(--line-hover);
  color: var(--text-primary);
}
.lang-switch a[aria-current="true"],
.lang-switch a.active,
.lang-switch a.lang-active,
.lang-switch button.active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--bg-dark);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.3s ease;
}
.hamburger:hover {
  background: var(--surface);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* Hamburger -> X animation */
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 85vw);
  height: 100vh;
  height: 100dvh;
  background: var(--bg-dark);
  border-left: 1px solid var(--line);
  z-index: 150;
  padding: 80px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

/* Backdrop behind drawer */
.mobile-drawer::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.mobile-drawer.is-open::before {
  opacity: 1;
}

/* Close button inside drawer */
.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-secondary);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.drawer-close:hover {
  background: var(--surface);
  color: var(--text-primary);
  border-color: var(--line-hover);
}

.mobile-drawer a {
  display: block;
  padding: 14px 16px;
  font-family: 'Instrument Serif', serif;
  font-size: 24px;
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: background 0.3s ease, color 0.3s ease;
}
.mobile-drawer a:hover {
  background: var(--surface);
  color: var(--text-primary);
}
.mobile-drawer a[aria-current="page"],
.mobile-drawer a.active {
  color: var(--amber);
}

.mobile-drawer .lang-switch {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

@media (min-width: 768px) {
  .nav { display: flex; }
  .hamburger { display: none; }
  .mobile-drawer { display: none; }
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  color: var(--text-primary);
}

/* Primary: amber, dark text */
.btn-primary {
  background: var(--amber);
  color: var(--text-dark);
  border-color: var(--amber);
  box-shadow: 0 8px 24px var(--amber-glow);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 36px rgba(212, 148, 58, .35);
  color: var(--text-dark);
  background: #dda044;
}

/* Ghost: transparent with cream border */
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--text-secondary);
}
.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* Full width */
.btn-full {
  width: 100%;
}

/* Small button variant */
.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0 40px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 500px at 30% 40%, rgba(212, 148, 58, .07), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.hero h1,
.hero-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0;
}

.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 540px;
  margin: 20px 0 0;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Hero KPI row */
.hero-kpi {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 48px;
  max-width: 560px;
}

.hero-kpi .kpi {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: var(--surface);
}

.hero-kpi .kpi-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-kpi .kpi-val {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text-primary);
  margin-top: 4px;
}

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

@media (max-width: 767px) {
  .hero {
    min-height: auto;
    padding: 40px 0 32px;
  }
}


/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 20px;
}

.card-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.card-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.card-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--amber-glow);
  color: var(--amber);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 12px;
}

.card-footer {
  padding: 0 20px 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}


/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

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

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

.filter-hint {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin: 12px 0 0;
  font-style: italic;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: var(--surface);
  aspect-ratio: 4 / 3;
}

.gallery-overlay h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
}

.gallery-item-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.gallery-item-tag {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, .75);
  display: block;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .2) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay .gallery-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
}

.gallery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.gallery-tags span {
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .85);
  font-size: 11px;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

/* Gallery image fill */
.gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--surface);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover .gallery-img {
  transform: scale(1.06);
}


/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  background: rgba(26, 26, 26, .88);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

/* Filter row layout */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.filter-row .filter-tabs {
  flex: 1 1 auto;
}

.filter-row .filter-controls {
  flex: 0 1 auto;
}

/* Category tabs */
.filter-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  flex-shrink: 0;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-secondary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.filter-tab:hover {
  background: var(--surface-hover);
  color: var(--text-primary);
  border-color: var(--line-hover);
}
.filter-tab.active {
  background: var(--amber);
  color: var(--text-dark);
  border-color: var(--amber);
  font-weight: 700;
}

/* Dropdowns + search */
.filter-controls {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-select {
  padding: 9px 36px 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  background: var(--surface);
  color: var(--text-secondary);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23f5f0e8' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.filter-select:hover,
.filter-select:focus {
  border-color: var(--amber);
  color: var(--text-primary);
  outline: none;
}

.filter-search {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  background: var(--surface);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  width: 160px;
  transition: border-color 0.25s ease, width 0.3s ease;
}
.filter-search::placeholder {
  color: var(--text-muted);
}
.filter-search:focus {
  border-color: var(--amber);
  outline: none;
  width: 200px;
}


/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  background: var(--surface);
  border-radius: var(--radius-lg);
  max-width: 900px;
  max-height: 85vh;
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  animation: lightboxIn 0.4s ease forwards;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .5);
}

@media (min-width: 768px) {
  .lightbox-content {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.95) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.lightbox-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 280px;
  object-fit: contain;
  background-color: #35302a;
  display: block;
}

.lightbox-sidebar,
.lightbox-info {
  padding: 28px 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.meta-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.meta-value {
  font-size: 14px;
  color: var(--text-primary);
  text-transform: uppercase;
}

.lightbox-title {
  font-family: 'Instrument Serif', serif;
  font-size: 24px;
}

.lightbox-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.lightbox-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.lightbox-meta dt {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.lightbox-meta dd {
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  backdrop-filter: blur(8px);
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, .2);
}


/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 40px 0;
  padding-left: 32px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  position: relative;
  transition: padding-left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth amber accent line — grows in from top on scroll reveal */
.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: var(--amber);
  border-radius: 0 2px 2px 0;
  transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Line grows to full height when card is revealed by scroll */
.service-card.is-visible::before,
.service-card.reveal.is-visible::before {
  height: 100%;
}

/* Glow on hover */
.service-card:hover::before {
  box-shadow: 0 0 12px rgba(212, 148, 58, .35);
}

.service-card:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .service-card {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 56px 0;
    padding-left: 32px;
  }
  .service-card:nth-child(even) .service-content {
    order: 2;
  }
  .service-card:nth-child(even) .service-visual {
    order: 1;
  }
}

.service-content h3 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 16px;
}

.service-content p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.service-content ul li {
  position: relative;
  padding-left: 20px;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 8px;
}
.service-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

.service-cta {
  color: var(--amber);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}
.service-cta:hover {
  gap: 10px;
  color: var(--amber);
}

.service-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--bg-warm), var(--surface));
  border: 1px solid var(--line);
  overflow: hidden;
}
.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ============================================================
   PRICING CALCULATOR
   ============================================================ */
.calc-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .calc-section {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.calc-step {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 24px;
  border-left: 3px solid var(--line);
  transition: border-left-color 0.3s ease;
}
.calc-step.active {
  border-left-color: var(--amber);
}

.calc-step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.calc-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--text-dark);
  font-family: 'Instrument Serif', serif;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.calc-step-header h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}

/* Selectable option cards */
.calc-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 768px) {
  .calc-options {
    grid-template-columns: repeat(3, 1fr);
  }
}

.calc-option {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-dark);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-secondary);
}
.calc-option:hover {
  border-color: var(--line-hover);
  color: var(--text-primary);
}
.calc-option.selected,
.calc-option[aria-pressed="true"] {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(212, 148, 58, .08);
}

/* Controls: quantity, size inputs */
.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-dark);
  width: fit-content;
}

.qty-control button {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--surface);
  color: var(--text-primary);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.qty-control button:hover {
  background: var(--surface-hover);
}

.qty-control input {
  width: 60px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  -moz-appearance: textfield;
}
.qty-control input::-webkit-inner-spin-button,
.qty-control input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Result box */
.calc-result {
  border: 2px solid var(--amber);
  border-radius: var(--radius-lg);
  background: rgba(212, 148, 58, .06);
  padding: 28px;
  text-align: center;
}

.calc-result .calc-price {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--amber);
}

.calc-result .calc-price-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.calc-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

/* Range slider */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--surface);
  outline: none;
  margin: 10px 0;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--amber);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(212, 148, 58, .35);
  transition: transform 0.2s ease;
}
input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--amber);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(212, 148, 58, .35);
}


/* ============================================================
   PRODUCT QUOTE BUILDER
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}
.product-card:hover {
  border-color: var(--line-hover);
  transform: translateY(-2px);
}
.product-card-active {
  border-color: var(--amber) !important;
  background: rgba(212, 148, 58, .06);
}
.product-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.product-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(212, 148, 58, .08);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}
.product-card-body {
  padding: 16px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.product-card-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-primary);
  margin: 0;
}
.product-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}
.product-card-price {
  font-size: 14px;
  color: var(--amber);
  font-weight: 600;
}
.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

/* Product Configurator */
.product-config {
  background: var(--surface);
  border: 2px solid var(--amber);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 16px;
  animation: configSlideDown 0.3s ease;
}
@keyframes configSlideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.product-config-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.product-config-header h3 {
  margin: 0;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}
.product-config-close {
  background: none;
  border: 1px solid var(--line);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-config-close:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.config-image {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 0 auto 20px;
  display: block;
  transition: opacity 0.3s ease;
}
.config-section {
  margin-bottom: 20px;
}
.config-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.config-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.config-option {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text-secondary);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.config-option:hover {
  border-color: var(--amber);
  color: var(--text-primary);
}
.config-option.selected {
  border-color: var(--amber);
  background: rgba(212, 148, 58, .1);
  color: var(--amber);
  font-weight: 600;
}
.config-option-addon {
  font-size: 11px;
  color: var(--text-muted);
  margin-left: 4px;
}
.config-qty {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 160px;
}
.config-qty button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-secondary);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.config-qty button:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.config-qty button:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.config-qty button:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.config-qty input {
  width: 60px;
  height: 40px;
  border: 1px solid var(--line);
  border-left: none;
  border-right: none;
  background: transparent;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  -moz-appearance: textfield;
}
.config-qty input::-webkit-outer-spin-button,
.config-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.config-discount-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}
.config-price-preview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: rgba(212, 148, 58, .06);
  border: 1px solid rgba(212, 148, 58, .2);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.config-unit-price {
  font-size: 14px;
  color: var(--text-secondary);
}
.config-line-total {
  font-size: 20px;
  font-weight: 700;
  color: var(--amber);
}
.btn-full { width: 100%; text-align: center; }

/* Quote Summary */
.quote-summary {
  background: var(--surface);
  border: 2px solid var(--amber);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.quote-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.quote-summary-header h2 {
  margin: 0;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}
.quote-item-count {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.quote-items { margin-bottom: 16px; }
.quote-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.quote-item:last-child { border-bottom: none; }
.quote-item-info { flex: 1; }
.quote-item-info strong {
  display: block;
  font-size: 15px;
  color: var(--text-primary);
}
.quote-item-detail {
  font-size: 13px;
  color: var(--text-muted);
}
.quote-item-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.quote-item-price {
  font-weight: 700;
  color: var(--amber);
  font-size: 15px;
}
.quote-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
  transition: color 0.2s;
  line-height: 1;
}
.quote-item-remove:hover { color: #e85c5c; }
.quote-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 17px;
  font-weight: 700;
}
.quote-total-price {
  color: var(--amber);
  font-size: clamp(18px, 3vw, 24px);
}
.quote-note {
  font-size: 12px;
  color: var(--text-muted);
  margin: 12px 0 16px;
  text-align: center;
}

/* ============================================================
   UPLOAD ZONE
   ============================================================ */
.upload-zone {
  border: 2px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  transition: border-color 0.3s ease, background 0.3s ease;
  cursor: pointer;
}
.upload-zone:hover {
  border-color: var(--amber);
  background: var(--amber-glow);
}

.upload-zone.drag-over {
  border-style: solid;
  border-color: var(--amber);
  background: rgba(212, 148, 58, .12);
}

.upload-zone-icon {
  font-size: 36px;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.upload-zone p {
  color: var(--text-secondary);
  font-size: 15px;
}

.upload-link {
  color: var(--amber);
  cursor: pointer;
  font-weight: 700;
}
.upload-link:hover {
  text-decoration: underline;
}

.upload-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* File list */
.upload-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.upload-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 14px;
}

.upload-item-name {
  color: var(--text-primary);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  margin-right: 12px;
}

.upload-item-size {
  color: var(--text-muted);
  font-size: 12px;
  flex-shrink: 0;
  margin-right: 12px;
}

.upload-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 18px;
  padding: 0 4px;
  transition: color 0.2s ease;
}
.upload-item-remove:hover {
  color: #e85c5c;
}


/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 960px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
}

.form-group label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-glow);
}

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

.contact-form select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23f5f0e8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.form-status {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
}

.form-success {
  color: var(--sage);
}

.form-error {
  color: #e85c5c;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1e1e1e;
  border-top: 1px solid var(--line);
}

.footer-inner {
  padding-block: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand .brand {
  margin-bottom: 4px;
}

.footer-brand .tagline {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
  max-width: 300px;
}

.footer-nav h3,
.footer-contact h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-nav a,
.footer-contact a,
.footer-contact p {
  display: block;
  color: var(--text-secondary);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.3s ease;
  margin: 0;
}
.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--amber);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 40px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}


/* ============================================================
   SECTION TITLES & LAYOUT (used across pages)
   ============================================================ */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.section-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.1;
  margin: 0;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 560px;
  margin: 12px 0 0;
}

.section-link {
  color: var(--amber);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  transition: gap 0.3s ease;
}
.section-link:hover {
  color: var(--text-primary);
}

.page-subtitle {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 560px;
}

/* CTA section */
.cta-section {
  border-top: 1px solid var(--line);
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}


/* ============================================================
   HOMEPAGE HERO (class aliases)
   ============================================================ */
.hero-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 540px;
  margin: 20px 0 0;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

@media (max-width: 767px) {
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 48px;
  max-width: 680px;
}

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

.kpi {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
}

.kpi-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-height: 2.4em;
  display: flex;
  align-items: flex-start;
}

.kpi-value {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--text-primary);
  margin-top: auto;
  padding-top: 6px;
}

.rush-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}


/* ============================================================
   HOMEPAGE SERVICES STRIP
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

.services-grid .service-card {
  border-bottom: none;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform 0.3s ease, border-color 0.3s ease;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Hide the accent line on homepage service cards */
.services-grid .service-card::before {
  display: none;
}
.services-grid .service-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
  padding-left: 24px;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin: 0;
}

.services-grid .service-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}


/* ============================================================
   HOMEPAGE STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.step {
  text-align: center;
  padding: 32px 24px;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--text-dark);
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.step-desc {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.55;
}


/* ============================================================
   HOMEPAGE FOR BUSINESS
   ============================================================ */
.business-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .business-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}

.business-lead {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.business-body {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.business-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.business-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.biz-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 15px;
}

.biz-icon {
  color: var(--amber);
  font-size: 10px;
  flex-shrink: 0;
}


/* ============================================================
   HOMEPAGE TEAM SPARK
   ============================================================ */
.spark-section {
  max-width: 640px;
}

.spark-text {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.spark-note {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}


/* ============================================================
   VIDEO SHOWCASE
   ============================================================ */
.video-embed {
  max-width: 800px;
  margin: 0 auto;
}

.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(212, 148, 58, .08), transparent 70%),
    linear-gradient(135deg, #2a2420 0%, #1a1a1a 40%, #242018 100%);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.4s ease;
}

.video-placeholder:hover {
  border-color: var(--amber);
}

.video-play-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: gentleFloat 3s ease-in-out infinite;
}

.video-placeholder:hover .video-play-btn {
  animation: none;
  transform: scale(1.12);
}

.video-play-btn::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--amber);
  opacity: 0;
  animation: pulseRing 2.5s ease-out infinite;
  pointer-events: none;
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

@keyframes pulseRing {
  0%   { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

.video-coming {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

.video-embed iframe,
.video-embed video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}


/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
.ba-slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: ew-resize;
  border: 1px solid var(--line);
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}

.ba-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.ba-before {
  background:
    repeating-linear-gradient(90deg, rgba(90, 74, 56, .12) 0px, transparent 1px, transparent 40px),
    linear-gradient(135deg, #3d3024 0%, #5a4a38 30%, #2a2318 100%);
  z-index: 1;
  clip-path: inset(0 50% 0 0);
}

.ba-after {
  background:
    radial-gradient(ellipse 50% 60% at 60% 40%, rgba(212, 148, 58, .15), transparent 70%),
    linear-gradient(135deg, #1a1a1a 0%, #d4943a 30%, #2a2420 60%, #b87a2a 100%);
  z-index: 0;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  width: 4px;
}

.ba-handle-line {
  flex: 1;
  width: 2px;
  background: var(--amber);
  opacity: 0.8;
}

.ba-handle-grip {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(212, 148, 58, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ba-slider:active .ba-handle-grip {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(212, 148, 58, 0.5);
}

.ba-label {
  position: absolute;
  bottom: 16px;
  z-index: 3;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ba-label-before { left: 16px; }
.ba-label-after  { right: 16px; }


/* ============================================================
   MEET THE MAKER
   ============================================================ */
.maker-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .maker-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
  }
}

.maker-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(212, 148, 58, .06), transparent 70%),
    linear-gradient(145deg, var(--bg-warm), var(--surface));
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.maker-photo-placeholder:hover {
  border-color: rgba(212, 148, 58, .3);
}

.maker-photo-icon {
  color: var(--text-muted);
  opacity: 0.4;
}

.maker-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.maker-text .hero-eyebrow {
  margin-bottom: 12px;
}

.maker-lead {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.maker-body {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.maker-text .btn {
  margin-top: 16px;
}


/* ============================================================
   TESTIMONIALS CAROUSEL
   ============================================================ */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 8px;
}

@media (min-width: 768px) {
  .testimonial-slide {
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .testimonial-slide {
    flex: 0 0 33.333%;
  }
}

.testimonial-card {
  background: #fff;
  border: 1px solid rgba(26, 26, 26, .08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(26, 26, 26, .06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0;
  font-style: normal;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 26, 26, .10);
}

.testimonial-stars {
  color: var(--amber);
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-quote {
  color: rgba(26, 26, 26, .75);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(26, 26, 26, .06);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--bg-dark);
  font-family: 'Instrument Serif', serif;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  font-style: normal;
}

.testimonial-role {
  display: block;
  font-size: 13px;
  color: rgba(26, 26, 26, .5);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.testimonial-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(26, 26, 26, .15);
  background: #fff;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonial-arrow:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(26, 26, 26, .15);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
}

.testimonial-dot:hover {
  background: rgba(26, 26, 26, .3);
}

.testimonial-dot.active {
  background: var(--amber);
  transform: scale(1.2);
}


/* ============================================================
   TEAM SPARK — enhanced with photo grid
   ============================================================ */
.spark-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .spark-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 56px;
  }
}

.spark-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(26, 26, 26, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.spark-photo-icon {
  color: rgba(26, 26, 26, .18);
}

.spark-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.spark-text-col .section-title {
  margin-bottom: 16px;
}

.spark-text-col .spark-text {
  color: rgba(26, 26, 26, .65);
  font-size: 16px;
  line-height: 1.6;
}

.spark-text-col .spark-note {
  font-size: 14px;
  color: rgba(26, 26, 26, .4);
  font-style: italic;
}


/* ============================================================
   ENHANCED MICRO-ANIMATIONS
   ============================================================ */

/* Richer service card hovers */
.services-grid .service-card {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease,
              box-shadow 0.4s ease;
}

.services-grid .service-card:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, .25);
}

.service-icon {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-grid .service-card:hover .service-icon {
  transform: scale(1.08) rotate(-3deg);
}

/* Step card hovers */
.step {
  transition: transform 0.4s ease, background 0.3s ease;
  border-radius: var(--radius-lg);
}

.step:hover {
  transform: translateY(-4px);
  background: rgba(212, 148, 58, .04);
}

.step-num {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.step:hover .step-num {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(212, 148, 58, .3);
}

/* Extended staggered reveal delays */
.reveal-d6 { transition-delay: 0.6s; }
.reveal-d7 { transition-delay: 0.7s; }
.reveal-d8 { transition-delay: 0.8s; }

/* Tabular nums for counter animation */
.kpi-value[data-count] {
  font-variant-numeric: tabular-nums;
}


/* ============================================================
   SERVICES PAGE — card variants
   ============================================================ */
.service-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

.service-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0;
}

.service-tagline {
  font-size: 17px;
  color: var(--text-secondary);
  font-style: italic;
  margin: 0;
}

.service-body .service-desc {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.service-list h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin: 16px 0 8px;
}

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

.service-list ul li {
  position: relative;
  padding-left: 20px;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 6px;
  line-height: 1.5;
}

.service-list ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

.service-card--reversed .service-body {
  order: 1;
}
.service-card--reversed .service-visual {
  order: 0;
}

@media (min-width: 768px) {
  .service-card--reversed .service-body {
    order: 0;
  }
  .service-card--reversed .service-visual {
    order: 1;
  }
}


/* ============================================================
   MATERIALS GRID (services page)
   ============================================================ */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

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

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

.material-card {
  text-align: center;
}

.material-swatch {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 10px;
  transition: transform 0.3s ease;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.material-card:hover .material-swatch {
  transform: scale(1.06);
}

.material-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Footer tagline alias */
.footer-tagline {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
  max-width: 300px;
}


/* ============================================================
   ANIMATIONS & SCROLL REVEALS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }


/* ============================================================
   CREAM SECTION VARIANT (light sections)
   ============================================================ */
.bg-cream {
  background: var(--bg-cream);
  color: var(--text-dark);
}

.bg-cream h1,
.bg-cream h2,
.bg-cream h3,
.bg-cream h4,
.bg-cream .section-head h2 {
  color: var(--text-dark);
}

.bg-cream .text-secondary,
.bg-cream p {
  color: rgba(26, 26, 26, .65);
}

.bg-cream .text-muted {
  color: rgba(26, 26, 26, .4);
}

.bg-cream .card {
  background: #fff;
  border-color: rgba(26, 26, 26, .08);
  box-shadow: 0 8px 24px rgba(26, 26, 26, .06);
}
.bg-cream .card:hover {
  box-shadow: 0 20px 60px rgba(26, 26, 26, .10);
}

.bg-cream .card-title {
  color: var(--text-dark);
}

.bg-cream .card-text {
  color: rgba(26, 26, 26, .6);
}

.bg-cream a {
  color: #b07828;
}

.bg-cream .btn-ghost {
  color: var(--text-dark);
  border-color: rgba(26, 26, 26, .2);
}
.bg-cream .btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.bg-cream .section-head .hint,
.bg-cream .section-head .subtitle {
  color: rgba(26, 26, 26, .45);
}

.bg-cream .service-content p,
.bg-cream .service-content ul li {
  color: rgba(26, 26, 26, .65);
}


/* ============================================================
   PAGE HEAD (subpages)
   ============================================================ */
.page-head {
  padding: 48px 0 24px;
}

.page-head h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.page-head p {
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.55;
}


/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* --- Tablet (768px+) ---------------------------------------- */
@media (min-width: 768px) {
  .section-head {
    margin-bottom: 48px;
  }

  .hero-content {
    max-width: 640px;
  }

  .page-head {
    padding: 64px 0 32px;
  }
}

/* --- Desktop (1024px+) -------------------------------------- */
@media (min-width: 1024px) {
  .hero-content {
    max-width: 720px;
  }

  .section-head h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
}

/* --- Wide (1280px+) ----------------------------------------- */
@media (min-width: 1280px) {
  :root {
    --section-pad: 120px;
  }

  .hero {
    min-height: 85vh;
  }
}

/* --- Mobile-only overrides ---------------------------------- */
@media (max-width: 767px) {
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-cta {
    flex-direction: column;
  }

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

  .calc-options {
    grid-template-columns: 1fr 1fr;
  }

  .lightbox-content {
    max-height: 95vh;
    overflow-y: auto;
  }
}


/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-amber    { color: var(--amber); }
.text-sage     { color: var(--sage); }
.text-muted    { color: var(--text-muted); }
.text-cream    { color: var(--text-primary); }
.text-dark     { color: var(--text-dark); }
.text-center   { text-align: center; }
.text-sm       { font-size: 14px; }
.text-xs       { font-size: 12px; }

.font-serif    { font-family: 'Instrument Serif', serif; }
.font-sans     { font-family: 'DM Sans', sans-serif; }
.font-bold     { font-weight: 700; }

.mt-0  { margin-top: 0; }
.mt-1  { margin-top: 8px; }
.mt-2  { margin-top: 16px; }
.mt-3  { margin-top: 24px; }
.mt-4  { margin-top: 32px; }
.mt-5  { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: 8px; }
.mb-2  { margin-bottom: 16px; }
.mb-3  { margin-bottom: 24px; }
.mb-4  { margin-bottom: 32px; }

.flex       { display: flex; }
.flex-col   { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1  { gap: 8px; }
.gap-2  { gap: 16px; }
.gap-3  { gap: 24px; }

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Prevent scroll when drawer is open */
.no-scroll {
  overflow: hidden;
}

/* Hidden utility */
.hidden {
  display: none !important;
}

/* Divider */
.divider {
  width: 100%;
  height: 1px;
  background: var(--line);
  border: none;
  margin: 0;
}
