/* ============================================================
   NEUDANII — style.css
   Black background · White text · Cursor always visible
   ============================================================ */

:root {
  --black:      #0d0d0d;
  --black-mid:  #141414;
  --black-soft: #1c1c1c;
  --white:      #f5f3ef;
  --off-white:  #e8e5df;
  --muted:      rgba(245,243,239,0.5);
  --very-muted: rgba(245,243,239,0.28);
  --border:     rgba(245,243,239,0.09);
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-sans:    'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── Noise overlay — low z-index, never covers cursor ── */
.noise {
  position: fixed; inset: 0;
  z-index: 40;
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.3;
}

/* ── Custom Cursor — always above everything ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  will-change: left, top;
}

.cursor-follower {
  width: 34px; height: 34px;
  border: 1px solid rgba(245,243,239,0.35);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width .28s ease, height .28s ease, border-color .28s ease;
  will-change: left, top;
}

body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower {
  width: 54px; height: 54px;
  border-color: var(--white);
}

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 9000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 60px;
  transition: background .4s, padding .4s, border-color .4s;
}

.navbar.scrolled {
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(16px);
  padding: 17px 60px;
  border-bottom: 1px solid var(--border);
}

.nav-logo a {
  font-family: var(--font-display);
  font-size: 1.75rem; letter-spacing: .22em;
  color: var(--white); text-decoration: none;
}

.nav-links { list-style: none; display: flex; gap: 46px; }

.nav-link {
  font-size: .66rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--very-muted);
  text-decoration: none; position: relative;
  transition: color .3s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--white);
  transition: width .35s ease;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-toggle {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: none; padding: 4px;
}
.nav-toggle span {
  display: block; width: 27px; height: 1px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative; min-height: 55vh;
  display: flex; align-items: flex-end;
  padding: 0 60px 80px;
  background: var(--black);
  overflow: hidden;
}

.page-hero-bg-text {
  position: absolute; bottom: -10px; right: -10px;
  font-family: var(--font-display);
  font-size: clamp(80px, 16vw, 220px);
  letter-spacing: .04em; color: transparent;
  -webkit-text-stroke: 1px rgba(245,243,239,.04);
  pointer-events: none; user-select: none;
  white-space: nowrap;
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 120px);
  line-height: .95; letter-spacing: .02em;
  color: var(--white); margin-bottom: 24px;
}
.page-hero-title em {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 300;
}

/* ── Hero (home) ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding: 0 60px;
  background: var(--black);
}
.hero::after {
  content: ''; position: absolute; top: 0; right: 140px;
  width: 1px; height: 100%;
  background: rgba(245,243,239,.04);
}
.hero-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(100px, 20vw, 260px);
  letter-spacing: .05em; color: transparent;
  -webkit-text-stroke: 1px rgba(245,243,239,.04);
  white-space: nowrap; pointer-events: none; user-select: none;
  animation: slowDrift 20s ease-in-out infinite alternate;
}
@keyframes slowDrift {
  from { transform: translate(-50%, -50%) scale(1); }
  to   { transform: translate(-50%, -48%) scale(1.03); }
}

.hero-content { position: relative; z-index: 2; max-width: 820px; }

.hero-sub {
  font-size: .66rem; font-weight: 400;
  letter-spacing: .38em; text-transform: uppercase;
  color: var(--very-muted); margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 160px);
  line-height: .9; letter-spacing: .02em;
  text-transform: uppercase; color: var(--white);
  display: flex; flex-direction: column; margin-bottom: 30px;
}
.hero-title .italic {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 300;
  font-size: clamp(68px, 11.5vw, 150px);
  padding-left: 60px;
}

.hero-desc {
  font-size: .87rem; font-weight: 300;
  letter-spacing: .07em; color: var(--muted);
  max-width: 440px; line-height: 1.85; margin-bottom: 46px;
}

/* ── Buttons ── */
.btn-outline {
  display: inline-block;
  font-size: .62rem; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(245,243,239,.32);
  padding: 15px 38px; text-decoration: none;
  position: relative; overflow: hidden;
  transition: color .4s;
}
.btn-outline::before {
  content: ''; position: absolute; inset: 0;
  background: var(--white);
  transform: translateX(-101%);
  transition: transform .4s cubic-bezier(.77,0,.175,1);
}
.btn-outline:hover { color: var(--black); }
.btn-outline:hover::before { transform: translateX(0); }

.btn-dark {
  background: var(--white); color: var(--black);
  border-color: var(--white);
}
.btn-dark::before { background: var(--off-white); }
.btn-dark:hover { color: var(--black); }

/* ── Scroll indicator ── */
.hero-scroll {
  position: absolute; bottom: 38px; right: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero-scroll span {
  font-size: .55rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--very-muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 78px;
  background: linear-gradient(to bottom, rgba(245,243,239,.3), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:.4; transform:scaleY(1); }
  50%      { opacity:1;  transform:scaleY(.6); }
}

/* ── Marquee ── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--black-soft); padding: 12px 0;
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: .8rem; letter-spacing: .18em;
  color: rgba(245,243,239,.28); flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Shared section helpers ── */
.section-tag {
  font-size: .6rem; letter-spacing: .32em;
  text-transform: uppercase; color: var(--very-muted);
  margin-bottom: 18px; display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1; letter-spacing: .02em;
  margin-bottom: 30px; color: var(--white);
}
.section-title em { font-family: var(--font-serif); font-style: italic; font-weight: 300; }

/* ── Reveal animation ── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .9s cubic-bezier(.215,.61,.355,1),
              transform .9s cubic-bezier(.215,.61,.355,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Intro Strip ── */
.intro-strip {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 70px 60px;
}
.intro-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: flex-start;
}
.intro-block {
  flex: 1; padding: 0 48px;
  text-align: center;
}
.intro-num {
  font-family: var(--font-display);
  font-size: 1.6rem; letter-spacing: .1em;
  color: var(--white); display: block; margin-bottom: 14px;
}
.intro-block p {
  font-size: .83rem; line-height: 1.85;
  color: var(--muted); font-weight: 300;
  max-width: 260px; margin: 0 auto;
}
.intro-divider {
  width: 1px; height: 80px;
  background: var(--border);
  align-self: center; flex-shrink: 0;
}

/* ── Photo Showcase ── */
.photo-showcase {
  background: var(--black);
  padding: 0;
}
.photo-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  grid-template-rows: 560px;
  gap: 3px;
}
.showcase-item { position: relative; overflow: hidden; }
.showcase-item.tall { grid-row: span 1; align-self: stretch; }
.showcase-img {
  width: 100%; height: 100%;
  position: relative;
}
.showcase-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  position: absolute; inset: 0;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.showcase-photo[src=""] { display: none; }
.showcase-item:hover .showcase-photo { transform: scale(1.04); }
.showcase-placeholder {
  width: 100%; height: 100%;
  background: var(--black-soft);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  transition: background .3s;
}
.showcase-placeholder:has(~ .showcase-photo[src]:not([src=""])) { display: none; }
.showcase-item:hover .showcase-placeholder { background: var(--black-mid); }
.showcase-placeholder span {
  font-family: var(--font-display);
  font-size: 2.5rem; color: rgba(245,243,239,.15);
  line-height: 1;
}
.showcase-placeholder p {
  font-size: .58rem; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(245,243,239,.2);
}

