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

:root {
  --bg:     #0f0e0b;
  --bg2:    #181510;
  --bg3:    #211e17;
  --cream:  #f0e8d8;
  --cream2: #d9cdb8;
  --gold:   #c8922a;
  --gold2:  #e8b04a;
  --text:   #e8dcc8;
  --muted:  #8a7d68;
  --border: rgba(200,146,42,0.2);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Cormorant', serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 clamp(2rem, 5vw, 5rem);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, border-bottom 0.4s ease;
}
nav.scrolled,
nav.solid {
  background: rgba(10,9,7,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,146,42,0.15);
}

/* Logo */
.nav-logo {
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.nav-logo-badge {
  width: 32px; height: 32px;
  border: 1px solid rgba(200,146,42,0.55);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.nav-logo:hover .nav-logo-badge { border-color: var(--gold); }

/* Nav links */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(217,205,184,0.7);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s ease;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { right: 0; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { right: 0; }

/* CTA button */
.nav-cta {
  color: var(--gold) !important;
  border: 1px solid rgba(200,146,42,0.45) !important;
  padding: 0.4rem 1rem !important;
  letter-spacing: 0.13em !important;
  transition: background 0.2s, border-color 0.2s, color 0.2s !important;
  white-space: nowrap;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--bg) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream2);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
nav.menu-open .nav-hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
nav.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.menu-open .nav-hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO (full-screen, index only) ─── */
#hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 6vw, 6rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 6s ease;
}
#hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,9,7,0.96) 0%,
    rgba(10,9,7,0.7) 40%,
    rgba(10,9,7,0.15) 70%,
    rgba(10,9,7,0.05) 100%
  );
}
.hero-overlay-side {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,9,7,0.6) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-eyebrow::before { content: '—'; margin-right: 0.5rem; opacity: 0.5; }
.hero-title {
  font-family: 'Cormorant', serif;
  font-weight: 300;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease 0.4s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); font-weight: 300; }
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--cream2);
  font-weight: 300;
  max-width: 420px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.8s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 6vw, 6rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}
.hero-scroll span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ─── PAGE HERO (subpages) ─── */
.page-hero {
  position: relative;
  height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 3.5rem clamp(1.5rem, 6vw, 6rem);
  overflow: hidden;
  margin-top: 72px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.5);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,9,7,0.92) 0%,
    rgba(10,9,7,0.4) 60%,
    rgba(10,9,7,0.1) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}
.page-hero-eyebrow::before { content: '—'; margin-right: 0.5rem; opacity: 0.5; }
.page-hero-title {
  font-family: 'Cormorant', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--cream);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.25s forwards;
}
.page-hero-title em { font-style: italic; color: var(--gold); }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--gold);
  color: var(--bg);
  padding: 0.9rem 2rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-outline {
  border: 1px solid rgba(200,146,42,0.5);
  color: var(--gold);
  padding: 0.9rem 2rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(200,146,42,0.1); }

/* ─── SHARED SECTION STYLES ─── */
section { padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 6rem); }

.section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* ─── ABOUT ─── */
#about {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: 'BARN';
  position: absolute;
  right: -0.05em;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant', serif;
  font-weight: 700;
  font-size: clamp(10rem, 20vw, 22rem);
  color: rgba(200,146,42,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  max-width: 1200px;
}
.about-heading {
  font-family: 'Cormorant', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 2rem;
}
.about-heading em { font-style: italic; color: var(--gold); }
.about-text {
  font-size: 1.05rem;
  color: var(--cream2);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(138,125,104,0.3);
  padding: 0.35rem 0.8rem;
}
.about-image-stack {
  position: relative;
  height: 500px;
}
.about-img-main {
  position: absolute;
  top: 0; right: 0;
  width: 80%; height: 85%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
}
.about-img-accent {
  position: absolute;
  bottom: 0; left: 0;
  width: 55%; height: 50%;
  object-fit: cover;
  border: 4px solid var(--bg2);
  filter: grayscale(30%);
}
.about-badge {
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90px; height: 90px;
  background: var(--bg2);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}
.about-badge-num {
  font-family: 'Cormorant', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.about-badge-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.45rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── TEASER CTA (on index, below about) ─── */
.teaser-cta {
  background: var(--bg);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 6vw, 6rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}
.teaser-cta-text {
  font-family: 'Cormorant', serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--cream);
  line-height: 1.2;
}
.teaser-cta-text em { font-style: italic; color: var(--gold); }

/* ─── EQUIPMENT ─── */
.equipment-page {
  background: var(--bg);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 6rem);
}
.equipment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
}
.equipment-heading {
  font-family: 'Cormorant', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  color: var(--cream);
}
.equipment-note {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 280px;
  text-align: right;
}
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5px;
  max-width: 1200px;
  background: rgba(200,146,42,0.08);
}
.equipment-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg3);
  cursor: pointer;
}
.equipment-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.85);
  transition: filter 0.5s ease, transform 0.6s ease;
}
.equipment-item:hover img {
  filter: grayscale(0%) brightness(0.95);
  transform: scale(1.04);
}
.equipment-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,9,7,0.9) 0%, transparent 50%);
}
.equipment-item-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}
.equipment-item-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.equipment-item-name {
  font-family: 'Cormorant', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
}
.equipment-item-desc {
  font-size: 0.85rem;
  color: var(--cream2);
  font-weight: 300;
  margin-top: 0.4rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
  line-height: 1.5;
}
.equipment-item:hover .equipment-item-desc { opacity: 1; transform: translateY(0); }

