:root {
  --cream: #F5F0E8;
  --warm-white: #FAF7F2;
  --mustard: #C8963E;
  --mustard-dark: #A67A2D;
  --mustard-light: #E8B86D;
  --terracotta: #B5573A;
  --terracotta-light: #D4745A;
  --olive: #6B7A3E;
  --olive-light: #8A9A55;
  --charcoal: #2C2416;
  --charcoal-mid: #4A3E2E;
  --warm-gray: #8A7F72;
  --warm-gray-light: #C5B9AA;
  --dusty-rose: #C4907A;
  --shadow-sm: 2px 3px 8px rgba(44,36,22,0.10), 0 1px 2px rgba(44,36,22,0.06);
  --shadow-md: 4px 6px 20px rgba(44,36,22,0.13), 0 2px 6px rgba(44,36,22,0.07);
  --shadow-lg: 8px 12px 40px rgba(44,36,22,0.16), 0 4px 12px rgba(44,36,22,0.08);
  --shadow-xl: 12px 20px 60px rgba(44,36,22,0.20), 0 6px 20px rgba(44,36,22,0.10);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-xxl: 8rem;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body.canvas {
  font-family: 'Source Sans 3', sans-serif;
  background-color: var(--warm-white);
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s, opacity 0.25s; }
ul { list-style: none; }


h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; color: var(--charcoal); line-height: 1.15; }

.stage-heading {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.stage-heading-inner {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mustard);
  background: rgba(200,150,62,0.10);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.section-subtext {
  font-size: 1.05rem;
  color: var(--charcoal-mid);
  max-width: 600px;
  line-height: 1.75;
}

.spotlight-text {
  color: var(--mustard);
  border-bottom: 3px solid var(--mustard-light);
  padding-bottom: 2px;
}


.stage-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--warm-white);
  border-bottom: 1px solid rgba(44,36,22,0.10);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal-mid);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--mustard-dark);
  background: rgba(200,150,62,0.08);
}

.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  background: var(--mustard);
  color: var(--warm-white);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--mustard-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  color: var(--warm-white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.hamburger:hover { background: rgba(200,150,62,0.08); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.25s;
}


.floating-pill {
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.floating-pill.visible {
  opacity: 1;
  pointer-events: auto;
}

.pill-btn {
  background: var(--mustard);
  color: var(--warm-white);
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 100px;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  transition: background 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pill-btn:hover { background: var(--mustard-dark); box-shadow: var(--shadow-lg); }

.pill-dropdown {
  display: none;
  position: absolute;
  top: 54px;
  right: 0;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  min-width: 200px;
  border: 1px solid rgba(44,36,22,0.08);
}

.pill-dropdown.open { display: block; }

.pill-dropdown a {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal-mid);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}

.pill-dropdown a:hover {
  background: rgba(200,150,62,0.08);
  color: var(--mustard-dark);
}


.drawer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--warm-white);
  border-top: 1px solid rgba(44,36,22,0.10);
  box-shadow: 0 -4px 20px rgba(44,36,22,0.10);
  padding: 0.4rem 0 0.6rem;
}

.drawer-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  flex: 1;
  padding: 0.4rem 0.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--warm-gray);
  border-radius: var(--radius-sm);
  transition: color 0.2s;
  min-height: 44px;
  justify-content: center;
}

.drawer-tab i { font-size: 1.1rem; }
.drawer-tab.active { color: var(--mustard); }
.drawer-tab:hover { color: var(--mustard-dark); }


