/* =====================================================
   TOKENS
===================================================== */
:root {
  --ink: #15181d;
  --ink-soft: #1f242c;
  --ink-softer: #2a323b;
  --paper: #f7f4ee;
  --paper-dim: #efe7d8;
  --paper-card: #fffdf9;
  --copper: #c97a3d;
  --copper-deep: #a35d2a;
  --copper-light: #e8a768;
  --teal: #3f8e88;
  --teal-deep: #2c6863;
  --text-dark: #23262a;
  --text-soft: #4c5057;
  --text-light: #f2efe6;
  --muted: #6c7178;
  --border: rgba(35, 38, 42, 0.1);
  --border-light: rgba(242, 239, 230, 0.14);

  --shadow-sm: 0 1px 2px rgba(21, 24, 29, 0.06), 0 1px 1px rgba(21, 24, 29, 0.05);
  --shadow-md: 0 8px 20px -6px rgba(21, 24, 29, 0.14), 0 4px 8px -4px rgba(21, 24, 29, 0.08);
  --shadow-lg: 0 24px 48px -14px rgba(21, 24, 29, 0.28), 0 10px 20px -8px rgba(21, 24, 29, 0.14);
  --shadow-glow: 0 0 0 1px rgba(201, 122, 61, 0.25), 0 12px 32px -8px rgba(201, 122, 61, 0.35);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --space-3xs: 0.375rem;
  --space-2xs: 0.625rem;
  --space-xs: 1rem;
  --space-sm: 1.5rem;
  --space-md: 2.25rem;
  --space-lg: 3.5rem;
  --space-xl: 5.5rem;
  --space-2xl: 8rem;

  --ease: cubic-bezier(.16, .8, .3, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
}

/* =====================================================
   RESET
===================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font: inherit; color: inherit; }

/* =====================================================
   BASE
===================================================== */
body {
  font-family: 'Albert Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--paper);
  background-image: radial-gradient(circle, rgba(35, 38, 42, 0.09) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Crimson Pro', serif;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

p { color: var(--text-soft); }

.mod-container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.mod-section { padding-block: var(--space-2xl); }
.mod-section--tight { padding-block: var(--space-xl); }

.mod-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-deep);
  margin-bottom: var(--space-xs);
  & i { font-size: 0.7rem; }
}

.mod-eyebrow--light { color: var(--copper-light); }

.mod-heading-xl { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.mod-heading-lg { font-size: clamp(2rem, 4vw, 3rem); }
.mod-heading-md { font-size: clamp(1.5rem, 2.6vw, 2rem); }

.mod-lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text-soft);
  max-width: 46ch;
  line-height: 1.7;
}

.mod-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.35s var(--ease-soft), color 0.35s var(--ease-soft);
  min-height: 48px;
}
.mod-btn-primary {
  background: linear-gradient(135deg, var(--copper), var(--copper-deep));
  color: var(--text-light);
  box-shadow: var(--shadow-md);
  &:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); }
}
.mod-btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid var(--border-light);
  &:hover { background: rgba(242, 239, 230, 0.1); transform: translateY(-3px); border-color: var(--copper-light); }
}
.mod-btn-ghost {
  background: var(--paper-card);
  color: var(--text-dark);
  border: 1.5px solid var(--border);
  &:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--copper); }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible { transition-delay: 0.1s; }
.reveal-delay-2.is-visible { transition-delay: 0.22s; }
.reveal-delay-3.is-visible { transition-delay: 0.34s; }

