/* ============================================
   MEUBLES CIANO — Homepage Styles
   ============================================ */

/* ============================================
   PAGE LOADER
   ============================================ */
html.loader-skip .page-loader { display: none !important; }

body.loading { overflow: hidden; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0c0906;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: all;
}

/* Film grain texture */
.page-loader::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  mix-blend-mode: overlay;
  opacity: 0.45;
  pointer-events: none;
}

/* Subtle vignette */
.page-loader::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.loader-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.loader-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.65);
  opacity: 0;
  animation: loaderFadeUp 0.7s ease 0.2s forwards;
}

.loader-logo-img {
  height: clamp(60px, 10vw, 120px);
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0;
  animation: loaderFadeUp 1s ease 0.4s forwards;
}

.loader-divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.5), transparent);
  opacity: 0;
  animation: loaderFadeIn 0.8s ease 0.7s forwards;
}

.loader-progress-wrap {
  width: 220px;
  height: 1px;
  background: rgba(201, 169, 110, 0.12);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: loaderFadeIn 0.6s ease 0.85s forwards;
}

.loader-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to right, rgba(201, 169, 110, 0.5), #c9a96e);
  animation: loaderBarFill 1.9s cubic-bezier(0.4, 0, 0.15, 1) 1s forwards;
}

/* Travelling shimmer on bar */
.loader-progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  right: -30px;
  width: 30px;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.7), transparent);
  animation: loaderShimmer 1.9s cubic-bezier(0.4, 0, 0.15, 1) 1s forwards;
}

.loader-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.35);
  opacity: 0;
  animation: loaderFadeIn 0.8s ease 1.1s forwards;
}

/* Exit — full panel slides upward */
.page-loader.exit {
  transform: translateY(-100%);
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

.page-loader.hidden { display: none; }

@keyframes loaderFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes loaderBarFill {
  0%   { width: 0; }
  100% { width: 100%; }
}

@keyframes loaderShimmer {
  0%   { right: 100%; }
  100% { right: -30px; }
}

/* ============================================
   PLACEHOLDERS (remove once real photos added)
   ============================================ */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ddd5c8 0%, #e8e0d4 50%, #ddd5c8 100%);
  position: relative;
}

.img-placeholder::after {
  content: 'Photo Coming Soon';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.25);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 115vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-clip-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  will-change: clip-path;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: fixed;
  top: var(--nav-height);
  left: 60px;
  right: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5) 20%, rgba(255, 255, 255, 0.5) 80%, transparent);
  z-index: 3;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.nav.scrolled ~ .hero::before {
  opacity: 0;
}

.hero-bg {
  position: absolute;
  inset: -20%;
  top: -20%;
  z-index: 0;
  will-change: transform;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201, 169, 110, 0.08);
  mix-blend-mode: color;
  pointer-events: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video hero */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(90%) brightness(0.5);
}

/* Film grain overlay — artisanal texture */
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  mix-blend-mode: overlay;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      100deg,
      rgba(12, 8, 4, 0.4) 0%,
      transparent 60%
    );
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201, 169, 110, 0.08);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-scroll-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
  pointer-events: none;
}

.hero-scroll-bar-fill {
  height: 100%;
  width: 0%;
  background: #c9a96e;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-text {
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.8rem, 7vw, 6.5rem);
  font-weight: 400;
  font-style: italic;
  color: #f5f0e8;
  line-height: 0.85;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: #c9a96e;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin: 32px auto 0;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}

.hero-divider-line {
  display: block;
  width: 200px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.5), transparent);
}

.hero-desc {
  margin: 32px 0 0;
  font-size: 1.1rem;
  color: rgba(245, 240, 232, 0.9);
  max-width: 520px;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-align: left;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}

.btn-quote-hero {
  color: #1a1410 !important;
  border: 1px solid #c9a96e !important;
  background: #c9a96e !important;
}