/* ── Process ── */
.process {
  background: var(--black); padding: 120px 60px;
  border-bottom: 1px solid var(--border);
}
.process-inner { max-width: 1100px; margin: 0 auto; }
.steps { display: flex; align-items: flex-start; margin-top: 68px; }
.step {
  flex: 1; padding: 0 30px;
  text-align: center;
}
.step-divider {
  width: 1px; height: 110px;
  background: var(--border);
  align-self: center; flex-shrink: 0;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3.4rem; color: rgba(245,243,239,.06);
  line-height: 1; margin-bottom: 18px; letter-spacing: .05em;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem; letter-spacing: .1em;
  margin-bottom: 11px; text-transform: uppercase; color: var(--white);
}
.step p {
  font-size: .81rem; color: var(--muted); line-height: 1.85;
  font-weight: 300; max-width: 200px; margin: 0 auto;
}

/* ── Sustainability ── */
.sustainability {
  background: var(--black-mid); padding: 130px 60px;
  position: relative; overflow: hidden;
}
.sustainability::before {
  content: 'EARTH';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 220px);
  letter-spacing: .06em; color: transparent;
  -webkit-text-stroke: 1px rgba(245,243,239,.025);
  white-space: nowrap; pointer-events: none;
}
.sustain-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.sustain-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; margin-bottom: 72px;
}
.sustain-heading .section-tag { color: var(--very-muted); }
.sustain-heading .section-title { color: var(--white); }
.sustain-intro { padding-top: 22px; }
.sustain-intro p {
  font-size: .9rem; line-height: 1.95;
  color: var(--muted); font-weight: 300; margin-bottom: 18px;
}
.sustain-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.pillar {
  background: rgba(245,243,239,.03);
  border: 1px solid var(--border);
  padding: 38px 28px;
  transition: background .3s;
}
.pillar:hover { background: rgba(245,243,239,.07); }
.pillar-icon {
  font-family: var(--font-display);
  font-size: 2rem; letter-spacing: .06em;
  color: rgba(245,243,239,.1);
  margin-bottom: 16px; display: block;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--white); margin-bottom: 12px;
}
.pillar p { font-size: .79rem; line-height: 1.85; color: var(--muted); font-weight: 300; }
.sustain-pledge {
  margin-top: 68px; padding-top: 46px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.sustain-pledge blockquote {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.85rem);
  font-weight: 300; color: rgba(245,243,239,.6);
  max-width: 760px; margin: 0 auto;
  line-height: 1.65; letter-spacing: .02em;
}
.sustain-pledge cite {
  display: block;
  font-size: .57rem; letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--very-muted);
  margin-top: 22px; font-style: normal;
}

