*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --cream: #f5f0e8;
  --cream2: #ede6d8;
  --cream3: #e5ddd0;
  --forest: #2d3628;
  --forest2: #3a4432;
  --sand: #b8a98a;
  --sand2: #a09070;
  --text: #2a2720;
  --text2: #5a5448;
  --text3: #8a8278;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", sans-serif;
  --pad: 80px;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 58px;
  background: var(--cream);
  border-bottom: 1px solid rgba(42, 39, 32, 0.09);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 2px 20px rgba(42, 39, 32, 0.08);
}
.nav-logo {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}
.nav-logo img {
  width: 35px;
  height: 35px;
  opacity: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-links a.active {
  color: var(--text);
  border-bottom: 1.5px solid var(--text);
  padding-bottom: 2px;
}
.nav-cta {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 22px;
  background: var(--forest);
  color: var(--cream);
  text-decoration: none;
  transition: all 0.2s;
  border: 1.5px solid var(--forest);
}
.nav-cta:hover {
  background: transparent;
  color: var(--forest);
}
.nav-home-link {
  display: flex;
  align-items: center;
  color: var(--text2);
}
.nav-home-link:hover {
  color: var(--text);
}
.nav-home-icon {
  display: block;
  color: inherit;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

/* ─── LEFT-LOGO NAV (logo left, links + CTA right, logo shrinks on scroll) ─── */
.nav-standard {
  height: 112px;
}
.nav-standard .nav-right-group {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-standard .nav-logo {
  gap: 0;
}
.nav-standard .nav-logo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.nav-standard .hamburger {
  margin-left: auto;
}
@media (max-width: 768px) {
  .nav-standard {
    height: 58px;
  }
  .nav-standard .nav-logo img {
    width: 44px;
    height: 44px;
  }
}

/* ─── HERO VIDEO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 58px;
  background: var(--forest2);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
/* Video fallback — animated gradient simulating field/cotton */
.hero-video-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #3d4a30 0%,
    #4a5838 30%,
    #5c6e48 55%,
    #3a4830 80%,
    #2d3628 100%
  );
  animation: heroShift 8s ease-in-out infinite alternate;
}
@keyframes heroShift {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
/* cotton/organic texture dots */
.hero-video-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(245, 240, 232, 0.06) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 60% 60%,
      rgba(245, 240, 232, 0.04) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(245, 240, 232, 0.05) 1.5px,
      transparent 1.5px
    );
  background-size:
    120px 120px,
    80px 80px,
    100px 100px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(28, 34, 22, 0.82) 0%,
    rgba(28, 34, 22, 0.45) 55%,
    rgba(28, 34, 22, 0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  /* max-width:820px; */
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 400;
  line-height: 1.07;
  color: var(--cream);
  margin-bottom: 28px;
  transition: opacity 0.35s ease;
}
.hero-eyebrow {
  transition: opacity 0.35s ease;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
}
.hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.72);
  max-width: 440px;
  margin-bottom: 40px;
  font-family: var(--sans);
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.btn-primary {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 13px 30px;
  background: var(--cream);
  color: var(--forest);
  text-decoration: none;
  border: 1.5px solid var(--cream);
  transition: all 0.25s;
}
.btn-primary:hover {
  background: transparent;
  color: var(--cream);
}
.btn-ghost {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 13px 30px;
  background: transparent;
  color: var(--cream);
  text-decoration: none;
  border: 1.5px solid rgba(245, 240, 232, 0.45);
  transition: all 0.25s;
}
.btn-ghost:hover {
  border-color: var(--cream);
}
.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-tag {
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(245, 240, 232, 0.28);
  color: rgba(245, 240, 232, 0.6);
}
/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(245, 240, 232, 0.4), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* ─── PHILOSOPHY / STATS ─── */
.philosophy {
  padding: 80px 80px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
}
.stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.stat-item {
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 4px;
}
.stat-value {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  color: var(--text);
}
.stat-sub {
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text3);
  margin-top: 2px;
  font-weight: 400;
}
.philosophy-right {
}
.phil-eyebrow {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 20px;
}
.phil-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 36px;
}
.phil-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--cream2);
  overflow: hidden;
  position: relative;
  max-width: 520px;
}
.phil-img-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ccc6b8 0%, #b8b0a0 50%, #a8a090 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.phil-img-inner span {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: rgba(42, 39, 32, 0.3);
}
.phil-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
/* ─── COLLECTIONS SLIDER ─── */
.collections {
  padding: 0 80px 80px;
}
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
}
.section-title-lg {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
}
.see-all {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text2);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.see-all:hover {
  color: var(--text);
}
.see-all::after {
  content: "→";
  font-size: 12px;
}
.slider-wrap {
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.collection-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
  cursor: pointer;
}
.card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--cream2);
  margin-bottom: 14px;
}
.card-img-inner {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collection-card:hover .card-img-inner {
  transform: scale(1.04);
}
.card-img-inner.c1 {
  background: linear-gradient(145deg, #d8d0c2 0%, #c4b89a 100%);
}
.card-img-inner.c2 {
  background: linear-gradient(145deg, #c8c0b0 0%, #b0a890 100%);
}
.card-img-inner.c3 {
  background: linear-gradient(145deg, #e0ddd5 0%, #d0c8b8 100%);
}
.card-img-inner.c4 {
  background: linear-gradient(145deg, #d0c8b8 0%, #b8b0a0 100%);
}
.card-img-icon {
  font-size: 32px;
  opacity: 0.18;
}
.card-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 4px;
}
.card-sub {
  font-size: 16px;
  color: var(--text3);
  letter-spacing: 0.04em;
  font-family: var(--sans);
  font-weight: 400;
}
.slider-arrows {
  display: flex;
  gap: 8px;
  margin-top: 28px;
  justify-content: flex-end;
}
.arrow-btn {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(42, 39, 32, 0.2);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text2);
  transition: all 0.2s;
}
.arrow-btn:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

/* ─── SUSTAINABILITY ─── */
.sustainability {
  background: var(--cream2);
  padding: 80px;
}
.sust-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.sust-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 56px;
}
.sust-eyebrow {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 20px;
}
.sust-heading {
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 300;
  line-height: 1.15;
}
.sust-heading em {
  font-style: italic;
}
.sust-right-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text2);
  padding-top: 8px;
  font-family: var(--sans);
}
.sust-right-text p + p {
  margin-top: 16px;
}
.read-report {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  margin-top: 24px;
  border-bottom: 1px solid rgba(42, 39, 32, 0.25);
  padding-bottom: 3px;
  transition: border-color 0.2s;
}
.read-report:hover {
  border-color: var(--text);
}
.read-report::after {
  content: "→";
}
/* Stats row */
.sust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(42, 39, 32, 0.1);
  margin-bottom: 32px;
}
.sust-stat {
  background: var(--cream2);
  padding: 36px 32px;
}
.sust-stat-val {
  font-family: var(--sans);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
}
.sust-stat-val sup {
  font-size: 0.5em;
  vertical-align: top;
  margin-top: 0.2em;
}
.sust-stat-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text3);
  font-weight: 500;
  font-family: var(--sans);
}
/* cert badges */
.cert-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.badge {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border: 1px solid rgba(42, 39, 32, 0.2);
  color: var(--text2);
  background: transparent;
}