/* =====================================================
   HEADER
===================================================== */
.mod-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background 0.5s var(--ease-soft), box-shadow 0.5s var(--ease-soft), backdrop-filter 0.5s var(--ease-soft);
  background: transparent;

  & .mod-header-inner {
    max-width: 1240px;
    margin-inline: auto;
    padding: 1.35rem clamp(1.25rem, 5vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  & .mod-header-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: 'Crimson Pro', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-light);
    transition: color 0.4s var(--ease-soft);
    & img { width: 38px; height: 38px; }
  }

  & .mod-header-nav {
    display: flex;
    align-items: center;
    gap: 2.1rem;
    & a {
      font-size: 0.96rem;
      font-weight: 500;
      color: var(--text-light);
      position: relative;
      padding-block: 0.3rem;
      transition: color 0.35s var(--ease-soft);
      &::after {
        content: '';
        position: absolute;
        left: 0; right: 100%;
        bottom: -2px;
        height: 2px;
        background: var(--copper-light);
        transition: right 0.4s var(--ease);
      }
      &:hover::after, &.is-active::after { right: 0; }
      &:hover { color: var(--copper-light); }
    }
    & .mod-header-cta {
      background: var(--copper);
      color: var(--ink);
      padding: 0.6rem 1.3rem;
      border-radius: 999px;
      font-weight: 600;
      &::after { display: none; }
      &:hover { background: var(--copper-light); color: var(--ink); }
    }
  }

  & .mod-header-burger {
    display: none;
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--border-light);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: border-color 0.35s;
    & span { width: 20px; height: 2px; background: var(--text-light); transition: transform 0.35s var(--ease), opacity 0.3s; }
  }

  &.is-scrolled {
    background: rgba(21, 24, 29, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-md);
  }
}

/* =====================================================
   MOBILE MENU (mega overlay)
===================================================== */
.mod-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: linear-gradient(155deg, var(--ink) 0%, var(--ink-soft) 55%, var(--copper-deep) 140%);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), visibility 0.5s;

  &.is-open { opacity: 1; visibility: visible; transform: scale(1); }

  & .mod-mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem clamp(1.25rem, 5vw, 2.5rem);
    & img { width: 36px; height: 36px; }
    & button {
      width: 46px; height: 46px;
      border-radius: 50%;
      border: 1.5px solid var(--border-light);
      color: var(--text-light);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      transition: transform 0.4s var(--ease), background 0.35s;
      &:hover { transform: rotate(90deg); background: rgba(242,239,230,0.1); }
    }
  }

  & .mod-mobile-menu-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1rem clamp(1.25rem, 6vw, 3rem) 2.5rem;
    align-content: center;

    & a {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.9rem;
      padding: 2rem 1rem;
      border-radius: var(--radius-lg);
      border: 1.5px solid var(--border-light);
      color: var(--text-light);
      text-align: center;
      min-height: 130px;
      transition: background 0.4s var(--ease-soft), transform 0.4s var(--ease), border-color 0.4s;
      & i { font-size: 1.6rem; color: var(--copper-light); }
      & span { font-family: 'Crimson Pro', serif; font-size: 1.15rem; font-weight: 600; }
      &:hover { background: rgba(242, 239, 230, 0.08); border-color: var(--copper-light); transform: translateY(-4px); }
    }
  }
}

/* =====================================================
   HERO
===================================================== */
.mod-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-color: var(--ink);
  background-image: radial-gradient(circle, rgba(242, 239, 230, 0.12) 1.4px, transparent 1.4px);
  background-size: 30px 30px;
  overflow: hidden;
  padding-top: 6rem;

  & .mod-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    & img { width: 100%; height: 100%; object-fit: cover; opacity: 0.34; }
    &::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(21,24,29,0.55) 0%, rgba(21,24,29,0.88) 65%, var(--ink) 100%);
    }
  }

  & .mod-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin-inline: auto;
    padding: var(--space-lg) clamp(1.25rem, 5vw, 3rem) var(--space-2xl);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-lg);
    align-items: end;
  }

  & .mod-hero-title {
    font-size: clamp(2.8rem, 7vw, 5.4rem);
    color: var(--text-light);
    margin-bottom: var(--space-sm);
    & .word { display: inline-block; overflow: hidden; padding-bottom: 0.1em; margin-bottom: -0.1em; }
    & .char {
      display: inline-block;
      animation: mod-char-reveal 0.9s var(--ease) both;
      animation-delay: calc(var(--char-index) * 28ms + 0.15s);
    }
  }

  & .mod-hero-sub {
    color: rgba(242, 239, 230, 0.82);
    font-size: clamp(1.02rem, 1.4vw, 1.2rem);
    max-width: 52ch;
    margin-bottom: var(--space-md);
  }

  & .mod-hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: var(--space-md); }

  & .mod-hero-meta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border-light);
  }
  & .mod-hero-meta-item {
    display: flex; align-items: center; gap: 0.6rem;
    color: rgba(242,239,230,0.75);
    font-size: 0.92rem;
    & i { color: var(--copper-light); font-size: 1rem; }
  }

  & .mod-hero-card {
    background: rgba(31, 36, 44, 0.55);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    color: var(--text-light);
    box-shadow: var(--shadow-lg);
    justify-self: end;
    width: 100%;
    max-width: 340px;

    & .mod-hero-card-label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper-light); margin-bottom: 0.4rem; }
    & .mod-hero-card-value { font-family: 'Crimson Pro', serif; font-size: 1.9rem; margin-bottom: 1rem; }
    & ul { display: flex; flex-direction: column; gap: 0.7rem; }
    & li { display: flex; gap: 0.6rem; font-size: 0.94rem; color: rgba(242,239,230,0.85); align-items: flex-start; }
    & li i { color: var(--copper-light); margin-top: 0.2rem; }
  }
}