.btn-quote-hero:hover {
  background: #b8956a !important;
  border-color: #b8956a !important;
}

.hero-actions .btn-primary {
  background: rgba(255, 255, 255, 0.92);
  color: #1a1410;
}

.hero-actions .btn-primary:hover {
  background: #ffffff;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: #f5f0e8;
  letter-spacing: 0.08em;
}

.hero-stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(245, 240, 232, 0.2);
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero-tagline-strip {
  position: absolute;
  bottom: 15vh;
  left: 0;
  right: 0;
  z-index: 2;
  overflow: hidden;
  padding: 20px 0;
  opacity: 1;
}

.hero-tagline-strip .marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 300s linear infinite;
}

.hero-tagline-strip .marquee-content {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-shadow: none;
  white-space: nowrap;
}

.hero-strip-dot {
  color: rgba(0, 0, 0, 0.5);
  opacity: 0.75;
  letter-spacing: 0;
}

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 0.8s ease 1.4s forwards;
}

.hero-scroll span {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, #c9a96e, transparent);
  animation: lineGrow 1.5s ease 1.6s infinite;
}

/* ============================================
   INTRO
   ============================================ */
.intro {
  background: var(--intro-bg);
}

.intro .section-subtitle {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.025em;
}

/* 5: Background watermark */
.intro-left {
  position: relative;
}

.intro-left::before {
  content: 'Ciano';
  position: absolute;
  top: -80px;
  left: -30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 240px;
  font-weight: 300;
  color: var(--color-accent);
  opacity: 0.025;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.intro-left > * {
  position: relative;
  z-index: 1;
}

/* 3: Pull Quote */
.intro-pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--color-accent);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  padding-left: 1.1rem;
  border-left: 1px solid var(--color-accent);
  opacity: 0.9;
}

/* 2: Philosophy Pillars */
.intro-pillars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  margin-bottom: 32px;
}

.intro-pillar {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.intro-pillar::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  position: relative;
  top: -2px;
}

.intro-pillar-title {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-white);
  min-width: 115px;
}

.intro-pillar-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 300;
}

/* 1: Stats Row */
.intro-stats {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  margin-bottom: 8px;
  border-top: 1px solid var(--color-border);
}

.intro-stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
}

.intro-stat-label {
  display: block;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 6px;
}

/* 4: CTA + Signature */
.intro-cta .btn-primary {
  background: #c9a96e;
  color: #2c2318;
}

.intro-cta .btn-primary:hover {
  background: #b8956a;
}

.intro-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.intro-signature {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--color-text-muted);
}


.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 80px;
  align-items: start;
}

/* Gallery CTA below the accordion on the right */
.intro-right-cta {
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
  margin-top: 4px;
}

.value-acc-light .value-acc:last-child {
  border-bottom: none;
}

.intro-image-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 0.65fr;
  gap: 14px;
  height: 580px;
}

.intro-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

/* Vignette + artisanal warm amber overlay on all images */
.intro-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(10, 6, 2, 0.45) 100%),
    linear-gradient(160deg, rgba(180, 110, 30, 0.18) 0%, rgba(120, 60, 10, 0.22) 100%);
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
}

/* Inset gold frame on primary image only */
.intro-img-1::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 169, 110, 0.5);
  border-radius: 6px;
  z-index: 2;
  pointer-events: none;
  transition: opacity var(--transition);
}

.intro-img-1:hover::after {
  opacity: 0.7;
}

.intro-img img,
.intro-img .img-placeholder {
  width: 100%;
  height: 125%;        /* oversized so the parallax drift has room */
  object-fit: cover;
  display: block;
  position: relative;
  top: -12.5%;         /* re-centre the taller image in the card */
}


.intro-img-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.intro-img-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.intro-img-3 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.intro-img-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(44, 35, 24, 0.85);
  background: rgba(247, 242, 234, 0.65);
  border-radius: 3px;
  padding: 5px 10px;
  backdrop-filter: blur(12px);
  z-index: 3;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-item:hover .featured-img img {
  transform: scale(1.04);
}