/* ─── CLIENT STORIES (video cards) ─── */
.stories {
  background: var(--forest);
  padding: 80px;
}
.stories-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.stories-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
}
.stories-eyebrow {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
}
.stories-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
}
.more-stories {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color 0.2s;
}
.more-stories:hover {
  color: var(--cream);
}
.more-stories::after {
  content: "→";
}
.story-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.story-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.story-vid {
  aspect-ratio: 3/4;
  background: var(--forest2);
  position: relative;
  overflow: hidden;
}
.story-vid-inner {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.story-card:hover .story-vid-inner {
  transform: scale(1.03);
}
.sv1 {
  background: linear-gradient(155deg, #5a6a50 0%, #3a4832 60%, #2d3a28 100%);
}
.sv2 {
  background: linear-gradient(155deg, #4a5c40 0%, #3a4a30 60%, #282e22 100%);
}
.sv3 {
  background: linear-gradient(155deg, #7a6a50 0%, #6a5840 60%, #504230 100%);
}
/* Play button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.15);
  border: 1.5px solid rgba(245, 240, 232, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.story-card:hover .play-btn {
  background: rgba(245, 240, 232, 0.25);
  border-color: rgba(245, 240, 232, 0.7);
}
.play-btn::after {
  content: "";
  border-left: 14px solid rgba(245, 240, 232, 0.85);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}
/* label at top */
.story-vid-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  background: rgba(28, 34, 22, 0.4);
  padding: 5px 10px;
  backdrop-filter: blur(4px);
}

.story-vid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-quote {
  padding: 20px 0 4px;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.72);
}
.story-name {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--cream);
  margin-top: 10px;
}
.story-role {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 2px;
}

/* ─── FAQ ─── */
.faq {
  padding: 80px;
}
.faq-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
}
.faq-left {
}
.faq-eyebrow {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 16px;
}
.faq-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 16px;
}
.faq-heading em {
  font-style: italic;
}
.faq-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text2);
}
.faq-list {
}
.faq-item {
  border-bottom: 1px solid rgba(42, 39, 32, 0.1);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.01em;
  transition: color 0.2s;
  user-select: none;
}
.faq-q:hover {
  color: var(--text2);
}
.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid rgba(42, 39, 32, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text3);
  transition: all 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}
.faq-a-inner {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text2);
  padding-bottom: 22px;
}
.faq-item.open .faq-a {
  max-height: 300px;
}

/* ─── CLOSING CTA ─── */
.closing {
  background: var(--forest);
  padding: 120px 80px;
  text-align: center;
}
.closing-eyebrow {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 24px;
}
.closing h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 40px;
}
.closing h2 em {
  font-style: italic;
}
.btn-outline-light {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 15px 42px;
  border: 1.5px solid rgba(245, 240, 232, 0.35);
  color: var(--cream);
  text-decoration: none;
  transition: all 0.25s;
}
.btn-outline-light:hover {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--cream);
}

/* ─── FOOTER ─── */
footer {
  background: var(--cream);
  border-top: 1px solid rgba(42, 39, 32, 0.1);
  padding: 64px 80px 36px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-brand-name {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
}
.footer-brand-name::before {
  content: "✦";
  color: var(--sand);
  font-size: 10px;
}
.footer-brand p {
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--text3);
  max-width: 230px;
}
.footer-col h4 {
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 11px;
}
.footer-col ul li a {
  font-size: 13px;
  color: var(--text3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--text);
}
.footer-col address {
  font-style: normal;
  font-size: 13px;
  color: var(--text3);
  line-height: 1.75;
}
.footer-col address a {
  color: var(--text3);
  text-decoration: none;
}
.footer-col address a:hover {
  color: var(--text);
}
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(42, 39, 32, 0.07);
  padding-top: 24px;
}
.footer-bottom span {
  font-size: 10.5px;
  color: var(--text3);
  letter-spacing: 0.06em;
}

/* ─── FADE-IN OBSERVER ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  margin: auto;
}

/* ─── MOBILE NAV DRAWER ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 58px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 190;
  padding: 40px 32px;
  flex-direction: column;
  gap: 24px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-size: 22px;
  font-family: var(--serif);
  font-weight: 300;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(42, 39, 32, 0.08);
  padding-bottom: 20px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav,
  footer,
  .philosophy,
  .collections,
  .sustainability,
  .stories,
  .faq,
  .closing {
    padding-left: 40px;
    padding-right: 40px;
  }
  .philosophy {
    grid-template-columns: 180px 1fr;
    gap: 40px;
  }
  .sust-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sust-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .cq-footer {
    margin-left: 40px;
    margin-right: 40px;
  }
  .cq-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 0 24px;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    height: 78vh;
    min-height: 480px;
  }
  .hero-content {
    padding: 0 32px;
  }
  .hero-title {
    font-size: clamp(38px, 10vw, 60px);
  }
  .philosophy {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 32px;
  }
  .stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  .stat-item {
    flex: 0 0 calc(50% - 12px);
  }
  .collections {
    padding: 0 24px 60px;
  }
  .slider-track .collection-card {
    flex: 0 0 calc(50% - 10px);
  }
  .sustainability {
    padding: 60px 24px;
  }
  .sust-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stories {
    padding: 60px 24px;
  }
  .story-cards {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .stories-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .faq {
    padding: 60px 24px;
  }
  .closing {
    padding: 80px 24px;
  }
  footer {
    padding: 48px 24px 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .cq-footer {
    padding: 44px 24px 24px;
  }
  .cq-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cq-footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .slider-track .collection-card {
    flex: 0 0 calc(80% - 10px);
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .sust-stats {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════
   HOME PAGE — nav overlay & hero additions
   ════════════════════════════════════════════ */