@keyframes mod-char-reveal {
  from { opacity: 0; transform: translateY(115%) rotate(4deg); }
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

/* =====================================================
   MARQUEE
===================================================== */
.mod-marquee {
  background: var(--ink-soft);
  border-block: 1px solid var(--border-light);
  overflow: hidden;
  padding-block: 1.2rem;

  & .mod-marquee-track {
    display: flex;
    width: max-content;
    animation: mod-marquee-scroll 32s linear infinite;
  }
  & .mod-marquee-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-inline: 2rem;
    color: var(--text-light);
    font-family: 'Crimson Pro', serif;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    white-space: nowrap;
    & i { color: var(--copper-light); font-size: 0.8rem; }
  }
}
@keyframes mod-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =====================================================
   PROCESS / HOW IT WORKS
===================================================== */
.mod-process {
  background: var(--paper);
  & .mod-process-head { max-width: 640px; margin-bottom: var(--space-lg); }
  & .mod-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    position: relative;
  }
  & .mod-process-card {
    background: var(--paper-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s;
    &:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--copper); }
    & .mod-process-num {
      font-family: 'Crimson Pro', serif;
      font-size: 3.2rem;
      color: var(--copper);
      opacity: 0.85;
      line-height: 1;
      margin-bottom: var(--space-sm);
    }
    & .mod-process-icon {
      width: 56px; height: 56px;
      border-radius: var(--radius-md);
      background: linear-gradient(135deg, var(--teal), var(--teal-deep));
      color: var(--text-light);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      margin-bottom: var(--space-sm);
    }
    & h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
    & p { font-size: 0.98rem; }
  }
}

/* =====================================================
   FEATURES ZIGZAG
===================================================== */
.mod-features {
  background: var(--paper-dim);
  & .mod-features-head { max-width: 620px; margin-bottom: var(--space-xl); }
  & .mod-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    padding-block: var(--space-lg);
    &:not(:last-child) { border-bottom: 1px solid var(--border); }
    &:nth-child(even) .mod-feature-media { order: 2; }
  }
  & .mod-feature-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    aspect-ratio: 4/3;
    & img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
    &:hover img { transform: scale(1.06); }
  }
  & .mod-feature-text {
    & .mod-feature-icon {
      width: 48px; height: 48px;
      border-radius: 14px;
      background: rgba(201, 122, 61, 0.14);
      color: var(--copper-deep);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      margin-bottom: var(--space-xs);
    }
    & h3 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin-bottom: 0.8rem; }
    & p { margin-bottom: 0.9rem; }
    & ul { display: flex; flex-direction: column; gap: 0.55rem; }
    & li { display: flex; gap: 0.6rem; font-size: 0.95rem; color: var(--text-soft); }
    & li i { color: var(--teal-deep); margin-top: 0.25rem; }
  }
}