/* ============================================
   FEATURED WORK
   ============================================ */
.featured {
  background: var(--featured-bg);
}

.featured .project-card,
.featured .project-featured-info {
  background: var(--featured-cards-bg);
}

.featured .project-card:hover {
  background: var(--featured-cards-bg);
}

.featured-header {
  margin-bottom: 60px;
}

.featured-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}

.featured-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.featured-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.featured-item-large .featured-img {
  height: 560px;
}

.featured-col .featured-img {
  height: 270px;
}

.featured-img {
  overflow: hidden;
  border-radius: 4px;
}

.featured-img img,
.featured-img .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-placeholder-1 {
  background: linear-gradient(135deg, #d8d0c4 0%, #e2d8c8 50%, #d5cdbf 100%);
}

.featured-placeholder-2 {
  background: linear-gradient(135deg, #d4cec6 0%, #ddd6ca 50%, #d0c9be 100%);
}

.featured-placeholder-3 {
  background: linear-gradient(135deg, #d6d0c6 0%, #dfd8cc 50%, #d2cbbf 100%);
}

.featured-item:hover .featured-img img,
.featured-item:hover .featured-img .img-placeholder {
  transform: scale(1.04);
}

.featured-info {
  padding: 20px 0 8px;
}

.featured-category {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.featured-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 200;
  color: var(--color-white);
  margin-top: 6px;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

/* Artisanal image overlays — warm amber tint + vignette */
.featured .project-featured-img,
.featured .project-card-img {
  position: relative;
}

.featured .project-featured-img::after,
.featured .project-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(10, 6, 2, 0.45) 100%),
    linear-gradient(160deg, rgba(180, 110, 30, 0.18) 0%, rgba(120, 60, 10, 0.22) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

/* ============================================
   PROCESS BRIEF
   ============================================ */
.process-brief {
  background: var(--process-bg);
  padding: 160px 0;
  position: relative;
  background-image:
    linear-gradient(rgba(107, 78, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 78, 42, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}


.process-brief-left {
  position: relative;
}

.process-brief-left::before {
  content: 'Craft';
  position: absolute;
  top: -80px;
  left: -30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 240px;
  font-weight: 300;
  color: var(--color-accent);
  opacity: 0.025;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.process-brief-left > * {
  position: relative;
  z-index: 1;
}

.process-brief-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--color-accent);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  padding-left: 1.1rem;
  border-left: 1px solid var(--color-accent);
  opacity: 0.85;
}

.process-brief-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
  margin-bottom: 40px;
}

.process-brief-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.process-brief-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
}

.process-brief-stat-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.process-brief-stat-sep {
  width: 1px;
  height: 36px;
  background: var(--color-border);
  flex-shrink: 0;
}

.process-brief-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

/* Architectural sheet header / footer bars */
.process-brief-sheet-header,
.process-brief-sheet-footer {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
}

.process-brief-sheet-header {
  top: 0;
  border-bottom: 1px solid rgba(107, 78, 42, 0.18);
}

.process-brief-sheet-footer {
  bottom: 0;
  border-top: 1px solid rgba(107, 78, 42, 0.18);
}

/* Corner registration marks — top-left & top-right */
.process-brief-sheet-header::before,
.process-brief-sheet-header::after {
  content: '';
  position: absolute;
  top: -1px;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--color-accent);
  opacity: 0.5;
}
.process-brief-sheet-header::before { left: -1px;  border-left: 2px solid var(--color-accent); }
.process-brief-sheet-header::after  { right: -1px; border-right: 2px solid var(--color-accent); }

/* Corner registration marks — bottom-left & bottom-right */
.process-brief-sheet-footer::before,
.process-brief-sheet-footer::after {
  content: '';
  position: absolute;
  bottom: -1px;
  width: 14px;
  height: 14px;
  border-bottom: 2px solid var(--color-accent);
  opacity: 0.5;
}
.process-brief-sheet-footer::before { left: -1px;  border-left: 2px solid var(--color-accent); }
.process-brief-sheet-footer::after  { right: -1px; border-right: 2px solid var(--color-accent); }

.psf-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-accent);
  opacity: 0.75;
}