.stage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,150,62,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.stage-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.stage-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(181,87,58,0.10);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.stage-subtext {
  font-size: 1.1rem;
  color: var(--charcoal-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
}

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


.stage-mosaic {
  position: relative;
  height: 520px;
}

.mosaic-frame {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.mosaic-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.mosaic-frame:hover img { transform: scale(1.04); }

.mosaic-1 {
  width: 220px; height: 160px;
  top: 20px; left: 10px;
  transform: rotate(-2.5deg);
  z-index: 3;
}

.mosaic-2 {
  width: 200px; height: 240px;
  top: 0; right: 20px;
  transform: rotate(2deg);
  z-index: 4;
}

.mosaic-3 {
  width: 260px; height: 180px;
  top: 180px; left: 60px;
  transform: rotate(1.5deg);
  z-index: 2;
}

.mosaic-4 {
  width: 190px; height: 150px;
  bottom: 40px; left: 0;
  transform: rotate(-1.8deg);
  z-index: 5;
}

.mosaic-5 {
  width: 200px; height: 200px;
  bottom: 20px; right: 10px;
  transform: rotate(2.5deg);
  z-index: 3;
}


.stage-inner {
  min-height: 40vh;
  padding-top: 72px;
  display: flex;
  align-items: center;
  background: var(--cream);
}

.stage-inner-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  width: 100%;
}

.stage-urgent { background: linear-gradient(135deg, var(--cream) 60%, rgba(181,87,58,0.08) 100%); }


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--mustard);
  color: var(--warm-white);
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--mustard-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: var(--warm-white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  background: transparent;
  color: var(--charcoal);
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--warm-gray-light);
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s;
  cursor: pointer;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--mustard);
  color: var(--mustard-dark);
  background: rgba(200,150,62,0.05);
  transform: translateY(-2px);
}

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

.btn-footer { background: var(--warm-white); color: var(--charcoal); }
.btn-footer:hover { background: var(--cream); color: var(--mustard-dark); }


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

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

.gallery-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.gallery-header .section-label { margin-bottom: 0.75rem; }
.gallery-header .section-subtext { margin: 0 auto; }

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


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

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

.shelf-intro {
  background: var(--charcoal);
  padding: 3rem 0;
}

.shelf-intro-text {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--warm-gray-light);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.shelf-intro-text strong { color: var(--mustard-light); }

.shelf-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.shelf-col-text { display: flex; flex-direction: column; gap: 1rem; }
.shelf-col-text p { color: var(--charcoal-mid); line-height: 1.8; }

.shelf-col-img { position: relative; }
.shelf-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.shelf-contrast {
  background: var(--cream);
}

.contrast-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44,36,22,0.06);
  transition: box-shadow 0.25s, transform 0.2s;
}

.contrast-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contrast-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}

.contrast-item p { font-size: 0.9rem; color: var(--charcoal-mid); line-height: 1.7; }

.contrast-icon-no {
  color: var(--terracotta);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}


.spotlight {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44,36,22,0.06);
  transition: box-shadow 0.3s, transform 0.25s;
}

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


.spotlight-step {
  text-align: center;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

.spotlight-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mustard), var(--mustard-light));
}

.step-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(200,150,62,0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-icon {
  font-size: 2rem;
  color: var(--mustard);
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.step-text { font-size: 0.9rem; color: var(--charcoal-mid); line-height: 1.75; }


.spotlight-contact { text-align: center; }

.contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(200,150,62,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--mustard);
  margin: 0 auto 1rem;
  transition: background 0.2s;
}

.spotlight-contact:hover .contact-icon {
  background: var(--mustard);
  color: var(--warm-white);
}

.contact-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.contact-detail {
  font-size: 1rem;
  font-weight: 600;
  color: var(--mustard-dark);
  margin-bottom: 0.4rem;
}

.contact-detail a { color: var(--mustard-dark); }
.contact-detail a:hover { color: var(--terracotta); }

.contact-note { font-size: 0.85rem; color: var(--warm-gray); }


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

.method-icon {
  font-size: 1.5rem;
  color: var(--mustard);
  margin-bottom: 0.25rem;
}

.spotlight-method h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
}

.spotlight-method p {
  font-size: 0.9rem;
  color: var(--charcoal-mid);
  line-height: 1.75;
}