/* =====================================================
   BENTO SERVICES
===================================================== */
.mod-services {
  background: var(--paper);
  & .mod-services-head { max-width: 620px; margin-bottom: var(--space-lg); }
  & .mod-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 190px;
    gap: var(--space-sm);
  }
  & .mod-bento-item {
    background: var(--ink);
    color: var(--text-light);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
    background-image: radial-gradient(circle, rgba(242,239,230,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    &:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    & i { font-size: 1.5rem; color: var(--copper-light); }
    & h4 { font-size: 1.2rem; color: var(--text-light); }
    & p { font-size: 0.88rem; color: rgba(242,239,230,0.72); }
  }
  & .mod-bento-item--wide { grid-column: span 2; }
  & .mod-bento-item--accent { background: linear-gradient(135deg, var(--copper-deep), var(--copper)); & p {color: rgba(21,24,29,0.75);} }
  & .mod-bento-item--tall { grid-row: span 2; }
}

/* =====================================================
   GALLERY
===================================================== */
.mod-gallery {
  background: var(--paper-dim);
  & .mod-gallery-head { max-width: 600px; margin-bottom: var(--space-lg); }
  & .mod-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px;
    gap: var(--space-sm);
  }
  & .mod-gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    &::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(21,24,29,0.55) 100%); opacity: 0; transition: opacity 0.4s; }
    & img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
    & span { position: absolute; left: 1.2rem; bottom: 1rem; color: var(--text-light); font-size: 0.85rem; font-weight: 600; opacity: 0; transform: translateY(10px); transition: all 0.4s var(--ease); }
    &:hover img { transform: scale(1.08); }
    &:hover::after, &:hover span { opacity: 1; transform: translateY(0); }
  }
  & .mod-gallery-item--a { grid-column: span 2; grid-row: span 2; }
  & .mod-gallery-item--b { grid-column: span 2; grid-row: span 1; }
  & .mod-gallery-item--c { grid-column: span 1; grid-row: span 1; }
  & .mod-gallery-item--d { grid-column: span 1; grid-row: span 1; }
}

/* =====================================================
   CTA BAND
===================================================== */
.mod-cta {
  background: linear-gradient(120deg, var(--ink) 0%, var(--ink-soft) 100%);
  background-image: radial-gradient(circle, rgba(242,239,230,0.09) 1.2px, transparent 1.2px), linear-gradient(120deg, var(--ink) 0%, var(--ink-soft) 100%);
  background-size: 26px 26px, cover;
  color: var(--text-light);
  border-radius: var(--radius-xl);
  margin-inline: clamp(1.25rem, 5vw, 3rem);
  padding: var(--space-xl) clamp(1.5rem, 6vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  & h2 { color: var(--text-light); font-size: clamp(1.9rem, 3.6vw, 2.6rem); max-width: 20ch; }
  & p { color: rgba(242,239,230,0.75); max-width: 42ch; margin-top: 0.6rem; }
}

/* =====================================================
   FOOTER
===================================================== */
.mod-footer {
  border-top: 1px solid var(--border);
  padding-block: var(--space-md);
  background: var(--paper);
  & .mod-footer-inner {
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    flex-wrap: wrap;
  }
  & .mod-footer-logo { display: flex; align-items: center; gap: 0.5rem; font-family: 'Crimson Pro', serif; font-weight: 700; & img { width: 22px; height: 22px; } }
  & .mod-footer-links { display: flex; gap: 1.4rem; flex-wrap: wrap; & a { font-size: 0.88rem; color: var(--muted); transition: color 0.3s; &:hover { color: var(--copper-deep); } } }
  & .mod-footer-copy { font-size: 0.82rem; color: var(--muted); }
}

/* =====================================================
   PAGE HERO (inner pages)
===================================================== */
.mod-page-hero {
  background-color: var(--ink);
  background-image: radial-gradient(circle, rgba(242,239,230,0.12) 1.3px, transparent 1.3px);
  background-size: 28px 28px;
  padding: 9.5rem clamp(1.25rem, 5vw, 3rem) var(--space-2xl);
  color: var(--text-light);
  & .mod-page-hero-inner { max-width: 1240px; margin-inline: auto; }
  & h1 { color: var(--text-light); font-size: clamp(2.4rem, 5.5vw, 4rem); max-width: 18ch; margin-bottom: var(--space-xs); }
  & p { color: rgba(242,239,230,0.78); max-width: 56ch; font-size: clamp(1rem, 1.4vw, 1.15rem); }
  & .mod-page-hero-crumbs { display: flex; gap: 0.5rem; align-items: center; margin-bottom: var(--space-sm); color: rgba(242,239,230,0.6); font-size: 0.88rem;
    & a { color: rgba(242,239,230,0.8); &:hover { color: var(--copper-light); } }
  }
}

/* =====================================================
   EQUIPMENT PAGE
===================================================== */
.mod-equipment {
  background: var(--paper);
  & .mod-equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
  & .mod-equipment-card {
    background: var(--paper-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.4s;
    &:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--teal); }
    & .mod-equipment-icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: rgba(63, 142, 136, 0.14);
      color: var(--teal-deep);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; margin-bottom: var(--space-sm);
    }
    & h3 { font-size: 1.3rem; margin-bottom: 0.7rem; }
    & ul { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.8rem; }
    & li { font-size: 0.92rem; color: var(--text-soft); display: flex; gap: 0.5rem; & i { color: var(--copper); margin-top: 0.25rem; } }
  }
  & .mod-equipment-media {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    & img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 16/10; object-fit: cover; }
  }
}