.psf-ref {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  opacity: 0.6;
}

.psf-note {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  font-style: italic;
  color: var(--color-text-muted);
  opacity: 0.55;
}

.psf-sheet {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  opacity: 0.55;
}

.process-brief-steps {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}

.process-step {
  display: flex;
  align-items: stretch;
  gap: 24px;
  cursor: default;
}

.process-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 52px;
}

.process-num-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px dashed rgba(107, 78, 42, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  background: rgba(247, 242, 234, 0.7);
  position: relative;
}

.process-icon {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
  opacity: 0.8;
  flex-shrink: 0;
}

.process-step-connector {
  width: 1px;
  flex: 1;
  min-height: 16px;
  background: linear-gradient(to bottom, rgba(107, 78, 42, 0.35), transparent);
  margin-top: 8px;
}

.process-step:last-child .process-step-connector {
  display: none;
}

.process-step-right {
  flex: 1;
  padding-bottom: 46px;
  padding-left: 4px;
}

.process-step:last-child .process-step-right {
  padding-bottom: 0;
}

.process-step-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 300;
  color: #1a100a;
  line-height: 1.2;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  padding-bottom: 12px;
  position: relative;
}

.process-step-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 1px;
  transform: scaleY(0.9);
  transform-origin: bottom;
  background: linear-gradient(to right, rgba(107, 78, 42, 0.35), transparent);
}

.process-step-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.cta-band-actions .btn-primary {
  background: #c9a96e;
  color: #2c2318;
}

.cta-band-actions .btn-primary:hover {
  background: #b8956a;
  color: #2c2318;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: var(--cta-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  padding: 72px 0;
}


.cta-band-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.cta-band-text {
  flex: 1;
  min-width: 0;
}

.cta-band-text .section-label {
  margin-bottom: 20px;
  display: block;
}

.cta-band-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--color-white);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.cta-band-title em {
  font-style: italic;
  color: var(--color-accent);
}

.cta-band-divider {
  width: 56px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-accent), transparent);
  opacity: 0.5;
  margin: 28px auto;
}

.cta-band-sub {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.9;
  max-width: 520px;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 36px;
}

.cta-band-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
  min-width: 240px;
}

.cta-band-contact-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  opacity: 0.7;
  margin-bottom: 4px;
}

.cta-band-contact-item {
  font-family: var(--font-sans);
  font-size: 0.975rem;
  font-weight: 300;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.cta-band-contact-item:hover {
  color: var(--color-accent);
}

.cta-band-sep {
  width: 100%;
  height: 1px;
  background: var(--color-border);
  margin: 8px 0;
}

.cta-band-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  opacity: 0.65;
}

.cta-band-dot {
  opacity: 0.5;
}

/* ============================================
   HOME COLLECTIONS
   ============================================ */
.home-collections {
  background: #f7f2ea;
  padding-top: 160px;
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
}

.home-collections .container {
  padding-bottom: 64px;
}

.home-col-header-block {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
  position: relative;
}

.home-col-header-accent-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  border-top: 1px solid var(--color-accent);
  border-right: 1px solid var(--color-accent);
  opacity: 0.4;
  pointer-events: none;
}

.home-col-header-accent-corner--tl {
  right: auto;
  left: 0;
  border-right: none;
  border-left: 1px solid var(--color-accent);
}

.home-col-header-text {
  display: flex;
  flex-direction: column;
  max-width: 580px;
  position: relative;
}