.home-nav {
  background: transparent;
  border-bottom: 1px solid rgba(245, 240, 232, 0.12);
  transition:
    background 0.4s,
    box-shadow 0.3s,
    border-color 0.4s;
}
.home-nav.scrolled {
  background: var(--cream);
  border-bottom-color: rgba(42, 39, 32, 0.09);
  box-shadow: 0 2px 20px rgba(42, 39, 32, 0.08);
}
.home-nav .nav-logo,
.home-nav .nav-links a,
.home-nav .hamburger span {
  color: var(--cream);
  transition: color 0.4s;
}
.home-nav.scrolled .nav-logo,
.home-nav.scrolled .nav-links a,
.home-nav.scrolled .hamburger span {
  color: var(--text);
}
.home-nav .nav-links a:hover {
  color: rgba(245, 240, 232, 0.7);
}
.home-nav.scrolled .nav-links a:hover {
  color: var(--text2);
}
.home-nav .nav-cta {
  background: rgba(245, 240, 232, 0.12);
  border-color: rgba(245, 240, 232, 0.4);
  color: var(--cream);
  transition: all 0.3s;
}
.home-nav.scrolled .nav-cta {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}
.home-nav .nav-logo img {
  border-radius: 50%;
}
.home-nav .hamburger span {
  background: var(--cream);
}
.home-nav.scrolled .hamburger span {
  background: var(--text);
}
.home-hero {
  margin-top: 0;
}
.home-hero .hero-content {
  padding-top: 150px;
}
@media (max-width: 768px) {
  .home-hero .hero-content {
    padding-top: 90px;
  }
}
.hero-eyebrow {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
  margin-bottom: 22px;
  font-weight: 400;
}

/* ════════════════════════════════════════════
   STANDARD PAGE HEADER — used across craft &
   expertise (and any future) sub-pages
   ════════════════════════════════════════════ */
.cq-header {
  padding: 132px var(--pad) 52px;
  max-width: 1280px;
  margin: 0 auto;
}
.cq-eyebrow {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 20px;
  font-family: var(--sans);
}
.cq-page-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 32px;
}
.cq-page-title em {
  font-style: italic;
  font-weight: 400;
}
.cq-header-body {
  max-width: 860px;
  margin-bottom: 36px;
}
.cq-desc {
  font-size: 17.5px;
  line-height: 1.85;
  color: var(--text2);
}
.cq-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(42, 39, 32, 0.22);
  padding-bottom: 3px;
  transition: border-color 0.2s;
}
.cq-explore-link:hover {
  border-color: var(--text);
}
.cq-explore-link::after {
  content: "→";
}
/* Split header — text left, image right */
.cq-header-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.cq-header-split .cq-page-title {
  max-width: none;
}
.cq-header-split .cq-header-body {
  max-width: none;
}
.cq-header-media {
  align-self: stretch;
  min-height: 420px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream2);
}
.cq-header-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.cq-header-media:hover img {
  transform: scale(1.04);
}
@media (max-width: 900px) {
  .cq-header-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cq-header-media {
    min-height: 300px;
  }
}

/* ════════════════════════════════════════════
   CRAFT & QUALITY PAGE
   ════════════════════════════════════════════ */
.cq-hm-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad) 72px;
}
.cq-hm-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.72fr 0.73fr;
  grid-template-rows: 280px 280px;
  gap: 6px;
}
.cq-hm-cell {
  overflow: hidden;
  background: var(--cream2);
  position: relative;
}
.cq-hm-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.cq-hm-cell:hover img {
  transform: scale(1.05);
}
.cq-hm-c1 {
  grid-column: 1;
  grid-row: 1 / 3;
  border-radius: 6px 0 0 6px;
}
.cq-hm-c2 {
  grid-column: 2;
  grid-row: 1;
}
.cq-hm-c3 {
  grid-column: 3;
  grid-row: 1;
  border-radius: 0 6px 0 0;
}
.cq-hm-c4 {
  grid-column: 2;
  grid-row: 2;
  border-radius: 0 0 0 6px;
}
.cq-hm-c5 {
  grid-column: 2 / 4;
  grid-row: 2;
  border-radius: 0 0 6px 0;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}
