:root {
  --ink: #211C18;
  --ink-soft: #4A4038;
  --canvas: #FAF5EF;
  --paper: #F1E8DB;
  --paper-deep: #E7DACA;
  --clay: #C4562F;
  --clay-deep: #9B3F20;
  --moss: #5B6B4C;
  --moss-deep: #3F4A34;
  --cream-white: #FFFDF8;
  --line: #DDD0BE;
  --shadow-sm: 0 1px 2px rgba(33,28,24,0.06), 0 2px 6px rgba(33,28,24,0.05);
  --shadow-md: 0 4px 10px rgba(33,28,24,0.08), 0 10px 25px rgba(33,28,24,0.07);
  --shadow-lg: 0 15px 35px rgba(33,28,24,0.14), 0 5px 15px rgba(33,28,24,0.08);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-full: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.canvas {
  margin: 0;
  background: var(--canvas);
  color: var(--ink-soft);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}
body.drawer-open { overflow: hidden; }

img { max-width: 100%; display: block; }

h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; color: var(--ink); margin: 0; }

a { color: inherit; text-decoration: none; transition: color .3s ease, background-color .3s ease, transform .3s ease, box-shadow .3s ease, border-color .3s ease; }

.text-clay { color: var(--clay-deep); }
.text-moss { color: var(--moss-deep); }
.text-underline { text-decoration: underline; text-underline-offset: 8px; text-decoration-thickness: 3px; }

.eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 1.1rem;
}
.eyebrow-light { color: rgba(255,253,248,0.85); }

.display-1 {
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -.02em;
}
.display-2 {
  font-weight: 700;
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.01em;
}


.pace .pace-progress { background: var(--clay); height: 3px; }
.pace .pace-progress-inner { box-shadow: none; }
.pace .pace-activity { display: none; }


.cookie-bar {
  overflow: hidden;
  max-height: 200px;
  background: var(--ink);
  color: var(--cream-white);
  transition: max-height .5s ease, padding .5s ease;
}
.cookie-bar.dismissed { max-height: 0; }
.cookie-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .85rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-bar-inner p { margin: 0; font-size: .85rem; line-height: 1.5; }
.cookie-bar-inner a { color: #E9C3AE; text-decoration: underline; }
.cookie-actions { display: flex; gap: .6rem; flex-shrink: 0; }
.cookie-btn {
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--cream-white);
  padding: .5rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: .82rem;
  cursor: pointer;
  min-height: 40px;
  transition: background-color .3s ease, transform .3s ease, border-color .3s ease;
}
.cookie-btn-accept { background: var(--clay); border-color: var(--clay); }
.cookie-btn-accept:hover { background: var(--clay-deep); border-color: var(--clay-deep); transform: translateY(-2px); }
.cookie-btn-decline:hover { border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }


.canvas-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  transform: translateY(-100%);
  transition: transform .55s cubic-bezier(.22,1,.36,1);
  background: rgba(250,245,239,0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}
.canvas-header.visible { transform: translateY(0); }
.canvas-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.canvas-logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.logo-mark { width: 40px; height: 40px; border-radius: var(--radius-sm); }
.canvas-logo span { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.canvas-links { display: flex; gap: 1.9rem; margin-left: auto; }
.canvas-links a {
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: .3rem 0;
}
.canvas-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--clay);
  transition: width .35s ease;
}
.canvas-links a:hover, .canvas-links a.active { color: var(--ink); }
.canvas-links a:hover::after, .canvas-links a.active::after { width: 100%; }

.btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.7rem;
  border-radius: var(--radius-full);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  min-height: 46px;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, background-color .35s ease, color .35s ease, border-color .35s ease;
}
.btn-primary {
  background: var(--clay);
  color: var(--cream-white);
  border: 1px solid var(--clay);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--clay-deep);
  border-color: var(--clay-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn-light { background: var(--cream-white); color: var(--ink); border-color: var(--cream-white); }
.btn-light:hover { background: var(--paper); border-color: var(--paper); color: var(--ink); }

.canvas-cta { flex-shrink: 0; }

.drawer-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.drawer-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s ease, opacity .35s ease;
}
.drawer-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.drawer-toggle.active span:nth-child(2) { opacity: 0; }
.drawer-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.drawer {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--ink);
  clip-path: polygon(100% 0%, 100% 0%, 100% 0%, 100% 0%);
  transition: clip-path .7s cubic-bezier(.65,0,.35,1);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.drawer.open { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); pointer-events: auto; }