/* =====================================================
   BOOKING PAGE
===================================================== */
.mod-booking {
  background: var(--paper-dim);
  & .mod-booking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  & .mod-booking-card {
    background: var(--paper-card);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    &:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
    & .mod-booking-tag { display: inline-block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--copper-deep); font-weight: 600; margin-bottom: 0.6rem; }
    & h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
    & p { font-size: 0.95rem; margin-bottom: 0.8rem; }
    & .mod-booking-duration { font-family: 'Crimson Pro', serif; font-size: 2.2rem; color: var(--teal-deep); }
  }
}

.mod-faq {
  background: var(--paper);
  & .mod-faq-list { display: flex; flex-direction: column; gap: var(--space-sm); max-width: 820px; }
  & details {
    background: var(--paper-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.3rem 1.6rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.4s;
    &[open] { box-shadow: var(--shadow-md); }
  }
  & summary {
    cursor: pointer;
    font-family: 'Crimson Pro', serif;
    font-weight: 600;
    font-size: 1.15rem;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    &::-webkit-details-marker { display: none; }
    & i { transition: transform 0.35s var(--ease); color: var(--copper); }
  }
  & details[open] summary i { transform: rotate(45deg); }
  & .mod-faq-answer { margin-top: 0.9rem; color: var(--text-soft); font-size: 0.96rem; }
}

/* =====================================================
   VORBEREITUNG PAGE
===================================================== */
.mod-prep {
  background: var(--paper);
  & .mod-prep-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  & .mod-prep-card {
    background: var(--paper-card);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    &:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
    & .mod-prep-icon { width: 50px; height: 50px; border-radius: 14px; background: rgba(201,122,61,0.14); color: var(--copper-deep); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; margin-bottom: var(--space-sm); }
    & h3 { font-size: 1.3rem; margin-bottom: 0.7rem; }
    & ol { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.8rem; counter-reset: prep; }
    & li { font-size: 0.93rem; color: var(--text-soft); position: relative; padding-left: 1.8rem; counter-increment: prep;
      &::before { content: counter(prep); position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--teal); color: var(--text-light); font-size: 0.72rem; display: flex; align-items: center; justify-content: center; font-weight: 700; }
    }
  }
  & .mod-prep-checklist {
    margin-top: var(--space-lg);
    background: var(--ink);
    color: var(--text-light);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    background-image: radial-gradient(circle, rgba(242,239,230,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    & h3 { color: var(--text-light); margin-bottom: var(--space-sm); }
    & ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    & li { display: flex; gap: 0.6rem; font-size: 0.94rem; color: rgba(242,239,230,0.85); & i { color: var(--copper-light); margin-top: 0.2rem; } }
  }
}

/* =====================================================
   CONTACT PAGE
===================================================== */
.mod-contact {
  background: var(--paper-dim);
  & .mod-contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-lg); align-items: start; }
  & .mod-contact-side {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }
  & .mod-contact-card {
    background: var(--paper-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    & h3 { font-size: 1.2rem; margin-bottom: 0.9rem; }
  }
  & .mod-contact-info-item { display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 0.9rem;
    & i { color: var(--copper-deep); font-size: 1.05rem; margin-top: 0.2rem; width: 20px; }
    & span { font-size: 0.95rem; color: var(--text-soft); }
  }
  & .mod-contact-hours { width: 100%; border-collapse: collapse;
    & tr { border-bottom: 1px solid var(--border); }
    & tr:last-child { border-bottom: none; }
    & td { padding: 0.55rem 0; font-size: 0.92rem; color: var(--text-soft); }
    & td:last-child { text-align: right; font-weight: 600; color: var(--text-dark); }
  }
  & .mod-contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border);
    & iframe { width: 100%; height: 260px; border: none; display: block; }
  }
}

