@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap");

@font-face {
  font-family: "Syne";
  src: url("../fonts/syne-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Syne";
  src: url("../fonts/syne-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Global design tokens keep the public pages easy to connect to a CMS later. */
  --black: #050505;
  --dark: #111111;
  --dark-soft: #171717;
  --white: #f5f5f5;
  --muted: #a8a8a8;
  --muted-strong: #d7d7d7;
  --gold: #c89b2b;
  --gold-soft: rgba(200, 155, 43, 0.16);
  --border: rgba(245, 245, 245, 0.12);
  --border-gold: rgba(200, 155, 43, 0.34);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  --container: min(1160px, calc(100% - 40px));
  --radius: 8px;
  --heading: "Syne", Arial, sans-serif;
  --body: "Plus Jakarta Sans", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 78%);
  pointer-events: none;
}

img,
svg,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: 14px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--gold);
  color: var(--black);
  padding: 10px 14px;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  /* Fixed transparent header becomes solid once JavaScript detects scroll. */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0));
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.94);
  border-color: var(--border);
  backdrop-filter: blur(16px);
}

.nav {
  width: var(--container);
  margin-inline: auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.brand img {
  width: 86px;
  height: auto;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--heading);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-sub {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--black);
  background: var(--gold);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid var(--border-gold);
  background: rgba(200, 155, 43, 0.06);
}

.btn-ghost {
  color: var(--muted-strong);
  border: 1px solid var(--border);
  background: transparent;
}

.hero {
  /* The hero accepts either a real background video or the current SVG placeholder. */
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.48), rgba(5, 5, 5, 0.9)),
    linear-gradient(to top, var(--black), transparent 44%);
}

.hero-content {
  width: var(--container);
  margin-inline: auto;
  padding-top: 110px;
  animation: revealUp 700ms ease both;
}

.hero-logo {
  width: 150px;
  margin-bottom: 32px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--heading);
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(3.6rem, 8vw, 7.8rem);
  text-transform: uppercase;
}

.hero-lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid var(--border);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(14px);
}

.hero-strip-inner {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-strip-item {
  padding: 20px 24px;
  border-right: 1px solid var(--border);
}

.hero-strip-item:first-child {
  border-left: 1px solid var(--border);
}

.hero-strip-item strong {
  display: block;
  color: var(--white);
  font-family: var(--heading);
  font-size: 1.35rem;
}

.hero-strip-item span {
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding: 104px 0;
}

.section-dark {
  background: var(--dark);
}

.section-border {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 46px;
}

.section-header.centered {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-header h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  text-transform: uppercase;
}

.section-header p,
.page-hero p,
.text-block p {
  margin: 0;
  color: var(--muted-strong);
}

.page-hero {
  position: relative;
  min-height: 56svh;
  display: grid;
  align-items: end;
  padding: 150px 0 80px;
  overflow: hidden;
  isolation: isolate;
}

.page-hero .container {
  animation: revealUp 600ms ease both;
}

.about-grid,
.contact-grid,
.reservation-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.panel-body {
  padding: 28px;
}

.text-block {
  display: grid;
  gap: 20px;
}

.text-block h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}

.metric {
  padding: 28px;
  border-right: 1px solid var(--border);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--gold);
  font-family: var(--heading);
  font-size: 2.4rem;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 0.82rem;
}

.service-grid {
  /* One-pixel grid gap creates premium hairline dividers without nested cards. */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  min-height: 245px;
  padding: 28px;
  background: var(--black);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  background: var(--dark);
}

.service-card .service-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  border-radius: 50%;
  font-family: var(--heading);
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-btn {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted-strong);
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter-btn.is-active,
.filter-btn:hover {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--dark);
}

.project-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease, opacity 360ms ease;
}

.project-card:hover .project-thumb img {
  transform: scale(1.04);
  opacity: 0.74;
}

.play-mark {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
}

.project-content {
  padding: 20px;
}

.project-content p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-content h3 {
  margin: 0 0 18px;
  font-size: 1.25rem;
}

.gallery-grid {
  columns: 3 260px;
  column-gap: 18px;
}

.gallery-item {
  width: 100%;
  break-inside: avoid;
  margin: 0 0 18px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  transition: transform 360ms ease, opacity 360ms ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
  opacity: 0.8;
}

.form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  padding: 13px 14px;
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(245, 245, 245, 0.42);
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.info-list a,
.info-list span {
  color: var(--muted-strong);
  text-decoration: none;
}

.info-list strong {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(245, 245, 245, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(245, 245, 245, 0.035) 1px, transparent 1px),
    var(--dark);
  background-size: 42px 42px;
  color: var(--muted);
  text-align: center;
}