.drawer-links { display: flex; flex-direction: column; gap: 1.6rem; text-align: center; }
.drawer-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  color: var(--cream-white);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease, color .3s ease;
  transition-delay: 0s;
}
.drawer.open .drawer-links a { opacity: 1; transform: translateY(0); }
.drawer.open .drawer-links a:nth-child(1) { transition-delay: .35s; }
.drawer.open .drawer-links a:nth-child(2) { transition-delay: .42s; }
.drawer.open .drawer-links a:nth-child(3) { transition-delay: .49s; }
.drawer.open .drawer-links a:nth-child(4) { transition-delay: .56s; }
.drawer.open .drawer-links a:nth-child(5) { transition-delay: .63s; }
.drawer-links a:hover { color: var(--clay); }


.hero-sentinel { height: 1px; }

.stage {
  padding: 7.5rem 1.5rem 3rem;
  max-width: 1280px;
  margin: 0 auto;
}
.stage-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 2.5rem;
  align-items: center;
}
.stage-content { max-width: 560px; }
.stage-intro { font-size: 1.05rem; margin: 1.6rem 0 2rem; color: var(--ink-soft); }
.stage-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.8rem; }
.stage-stats { display: flex; gap: 2.2rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-number { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.9rem; color: var(--clay-deep); }
.stat-label { font-size: .8rem; color: var(--ink-soft); margin-top: .2rem; }

.stage-visual { position: relative; }
.stage-image {
  width: 100%;
  height: clamp(340px, 45vw, 560px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.spotlight {
  position: absolute;
  bottom: -1.8rem;
  left: -1.8rem;
  max-width: 280px;
  background: var(--cream-white);
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--clay);
}
.spotlight-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .82rem; color: var(--clay-deep); margin: 0 0 .4rem; text-transform: uppercase; letter-spacing: .06em; }
.spotlight-text { font-size: .88rem; margin: 0; color: var(--ink-soft); }


.title-band {
  padding: 8.5rem 1.5rem 4rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.title-band-text { font-size: 1.08rem; margin-top: 1.4rem; max-width: 620px; }
.title-band-legal .title-band-text { color: var(--clay-deep); font-weight: 600; }


.gallery { padding: 5rem 1.5rem; max-width: 1280px; margin: 0 auto; }
.gallery-head { max-width: 700px; margin-bottom: 3rem; }
.gallery-head-left { margin-left: 0; }
.gallery-head-text { margin-top: 1rem; font-size: 1.02rem; }

.gallery-statement { background: var(--paper); border-radius: var(--radius-lg); max-width: 1200px; }
.statement-block { max-width: 900px; }
.statement-text { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: clamp(1.4rem, 3vw, 2.2rem); line-height: 1.35; color: var(--ink); }


.shelf {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.gallery-services .shelf { counter-reset: service; }
.gallery-services .shelf-card { counter-increment: service; }
.shelf-card {
  position: relative;
  background: var(--cream-white);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, border-color .4s ease;
}
.gallery-services .shelf-card::before {
  content: counter(service, decimal-leading-zero);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--paper-deep);
  position: absolute;
  top: .8rem;
  right: 1.3rem;
  line-height: 1;
}
.shelf-card h3 { font-size: 1.15rem; margin-bottom: .7rem; padding-right: 2rem; }
.shelf-card p { font-size: .93rem; margin: 0; }
.shelf-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clay);
}
.shelf-plain .shelf-card i { font-size: 1.6rem; color: var(--clay-deep); margin-bottom: 1rem; display: inline-block; }


