@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --cream: #f8f3ee;
  --cream-dark: #f1e9e2;
  --blush: #ecd2d0;
  --blush-light: #f4e2df;
  --navy: #241f1c;
  --navy-light: #3a332e;
  --charcoal: #241f1c;
  --rose-text: #dcaba8;
  --sage: #8fa693;
  --line: rgba(36, 31, 28, 0.14);
  --line-light: rgba(255, 255, 255, 0.22);
  --serif: 'Playfair Display', serif;
  --sans: 'Jost', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-text);
  margin-bottom: 18px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  text-align: center;
  margin-bottom: 28px;
}

.tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--rose-text);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* staggered cascade for grouped items */
.values-list li:nth-child(1) { transition-delay: 0s; }
.values-list li:nth-child(2) { transition-delay: 0.06s; }
.values-list li:nth-child(3) { transition-delay: 0.12s; }
.values-list li:nth-child(4) { transition-delay: 0.18s; }
.values-list li:nth-child(5) { transition-delay: 0.24s; }
.values-list li:nth-child(6) { transition-delay: 0.3s; }
.values-list li:nth-child(7) { transition-delay: 0.36s; }

.services-row span:nth-child(1) { transition-delay: 0s; }
.services-row span:nth-child(2) { transition-delay: 0.08s; }
.services-row span:nth-child(3) { transition-delay: 0.16s; }
.services-row span:nth-child(4) { transition-delay: 0.24s; }

.dates-list li:nth-child(1) { transition-delay: 0s; }
.dates-list li:nth-child(2) { transition-delay: 0.12s; }

.process-step:nth-child(1) { transition-delay: 0s; }
.process-step:nth-child(2) { transition-delay: 0.1s; }
.process-step:nth-child(3) { transition-delay: 0.2s; }
.process-step:nth-child(4) { transition-delay: 0.3s; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(247, 242, 236, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 40px;
  box-shadow: 0 1px 0 var(--line);
}
.nav-logo {
  height: 52px;
  width: auto;
  transition: height 0.4s ease, filter 0.4s ease;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}
.nav.scrolled .nav-logo {
  height: 40px;
  filter: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.4s ease, opacity 0.2s ease;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
.nav.scrolled .nav-links a { color: var(--charcoal); }
.nav-links a:hover { border-bottom-color: currentColor; }

.nav-right { display: flex; align-items: center; gap: 22px; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: #fff;
  transition: color 0.4s ease;
}
.nav.scrolled .lang-toggle { color: var(--charcoal); }
.lang-toggle button {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: inherit;
  opacity: 0.5;
  cursor: pointer;
  padding: 4px 2px;
}
.lang-toggle button.active { opacity: 1; border-bottom: 1px solid currentColor; }

.nav-burger { display: none; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero.jpg');
  background-size: cover;
  background-position: center 20%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,31,28,0.48) 0%, rgba(36,31,28,0.3) 45%, rgba(36,31,28,0.68) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 24px;
}
.hero-crest {
  width: 96px;
  margin: 0 auto 26px;
  opacity: 0.95;
}
.hero-content .label {
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
}
.hero-content h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  font-weight: 500;
  margin-bottom: 20px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.25);
}
.hero-content .hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 400;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.95);
}
.hero-content .hero-soul {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blush-light);
  margin-bottom: 44px;
}
.btn {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
  background: transparent;
}
.btn:hover { background: #fff; color: var(--navy); }
.btn-dark { border-color: var(--navy); color: var(--navy); }
.btn-dark:hover { background: var(--navy); color: #fff; }
.btn-light { border-color: rgba(255,255,255,0.55); }
.btn-fill { background: var(--cream); border-color: var(--cream); color: var(--charcoal); }
.btn-fill:hover { background: #fff; border-color: #fff; color: var(--charcoal); }

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0));
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue {
  0% { opacity: 0.2; transform: translate(-50%, -8px); }
  50% { opacity: 1; }
  100% { opacity: 0.2; transform: translate(-50%, 8px); }
}

/* ---------- ABOUT ---------- */
.about {
  background: var(--blush-light);
  padding: 130px 0;
  text-align: center;
}
.about-copy {
  max-width: 640px;
  margin: 0 auto;
}
.about-copy p { margin-bottom: 1.4em; font-size: 1.02rem; }
.about-copy .lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--charcoal);
}
.about-mark {
  width: 130px;
  margin: 50px auto 0;
  opacity: 0.92;
}

/* ---------- FOUNDER ---------- */
.founder {
  padding: 130px 0;
  background: var(--cream);
}
.founder .container {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: center;
}
.founder-photo {
  position: relative;
}
.founder-photo img {
  width: 100%;
  border-radius: 2px;
}
.founder-photo::after {
  content: '';
  position: absolute;
  top: 24px; left: 24px;
  right: -24px; bottom: -24px;
  border: 1px solid var(--rose-text);
  z-index: -1;
}
.founder-text .eyebrow { text-align: left; }
.founder-text h2 { text-align: left; font-size: clamp(2rem, 3.4vw, 2.7rem); margin-bottom: 8px; }
.founder-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--rose-text);
  margin-bottom: 26px;
}
.founder-text p { margin-bottom: 1.3em; font-size: 0.98rem; }
.founder-quote {
  margin-top: 30px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  border-left: 2px solid var(--rose-text);
  padding-left: 22px;
  color: var(--navy);
}