.home-col-header-text::before {
  content: 'Bespoke';
  position: absolute;
  top: -60px;
  left: -30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 240px;
  font-weight: 300;
  color: var(--color-accent);
  opacity: 0.025;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

.home-col-header-block .section-label {
  margin-bottom: 1rem;
}

.home-col-header-block .section-title {
  margin-bottom: 0;
}

.home-col-header-divider {
  margin: 28px 0 22px;
}

.home-col-header-divider-line {
  display: block;
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.6), transparent);
}

.home-col-header-sub {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.025em;
}

.home-col-header-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  flex-shrink: 0;
}

.home-col-count {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  opacity: 0.65;
}

.home-col-view-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid rgba(44, 35, 24, 0.45);
  padding: 15px 30px;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.home-col-view-all:hover {
  background: var(--color-text);
  color: #f7f2ea;
  border-color: var(--color-text);
}

.home-col-view-all svg {
  transition: transform 0.3s ease;
}

.home-col-view-all:hover svg {
  transform: translateX(4px);
}



.home-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  line-height: 0;
  font-size: 0;
}

.home-col-grid--single {
  grid-template-columns: 1fr;
}

.home-col-panel {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

/* All-four-corner bracket accent */
.home-col-panel::before {
  content: '';
  position: absolute;
  inset: 28px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.5s ease, transform 0.5s ease;
  background:
    /* top-left */
    linear-gradient(to right,  rgba(201, 169, 110, 0.65) 1px, transparent 1px) top left  / 40px 40px no-repeat,
    linear-gradient(to bottom, rgba(201, 169, 110, 0.65) 1px, transparent 1px) top left  / 40px 40px no-repeat,
    /* top-right */
    linear-gradient(to left,   rgba(201, 169, 110, 0.65) 1px, transparent 1px) top right / 40px 40px no-repeat,
    linear-gradient(to bottom, rgba(201, 169, 110, 0.65) 1px, transparent 1px) top right / 40px 40px no-repeat,
    /* bottom-left */
    linear-gradient(to right,  rgba(201, 169, 110, 0.65) 1px, transparent 1px) bottom left  / 40px 40px no-repeat,
    linear-gradient(to top,    rgba(201, 169, 110, 0.65) 1px, transparent 1px) bottom left  / 40px 40px no-repeat,
    /* bottom-right */
    linear-gradient(to left,   rgba(201, 169, 110, 0.65) 1px, transparent 1px) bottom right / 40px 40px no-repeat,
    linear-gradient(to top,    rgba(201, 169, 110, 0.65) 1px, transparent 1px) bottom right / 40px 40px no-repeat;
}

.home-col-panel:hover::before {
  opacity: 1;
  transform: scale(1);
}

.home-col-img {
  position: absolute;
  inset: 0;
}

.home-col-img img {
  width: 100%;
  height: 125%;
  object-fit: cover;
  position: relative;
  top: -12.5%;
}



.home-col-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(10, 8, 6, 0.82) 0%,
      rgba(10, 8, 6, 0.18) 48%,
      rgba(10, 8, 6, 0.04) 100%
    );
}

.home-col-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 52px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-col-panel:hover .home-col-info {
  transform: translateY(-8px);
}

.home-col-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.home-col-num {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #c9a96e;
}

.home-col-tag {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 224, 214, 0.75);
}

.home-col-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  color: #f5f0e8;
  line-height: 1.05;
  letter-spacing: 0;
}

.home-col-desc {
  font-size: 0.875rem;
  color: rgba(232, 224, 214, 0.80);
  line-height: 1.75;
  max-width: 340px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}