.cq-hm-stat-num {
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 10px;
}
.cq-hm-stat-sup {
  font-family: var(--sans);
  font-size: 20px;
  vertical-align: super;
  font-weight: 300;
}
.cq-hm-stat-label {
  font-family: var(--sans);
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.6;
}
.cq-hm-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}
.cq-hm-caption-left {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--text3);
}
.cq-hm-caption-right {
  font-family: var(--sans);
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text3);
}
/* Craft hero — centered header + clean 3-image mosaic (matches design) */
.cq-header.cq-header-center {
  text-align: center;
}
.cq-header-center .cq-page-title {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.cq-header-center .cq-header-body {
  margin-left: auto;
  margin-right: auto;
}
.cq-eyebrow-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: -6px 0 28px;
}
.cq-eyebrow-divider::before,
.cq-eyebrow-divider::after {
  content: "";
  height: 1px;
  width: 64px;
  background: rgba(42, 39, 32, 0.22);
}
.cq-eyebrow-divider span {
  color: var(--sand2);
  font-size: 15px;
  line-height: 1;
}
.cq-mosaic {
  display: grid;
  grid-template-columns: 1.52fr 1fr;
  grid-template-rows: 0.82fr 1.18fr;
  gap: 14px;
  height: 600px;
}
.cq-mosaic-cell {
  overflow: hidden;
  border-radius: 5px;
  background: var(--cream2);
  position: relative;
}
.cq-mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s ease;
}
.cq-mosaic-cell:hover img {
  transform: scale(1.05);
}
.cq-mosaic-lg {
  grid-column: 1;
  grid-row: 1 / 3;
}
@media (max-width: 768px) {
  .cq-mosaic {
    /* same layout as desktop, just smaller */
    grid-template-columns: 1.52fr 1fr;
    grid-template-rows: 0.82fr 1.18fr;
    gap: 8px;
    height: auto;
    aspect-ratio: 1160 / 600; /* keeps desktop proportions at any width */
  }
  .cq-mosaic-lg {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  .cq-mosaic-cell {
    height: auto;
    border-radius: 4px;
  }
}

.cq-stats-row {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px var(--pad) 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(42, 39, 32, 0.1);
}
.cq-stat-item {
  padding-right: 32px;
}
.cq-stat-item:last-child {
  border-right: none;
}
.cq-stat-val {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1;
  color: var(--text);
  margin-bottom: 8px;
}
.cq-stat-unit {
  font-size: 0.55em;
  font-family: var(--sans);
  vertical-align: super;
}
.cq-stat-label {
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text3);
  font-family: var(--sans);
}
.cq-timeline-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
}
.cq-timeline-wrap::before {
  content: "";
  position: absolute;
  left: calc(var(--pad) + 32px);
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(42, 39, 32, 0.12);
  pointer-events: none;
}
.cq-section-row {
  display: grid;
  grid-template-columns: 64px 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(42, 39, 32, 0.08);
  padding: 72px 0;
  align-items: center;
  position: relative;
}
.cq-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-start;
  padding-top: 4px;
  position: relative;
}
.cq-step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(42, 39, 32, 0.18);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--text3);
  font-family: var(--sans);
  font-weight: 400;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.cq-step-circle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sand2);
}
.cq-sec-content {
  padding: 0 64px 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cq-sec-tag {
  display: inline-block;
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text3);
  border: 1px solid rgba(42, 39, 32, 0.18);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  font-family: var(--sans);
  align-self: flex-start;
}
.cq-sec-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 45px);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 22px;
}
.cq-sec-body {
  font-size: 17.5px;
  line-height: 1.85;
  color: var(--text2);
  margin-bottom: 14px;
}
.cq-studio-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text3);
  text-decoration: none;
  margin-top: 12px;
  transition: color 0.2s;
}
.cq-studio-link:hover {
  color: var(--text);
}
.cq-studio-link::after {
  content: "→";
  font-size: 10px;
}
.cq-sec-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--cream2);
  aspect-ratio: 3/4;
  border-radius: 10px;
}
.cq-section-row.alt .cq-step {
  order: 1;
}
.cq-section-row.alt .cq-sec-content {
  order: 3;
  padding: 0 0 0 64px;
}
.cq-section-row.alt .cq-sec-img-wrap {
  order: 2;
}
.cq-sec-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.cq-section-row:hover .cq-sec-img-wrap img {
  transform: scale(1.04);
}
.cq-img-counter {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text2);
  font-family: var(--sans);
  font-weight: 400;
  pointer-events: none;
}
.cq-discipline {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px var(--pad);
  border-top: 1px solid rgba(42, 39, 32, 0.08);
}
.cq-discipline-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 56px;
  max-width: 560px;
}
.cq-discipline-heading em {
  font-style: italic;
}
.cq-discipline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(42, 39, 32, 0.09);
}
.cq-dis-item {
  background: var(--cream);
  padding: 36px 28px;
}
.cq-dis-label {
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 14px;
  font-family: var(--sans);
}
.cq-dis-value {
  font-family: var(--serif);
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 400;
  line-height: 1.28;
  color: var(--text);
  margin-bottom: 12px;
}
.cq-dis-body {
  font-size: 17px;
  line-height: 1.78;
  color: var(--text3);
}
.cq-dark-cta {
  background: var(--forest);
  padding: 100px var(--pad);
}
.cq-dark-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cq-dark-eyebrow {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 24px;
  font-family: var(--sans);
}
.cq-dark-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--cream);
}
.cq-dark-heading em {
  font-style: italic;
}
.cq-dark-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cq-dark-body {
  font-size: 17.5px;
  line-height: 1.85;
  color: rgba(245, 240, 232, 0.68);
}
.btn-outline-light {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 13px 38px;
  border: 1.5px solid rgba(245, 240, 232, 0.3);
  color: var(--cream);
  text-decoration: none;
  transition: all 0.25s;
  align-self: flex-start;
  margin-top: 8px;
}
.cq-img-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.cq-img-row-item {
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream2);
}
.cq-img-row-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.cq-img-row-item:hover img {
  transform: scale(1.04);
}
.cq-footer {
  background: var(--cream2);
  border-top: 1px solid rgba(42, 39, 32, 0.1);
  padding: 56px var(--pad) 28px;
}
.cq-footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.5fr;
  gap: 48px;
  margin-bottom: 44px;
}
.cq-footer-brand-name {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
}
.cq-footer-brand-name::before {
  content: "✦";
  color: var(--sand);
  font-size: 10px;
}
.cq-footer-brand p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text3);
  max-width: 200px;
}
.cq-footer-col h4 {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 14px;
  font-weight: 500;
}
.cq-footer-col ul {
  list-style: none;
}
.cq-footer-col ul li {
  margin-bottom: 9px;
}
.cq-footer-col ul li a {
  font-size: 13px;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.2s;
}
.cq-footer-col ul li a:hover {
  color: var(--text);
}
.cq-footer-col address {
  font-style: normal;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.75;
}
.cq-footer-col address a {
  color: var(--text2);
  text-decoration: none;
}
.cq-footer-col address a:hover {
  color: var(--text);
}
.cq-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(42, 39, 32, 0.07);
  padding-top: 20px;
}
.cq-footer-bottom span {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--text3);
  text-transform: uppercase;
}
.reveal-d1 {
  transition-delay: 0.12s;
}
.reveal-d2 {
  transition-delay: 0.24s;
}
.reveal-d3 {
  transition-delay: 0.36s;
}

.object-clsass {
  object-position: top;
}
@media (max-width: 1100px) {
  :root {
    --pad: 48px;
  }
  .cq-section-row {
    grid-template-columns: 48px 1fr 1fr;
  }
  .cq-timeline-wrap::before {
    left: calc(var(--pad) + 24px);
  }
  .cq-discipline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cq-dark-inner {
    gap: 48px;
  }
}
@media (max-width: 768px) {
  :root {
    --pad: 24px;
  }
  .cq-page-title {
    font-size: clamp(34px, 9vw, 52px);
  }
  .cq-hm-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 180px 180px;
  }
  .cq-hm-c1 {
    grid-column: 1 / 3;
    grid-row: 1;
    border-radius: 6px 6px 0 0;
  }
  .cq-hm-c2 {
    grid-column: 1;
    grid-row: 2;
    border-radius: 0;
  }
  .cq-hm-c3 {
    grid-column: 2;
    grid-row: 2;
    border-radius: 0;
  }
  .cq-hm-c4 {
    grid-column: 1;
    grid-row: 3;
    border-radius: 0 0 0 6px;
  }
  .cq-hm-c5 {
    grid-column: 2;
    grid-row: 3;
    border-radius: 0 0 6px 0;
    padding: 20px 18px;
  }
  .cq-hm-stat-num {
    font-size: 38px;
  }
  .cq-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .cq-stat-item {
    border-right: none;
    padding-right: 0;
  }
  .cq-timeline-wrap::before {
    display: none;
  }
  .cq-section-row {
    grid-template-columns: 1fr;
    padding: 48px 0;
  }
  .cq-step {
    display: none;
  }
  .cq-sec-content {
    padding: 28px 0 28px 0 !important;
    order: 2 !important;
  }
  .cq-sec-img-wrap {
    order: 1 !important;
    /*aspect-ratio: 16/10;*/
  }
  .cq-section-row.alt .cq-sec-content {
    padding: 28px 0 28px 0 !important;
  }
  .cq-discipline-grid {
    grid-template-columns: 1fr;
  }
  .cq-dark-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cq-dark-heading {
    font-size: clamp(26px, 8vw, 40px);
  }
  .cq-img-row {
    grid-template-columns: 1fr;
  }
  .cq-footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .cq-stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .cq-discipline-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════
   EXPERTISE PAGE
   ════════════════════════════════════════════ */