.spotlight-scenario { display: flex; flex-direction: column; gap: 0.5rem; }
.scenario-icon { font-size: 1.8rem; color: var(--terracotta); margin-bottom: 0.25rem; }
.spotlight-scenario h3 { font-size: 1rem; font-weight: 700; color: var(--charcoal); }
.spotlight-scenario p { font-size: 0.9rem; color: var(--charcoal-mid); line-height: 1.75; }


.spotlight-when { display: flex; flex-direction: column; gap: 0.5rem; }
.when-icon { font-size: 1.8rem; color: var(--olive); margin-bottom: 0.25rem; }
.spotlight-when h3 { font-size: 1rem; font-weight: 700; color: var(--charcoal); }
.spotlight-when p { font-size: 0.9rem; color: var(--charcoal-mid); line-height: 1.75; }


.shelf-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s, transform 0.25s;
  border: 1px solid rgba(44,36,22,0.06);
}

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

.card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.card-body { padding: 1.75rem; }

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.card-text { font-size: 0.9rem; color: var(--charcoal-mid); line-height: 1.8; }


.gallery-steps { background: var(--warm-white); }
.gallery-services { background: var(--cream); }
.gallery-contact-cards { background: var(--charcoal); }
.gallery-contact-cards .section-heading { color: var(--warm-white); }
.gallery-contact-cards .section-label { color: var(--mustard-light); background: rgba(232,184,109,0.15); }
.gallery-contact-cards .spotlight { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.08); }
.gallery-contact-cards .contact-title { color: var(--warm-white); }
.gallery-contact-cards .contact-note { color: var(--warm-gray-light); }
.gallery-philosophy { background: var(--warm-white); }
.gallery-methodology { background: var(--cream); }
.gallery-who { background: var(--warm-white); }
.gallery-scenarios { background: var(--cream); }
.gallery-urgent-intro { background: var(--warm-white); }
.gallery-when { background: var(--cream); }


.shelf-private-process { background: var(--warm-white); }
.shelf-urgent-process { background: var(--warm-white); }


.shelf-cta-mid {
  background: linear-gradient(135deg, var(--mustard) 0%, var(--mustard-dark) 100%);
  padding: 5rem 0;
}

.shelf-cta-inner { text-align: center; }

.cta-mid-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--warm-white);
  margin-bottom: 1rem;
}

.cta-mid-sub {
  font-size: 1.05rem;
  color: rgba(250,247,242,0.85);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.shelf-cta-mid .btn-primary {
  background: var(--warm-white);
  color: var(--mustard-dark);
  box-shadow: var(--shadow-md);
}

.shelf-cta-mid .btn-primary:hover {
  background: var(--cream);
  color: var(--charcoal);
}

.shelf-cta-urgent {
  background: linear-gradient(135deg, var(--terracotta) 0%, #8B3D28 100%);
}


.gallery-contact-main { background: var(--warm-white); }

.gallery-grid-contact {
  grid-template-columns: 1.4fr 0.6fr;
  gap: 3rem;
  align-items: start;
}

.shelf-form-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(44,36,22,0.08);
}

.form-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--charcoal);
}

.form-step { display: flex; flex-direction: column; gap: 1.25rem; }
.form-step-hidden { display: none; }

.form-progress {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.progress-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--warm-gray-light);
  color: var(--warm-white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}

.progress-step.active { background: var(--mustard); }
.progress-step.done { background: var(--olive); }

.progress-line {
  flex: 1;
  height: 2px;
  background: var(--warm-gray-light);
  border-radius: 2px;
  transition: background 0.25s;
}

.progress-line-done { background: var(--olive); }

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

.form-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--charcoal-mid);
  letter-spacing: 0.04em;
}

.form-input {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--warm-gray-light);
  border-radius: var(--radius-sm);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--warm-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.form-input:focus {
  border-color: var(--mustard);
  box-shadow: 0 0 0 3px rgba(200,150,62,0.15);
}

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

.form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

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