.home-col-panel:hover .home-col-desc {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SELECTED WORK — Collections-style layout
   ============================================ */
.project-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  margin-bottom: 24px;
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.project-featured-img {
  height: 560px;
  overflow: hidden;
  border-radius: 4px;
}

.project-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-featured:hover .project-featured-img img {
  transform: scale(1.04);
}

.project-featured-info {
  padding: 60px 56px;
  background: var(--featured-cards-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.project-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 100;
  color: var(--color-accent);
  opacity: 0.15;
  line-height: 1;
}

.project-tag {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.project-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 200;
  color: var(--color-white);
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.project-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.85;
}

.project-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.project-meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.project-meta-label {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  flex-shrink: 0;
}

.project-meta-value {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-align: right;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
}

.featured-project-grid {
  grid-template-columns: repeat(2, 1fr);
}

.project-card {
  background: var(--featured-cards-bg);
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition);
}

.project-card:hover {
  background: #d5cfc4;
}

.project-card-img {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:hover .project-card-img img {
  transform: scale(1.06);
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,12,10,0.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.project-card:hover .project-card-overlay {
  opacity: 1;
}

.project-card-tag {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 6px;
  display: block;
}

.project-card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 200;
  color: var(--color-white);
  letter-spacing: 0.04em;
}

.project-card-info {
  padding: 32px 36px 36px;
}

.project-card-title-below {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 200;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.project-card-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

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

.project-card-tags span {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: rgba(0,0,0,0.05);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 5px 10px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes slowZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.1); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes lineGrow {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

/* ============================================
   PHILOSOPHY + VALUES MERGED — Homepage
   ============================================ */

/* Stats strip below the pillars */
.intro-values-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 0;
  margin-bottom: 32px;
  padding-top: 0;
}

.intro-val-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.intro-val-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
}

.intro-val-stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.intro-val-stat-sep {
  width: 1px;
  height: 32px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* Right panel — no competing header, just an eyebrow label */
.intro-values-panel {
  /* matches the left column's top rhythm via the eyebrow */
}

.intro-values-eyebrow {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 0;
}

/* Light-themed accordion */
.value-acc-light .value-acc {
  border-bottom: 1px solid var(--color-border);
  position: relative;
  transition: background 0.4s ease;
}

.value-acc-light .value-acc[data-open] {
  background: rgba(107, 78, 42, 0.035);
  border-left: 1px solid rgba(107, 78, 42, 0.4);
  padding-left: 20px;
  margin-left: -21px;
}

.value-acc-light .value-acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 24px;
}

.value-acc-light .value-acc-heading {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.value-acc-light .value-num {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: rgba(107, 78, 42, 0.4);
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.value-acc-light .value-acc[data-open] .value-num {
  color: var(--color-accent);
}

.value-acc-light .value-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 300;
  color: rgba(44, 35, 24, 0.55);
  letter-spacing: 0.01em;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.value-acc-light .value-acc[data-open] .value-title {
  color: var(--color-text);
}

.value-acc-light .value-acc-icon {
  position: relative;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.value-acc-light .value-acc-icon::before,
.value-acc-light .value-acc-icon::after {
  content: '';
  position: absolute;
  background: var(--color-accent);
  border-radius: 1px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.value-acc-light .value-acc-icon::before {
  width: 16px;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.value-acc-light .value-acc-icon::after {
  width: 1px;
  height: 16px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.value-acc-light [aria-expanded="true"] .value-acc-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.value-acc-light .value-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-acc-light .value-acc[data-open] .value-acc-panel {
  max-height: 900px;
}

.value-acc-light .value-acc-panel-inner {
  overflow: hidden;
}

.value-acc-light .value-acc-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 28px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s ease 0.15s, transform 0.55s ease 0.15s;
}

.value-acc-light .value-acc[data-open] .value-acc-body {
  opacity: 1;
  transform: translateY(0);
}

.value-acc-light .value-desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.9;
}

/* Multi-image / video grid inside accordion */
.value-acc-imgs {
  display: grid;
  gap: 6px;
  width: 100%;
}

.value-acc-imgs--1 {
  grid-template-columns: 1fr;
}

.value-acc-imgs--2 {
  grid-template-columns: 1fr 1fr;
}

/* 3 images: first spans full width, two below side by side */
.value-acc-imgs--3 {
  grid-template-columns: 1fr 1fr;
}

.value-acc-imgs--3 .value-acc-img:first-child {
  grid-column: 1 / -1;
}

.value-acc-imgs .value-acc-img {
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 16 / 10;
  background: var(--color-border);
}

.value-acc-imgs .value-acc-img--portrait {
  aspect-ratio: 9 / 16;
  max-width: 340px;
  margin: 0 auto;
}

.value-acc-imgs .value-acc-img img,
.value-acc-imgs .value-acc-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
}

/* ============================================
   MADE IN MONTREAL SLIDESHOW
   ============================================ */
.mtl-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.mtl-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.mtl-slide.active {
  opacity: 1;
}

.mtl-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.mtl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}

.mtl-dot.active {
  background: #c9a96e;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  /* Show collection description always — no hover on touch */
  .home-col-desc {
    opacity: 1;
    transform: translateY(0);
  }
  /* Prevent sticky-hover info lift on touch devices */
  .home-col-panel:hover .home-col-info {
    transform: none;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .intro-image-grid {
    height: 380px;
  }
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .featured-item-large .featured-img {
    height: 420px;
  }
  .project-featured {
    grid-template-columns: 1fr;
  }
  .project-featured-img {
    height: 400px;
  }
  .featured-project-grid {
    grid-template-columns: 1fr;
  }
  .process-brief-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .home-col-grid {
    grid-template-columns: 1fr;
  }
  .home-col-panel {
    height: 60vh;
  }
}

@media (max-width: 768px) {
  .hero-scroll { display: none; }
  .hero-meta { flex-wrap: wrap; gap: 24px; }
  .hero-stat-divider { display: none; }
  .hero { height: 100vh; min-height: 560px; }
  .hero-eyebrow { font-size: 0.75rem; letter-spacing: 0.2em; margin-bottom: 16px; }
  .intro-image-grid { height: 300px; }
  .value-acc-imgs--2,
  .value-acc-imgs--3 {
    grid-template-columns: 1fr;
  }
  .value-acc-imgs--3 .value-acc-img:first-child {
    grid-column: 1;
  }
  .process-brief-sheet-header,
  .process-brief-sheet-footer { padding: 12px 24px; }
  .process-brief { padding: 80px 0; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; gap: 36px; }
  .cta-band-actions { flex-direction: row; flex-wrap: wrap; }
  .featured-header-row { flex-direction: column; align-items: flex-start; }
  .home-col-info { padding: 32px 28px; }
  .home-col-desc { display: none; }
  .home-col-header-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .home-col-header-cta {
    align-items: flex-start;
  }
  .home-collections { padding-top: 80px; }

  /* Hide oversized watermark text that causes horizontal scroll */
  .intro-left::before,
  .process-brief-left::before,
  .home-col-header-text::before { display: none; }

  /* Stack stats vertically on mobile */
  .intro-values-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .intro-val-stat-sep { display: none; }

  /* Reduce accordion open-state negative margin so it doesn't clip on 20-24px container padding */
  .value-acc-light .value-acc[data-open] {
    margin-left: -14px;
    padding-left: 13px;
  }
}

@media (max-width: 480px) {
  .hero { min-height: 500px; }
  .hero-title { font-size: 3rem; }
  .hero-desc { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .intro-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 140px 140px;
    height: auto;
  }
  .intro-img-1, .intro-img-2, .intro-img-3 {
    grid-column: auto;
    grid-row: auto;
  }
  /* Reduce collection panel min-height so it doesn't dominate the screen */
  .home-col-panel { min-height: 360px; height: 55vh; }
  /* CTA band actions should span full width on small phones */
  .cta-band-actions { min-width: 0; width: 100%; }
  /* Reduce gap between header text and CTA button in collections header */
  .home-col-header-block { gap: 24px; }
  /* Stats in accordion wrap cleanly */
  .intro-stats { flex-wrap: wrap; gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-tagline-strip .marquee-track { animation: none; }
}