.exp-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--sand2);
  font-weight: 500;
  margin-bottom: 18px;
  font-family: var(--sans);
}
.exp-section {
  padding: 96px var(--pad);
}
/* Tighten the gap between the product sections and the Materials block */
.exp-core-products {
  padding-bottom: 32px;
}
.exp-core-products .exp-product-section:last-child {
  padding-bottom: 24px;
}
.exp-materials-work {
  padding-top: 40px;
}
.exp-intro-line {
  max-width: 1000px;
  margin: 0 auto 70px;
  text-align: center;
}
.exp-intro-line h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
}
.exp-intro-line h2 em {
  font-style: italic;
  font-weight: 400;
}
.exp-intro-line p {
  font-size: 16.5px;
  color: var(--text2);
  max-width: 720px;
  margin: 22px auto 0;
  line-height: 1.85;
}
.exp-products {
  max-width: 1280px;
  margin: 0 auto;
}
.exp-product-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 6vw;
  align-items: center;
  padding: 88px 0;
  border-top: 1px solid rgba(42, 39, 32, 0.1);
}
.exp-product-section.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}
.exp-product-section.reverse .exp-prod-image {
  order: 2;
}
.exp-prod-image {
  height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0 25px 65px rgba(42, 39, 32, 0.12);
  border-radius: 4px;
  overflow: hidden;
}
.exp-prod-image img {
  width: 100%;
  display: block;
}
.exp-prod-image img.full-height-width {
  height: 100%;
  object-fit: fill;
}
.exp-prod-image .exp-label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: rgba(245, 240, 232, 0.94);
  padding: 11px 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--text2);
  font-family: var(--sans);
}
.exp-prod-copy h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 400;
  margin-bottom: 22px;
  color: var(--text);
  line-height: 1.14;
}
.exp-prod-copy p {
  font-size: 15.5px;
  color: var(--text2);
  margin: 0 0 16px;
  max-width: 740px;
  line-height: 1.85;
}
.exp-highlight {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
  margin: 20px 0 24px;
  max-width: 740px;
}
.exp-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}
.exp-info-card {
  background: rgba(255, 250, 243, 0.5);
  border: 1px solid rgba(42, 39, 32, 0.1);
  padding: 22px;
}
.exp-info-card h4 {
  margin: 0 0 11px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sand2);
  font-weight: 600;
  font-family: var(--sans);
}
.exp-info-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--text2);
  font-size: 13.5px;
}
.exp-info-card li {
  margin: 6px 0;
  padding-left: 14px;
  position: relative;
}
.exp-info-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--sand);
}
.exp-collections {
  background: var(--cream2);
  border-top: 1px solid rgba(42, 39, 32, 0.1);
  border-bottom: 1px solid rgba(42, 39, 32, 0.1);
}