.equipment-info-strip {
  background: var(--bg2);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 6vw, 6rem);
  border-top: 1px solid var(--border);
}
.equipment-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
}
.info-item-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.info-item-value {
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 300;
}

/* ─── CONTACT ─── */
.contact-page {
  background: var(--bg2);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 6rem);
  position: relative;
  overflow: hidden;
}
.contact-page::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background-image: url('../images/kontakt-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
  max-width: 1100px;
  position: relative;
  z-index: 1;
}
.contact-heading {
  font-family: 'Cormorant', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.contact-heading em { font-style: italic; color: var(--gold); }
.contact-text {
  font-size: 1rem;
  color: var(--cream2);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact-detail { margin-bottom: 1.5rem; }
.contact-detail-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-detail-value { font-size: 1.05rem; color: var(--cream); font-weight: 400; }
.contact-detail-value a { color: inherit; text-decoration: none; transition: color 0.2s; }
.contact-detail-value a:hover { color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,146,42,0.2);
  color: var(--cream);
  padding: 0.8rem 1rem;
  font-family: 'Cormorant', serif;
  font-size: 1rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(200,146,42,0.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-submit {
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 0.9rem 2rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--gold2); transform: translateY(-2px); }

/* ─── MAP ─── */
.map-strip {
  height: 340px;
  background: var(--bg3);
  position: relative;
  overflow: hidden;
}
.map-strip iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(80%) invert(10%) brightness(0.8);
}
.map-strip-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(15,14,11,0.8);
}
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--bg);
  padding: 0.6rem 1.2rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
}
.map-pin::before { content: '◆ '; font-size: 0.5rem; }

/* ─── LEGAL PAGES ─── */
.legal-page {
  background: var(--bg2);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 6rem);
}
.legal-content {
  max-width: 780px;
}
.legal-content h2 {
  font-family: 'Cormorant', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 2rem;
}
.legal-content h3 {
  font-family: 'Cormorant', serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--cream);
  margin: 2rem 0 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.legal-content p {
  font-size: 0.98rem;
  color: var(--cream2);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.legal-content a { color: var(--gold); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-content strong { color: var(--cream); font-weight: 500; }
.legal-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

/* ─── FOOTER ─── */
footer {
  background: var(--bg);
  border-top: 1px solid rgba(200,146,42,0.15);
  padding: 3rem clamp(1.5rem, 6vw, 6rem);
}
.footer-inner {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.footer-logo span {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 300;
  margin-top: 0.1rem;
}
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ─── CUSTOM CURSOR ─── */
@media (pointer: fine) {
  * { cursor: none !important; }
}
.cursor-dot {
  position: fixed;
  top: -4px; left: -4px;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transition: width 0.2s, height 0.2s, top 0.2s, left 0.2s, background 0.2s;
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  top: -18px; left: -18px;
  width: 36px; height: 36px;
  border: 1px solid rgba(200,146,42,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  will-change: transform;
  transition: width 0.25s, height 0.25s, top 0.25s, left 0.25s, border-color 0.25s;
}
.cursor-dot.cursor-hover {
  width: 12px; height: 12px;
  top: -6px; left: -6px;
  background: var(--gold2);
}
.cursor-ring.cursor-hover {
  width: 52px; height: 52px;
  top: -26px; left: -26px;
  border-color: rgba(200,146,42,0.8);
}

/* ─── WORD REVEAL ─── */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1), opacity 0.5s ease;
}
.word-visible {
  transform: translateY(0) !important;
  opacity: 1 !important;
}
.hero-title .word { transition-duration: 0.9s; }

/* ─── SECTION LABEL LINE ─── */
.section-label::after {
  width: 0;
  transition: width 0.8s cubic-bezier(0.16,1,0.3,1) 0.3s;
}
.section-label.label-visible::after { width: 40px; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: rgba(12,11,9,0.98);
    backdrop-filter: blur(16px);
    padding: 1.5rem 2rem 2rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
  }
  nav.menu-open .nav-links li::after { display: none; }
  nav.menu-open .nav-links a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(200,146,42,0.08);
    font-size: 0.75rem;
  }
  nav.menu-open .nav-links a::after { display: none; }
  nav.menu-open .nav-cta {
    margin-left: 0 !important;
    margin-top: 0.75rem !important;
    text-align: center !important;
    border: 1px solid rgba(200,146,42,0.4) !important;
  }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-image-stack { height: 350px; order: -1; }
  .equipment-note { display: none; }
  .equipment-header { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .teaser-cta { flex-direction: column; align-items: flex-start; }
  .contact-page::after { display: none; }
  .page-hero { height: 240px; }
}