.cta-band {
  padding: 54px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--dark);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-inner h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  text-transform: uppercase;
}

.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: #030303;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  gap: 36px;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
}

.site-footer a {
  display: block;
  text-decoration: none;
  margin: 8px 0;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  text-transform: uppercase;
}

.copyright {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.84rem;
}

.modal,
.lightbox {
  /* Shared overlay foundation for project videos and gallery images. */
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.84);
}

.modal.is-open,
.lightbox.is-open {
  display: flex;
}

.modal-dialog {
  width: min(920px, 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: var(--shadow);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}

.modal-header h2 {
  margin: 0;
  font-size: 1.3rem;
}

.modal-close,
.lightbox-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: var(--black);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-body {
  padding: 20px;
  color: var(--muted-strong);
}

.lightbox img {
  width: min(980px, 100%);
  max-height: 82svh;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.lightbox-close {
  position: fixed;
  right: 22px;
  top: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1060px) {
  .nav-links {
    position: fixed;
    inset: 78px 18px auto 18px;
    display: none;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(5, 5, 5, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-actions .btn {
    display: none;
  }

  .section-header,
  .about-grid,
  .contact-grid,
  .reservation-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  .brand-text {
    display: none;
  }

  .brand img {
    width: 76px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-strip {
    position: static;
  }

  .hero-strip-inner {
    grid-template-columns: 1fr;
  }

  .hero-strip-item,
  .hero-strip-item:first-child {
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .section {
    padding: 72px 0;
  }

  .page-hero {
    min-height: 440px;
    padding: 130px 0 64px;
  }

  .service-grid,
  .portfolio-grid,
  .metric-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metric,
  .metric:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Reference alignment: visual language from a-h-prod-sud-site/index-original.html */
:root {
  --gold: #c8a96e;
  --gold-dim: #8a7249;
  --gold-pale: #edd9a3;
  --black: #040404;
  --dark: #0c0b09;
  --dark-soft: #111009;
  --white: #f5f0e8;
  --muted: #7a7262;
  --muted-strong: #b9ad96;
  --border: rgba(200, 169, 110, 0.18);
  --border-gold: rgba(138, 114, 73, 0.95);
  --heading: "Cormorant Garamond", Georgia, serif;
  --body: "Jost", Arial, sans-serif;
  --radius: 0;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-weight: 300;
  letter-spacing: 0;
  cursor: none;
}

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

#cursor,
#cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

#cursor {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  opacity: 0.6;
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
}

#cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
}

.site-header {
  background: linear-gradient(to bottom, rgba(4, 4, 4, 0.92) 0%, transparent 100%);
  border-bottom: 0;
}

.site-header.is-scrolled {
  background: rgba(4, 4, 4, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: none;
}

.nav {
  width: auto;
  min-height: auto;
  padding: 28px 56px;
  transition: padding 0.4s ease;
}

.site-header.is-scrolled .nav {
  padding: 18px 56px;
}

.brand {
  gap: 14px;
}

.brand img {
  width: 58px;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  opacity: 0.95;
}

.brand-name {
  font-family: var(--heading);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: none;
}

.brand-sub {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.24em;
}

.nav-links {
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.2em;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold);
}

.btn {
  min-height: auto;
  border-radius: 0;
  padding: 13px 28px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.btn:hover {
  transform: none;
}

.btn-primary {
  color: var(--black);
  background: var(--gold);
  border: 1px solid var(--gold);
}

.btn-secondary,
.btn-ghost {
  color: var(--white);
  border: 1px solid var(--border);
  background: transparent;
}

.btn-secondary:hover,
.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.hero {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media {
  display: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(200, 169, 110, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200, 169, 110, 0.04) 0%, transparent 50%),
    var(--black);
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  opacity: 0.06;
}

.hero-lines::before,
.hero-lines::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.hero-lines::before {
  left: 22%;
}

.hero-lines::after {
  right: 22%;
}

.hero::after {
  display: none;
}

.hero-content {
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0 40px;
  text-align: center;
}

.hero-logo {
  display: none;
}

.eyebrow,
.hero-eyebrow {
  margin: 0 0 28px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.hero-eyebrow {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.9s 0.3s ease forwards;
}

.hero-title,
h1 {
  font-family: var(--heading);
  font-weight: 300;
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: 0.92;
  text-transform: none;
}

.hero-title {
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.1s 0.55s ease forwards;
}

.hero-title em,
.section-header h2 em,
.text-block h2 em {
  color: var(--gold-pale);
  font-style: italic;
}

.block-title {
  display: block;
}

.hero-divider {
  width: 60px;
  height: 1px;
  margin: 36px auto;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  animation: fadeIn 0.8s 1.1s ease forwards;
}

.hero-lead,
.hero-sub {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 0.8s 1.3s ease forwards;
}

.hero-actions {
  justify-content: center;
  margin-top: 34px;
  opacity: 0;
  animation: fadeIn 0.8s 1.55s ease forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 0.8s 1.9s ease forwards;
}

.hero-scroll span {
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 1.8s 2s ease-in-out infinite;
}

.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: var(--dark);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

.marquee-item {
  flex-shrink: 0;
  padding: 0 48px;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.marquee-item span {
  color: var(--gold);
  margin-right: 48px;
}

.hero-strip {
  display: none;
}

.section {
  padding: 120px 56px;
}

.section-dark {
  background: var(--dark);
}

.section-border {
  border-color: var(--border);
}

.container {
  width: 100%;
  max-width: none;
}

.about-grid,
.section-header,
.contact-grid,
.reservation-grid {
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.section-header {
  margin-bottom: 72px;
}

.section-header h2,
.text-block h2,
.cta-inner h2 {
  color: var(--white);
  font-family: var(--heading);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  text-transform: none;
}

.section-header p,
.text-block p,
.page-hero p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.85;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 0;
  background: var(--border);
}

.service-card {
  min-height: 270px;
  padding: 48px 36px;
  background: var(--dark);
}

.service-card:hover {
  background: var(--dark-soft);
}

.service-card .service-number {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 24px;
  border: 0;
  color: rgba(200, 169, 110, 0.12);
  font-family: var(--heading);
  font-size: 3.5rem;
  line-height: 1;
}

.service-card h3,
.project-content h3 {
  font-family: var(--heading);
  font-size: 1.45rem;
  font-weight: 400;
}

.service-card p,
.project-content p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.8;
}

.portfolio-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.project-card,
.gallery-item,
.panel,
.modal-dialog {
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--dark-soft);
}

.project-thumb img,
.gallery-item img {
  filter: brightness(0.72) saturate(0.45);
}

.project-card:hover .project-thumb img,
.gallery-item:hover img {
  filter: brightness(0.52) saturate(0.25);
}

.play-mark {
  border-radius: 0;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  background: rgba(4, 4, 4, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-content p {
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stat:last-child {
  border-right: 0;
}

.stat-num {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: var(--heading);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
}

.stat-label {
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  color: var(--white);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--black);
}

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

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

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

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.8);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (max-width: 1024px) {
  .nav {
    padding: 24px 32px;
  }

  .site-header.is-scrolled .nav {
    padding: 16px 32px;
  }

  .nav-links {
    inset: 78px 24px auto 24px;
    background: rgba(4, 4, 4, 0.98);
  }

  .section,
  .page-hero {
    padding-inline: 32px;
  }

  .about-grid,
  .section-header,
  .contact-grid,
  .reservation-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 640px) {
  .brand img {
    width: 72px;
  }

  .brand-text {
    display: grid;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-sub {
    display: none;
  }

  .hero-title,
  h1 {
    font-size: 3.2rem;
  }

  .hero-actions,
  .cta-inner {
    align-items: center;
  }

  .section,
  .page-hero {
    padding: 64px 24px;
  }

  .service-grid,
  .portfolio-grid,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
}

@media (pointer: coarse) {
  body {
    cursor: auto;
  }

  #cursor,
  #cursor-dot {
    display: none;
  }
}

.quote-hero {
  min-height: 58svh;
}

.quote-section {
  padding-top: 82px;
}

.quote-shell {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

.quote-studio-panel {
  min-width: 0;
}

.quote-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.quote-panel-head h2,
.quote-services-head h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--heading);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.08;
}

.quote-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 20px;
}

.quote-categories {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 8px;
}

.quote-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.quote-category span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-category strong {
  color: var(--gold);
  font-family: var(--heading);
  font-size: 1.15rem;
  font-weight: 300;
}

.quote-category:hover,
.quote-category.is-active {
  color: var(--white);
  border-color: var(--gold-dim);
  background: rgba(200, 169, 110, 0.08);
}

.quote-services {
  min-width: 0;
}

.quote-services-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
}

.quote-services-head .eyebrow {
  margin-bottom: 8px;
}

.quote-services-head h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.quote-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quote-service-card {
  min-height: 166px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 22px;
  border: 1px solid var(--border);
  background: var(--dark);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.quote-service-card:hover,
.quote-service-card.is-selected {
  border-color: var(--gold-dim);
  background: var(--dark-soft);
}

.quote-service-card.is-selected {
  transform: translateY(-2px);
}

.quote-service-card p {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.quote-service-card h4 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: var(--heading);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.15;
}

.quote-service-card strong {
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 300;
}

.quantity-control,
.quote-line-actions {
  display: inline-grid;
  grid-template-columns: 36px 54px 36px;
  align-items: center;
  border: 1px solid var(--border);
  width: max-content;
}

.quantity-control button,
.quote-line-actions button {
  width: 36px;
  height: 36px;
  color: var(--gold);
  background: transparent;
  cursor: pointer;
}

.quantity-control input {
  width: 54px;
  height: 36px;
  border: 0;
  border-inline: 1px solid var(--border);
  color: var(--white);
  background: transparent;
  text-align: center;
}

.quote-summary {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 24px;
}

.quote-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: start;
}

.quote-summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.quote-summary-header .eyebrow {
  margin: 0;
}

.quote-summary-header strong {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

.quote-selected {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.quote-empty,
.quote-tax-note,
[data-quote-status] {
  color: var(--muted);
  font-size: 0.84rem;
}

.quote-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.quote-line strong {
  display: block;
  color: var(--white);
  font-family: var(--heading);
  font-size: 1.08rem;
  font-weight: 400;
}

.quote-line span {
  color: var(--muted);
  font-size: 0.78rem;
}

.quote-line em {
  grid-column: 1 / -1;
  color: var(--gold);
  font-style: normal;
}

.quote-line-actions {
  grid-template-columns: 28px 28px 28px 28px;
}

.quote-line-actions button,
.quote-line-actions span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}

.quote-line-actions span {
  color: var(--white);
  border-inline: 1px solid var(--border);
}

.quote-totals {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.quote-totals div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.quote-totals strong {
  color: var(--white);
  font-weight: 400;
}

.quote-totals .quote-grand-total {
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--gold);
  font-size: 1.1rem;
}

.quote-totals .quote-grand-total strong {
  color: var(--gold);
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 300;
}

.quote-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.quote-client-grid {
  grid-template-columns: 0.72fr 1fr;
}

@media (max-width: 1120px) {
  .quote-shell,
  .quote-client-grid {
    grid-template-columns: 1fr;
  }

  .quote-summary,
  .quote-categories {
    position: static;
  }
}

@media (max-width: 760px) {
  .quote-shell {
    width: min(100% - 28px, 1280px);
  }

  .quote-panel-head,
  .quote-services-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-layout,
  .quote-service-grid,
  .quote-actions {
    grid-template-columns: 1fr;
  }
}

@media print {
  .site-header,
  .quote-categories,
  .quote-services,
  .quote-panel-head,
  .quote-client-section,
  .site-footer,
  .hero-scroll,
  #cursor,
  #cursor-dot {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
    cursor: auto;
  }

  body::before {
    display: none;
  }

  .page-hero,
  .quote-section {
    padding: 20px 0;
  }

  .page-hero::after,
  .page-hero-media {
    display: none;
  }

  .quote-shell {
    display: block;
    width: 100%;
  }

  .quote-summary {
    position: static;
    border: 1px solid #ddd;
    background: #fff;
    color: #111;
  }

  .quote-summary * {
    color: #111 !important;
  }
}

.rental-section {
  padding-top: 82px;
}

.rental-shell {
  width: min(1280px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: start;
  margin-inline: auto;
}

.rental-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  padding: 24px;
}

.rental-toolbar h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
}

.rental-date-grid {
  display: grid;
  grid-template-columns: 170px 170px 110px;
  gap: 12px;
  align-items: end;
}

.rental-days {
  min-height: 68px;
  display: grid;
  align-content: center;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
}

.rental-days span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rental-days strong {
  color: var(--gold);
  font-family: var(--heading);
  font-size: 1.4rem;
  font-weight: 300;
}

.rental-categories {
  margin-bottom: 18px;
}

.rental-equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rental-card {
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--dark);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.rental-card:hover {
  border-color: var(--gold-dim);
  background: var(--dark-soft);
  transform: translateY(-2px);
}

.rental-card.is-unavailable {
  opacity: 0.55;
}

.rental-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.rental-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.45);
}

.rental-card-body {
  padding: 20px;
}

.rental-card-cat {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.rental-card h3 {
  margin: 0 0 10px;
  font-family: var(--heading);
  font-size: 1.45rem;
  font-weight: 400;
}

.rental-card p {
  color: var(--muted);
}

.rental-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 18px 0;
  color: var(--muted);
}

.rental-meta strong {
  color: var(--white);
  font-weight: 400;
}

.rental-meta span {
  color: var(--gold);
  text-align: right;
}

[data-rental-status] {
  color: var(--muted);
}

@media (max-width: 1120px) {
  .rental-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .rental-shell {
    width: min(100% - 28px, 1280px);
  }

  .rental-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .rental-date-grid,
  .rental-equipment-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