/* ── About ── */
.about { padding: 130px 60px; background: var(--black); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1280px; margin: 0 auto;
}
.about-body {
  font-size: .89rem; line-height: 1.95;
  color: var(--muted); margin-bottom: 18px; font-weight: 300;
}
.about-stats {
  display: flex; gap: 44px;
  margin-top: 44px; padding-top: 38px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.7rem; line-height: 1;
  color: var(--white); letter-spacing: .05em;
}
.stat-label {
  font-size: .57rem; letter-spacing: .24em;
  text-transform: uppercase; color: var(--very-muted); margin-top: 6px;
}
.about-img-frame {
  position: relative; aspect-ratio: 3/4;
  max-width: 480px; margin-left: auto;
}
.about-placeholder {
  width: 100%; height: 100%;
  background: var(--black-soft);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
}
.about-placeholder span {
  font-family: var(--font-display);
  font-size: 3rem; letter-spacing: .2em;
  color: rgba(245,243,239,.07);
}
.about-placeholder p {
  font-size: .62rem; letter-spacing: .24em;
  text-transform: uppercase; color: rgba(245,243,239,.18);
}
.frame-corner {
  position: absolute; width: 22px; height: 22px;
  border-color: rgba(245,243,239,.3); border-style: solid;
}
.frame-corner.tl { top: -7px; left: -7px; border-width: 1px 0 0 1px; }
.frame-corner.tr { top: -7px; right: -7px; border-width: 1px 1px 0 0; }
.frame-corner.bl { bottom: -7px; left: -7px; border-width: 0 0 1px 1px; }
.frame-corner.br { bottom: -7px; right: -7px; border-width: 0 1px 1px 0; }

/* ── Values ── */
.values { background: var(--black-soft); padding: 120px 60px; }
.values-inner { max-width: 1200px; margin: 0 auto; }
.values-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 2px; margin-top: 56px;
  max-width: 900px; margin-left: auto; margin-right: auto;
}
.value-card {
  padding: 44px 32px;
  border: 1px solid var(--border);
  background: rgba(245,243,239,.02);
  transition: background .3s;
}
.value-card:hover { background: rgba(245,243,239,.06); }
.value-icon {
  font-family: var(--font-display);
  font-size: 2.5rem; letter-spacing: .08em;
  color: rgba(245,243,239,.08);
  margin-bottom: 20px; display: block;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--white); margin-bottom: 14px;
}
.value-card p {
  font-size: .8rem; line-height: 1.9;
  color: var(--muted); font-weight: 300;
}