/* Materials We Work With */
.exp-materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(42, 39, 32, 0.09);
  border: 1px solid rgba(42, 39, 32, 0.09);
  margin-top: 8px;
}
.exp-materials-card {
  background: var(--cream);
  padding: 34px 30px;
}
.exp-materials-card h4 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.25;
}
.exp-materials-card p {
  font-size: 14.5px;
  color: var(--text2);
  line-height: 1.75;
  margin: 0;
}
.exp-capacity-bar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 44px;
  padding: 36px var(--pad);
  background: var(--forest);
  border-radius: 4px;
}
.exp-capacity-num {
  font-family: var(--serif);
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  white-space: nowrap;
}
.exp-capacity-num span {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  font-weight: 400;
  margin-top: 8px;
}
.exp-capacity-bar p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.8);
  margin: 0;
  max-width: 640px;
}
@media (max-width: 900px) {
  .exp-materials-grid {
    grid-template-columns: 1fr;
  }
  .exp-capacity-bar {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 32px 28px;
  }
}
.exp-collection-head {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 6vw;
  align-items: end;
  margin-bottom: 44px;
}
.exp-collection-head h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.6vw, 58px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.1;
}
.exp-collection-head h2 em {
  font-style: italic;
}
.exp-collection-head p {
  color: var(--text2);
  font-size: 15.5px;
  margin: 0;
  line-height: 1.8;
}
.exp-collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.exp-collection-grid.three-card-option {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.exp-collection-card {
  min-height: 380px;
  background: var(--cream);
  border: 1px solid rgba(42, 39, 32, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.exp-collection-card .exp-pic {
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.exp-collection-card .exp-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.exp-collection-card:hover .exp-pic img {
  transform: scale(1.06);
}
.exp-collection-card .exp-copy {
  padding: 22px;
}
.exp-collection-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text);
}
.exp-collection-card p {
  margin: 0;
  color: var(--text3);
  font-size: 13.5px;
  line-height: 1.7;
}
.exp-material {
  position: relative;
  background: var(--forest);
  color: var(--cream);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 7vw;
  align-items: start;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.exp-material::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(28, 34, 22, 0.92) 0%,
    rgba(28, 34, 22, 0.8) 55%,
    rgba(28, 34, 22, 0.62) 100%
  );
  z-index: -1;
}
.exp-material h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.6vw, 58px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
}
.exp-material h2 em {
  font-style: italic;
}
.exp-material p {
  color: rgba(245, 240, 232, 0.7);
  font-size: 15.5px;
  margin: 0 0 22px;
  line-height: 1.85;
}
.exp-closing {
  text-align: center;
  padding: 86px var(--pad) 105px;
}
.exp-closing h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  max-width: 880px;
  margin: 0 auto 20px;
  color: var(--text);
  line-height: 1.16;
}
.exp-closing h2 em {
  font-style: italic;
}
.exp-closing p {
  color: var(--text2);
  font-size: 16px;
  margin: 0 auto;
  max-width: 680px;
  line-height: 1.8;
}
.exp-closing a {
  color: var(--text);
  border-bottom: 1px solid var(--text);
  font-weight: 500;
  text-decoration: none;
}
.exp-footer {
  background: var(--cream2);
  border-top: 1px solid rgba(42, 39, 32, 0.1);
  padding: 56px var(--pad) 28px;
}
.exp-footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.5fr;
  gap: 48px;
  margin-bottom: 44px;
}
.exp-footer-brand-name {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
}
.exp-footer-brand-name::before {
  content: "✦";
  color: var(--sand);
  font-size: 10px;
}
.exp-footer-brand p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text3);
  max-width: 200px;
}
.exp-footer-col h4 {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 14px;
  font-weight: 500;
}
.exp-footer-col ul {
  list-style: none;
}
.exp-footer-col ul li {
  margin-bottom: 9px;
}
.exp-footer-col ul li a {
  font-size: 13px;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.2s;
}
.exp-footer-col ul li a:hover {
  color: var(--text);
}
.exp-footer-col address {
  font-style: normal;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.75;
}
.exp-footer-col address a {
  color: var(--text2);
  text-decoration: none;
}
.exp-footer-col address a:hover {
  color: var(--text);
}
.exp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(42, 39, 32, 0.07);
  padding-top: 20px;
}
.exp-footer-bottom span {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--text3);
  text-transform: uppercase;
}
@media (max-width: 980px) {
  .exp-product-section,
  .exp-product-section.reverse {
    grid-template-columns: 1fr;
  }
  .exp-product-section.reverse .exp-prod-image {
    order: 0;
  }
  .exp-prod-image {
    height: 440px;
  }
  .exp-collection-head {
    grid-template-columns: 1fr;
  }
  .exp-collection-grid {
    grid-template-columns: 1fr 1fr;
  }
  .exp-material {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .exp-section {
    padding: 64px 24px;
  }
  .exp-product-section {
    padding: 56px 0;
  }
  .exp-info-grid,
  .exp-collection-grid {
    grid-template-columns: 1fr;
  }
  .exp-collection-grid.three-card-option {
    grid-template-columns: 1fr;
  }
  .exp-prod-image {
    height: auto;
  }
  .exp-prod-image img {
    height: auto;
  }
  .exp-collection-card .exp-pic {
    height: auto;
  }
  .exp-collection-card .exp-pic img {
    position: static;
    height: auto;
    object-fit: contain;
  }
  .exp-footer {
    padding: 44px 24px 24px;
  }
  .exp-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .exp-footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .os-copy {
    order: 1;
  }

  .os-img {
    order: 2;
  }
}

/* ════════════════════════════════════════════
   HOME PAGE — new flow sections
   ════════════════════════════════════════════ */
/* Hero banner slider (slow crossfade) */
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 2.2s ease,
    transform 7s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
/* Slides 1 & 3 — desktop backgrounds (mobile overridden below) */
.hero-slide--1 {
  background-image: url("../images/banner/bg1.jpg");
}
.hero-slide--3 {
  background-image: url("../images/banner/bg2.jpg");
}
@media (max-width: 768px) {
  .hero-slide--1 {
    background-image: url("../images/hero/mobile/1stslide.png");
  }
  .hero-slide--3 {
    background-image: url("../images/hero/mobile/3rdslide.png");
  }
}
.hero-slider-dots {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 28px;
  height: 2px;
  background: rgba(245, 240, 232, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}
.hero-dot.active {
  background: rgba(245, 240, 232, 0.9);
}

.home-intro {
  padding: 96px var(--pad) 88px;
  display: flex;
  align-items: center;
  gap: 56px;
  max-width: 1280px;
  margin: 0 auto;
}
.home-intro > div {
  width: 50%;
}
.home-intro .exp-intro-line {
  margin: 0;
  max-width: none;
  text-align: left;
}
.home-intro .exp-intro-line p {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}
.home-intro .img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(42, 39, 32, 0.12);
}
.home-intro .img img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 5/4;
  object-fit: cover;
}
.home-strengths {
  padding-top: 60px;
  padding-bottom: 60px;
}
.home-strengths .exp-collection-card p {
  font-size: 13.5px;
}
a.exp-collection-card {
  text-decoration: none;
  color: inherit;
  display: flex;
}
.home-expect {
  background: var(--cream);
}
.home-expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(42, 39, 32, 0.09);
}
.home-expect-grid .cq-dis-item {
  background: var(--cream);
}
.home-explore {
  padding-bottom: 110px;
}
.home-explore .exp-intro-line {
  margin-bottom: 52px;
}
.exp-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text2);
  font-family: var(--sans);
}
.exp-card-link::after {
  content: "→";
  font-size: 11px;
  transition: transform 0.25s;
}
.exp-collection-card:hover .exp-card-link::after {
  transform: translateX(4px);
}
@media (max-width: 1100px) {
  .home-expect-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 980px) {
  .home-intro {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .home-intro {
    padding: 64px 24px 56px;
    flex-direction: column;
    gap: 36px;
  }
  .home-intro > div {
    width: 100%;
  }
  .home-intro .img img {
    aspect-ratio: 16/10;
  }
  .home-expect-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════
   CRAFT-NEW PAGE (alternate product-expertise layout)
   ════════════════════════════════════════════ */
.cqn-header {
  padding: 132px var(--pad) 52px;
  max-width: 1280px;
  margin: 0 auto;
}
.cqn-eyebrow {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 20px;
  font-family: var(--sans);
}
.cqn-page-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 32px;
}
.cqn-page-title em {
  font-style: italic;
  font-weight: 400;
}
.cqn-header-body {
  margin-bottom: 36px;
}
.cqn-desc {
  font-size: 17.5px;
  line-height: 1.85;
  color: var(--text2);
  margin-bottom: 12px;
}
.cqn-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(42, 39, 32, 0.22);
  padding-bottom: 3px;
  transition: border-color 0.2s;
}
.cqn-explore-link:hover {
  border-color: var(--text);
}
.cqn-explore-link::after {
  content: "→";
}
.cqn-intro-band {
  border-top: 1px solid rgba(42, 39, 32, 0.1);
  border-bottom: 1px solid rgba(42, 39, 32, 0.1);
  padding: 48px var(--pad);
  max-width: 100%;
}
.cqn-intro-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
}
.cqn-intro-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.18;
  color: var(--text);
}
.cqn-intro-heading em {
  font-style: italic;
}
.cqn-intro-body {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text2);
}
.cqn-products {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.cqn-product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(42, 39, 32, 0.1);
  padding: 80px 0;
  align-items: center;
}
.cqn-product-row.alt .cqn-prod-img {
  order: 2;
}
.cqn-product-row.alt .cqn-prod-copy {
  order: 1;
  padding-right: 64px;
  padding-left: 0;
}
.cqn-prod-img {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: var(--cream2);
}
.cqn-prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3/4;
  transition: transform 0.8s ease;
}
.cqn-product-row:hover .cqn-prod-img img {
  transform: scale(1.04);
}
.cqn-prod-img-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(245, 240, 232, 0.9);
  backdrop-filter: blur(6px);
  padding: 7px 16px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text2);
  border-radius: 100px;
  font-family: var(--sans);
}
.cqn-prod-img-num {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text2);
  font-family: var(--sans);
}
.cqn-prod-copy {
  padding-left: 64px;
}
.cqn-prod-tag {
  display: inline-block;
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text3);
  border: 1px solid rgba(42, 39, 32, 0.18);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  font-family: var(--sans);
}
.cqn-prod-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 20px;
}
.cqn-prod-highlight {
  font-family: var(--serif);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--text2);
  margin-bottom: 22px;
  border-left: 2px solid var(--sand);
  padding-left: 18px;
}
.cqn-prod-body {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--text2);
  margin-bottom: 14px;
}
.cqn-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(42, 39, 32, 0.09);
  margin-top: 28px;
}
.cqn-info-card {
  background: var(--cream);
  padding: 24px 20px;
}
.cqn-info-card h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 12px;
  font-family: var(--sans);
}
.cqn-info-card ul {
  list-style: none;
  padding: 0;
}
.cqn-info-card ul li {
  font-size: 13.5px;
  color: var(--text2);
  padding: 5px 0;
  border-bottom: 1px solid rgba(42, 39, 32, 0.06);
  line-height: 1.5;
  display: flex;
}
.cqn-info-card ul li:last-child {
  border-bottom: none;
}
.cqn-info-card ul li::before {
  content: "—";
  margin-right: 8px;
  color: var(--sand);
  font-size: 11px;
}
.cqn-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.cqn-tag {
  border: 1px solid rgba(42, 39, 32, 0.16);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text2);
  font-family: var(--sans);
  background: rgba(245, 240, 232, 0.5);
}
.cqn-stats-row {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px var(--pad) 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(42, 39, 32, 0.1);
}
.cqn-stat-item {
  padding-right: 32px;
}
.cqn-stat-val {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1;
  color: var(--text);
  margin-bottom: 8px;
}
.cqn-stat-unit {
  font-size: 0.55em;
  font-family: var(--sans);
  vertical-align: super;
}
.cqn-stat-label {
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text3);
  font-family: var(--sans);
}
.cqn-collections {
  background: var(--cream2);
  padding: 80px var(--pad);
}
.cqn-collections-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.cqn-col-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 48px;
}
.cqn-col-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text);
}
.cqn-col-heading em {
  font-style: italic;
}
.cqn-col-subtext {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--text2);
}
.cqn-col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(42, 39, 32, 0.09);
}
.cqn-col-card {
  background: var(--cream);
  overflow: hidden;
}
.cqn-col-card-img {
  height: 260px;
  overflow: hidden;
  background: var(--cream3);
}
.cqn-col-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.cqn-col-card:hover .cqn-col-card-img img {
  transform: scale(1.05);
}
.cqn-col-card-body {
  padding: 24px 22px 28px;
}
.cqn-col-card-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}
.cqn-col-card-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text3);
}
.cqn-col-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.cqn-col-pill {
  border: 1px solid rgba(42, 39, 32, 0.16);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text2);
  font-family: var(--sans);
}
.cqn-material {
  background: var(--forest);
  padding: 80px var(--pad);
}
.cqn-material-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.cqn-mat-eyebrow {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
  font-family: var(--sans);
}
.cqn-mat-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--cream);
}
.cqn-mat-heading em {
  font-style: italic;
}
.cqn-mat-body {
  font-size: 16.5px;
  line-height: 1.85;
  color: rgba(245, 240, 232, 0.68);
  margin-bottom: 20px;
}
.cqn-mat-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cqn-mat-pill {
  border: 1px solid rgba(245, 240, 232, 0.22);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.82);
  font-family: var(--sans);
}
.cqn-closing {
  padding: 100px var(--pad);
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.cqn-closing-eyebrow {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 24px;
  font-family: var(--sans);
}
.cqn-closing-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text);
  max-width: 860px;
  margin: 0 auto 28px;
}
.cqn-closing-heading em {
  font-style: italic;
}
.cqn-closing-body {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text2);
  max-width: 640px;
  margin: 0 auto 36px;
}
.cqn-closing-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(42, 39, 32, 0.22);
  padding-bottom: 3px;
  transition: border-color 0.2s;
}
.cqn-closing-link:hover {
  border-color: var(--text);
}
.cqn-closing-link::after {
  content: "→";
}
.cqn-img-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.cqn-img-row-item {
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream2);
}
.cqn-img-row-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.cqn-img-row-item:hover img {
  transform: scale(1.04);
}
.cqn-footer {
  background: var(--cream2);
  border-top: 1px solid rgba(42, 39, 32, 0.1);
  padding: 56px var(--pad) 28px;
}
.cqn-footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.5fr;
  gap: 48px;
  margin-bottom: 44px;
}
.cqn-footer-brand-name {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
}
.cqn-footer-brand-name::before {
  content: "✦";
  color: var(--sand);
  font-size: 10px;
}
.cqn-footer-brand p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text3);
  max-width: 200px;
}
.cqn-footer-col h4 {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 14px;
  font-weight: 500;
}
.cqn-footer-col ul {
  list-style: none;
}
.cqn-footer-col ul li {
  margin-bottom: 9px;
}
.cqn-footer-col ul li a {
  font-size: 13px;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.2s;
}
.cqn-footer-col ul li a:hover {
  color: var(--text);
}
.cqn-footer-col address {
  font-style: normal;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.75;
}
.cqn-footer-col address a {
  color: var(--text2);
  text-decoration: none;
}
.cqn-footer-col address a:hover {
  color: var(--text);
}
.cqn-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(42, 39, 32, 0.07);
  padding-top: 20px;
}
.cqn-footer-bottom span {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--text3);
  text-transform: uppercase;
}