.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.portfolio-item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .4s ease, transform .4s ease;
  background: var(--cream-white);
}
.portfolio-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.portfolio-item figcaption {
  padding: .9rem 1.1rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.portfolio-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-item:hover img { transform: scale(1.07); }


.process-split, .story-split, .palette-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.story-split-reverse { direction: rtl; }
.story-split-reverse > * { direction: ltr; }
.story-image, .process-media img, .palette-image { width: 100%; height: clamp(280px, 32vw, 420px); object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.link-arrow { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--clay-deep); margin-top: 1.2rem; }
.link-arrow i { transition: transform .35s ease; }
.link-arrow:hover i { transform: translateX(6px); }
.link-arrow:hover { color: var(--clay); }

.gallery-process, .gallery-detail, .gallery-story { background: var(--paper); border-radius: var(--radius-lg); max-width: 1200px; }
.gallery-window { background: var(--canvas); }


.format-list { list-style: none; padding: 0; margin: 1.6rem 0 0; display: flex; flex-direction: column; gap: 1.3rem; }
.format-list li { display: flex; gap: 1rem; align-items: flex-start; }
.format-list i { color: var(--clay-deep); font-size: 1.2rem; margin-top: .2rem; width: 26px; flex-shrink: 0; }
.format-list strong { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--ink); display: block; margin-bottom: .2rem; }
.format-list p { margin: 0; font-size: .93rem; }