.form-check-label {
  font-size: 0.875rem;
  color: var(--charcoal-mid);
  line-height: 1.5;
  cursor: pointer;
}

.form-check-label a { color: var(--mustard-dark); text-decoration: underline; }

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

.shelf-info-col { display: flex; flex-direction: column; gap: 1.75rem; }

.info-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,150,62,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--mustard);
  flex-shrink: 0;
}

.info-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.info-block p { font-size: 0.9rem; color: var(--charcoal-mid); line-height: 1.6; }
.info-block a { color: var(--mustard-dark); font-weight: 600; }
.info-block a:hover { color: var(--terracotta); }
.info-note { font-size: 0.8rem; color: var(--warm-gray); margin-top: 0.2rem; }


.gallery-map { background: var(--cream); }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }


.shelf-service-area { background: var(--warm-white); }
.area-block {
  padding: 2rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44,36,22,0.06);
}

.area-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.area-title i { color: var(--mustard); }
.area-block p { font-size: 0.9rem; color: var(--charcoal-mid); line-height: 1.8; }


.stage-thanks {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
  background: var(--cream);
}

.thanks-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.thanks-quote-card {
  background: var(--charcoal);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.quote-mark {
  font-size: 2rem;
  color: var(--mustard);
  margin-bottom: 1rem;
  opacity: 0.7;
}

.thanks-quote {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--warm-white);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.thanks-cite {
  font-size: 0.8rem;
  color: var(--mustard-light);
  font-style: normal;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.thanks-message { display: flex; flex-direction: column; align-items: center; gap: 1rem; }

.thanks-icon {
  font-size: 3rem;
  color: var(--olive);
}

.thanks-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--charcoal);
}

.thanks-text {
  font-size: 1rem;
  color: var(--charcoal-mid);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}


.gallery-legal { background: var(--warm-white); }

.legal-container { max-width: 860px; }

.legal-intro {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--mustard);
  box-shadow: var(--shadow-sm);
}

.legal-intro p { font-size: 0.95rem; color: var(--charcoal-mid); line-height: 1.8; }

.accordion-item {
  border: 1px solid rgba(44,36,22,0.10);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--warm-white);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  text-align: left;
  transition: background 0.2s;
  gap: 1rem;
}

.accordion-header:hover { background: var(--cream); }

.accordion-icon {
  font-size: 0.8rem;
  color: var(--mustard);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.accordion-item.accordion-open .accordion-icon { transform: rotate(180deg); }

.accordion-body {
  display: none;
  padding: 0 1.5rem 1.5rem;
  color: var(--charcoal-mid);
  font-size: 0.9rem;
  line-height: 1.8;
}

.accordion-body p { margin-bottom: 0.75rem; }
.accordion-body p:last-child { margin-bottom: 0; }
.accordion-body a { color: var(--mustard-dark); text-decoration: underline; }
.accordion-body code {
  background: var(--cream);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--terracotta);
}

.accordion-item.accordion-open .accordion-body { display: block; }


.stage-footer {
  background: var(--charcoal);
  margin-top: auto;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.footer-cta-block { display: flex; flex-direction: column; gap: 1rem; }

.footer-cta-heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--warm-white);
  line-height: 1.2;
}

.footer-cta-sub { font-size: 0.95rem; color: var(--warm-gray-light); line-height: 1.7; }

.footer-links-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mustard-light);
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-col li {
  font-size: 0.875rem;
  color: var(--warm-gray-light);
  line-height: 1.5;
}

.footer-col a {
  color: var(--warm-gray-light);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--mustard-light); }

.footer-legal {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-legal p {
  font-size: 0.78rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

.footer-legal a { color: var(--warm-gray-light); transition: color 0.2s; }
.footer-legal a:hover { color: var(--mustard-light); }


.zd-cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--charcoal);
  border-bottom: 2px solid var(--mustard);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 20px rgba(44,36,22,0.25);
}

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