.image-object-center{
  object-position: center;
}
@media (max-width: 1100px) {
  .cqn-intro-inner {
    gap: 40px;
  }
  .cqn-material-inner {
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .cqn-page-title {
    font-size: clamp(34px, 9vw, 52px);
  }
  .cqn-intro-inner {
    grid-template-columns: 1fr;
  }
  .cqn-product-row {
    grid-template-columns: 1fr;
    padding: 48px 0;
  }
  .cqn-product-row.alt .cqn-prod-img {
    order: 0;
  }
  .cqn-product-row.alt .cqn-prod-copy {
    order: 1;
    padding-right: 0;
  }
  .cqn-prod-copy {
    padding-left: 0;
    padding-top: 28px;
  }
  .cqn-prod-img img {
    aspect-ratio: 16/10;
  }
  .cqn-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .cqn-stat-item {
    padding-right: 0;
  }
  .cqn-col-head {
    grid-template-columns: 1fr;
  }
  .cqn-col-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cqn-material-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cqn-img-row {
    grid-template-columns: 1fr;
  }
  .cqn-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cqn-footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .cqn-info-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .cqn-col-grid {
    grid-template-columns: 1fr;
  }
  .cqn-stats-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ════════════════════════════════════════════
   OUR STORY PAGE
   ════════════════════════════════════════════ */
.os-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  background: var(--cream);
  margin-top: 112px;
}
.os-hero-text {
  padding: 56px var(--pad) 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  margin-left: auto;
}
.os-hero h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 400;
  line-height: 1;
  color: var(--text);
  margin-bottom: 16px;
}
.os-hero-sub {
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--sand2);
  margin-bottom: 30px;
}
.os-hero-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text2);
}
.os-hero-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream2);
}
.os-hero-img img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.os-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--cream);
}
.os-row:nth-of-type(even) {
  background: var(--cream2);
}
.os-img {
  position: relative;
  overflow: hidden;
  background: var(--cream3);
  min-height: 400px;
}
.os-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s ease;
}
.os-row:hover .os-img img {
  transform: scale(1.04);
}
.os-copy {
  padding: 58px var(--pad);
  max-width: 640px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.os-row:not(.reverse) .os-copy {
  margin-right: auto;
}
.os-row.reverse .os-img {
  order: 2;
}
.os-row.reverse .os-copy {
  order: 1;
  margin-left: auto;
}
.os-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(184, 169, 138, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.os-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--forest);
  fill: none;
  stroke-width: 1.5;
}
.os-copy h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.os-rule {
  width: 56px;
  height: 2px;
  background: var(--sand);
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}
.os-copy p {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--text2);
  position: relative;
  z-index: 1;
}
.os-lead {
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text) !important;
  margin-bottom: 14px;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.os-icon.solid {
  background: var(--forest);
}
.os-icon.solid svg {
  stroke: var(--cream);
}
.os-botanical {
  position: absolute;
  top: 40px;
  right: 24px;
  width: 150px;
  height: auto;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.os-botanical path {
  stroke: var(--sand);
  stroke-width: 1;
  fill: none;
}

.os-closing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--cream2);
  border-top: 1px solid rgba(42, 39, 32, 0.08);
}
.os-closing-text {
  padding: 60px var(--pad);
  display: flex;
  gap: 26px;
  align-items: center;
  max-width: 660px;
  margin-left: auto;
}
.os-closing-text .os-icon {
  flex-shrink: 0;
  background: rgba(184, 169, 138, 0.16);
  margin-bottom: 0;
}
.os-closing-text p {
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 26px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text2);
}
.os-closing-img {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  min-height: 240px;
}
.os-closing-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1280px) {
  .os-hero {
    grid-template-columns: 1fr;
  }
  .os-hero-text {
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 900px) {
  .os-hero {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }
  .os-hero-text {
    padding: 64px 24px 40px;
    max-width: none;
    margin: 0;
  }
  .os-hero-img {
    min-height: auto;
  }
  .os-row,
  .os-closing {
    grid-template-columns: 1fr;
  }
  /*.os-row.reverse .os-img{order:0;}*/
  /*.os-row.reverse .os-copy{order:0;}*/
  .os-copy {
    padding: 48px 24px;
    max-width: none;
    margin: 0;
  }
  .os-img {
    min-height: 300px;
  }
  .os-botanical {
    display: none;
  }
  .os-closing-text {
    padding: 44px 24px;
    margin: 0;
  }
  .os-closing-img {
    min-height: 220px;
  }
}

/* ════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════ */
.ct-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px var(--pad) 100px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: start;
}
.ct-info h2,
.ct-form-wrap h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 30px;
}
.ct-detail {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(42, 39, 32, 0.1);
}
.ct-detail:last-of-type {
  border-bottom: none;
}
.ct-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand2);
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--sans);
}
.ct-value {
  font-size: 17px;
  color: var(--text);
  line-height: 1.55;
}
.ct-value a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.ct-value a:hover {
  color: var(--sand2);
}
.ct-note {
  margin-top: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--text2);
}
.ct-image {
  margin-top: 34px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(42, 39, 32, 0.08);
}
.ct-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── THANK YOU PAGE ─── */
.ty-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 190px var(--pad) 150px;
  text-align: center;
}
.ty-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(45, 54, 40, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 34px;
}
.ty-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--forest);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ty-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand2);
  margin-bottom: 18px;
  font-weight: 600;
  font-family: var(--sans);
}
.ty-title {
  font-family: var(--serif);
  font-size: clamp(44px, 6.5vw, 78px);
  font-weight: 400;
  line-height: 1.04;
  color: var(--text);
  margin-bottom: 22px;
}
.ty-body {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto 38px;
}
.ty-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.ty-btn {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 34px;
  text-decoration: none;
  transition: all 0.25s;
  font-family: var(--sans);
}
.ty-btn-primary {
  background: var(--forest);
  color: var(--cream);
  border: 1.5px solid var(--forest);
}
.ty-btn-primary:hover {
  background: transparent;
  color: var(--forest);
}
.ty-btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid rgba(42, 39, 32, 0.25);
}
.ty-btn-ghost:hover {
  border-color: var(--forest);
}
@media (max-width: 768px) {
  .ty-wrap {
    padding: 140px 24px 90px;
  }
}