/* ---------- PHILOSOPHY / VALUES ---------- */
.philosophy {
  background: var(--cream-dark);
  padding: 130px 0;
  text-align: center;
}
.philosophy-copy {
  max-width: 600px;
  margin: 0 auto 60px;
}
.philosophy-copy p { margin-bottom: 1.3em; }
.philosophy-copy .lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--charcoal);
}
.values-title {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-text);
  margin-bottom: 34px;
}
.values-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 14px;
  max-width: 780px;
  margin: 0 auto 60px;
  list-style: none;
}
.values-list li {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
}

/* ---------- COLLECTIONS ---------- */
.collections {
  padding: 130px 0 100px;
  background: var(--cream);
  text-align: center;
}
.collection-rows { margin-top: 80px; }
.collection-row {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 70px;
  align-items: center;
  text-align: left;
  margin-bottom: 110px;
}
.collection-row:last-child { margin-bottom: 0; }
.collection-row.reverse { grid-template-columns: 1fr 0.85fr; }
.collection-row.reverse .collection-media { order: 2; }
.collection-row.reverse .collection-copy { order: 1; }
.collection-media { aspect-ratio: 3/4; overflow: hidden; }
.collection-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
}
.collection-media:hover img { transform: scale(1.05); }
.media-signature img { object-position: center 22%; }
.media-textured img { object-position: center 3%; }
.collection-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-text);
  font-weight: 500;
  margin-bottom: 16px;
}
.collection-copy h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 18px;
}
.collection-copy p { font-size: 0.96rem; margin-bottom: 24px; }
.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.tag-list li {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--charcoal);
  opacity: 0.8;
}
.piece-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--navy);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-bottom: 0 !important;
}