.mod-contact-form {
  background: var(--paper-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.mod-contact-section {
  border-bottom: 1px solid var(--border);
  &:last-child { border-bottom: none; }

  & .mod-contact-section-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem var(--space-md);
    text-align: left;
    transition: background 0.3s;
    &:hover { background: rgba(201,122,61,0.05); }
    & .mod-contact-section-num { font-family: 'Crimson Pro', serif; font-size: 1.3rem; color: var(--copper); width: 32px; }
    & .mod-contact-section-title { flex: 1; font-family: 'Crimson Pro', serif; font-weight: 600; font-size: 1.15rem; }
    & i { transition: transform 0.4s var(--ease); color: var(--muted); }
  }

  & .mod-contact-section-body {
    max-height: 0;
    overflow: hidden;
    padding-inline: var(--space-md);
    transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  &.is-open {
    & .mod-contact-section-body { max-height: 600px; padding-block: 0.4rem var(--space-md); }
    & .mod-contact-section-header i { transform: rotate(180deg); color: var(--copper); }
  }

  & label { display: flex; flex-direction: column; gap: 0.45rem; font-size: 0.88rem; font-weight: 500; color: var(--text-soft); }
  & input[type="text"], & input[type="email"], & textarea {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    background: var(--paper);
    font-size: 0.96rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    &:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(63,142,136,0.14); }
  }
  & textarea { resize: vertical; min-height: 110px; }
  & .mod-contact-checkbox { flex-direction: row; align-items: flex-start; gap: 0.7rem; font-size: 0.92rem;
    & input { margin-top: 0.25rem; width: 18px; height: 18px; accent-color: var(--copper); }
    & a { color: var(--copper-deep); text-decoration: underline; }
  }
}

/* =====================================================
   THANKS PAGE
===================================================== */
.mod-thanks {
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) clamp(1.25rem, 5vw, 3rem);
  & h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin-bottom: var(--space-sm); }
  & p { font-size: 1.1rem; margin-bottom: var(--space-md); }
  & a { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--copper-deep); font-weight: 600; border-bottom: 2px solid var(--copper); padding-bottom: 2px; transition: gap 0.3s; &:hover { gap: 0.9rem; } }
}

/* =====================================================
   LEGAL CARDS
===================================================== */
.mod-legal {
  background: var(--paper-dim);
  padding-block: var(--space-2xl);
  & .mod-legal-head { max-width: 700px; margin-bottom: var(--space-lg); }
  & .mod-legal-updated { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(201,122,61,0.12); color: var(--copper-deep); padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.85rem; font-weight: 600; margin-bottom: var(--space-sm); }
  & .mod-legal-cards { display: flex; flex-direction: column; gap: var(--space-md); }
  & .mod-legal-card {
    background: var(--paper-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: var(--space-md) var(--space-lg);
    transition: box-shadow 0.4s, transform 0.4s;
    &:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
    & h2 { font-size: 1.5rem; margin-bottom: 0.9rem; display: flex; gap: 0.7rem; align-items: baseline; }
    & .mod-legal-marker { color: var(--copper); font-family: 'Crimson Pro', serif; }
    & h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }
    & p { margin-bottom: 0.8rem; font-size: 0.96rem; }
    & p:last-child { margin-bottom: 0; }
    & ul { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.6rem; }
    & li { font-size: 0.94rem; color: var(--text-soft); padding-left: 1.2rem; position: relative;
      &::before { content: '\2013'; position: absolute; left: 0; color: var(--copper); }
    }
    & table { width: 100%; border-collapse: collapse; margin-top: 0.8rem;
      & td { padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.94rem; }
      & td:first-child { color: var(--muted); width: 42%; }
    }
  }
}