.ct-form-wrap {
  background: var(--cream2);
  border: 1px solid rgba(42, 39, 32, 0.1);
  padding: 44px;
  border-radius: 6px;
}
.ct-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 20px;
}
.ct-field {
  display: flex;
  flex-direction: column;
}
.ct-field.full {
  grid-column: 1 / -1;
}
.ct-field label {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text2);
  font-weight: 500;
  margin-bottom: 9px;
  font-family: var(--sans);
}
.ct-field input,
.ct-field select,
.ct-field textarea {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  background: var(--cream);
  border: 1px solid rgba(42, 39, 32, 0.18);
  padding: 12px 14px;
  border-radius: 4px;
  transition: border-color 0.2s;
  width: 100%;
}
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  outline: none;
  border-color: var(--forest);
}
.ct-field textarea {
  resize: vertical;
  min-height: 120px;
}
.ct-submit {
  grid-column: 1 / -1;
  margin-top: 6px;
}
.ct-submit button {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 15px 42px;
  background: var(--forest);
  color: var(--cream);
  border: 1.5px solid var(--forest);
  cursor: pointer;
  transition: all 0.25s;
}
.ct-submit button:hover {
  background: transparent;
  color: var(--forest);
}
.ct-privacy {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--text3);
  margin-top: 2px;
}
.ct-success {
  grid-column: 1 / -1;
  display: none;
  padding: 22px 24px;
  background: rgba(45, 54, 40, 0.06);
  border: 1px solid rgba(45, 54, 40, 0.22);
  border-radius: 5px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--forest);
}
@media (max-width: 900px) {
  .ct-main {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-bottom: 72px;
  }
  .ct-form-wrap {
    padding: 32px 24px;
  }
}
@media (max-width: 560px) {
  .ct-form {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════
   SITE FOOTER (shared across all pages)
   ════════════════════════════════════════════ */
.site-footer {
  background: var(--cream2);
  border-top: 1px solid rgba(42, 39, 32, 0.1);
  padding: 64px var(--pad) 28px;
}
.site-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 44px;
}
.site-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 18px;
}
.site-footer-logo img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}
.site-footer-logo span {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text);
}
.site-footer-brand p {
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--text3);
  max-width: 300px;
}
.site-footer-col h4 {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 16px;
  font-weight: 600;
}
.site-footer-col ul {
  list-style: none;
}
.site-footer-col ul li {
  margin-bottom: 10px;
}
.site-footer-col ul li a {
  font-size: 13px;
  color: var(--text3);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer-col ul li a:hover {
  color: var(--text);
}
.site-footer-col address {
  font-style: normal;
  font-size: 13px;
  color: var(--text3);
  line-height: 1.95;
}
.site-footer-col address a {
  color: var(--text3);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer-col address a:hover {
  color: var(--text);
}
.site-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(42, 39, 32, 0.08);
  padding-top: 24px;
}
.site-footer-bottom span {
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--text3);
}
@media (max-width: 900px) {
  .site-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 600px) {
  .site-footer {
    padding: 48px 24px 24px;
  }
  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .site-footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