/* ---------- GALLERY ---------- */
.gallery {
  padding: 130px 0;
  background: var(--cream);
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.gallery-item {
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream-dark);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item, .gallery-stack { cursor: pointer; }
.gallery-empty {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  opacity: 0.5;
  padding: 40px 0;
}

/* stacked "more photos" tile */
.gallery-stack {
  position: relative;
  aspect-ratio: 3 / 4;
}
.gallery-stack .gallery-item {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.stack-sliver {
  position: absolute;
  inset: 0;
  background: var(--cream-dark);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.stack-sliver-1 { z-index: 1; transform: rotate(-3deg) translate(5px, 7px); }
.stack-sliver-2 { z-index: 0; transform: rotate(4deg) translate(-6px, 9px); }

.stack-label {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  padding: 32px 20px 20px;
  text-align: left;
  background: linear-gradient(180deg, rgba(36,31,28,0) 0%, rgba(36,31,28,0.75) 100%);
}
.stack-label-title {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: #fdfaf5;
  margin-bottom: 4px;
}
.stack-label-count {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.gallery-stack:hover .gallery-item img { transform: scale(1.05); }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 16, 14, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 88vw;
  max-height: 82vh;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 12px;
  line-height: 1;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }
.lightbox-close { top: 20px; right: 24px; font-size: 2rem; }
.lightbox-prev { left: 16px; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lightbox-next { right: 16px; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lightbox-count {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ---------- BESPOKE ---------- */
.bespoke {
  background: var(--blush-light);
  padding: 130px 0;
  text-align: center;
}
.bespoke .container { max-width: 680px; margin: 0 auto; }
.bespoke .eyebrow { text-align: center; }
.bespoke h2 { margin-bottom: 26px; }
.bespoke .tagline { margin-bottom: 8px; }
.bespoke p { margin-bottom: 1.2em; font-size: 0.98rem; }
.services-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 44px;
}
.services-row span {
  font-family: var(--serif);
  font-size: 1.02rem;
  padding: 14px 26px;
  border: 1px solid var(--rose-text);
  border-radius: 2px;
  background: rgba(255,255,255,0.4);
  color: var(--charcoal);
}

/* ---------- SHOWROOM EXPERIENCE ---------- */
.showroom {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.showroom-bg { position: absolute; inset: 0; }
.showroom-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.showroom-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,31,28,0.55) 0%, rgba(36,31,28,0.68) 100%);
}
.showroom-content { position: relative; z-index: 1; }
.showroom .eyebrow { color: var(--blush); }
.showroom h2 { color: #fff; letter-spacing: 0.04em; font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 10px; }
.showroom-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--blush);
  margin-bottom: 4px;
}
.showroom-subtitle {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 30px;
}
.showroom .tagline { color: #fff; margin-bottom: 18px; max-width: 780px; }
.showroom-p { max-width: 780px; margin: 0 auto 20px; color: rgba(255,255,255,0.82); font-size: 0.96rem; }
.showroom-copy { max-width: 640px; margin: 0 auto 20px; }
.showroom-copy p { color: rgba(255,255,255,0.82); font-size: 0.96rem; margin-bottom: 1.2em; }
.showroom-copy p:last-child { margin-bottom: 0; }

.showroom-media-grid { max-width: 780px; margin: 0 auto; }
.showroom-audio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
.audio-toggle {
  display: inline-block;
  margin: 4px auto 10px;
  padding: 12px 28px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.audio-toggle:hover { background: #fff; color: var(--charcoal); }

.dates-panel {
  background: rgba(248, 243, 238, 0.97);
  border-radius: 6px;
  padding: 34px 32px;
  margin: 40px auto;
  max-width: 780px;
  text-align: left;
}
.dates-kicker {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--rose-text);
  font-weight: 500;
  margin-bottom: 20px;
}
.dates-panel-empty { text-align: center; }
.dates-soon {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--charcoal);
  margin: 0;
}
.dates-list { list-style: none; }
.dates-list li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--charcoal);
}
.dates-list li:first-child { border-top: none; }
.dates-when {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  min-width: 120px;
}
.dates-where {
  flex: 1;
  color: var(--charcoal);
  opacity: 0.65;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dates-cta {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  padding: 9px 18px;
  border-radius: 30px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.dates-cta:hover { background: var(--charcoal); color: var(--cream); }

/* ---------- PROCESS ---------- */
.process {
  padding: 130px 0;
  background: var(--cream);
  text-align: center;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 70px;
  text-align: left;
}
.process-step .step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--blush);
  margin-bottom: 18px;
  display: block;
}
.process-step h3 {
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  font-weight: 500;
}
.process-step p { font-size: 0.85rem; opacity: 0.75; }
.process-step { border-top: 1px solid var(--line); padding-top: 26px; }

/* ---------- CONTACT ---------- */
.contact {
  background: var(--navy);
  color: #f2ede4;
  padding: 130px 0 90px;
}
.contact .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}
.contact-intro .eyebrow { color: var(--sage); text-align: left; }
.contact-intro h2 { color: #fdfaf5; font-size: clamp(1.9rem, 3.2vw, 2.5rem); margin-bottom: 18px; text-align: left; }
.contact-intro p { max-width: 420px; margin-bottom: 34px; font-size: 0.98rem; color: #e7e1d4; }
.contact-details {
  list-style: none;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-details li { border-bottom: 1px solid var(--line-light); padding-bottom: 10px; }
.contact-details .contact-label {
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  margin-right: 8px;
}
.contact-details a { font-family: var(--sans); font-size: 0.98rem; color: #fdfaf5; font-weight: 300; }
.contact-details a:hover { color: var(--blush); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form .field { display: flex; flex-direction: column; gap: 8px; }
.contact-form label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  padding: 13px 14px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: #f2ede4;
  font-weight: 300;
}
.contact-form select { color-scheme: dark; }
.contact-form select option { color: var(--charcoal); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--sage);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form button { margin-top: 6px; align-self: flex-start; }
.form-note {
  font-size: 0.78rem;
  color: var(--sage);
  margin-top: 6px;
  display: none;
}
.form-note.visible { display: block; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy);
  color: #d9d3c4;
  padding: 60px 0 30px;
  text-align: center;
}
.footer-logo { height: 90px; width: auto; margin: 0 auto 22px; }
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: #fdfaf5;
  margin-bottom: 12px;
}
.footer-made {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 26px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-bottom: 30px;
  list-style: none;
}
.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
}
.footer-links a:hover { opacity: 1; color: var(--blush); }
.footer-copy {
  font-size: 0.72rem;
  opacity: 0.5;
  letter-spacing: 0.04em;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .founder .container,
  .contact .container { grid-template-columns: 1fr; gap: 50px; }
  .founder-photo { max-width: 420px; margin: 0 auto; }
  .founder-text h2, .founder-text .eyebrow { text-align: center; }
  .founder-text { text-align: center; }
  .founder-quote { margin-left: auto; margin-right: auto; text-align: left; max-width: 460px; }
  .collection-row,
  .collection-row.reverse { grid-template-columns: 1fr; gap: 30px; margin-bottom: 70px; }
  .collection-row.reverse .collection-media,
  .collection-row.reverse .collection-copy { order: initial; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .contact-intro .eyebrow, .contact-intro h2 { text-align: center; }
  .contact-intro p { margin-left: auto; margin-right: auto; text-align: center; }
  .contact-details { max-width: 420px; margin: 0 auto; }
  .showroom { padding: 110px 0; }
}

@media (max-width: 720px) {
  .nav { padding: 18px 20px; }
  .nav-links { display: none; }
  .container { padding: 0 22px; }
  .process-steps { grid-template-columns: 1fr; }
  .about, .founder, .philosophy, .collections, .gallery, .bespoke, .process, .contact { padding-top: 90px; padding-bottom: 90px; }
  .contact-form { padding: 30px 24px; }
  .showroom { padding: 90px 0; }
  .dates-panel { padding: 26px 20px; margin: 32px auto; }
  .dates-list li { flex-wrap: wrap; }
  .dates-where { min-width: 100%; order: 3; }
  .dates-cta { width: 100%; text-align: center; }
}