/* =====================================================
   COOKIE CONSENT
===================================================== */
.mod-cookie-consent {
  position: fixed;
  right: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1rem, 4vw, 2rem);
  z-index: 300;

  & .mod-cookie-consent-icon {
    width: 58px; height: 58px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--text-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: transform 0.4s var(--ease), background 0.4s;
    &:hover { transform: scale(1.08) rotate(-6deg); background: var(--copper-deep); }
  }

  & .mod-cookie-consent-badge {
    position: absolute;
    top: -3px; right: -3px;
    width: 15px; height: 15px;
    border-radius: 50%;
    background: var(--copper-light);
    border: 2px solid var(--paper);
    display: none;
  }

  & .mod-cookie-consent-panel {
    position: absolute;
    bottom: 74px;
    right: 0;
    width: min(360px, 88vw);
    background: var(--paper-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: var(--space-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px) scale(0.96);
    transform-origin: bottom right;
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;

    &.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

    & .mod-cookie-consent-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.6rem;
      & h3 { font-size: 1.1rem; }
      & button { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.3s; &:hover { background: var(--paper-dim); } }
    }
    & > p { font-size: 0.86rem; color: var(--text-soft); margin-bottom: 0.8rem; }
    & .mod-cookie-consent-option {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0.6rem 0;
      border-top: 1px solid var(--border);
      &:first-of-type { border-top: none; }
      & div { display: flex; flex-direction: column; gap: 0.15rem; }
      & span { font-size: 0.9rem; font-weight: 600; }
      & small { font-size: 0.78rem; color: var(--muted); }
      & label { position: relative; width: 42px; height: 24px; flex-shrink: 0; }
      & input { opacity: 0; width: 0; height: 0; }
      & .mod-toggle-track { position: absolute; inset: 0; background: var(--border); border-radius: 999px; transition: background 0.3s; cursor: pointer;
        &::before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: var(--paper-card); border-radius: 50%; transition: transform 0.3s var(--ease); }
      }
      & input:checked + .mod-toggle-track { background: var(--copper); }
      & input:checked + .mod-toggle-track::before { transform: translateX(18px); }
      & input:disabled + .mod-toggle-track { background: var(--teal); cursor: not-allowed; }
    }
    & .mod-cookie-consent-actions { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.9rem; }
    & .mod-cookie-consent-actions button {
      width: 100%; padding: 0.7rem; border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 600; transition: all 0.3s;
    }
    & #cookieAcceptAll { background: var(--copper); color: var(--text-light); &:hover { background: var(--copper-deep); } }
    & #cookieSave { background: var(--paper-dim); &:hover { background: var(--border); } }
    & #cookieRejectAll { background: transparent; border: 1px solid var(--border); &:hover { border-color: var(--copper); } }
  }
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 980px) {
  .mod-header-nav { display: none; }
  .mod-header-burger { display: flex !important; }
  .mod-hero-inner { grid-template-columns: 1fr; }
  .mod-hero-card { justify-self: start; max-width: 100%; }
  .mod-process-grid { grid-template-columns: 1fr; }
  .mod-feature-row { grid-template-columns: 1fr; }
  .mod-feature-row:nth-child(even) .mod-feature-media { order: 0; }
  .mod-bento { grid-template-columns: repeat(2, 1fr); }
  .mod-bento-item--wide { grid-column: span 2; }
  .mod-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 200px 200px 200px; }
  .mod-gallery-item--a { grid-column: span 2; grid-row: span 1; }
  .mod-equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .mod-equipment-media { grid-template-columns: 1fr; }
  .mod-booking-grid { grid-template-columns: 1fr; }
  .mod-prep-grid { grid-template-columns: 1fr; }
  .mod-contact-grid { grid-template-columns: 1fr; }
  .mod-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .mod-hero { padding-top: 5.5rem; }
  .mod-mobile-menu-grid { grid-template-columns: 1fr 1fr; }
  .mod-equipment-grid { grid-template-columns: 1fr; }
  .mod-prep-checklist ul { grid-template-columns: 1fr; }
  .mod-legal-card { padding: var(--space-sm) var(--space-sm); }
  .mod-footer-inner { flex-direction: column; text-align: center; }
  .mod-cookie-consent-panel { width: 92vw; right: -8px; }
}