:root {
  --bg: #080909;
  --surface: #101110;
  --surface-2: #171817;
  --warm: #21150f;
  --warm-2: #2a1810;
  --text: #f0eee9;
  --muted: #999994;
  --muted-2: #6d6d69;
  --line: rgba(240, 238, 233, .12);
  --line-strong: rgba(240, 238, 233, .2);
  --accent: #066a42;
  --accent-soft: #056e38;
  --container: min(1680px, calc(100% - 88px));
  --gutter: clamp(1.25rem, 3vw, 3.5rem);
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --ease: cubic-bezier(.2,.75,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open, body.gallery-open { overflow: hidden; }
::selection { background: var(--accent); color: #080909; }
img { display: block; width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, figure { margin: 0; }
h1, h2, h3 { line-height: .92; }
.container { width: var(--container); margin-inline: auto;
padding-top: clamp(1rem, 3vw, 3rem); }
.section {
  padding: clamp(1rem, 3vw, 3rem) 0;
  position: relative;
}
.display {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.035em;
  line-height: 1;
}
.display i, .section-title i { font-style: normal; color: var(--accent-soft); }
.section-title {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.035em;
  font-size: clamp(3.4rem, 6vw, 7rem);
  line-height: 1;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .18em;
  font-weight: 600;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 22px; height: 1px; background: var(--accent);
}
.section-head {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: start;
  gap: 2rem;
  padding-bottom: clamp(1rem, 7vw, 2rem);
}
.section-index {
  color: var(--muted-2);
  font-size: .75rem;
  letter-spacing: .08em;
  padding-top: .35rem;
}
.section-note {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.65;
  text-align: right;
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.noise {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}
.site-progress {
  position: fixed; top: 0; left: 0; width: 100%; height: 2px; z-index: 1200; pointer-events: none;
}
.site-progress span { display: block; height: 100%; width: 0; background: var(--accent); }
.cursor {
  position: fixed; width: 18px; height: 18px; border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%; z-index: 1300; pointer-events: none; transform: translate(-50%,-50%);
  mix-blend-mode: difference; opacity: 0; transition: width .25s var(--ease), height .25s var(--ease), opacity .2s;
}

select[name="service"] {
  color: var(--text);
  background-color: var(--surface);
  opacity: 1;
}

select[name="service"] option {
  color: #111111;
  background-color: #ffffff;
  opacity: 1;
  font-weight: 500;
}

select[name="service"] option[value=""] {
  color: #777777;
}

select[name="service"] option:checked {
  color: #ffffff;
  background-color: #333333;
}
.cursor span { position:absolute; inset:50%; width:3px; height:3px; background:#fff; border-radius:50%; transform:translate(-50%,-50%); }
.cursor.is-active { width: 46px; height: 46px; opacity: 1; }
@media (hover:hover) and (pointer:fine) {
  body:hover .cursor { opacity: 1; }
}