.zd-cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.zd-cookie-text {
  font-size: 0.875rem;
  color: var(--warm-gray-light);
  flex: 1;
  min-width: 200px;
}

.zd-cookie-text a { color: var(--mustard-light); text-decoration: underline; }

.zd-cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.zd-btn-cookie {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 36px;
}

.zd-btn-customize {
  background: transparent;
  color: var(--warm-gray-light);
  border: 1px solid rgba(255,255,255,0.15);
}

.zd-btn-customize:hover { border-color: var(--mustard-light); color: var(--mustard-light); }

.zd-btn-reject {
  background: rgba(255,255,255,0.08);
  color: var(--warm-gray-light);
}

.zd-btn-reject:hover { background: rgba(255,255,255,0.15); color: var(--warm-white); }

.zd-btn-accept {
  background: var(--mustard);
  color: var(--warm-white);
}

.zd-btn-accept:hover { background: var(--mustard-dark); }


.zd-cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(44,36,22,0.6);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

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

.zd-cookie-modal-box {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-xl);
}

.zd-cookie-modal-box h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.zd-cookie-modal-box p {
  font-size: 0.875rem;
  color: var(--charcoal-mid);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.zd-cookie-category {
  margin-bottom: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
}

.zd-cookie-category label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--charcoal-mid);
  cursor: pointer;
  line-height: 1.5;
}

.zd-cookie-category input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--mustard);
  flex-shrink: 0;
}

.zd-cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.zd-cookie-modal-actions .zd-btn-cookie {
  flex: 1;
  min-width: 120px;
}

.zd-cookie-modal-actions .zd-btn-reject {
  background: var(--cream);
  color: var(--charcoal-mid);
  border: 1.5px solid var(--warm-gray-light);
}

.zd-cookie-modal-actions .zd-btn-reject:hover {
  background: var(--warm-gray-light);
  color: var(--charcoal);
}


@media (max-width: 1024px) {
  .gallery-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-links-block { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid-contact { grid-template-columns: 1fr; }
  .shelf-info-col { flex-direction: row; flex-wrap: wrap; gap: 1rem; }
  .info-block { flex: 1; min-width: 240px; }
}

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

  .stage-content {
    grid-template-columns: 1fr;
    padding: 2rem 1.25rem;
    gap: 2.5rem;
  }

  .stage-mosaic {
    height: 300px;
    order: -1;
  }

  .mosaic-1 { width: 140px; height: 100px; }
  .mosaic-2 { width: 130px; height: 160px; }
  .mosaic-3 { width: 170px; height: 120px; top: 130px; left: 30px; }
  .mosaic-4 { width: 120px; height: 100px; bottom: 10px; }
  .mosaic-5 { width: 130px; height: 130px; bottom: 10px; right: 5px; }

  .shelf-two-col { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid-2 { grid-template-columns: 1fr; }
  .gallery-grid-3 { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.25rem 2rem; }
  .footer-links-block { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  .gallery { padding: 3rem 0; }
  .shelf { padding: 3rem 0; }
  .gallery-inner { padding: 0 1.25rem; }
  .shelf-inner { padding: 0 1.25rem; }

  body.canvas { padding-bottom: 70px; }

  .zd-cookie-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; padding: 1rem 1.25rem; }
  .zd-cookie-actions { width: 100%; justify-content: flex-end; }

  .stage-inner-content { padding: 2.5rem 1.25rem 2rem; }

  .thanks-inner { padding: 3rem 1.25rem; }
  .thanks-quote-card { padding: 2rem 1.5rem; }

  .shelf-form-card { padding: 1.75rem 1.25rem; }
  .form-actions { flex-direction: column; }
  .form-actions .btn-secondary, .form-actions .btn-primary { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .footer-links-block { grid-template-columns: 1fr; }
  .stage-actions { flex-direction: column; }
  .stage-actions .btn-primary, .stage-actions .btn-secondary { width: 100%; justify-content: center; }
  .shelf-info-col { flex-direction: column; }
}