.gallery-location { background: var(--paper); border-radius: var(--radius-lg); max-width: 1200px; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.location-list { list-style: none; padding: 0; margin: 1.6rem 0 2rem; display: flex; flex-direction: column; gap: .9rem; }
.location-list li { display: flex; align-items: center; gap: .8rem; font-size: .95rem; }
.location-list i { color: var(--clay-deep); width: 20px; }
.location-map iframe, .contact-map iframe { width: 100%; height: 380px; border: 0; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }


.cta-band {
  background: linear-gradient(135deg, var(--ink) 0%, var(--moss-deep) 100%);
  color: var(--cream-white);
  border-radius: var(--radius-lg);
  max-width: 1200px;
  margin: 5rem auto;
  padding: 4.5rem 2.5rem;
  text-align: center;
}
.cta-band .display-2 { color: var(--cream-white); max-width: 700px; margin: 0 auto 1rem; }
.cta-band p { max-width: 560px; margin: 0 auto 2rem; color: rgba(255,253,248,.85); }


.gallery-contact { max-width: 1200px; }
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-map { position: relative; }
.contact-address-card {
  position: absolute;
  bottom: -1.5rem;
  right: 1.5rem;
  background: var(--cream-white);
  padding: 1rem 1.3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: .8rem;
  align-items: center;
  max-width: 240px;
}
.contact-address-card i { color: var(--clay-deep); font-size: 1.3rem; }
.contact-address-card strong { display: block; font-family: 'Poppins', sans-serif; }
.contact-address-card span { font-size: .82rem; color: var(--ink-soft); }

.contact-form { display: flex; flex-direction: column; gap: 1.3rem; background: var(--cream-white); padding: 2.2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.form-row { display: flex; flex-direction: column; gap: .5rem; }
.form-row label { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .88rem; color: var(--ink); }
.form-row input[type=text], .form-row input[type=email], .form-row input[type=tel], .form-row textarea {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  background: var(--canvas);
  color: var(--ink);
  transition: border-color .3s ease, box-shadow .3s ease;
  min-height: 44px;
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(196,86,47,0.15);
}
.form-row-checkbox { flex-direction: row; align-items: flex-start; gap: .7rem; }
.form-row-checkbox input { margin-top: .3rem; width: 20px; height: 20px; flex-shrink: 0; accent-color: var(--clay); }
.form-row-checkbox label { font-weight: 400; font-size: .85rem; }
.form-row-checkbox a { color: var(--clay-deep); text-decoration: underline; }
.form-submit { align-self: flex-start; margin-top: .5rem; }

.gallery-hours { max-width: 1200px; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.hours-list { list-style: none; padding: 0; margin: 1.6rem 0 0; display: flex; flex-direction: column; gap: .8rem; }
.hours-list li { display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: .8rem; font-size: .95rem; }
.hours-list li span:first-child { font-weight: 600; color: var(--ink); }
.hours-contact { display: flex; flex-direction: column; gap: 1.2rem; }
.hours-contact-card {
  display: flex; gap: 1rem; align-items: center;
  background: var(--paper); padding: 1.2rem 1.4rem; border-radius: var(--radius-md);
  transition: transform .35s ease, box-shadow .35s ease;
}
.hours-contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.hours-contact-card i { font-size: 1.3rem; color: var(--clay-deep); width: 28px; }
.hours-contact-card strong { display: block; font-family: 'Poppins', sans-serif; font-size: .92rem; }
.hours-contact-card a, .hours-contact-card span { font-size: .9rem; }


.thanks-hero {
  background: linear-gradient(135deg, var(--clay-deep) 0%, var(--moss-deep) 100%);
  color: var(--cream-white);
  padding: 9rem 1.5rem 5rem;
  text-align: center;
}
.thanks-title { color: var(--cream-white); max-width: 780px; margin: 0 auto; }
.thanks-text { max-width: 560px; margin: 1.6rem auto 0; color: rgba(255,253,248,.9); font-size: 1.05rem; }
.thanks-next { max-width: 700px; margin: 0 auto; padding: 5rem 1.5rem; text-align: center; }
.thanks-next p { margin: 1.2rem 0; }
.thanks-next .btn-primary { margin-top: 1.5rem; }


.legal-body { max-width: 900px; margin: 0 auto; padding: 1rem 1.5rem 6rem; }
.legal-intro { font-size: 1.02rem; margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.legal-content h2 { font-size: 1.25rem; margin: 2.2rem 0 .9rem; }
.legal-content p { font-size: .95rem; margin: 0 0 1rem; }


.canvas-footer { background: var(--ink); color: rgba(255,253,248,.75); margin-top: 4rem; }
.footer-top { max-width: 1280px; margin: 0 auto; padding: 4rem 1.5rem 2.5rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand .canvas-logo span { color: var(--cream-white); }
.footer-brand p { font-size: .88rem; margin-top: 1rem; line-height: 1.6; }
.canvas-footer h4 { color: var(--cream-white); font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-links, .footer-contact, .footer-legal { display: flex; flex-direction: column; gap: .7rem; }
.footer-links a, .footer-contact a, .footer-legal a, .footer-contact p { font-size: .9rem; color: rgba(255,253,248,.75); margin: 0; }
.footer-links a:hover, .footer-contact a:hover, .footer-legal a:hover { color: var(--clay); }
.footer-bottom { border-top: 1px solid rgba(255,253,248,.12); padding: 1.4rem 1.5rem; text-align: center; }
.footer-bottom p { font-size: .82rem; margin: 0; }


.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }


@media (max-width: 1024px) {
  .stage-grid, .location-grid, .contact-split, .hours-grid, .process-split, .story-split, .palette-split { grid-template-columns: 1fr; }
  .story-split-reverse { direction: ltr; }
  .stage-content { max-width: 100%; }
  .shelf { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .spotlight { position: static; margin-top: -2.5rem; margin-left: 1.5rem; margin-right: 1.5rem; }
}
@media (max-width: 768px) {
  .canvas-links, .canvas-cta { display: none; }
  .drawer-toggle { display: flex; }
  .stage { padding-top: 6.5rem; }
  .title-band { padding-top: 7rem; }
  .shelf { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-band { padding: 3rem 1.5rem; }
  .stage-stats { gap: 1.5rem; }
  .contact-address-card { position: static; margin-top: 1rem; }
  .location-map iframe, .contact-map iframe { height: 280px; }
}
@media (max-width: 480px) {
  .stage-actions { flex-direction: column; }
  .stage-actions .btn-primary, .stage-actions .btn-outline { width: 100%; }
}