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

  :root {
    --teal:       #0a7a76;
    --teal-light: #12b5b0;
    --teal-dark:  #024442;
    --teal-glow:  #013330;
    --bg:         #080d0d;
    --bg2:        #0b1212;
    --surface:    #131f1f;
    --text:       #e4efee;
    --text-muted: #6a9490;
    --border:     rgba(2, 68, 66, 0.4);
    --border-strong: rgba(10, 122, 118, 0.45);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-mono:    'DM Mono', monospace;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    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='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
    opacity: 0.4;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 3rem;
    background: linear-gradient(to bottom, rgba(8,13,13,0.97) 0%, transparent 100%);
    backdrop-filter: blur(2px);
  }

  .nav-logo { text-decoration: none; }

  .nav-back {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-back:hover { color: var(--teal-light); }

  /* ── FILMSTRIP ── */
  .filmstrip {
    display: flex;
    width: 100%;
    height: 24px;
    overflow: hidden;
    opacity: 0.25;
  }

  .filmstrip-track {
    display: flex;
    gap: 4px;
    padding: 4px 0;
    width: 100%;
  }

  .filmstrip-hole {
    flex-shrink: 0;
    width: 14px;
    height: 10px;
    border: 1px solid var(--teal-light);
    border-radius: 2px;
  }

  /* ── HERO ── */
  .hero {
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 60% at 30% 50%, rgba(2, 68, 66, 0.22) 0%, transparent 70%);
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
  }

  .hero-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.5rem;
  }

  .hero-title-wrap {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .hero-logo-side {
    height: 110px;
    width: auto;
    flex-shrink: 0;
    opacity: 0.9;
  }

  .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--text);
    margin-bottom: 0;
  }

  .hero-title em { font-style: italic; color: var(--teal-light); }

  .hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.8;
  }

  /* ── FACTS ── */
  .facts-section {
    padding: 5rem 3rem;
    border-bottom: 1px solid var(--border);
  }

  .facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    max-width: 900px;
  }

  .fact-item {
    background: var(--bg);
    padding: 2.5rem 2rem;
  }

  .fact-number {
    font-size: 3rem;
    font-weight: 300;
    font-style: italic;
    color: var(--teal-light);
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .fact-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
  }

  .fact-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ── PHOTOS ── */
  .photos-section {
    padding: 5rem 3rem;
    border-bottom: 1px solid var(--border);
  }

  .section-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
  }

  .section-title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: var(--text);
  }

  .section-title em { font-style: italic; color: var(--teal-light); }

  .photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    max-width: 1100px;
  }

  .photo-item {
    aspect-ratio: 4/3;
    background: var(--surface);
    overflow: hidden;
    position: relative;
  }

  .photo-item.large {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }

  .photo-item.small {
    aspect-ratio: 4/3;
  }

  .photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.5s ease, opacity 0.3s;
    display: block;
  }

  .photo-item:hover img { transform: scale(1.03); opacity: 1; }

  .photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border-strong);
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  /* ── INCLUDES ── */
  .includes-section {
    padding: 5rem 3rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
  }

  .includes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
  }

  .include-item {
    padding: 2rem 1.5rem;
    border: 1px solid var(--border);
    position: relative;
  }

  .include-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 2px;
    height: 100%;
    background: var(--teal-dark);
  }

  .include-icon {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
  }

  .include-title {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.5rem;
  }

  .include-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ── FORM ── */
  .form-section {
    padding: 6rem 3rem;
  }

  .form-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
  }

  .form-intro p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  .form-intro .contact-direct {
    margin-top: 2rem;
    padding: 1.5rem;
    border-left: 2px solid var(--teal-dark);
    background: rgba(2, 68, 66, 0.06);
  }

  .contact-direct p {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem !important;
  }

  .contact-direct a {
    font-size: 1.1rem;
    color: var(--teal-light);
    text-decoration: none;
    font-family: var(--font-display);
  }

  /* Form elements */
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .form-group.full { grid-column: span 2; }

  label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  input, textarea, select {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 300;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
  }

  input:focus, textarea:focus, select:focus {
    border-color: var(--teal);
  }

  textarea {
    resize: vertical;
    min-height: 120px;
  }

  select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236a9490' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
  }

  select option {
    background: var(--bg);
    color: var(--text);
  }

  .form-note {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-top: 0.25rem;
  }

  .btn-submit {
    margin-top: 1.5rem;
    width: 100%;
    background: var(--teal);
    color: #e4efee;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }

  .btn-submit:hover {
    background: var(--teal-light);
    color: var(--teal-glow);
    transform: translateY(-1px);
  }

  .form-legal {
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* ── FOOTER ── */
  footer {
    padding: 2.5rem 3rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  footer .footer-left {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
  }

  footer .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  footer .footer-links a {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  footer .footer-links a:hover { color: var(--teal-light); }

  /* ── SUCCESS STATE ── */
  .form-success {
    display: none;
    text-align: center;
    padding: 3rem;
    border: 1px solid var(--border-strong);
  }

  .form-success.visible { display: block; }

  .form-success h3 {
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 300;
    color: var(--teal-light);
    margin-bottom: 1rem;
  }

  .form-success p {
    color: var(--text-muted);
    font-size: 0.95rem;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .facts-grid { grid-template-columns: 1fr; }
    .includes-grid { grid-template-columns: 1fr 1fr; }
    .photos-grid { grid-template-columns: 1fr 1fr; }
    .form-inner { grid-template-columns: 1fr; gap: 3rem; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }
    footer { flex-direction: column; gap: 1rem; }
    .hero-title-wrap { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .hero-logo-side { height: 80px; }
  }

  /* ── GLOBAL MAX WIDTH ── */
  .facts-section > *,
  .photos-section > *,
  .includes-section > *,
  .form-section > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .facts-section,
  .photos-section,
  .includes-section,
  .form-section {
    padding-left: 3rem;
    padding-right: 3rem;
  }