/* ── Materials ── */
.materials { background: var(--black); padding: 120px 60px; }
.materials-inner { max-width: 1200px; margin: 0 auto; }
.materials-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0 28px; margin-top: 56px;
}
.material-item {
  display: flex; flex-direction: column;
  padding-top: 22px; padding-bottom: 36px;
  border-top: 1px solid rgba(245,243,239,.18);
  position: relative;
  transition: border-color .3s;
}
.material-item::before {
  content: '';
  position: absolute; top: -1px; left: 0;
  height: 1px; width: 0;
  background: var(--white);
  transition: width .5s cubic-bezier(.77,0,.175,1);
}
.material-item:hover::before { width: 100%; }
.mat-line-label {
  font-size: .52rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--very-muted);
  margin-bottom: 12px; display: block;
}
.material-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 12px;
}
.material-item p { font-size: .8rem; line-height: 1.85; color: var(--muted); font-weight: 300; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--black-soft); padding: 110px 60px;
  border-top: 1px solid var(--border);
}
.cta-banner-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.cta-eyebrow {
  font-size: .62rem; letter-spacing: .32em;
  text-transform: uppercase; color: var(--very-muted); margin-bottom: 16px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 88px);
  line-height: .95; letter-spacing: .02em;
  color: var(--white); margin-bottom: 42px;
}
.cta-title em { font-family: var(--font-serif); font-style: italic; font-weight: 300; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── Gallery ── */
.gallery-section { padding: 100px 60px 130px; background: var(--black); }
.gallery-filter {
  display: flex; justify-content: center;
  gap: 4px; margin-bottom: 52px; flex-wrap: wrap;
}
.filter-btn {
  font-size: .59rem; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 400;
  color: var(--very-muted);
  background: none; border: 1px solid transparent;
  padding: 9px 22px; cursor: none;
  transition: color .3s, border-color .3s;
}
.filter-btn:hover, .filter-btn.active { color: var(--white); border-color: rgba(245,243,239,.2); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  grid-auto-rows: 380px; gap: 3px;
  max-width: 1300px; margin: 0 auto;
}
.gallery-item { position: relative; overflow: hidden; cursor: none; }
.gallery-item.large { grid-column: span 2; }
.gallery-img { width: 100%; height: 100%; }
.img-placeholder {
  width: 100%; height: 100%;
  background: var(--black-soft);
  display: flex; align-items: center; justify-content: center;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.gallery-item:hover .img-placeholder { transform: scale(1.06); }
.img-placeholder span {
  font-family: var(--font-display);
  font-size: 4rem; color: rgba(245,243,239,.05); letter-spacing: .1em;
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, transparent 58%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 26px;
  transform: translateY(18px); opacity: 0;
  transition: opacity .42s ease, transform .42s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; transform: translateY(0); }
.item-cat {
  font-size: .55rem; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(245,243,239,.45); margin-bottom: 5px;
}
.item-name {
  font-family: var(--font-serif); font-size: 1.35rem;
  font-weight: 400; font-style: italic;
  color: var(--white); margin-bottom: 9px;
}
.item-tag { font-family: var(--font-display); font-size: .7rem; letter-spacing: .18em; color: rgba(245,243,239,.38); }
.gallery-item.hidden { display: none; }
.gallery-cta { text-align: center; margin-top: 68px; }
.gallery-cta-note {
  font-size: .83rem; color: var(--muted); letter-spacing: .04em;
  line-height: 1.8; max-width: 500px; margin: 0 auto 28px;
}

/* ── Contact ── */
.contact { background: var(--black); padding: 100px 60px 130px; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; max-width: 1200px; margin: 0 auto; align-items: start;
}
.contact-body { font-size: .89rem; line-height: 1.95; color: var(--muted); margin-bottom: 44px; }
.contact-info { display: flex; flex-direction: column; gap: 0; }
.info-line {
  display: flex; flex-direction: column; gap: 5px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.info-label { font-size: .54rem; letter-spacing: .28em; text-transform: uppercase; color: var(--very-muted); }
.info-line a, .info-line span {
  font-family: var(--font-serif); font-size: 1.08rem;
  color: var(--white); text-decoration: none; transition: opacity .3s;
}
.info-line a:hover { opacity: .5; }

/* FAQ */
.faq .faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { padding: 20px 0; border-bottom: 1px solid var(--border); }
.faq-item h4 {
  font-family: var(--font-sans); font-size: .76rem;
  font-weight: 400; letter-spacing: .06em;
  color: var(--white); margin-bottom: 8px;
}
.faq-item p { font-size: .78rem; line-height: 1.85; color: var(--muted); font-weight: 300; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 26px; }
.form-group { display: flex; flex-direction: column; gap: 9px; }
.form-group label { font-size: .55rem; letter-spacing: .25em; text-transform: uppercase; color: var(--very-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent; border: none;
  border-bottom: 1px solid rgba(245,243,239,.14);
  color: var(--white); font-family: var(--font-sans);
  font-size: .88rem; font-weight: 300;
  padding: 11px 0; outline: none;
  transition: border-color .3s;
  width: 100%; resize: none;
  -webkit-appearance: none; appearance: none;
}
.form-group select option { background: var(--black); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,243,239,.18); }
.btn-submit {
  align-self: flex-start;
  font-size: .62rem; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--black); background: var(--white);
  border: none; padding: 17px 42px; cursor: none;
  position: relative; overflow: hidden; transition: opacity .3s;
}
.btn-submit:hover { opacity: .82; }
.form-success {
  display: none; font-size: .7rem;
  letter-spacing: .12em; color: var(--muted); padding-top: 8px;
}

/* ── Footer ── */
.footer { background: var(--black-soft); padding: 78px 60px 38px; border-top: 1px solid var(--border); }
.footer-top { text-align: center; margin-bottom: 46px; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 3.8rem; letter-spacing: .22em;
  margin-bottom: 10px; color: var(--white);
}
.footer-tagline {
  font-family: var(--font-serif); font-style: italic;
  font-size: .95rem; color: var(--very-muted); letter-spacing: .08em;
}
.footer-mid { margin-bottom: 44px; }
.footer-links { display: flex; justify-content: center; gap: 44px; }
.footer-links a {
  font-size: .58rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--very-muted);
  text-decoration: none; transition: color .3s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 30px; border-top: 1px solid var(--border);
  font-size: .54rem; letter-spacing: .15em;
  color: rgba(245,243,239,.15); text-transform: uppercase;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid, .contact-grid, .sustain-top { grid-template-columns: 1fr; gap: 56px; }
  .photo-showcase-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 360px; }
  .showcase-item:last-child { grid-column: span 2; }
  .about-right { display: none; }
  .steps { flex-direction: column; gap: 38px; }
  .step-divider { width: 55px; height: 1px; align-self: center; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 340px; }
  .gallery-item.large { grid-column: span 1; }
  .sustain-pillars, .materials-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }  .intro-strip-inner { flex-direction: column; gap: 0; }
  .intro-divider { width: 50px; height: 1px; align-self: center; margin: 8px auto; }
  .intro-block { padding: 28px 24px; }
}

@media (max-width: 768px) {
  .navbar { padding: 20px 24px; }
  .navbar.scrolled { padding: 14px 24px; }
  .nav-toggle { display: flex; z-index: 9500; }
  .nav-links {
    position: fixed; inset: 0;
    background: var(--black);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 34px; opacity: 0; pointer-events: none;
    transition: opacity .4s; z-index: 9400;
  }
  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-link { font-size: .85rem; color: var(--white); }

  .hero, .page-hero { padding: 0 24px; }
  .hero { padding-bottom: 0; }
  .page-hero { padding-bottom: 60px; }
  .hero::after { display: none; }
  .hero-scroll { right: 24px; }

  .intro-strip, .process, .sustainability,
  .about, .values, .materials,
  .gallery-section, .contact, .cta-banner { padding: 80px 24px; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .photo-showcase-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 320px); }
  .showcase-item:last-child { grid-column: span 1; }
  .sustain-pillars, .materials-grid, .values-grid { grid-template-columns: 1fr; }
  .footer { padding: 56px 24px 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-links { gap: 24px; flex-wrap: wrap; }
  .about-stats { gap: 24px; }
  .cta-btns { flex-direction: column; align-items: center; }

  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
}
