@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Sora:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #060606;
  --bg-soft: #101010;
  --bg-elevated: #181713;
  --bg-highlight: #222016;
  --panel: rgba(20, 18, 14, 0.84);
  --gold: #d8b35f;
  --gold-bright: #f0d487;
  --gold-deep: #8d6726;
  --ivory: #f4ebd8;
  --sand: #d4c3a0;
  --muted: #ab9b78;
  --line: rgba(217, 180, 96, 0.24);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 2rem));
  --ease: 240ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(216, 179, 95, 0.14), transparent 26%),
    radial-gradient(circle at 80% 0%, rgba(216, 179, 95, 0.08), transparent 18%),
    linear-gradient(180deg, #090909 0%, #050505 45%, #0b0a08 100%);
  color: var(--ivory);
  min-height: 100vh;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
}

main {
  overflow: clip;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.76rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.eyebrow::before {
  content: "";
  width: 2.8rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-title,
.hero-title,
.page-title,
.card-title,
.metric-value,
.spotlight-title,
.film-title,
.login-title {
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
  letter-spacing: -0.02em;
}

.section-title,
.page-title {
  font-size: clamp(2.4rem, 3vw, 4rem);
  margin: 0.75rem 0 1rem;
}

.section-copy,
.page-copy {
  max-width: 60ch;
  color: var(--sand);
}

.gold-text {
  color: var(--gold-bright);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(8, 8, 8, 0.82);
  border-bottom: 1px solid rgba(217, 180, 96, 0.12);
}

.topbar {
  border-bottom: 1px solid rgba(217, 180, 96, 0.08);
  color: var(--muted);
  font-size: 0.8rem;
}

.topbar-inner {
  width: var(--container);
  margin: 0 auto;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-shell {
  width: var(--container);
  margin: 0 auto;
  min-height: 5.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

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

.brand-label {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
}

.brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ivory);
  margin: 0 auto;
  transition: transform var(--ease), opacity var(--ease);
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bar::before {
  top: -0.36rem;
}

.nav-toggle-bar::after {
  top: 0.36rem;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before {
  transform: translateY(0.36rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after {
  transform: translateY(-0.36rem) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  font-size: 0.94rem;
  color: var(--sand);
  transition: color var(--ease), transform var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--gold-bright);
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  border: 1px solid transparent;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background var(--ease), color var(--ease);
}

.button {
  background: linear-gradient(135deg, #f4dd92 0%, #d4a84d 45%, #8e6524 100%);
  color: #18120a;
  font-weight: 700;
  box-shadow: 0 18px 50px rgba(214, 170, 74, 0.3);
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover {
  transform: translateY(-2px);
}

.button-secondary {
  border-color: rgba(244, 235, 216, 0.2);
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.03);
}

.button-ghost {
  border-color: var(--line);
  color: var(--gold-bright);
  background: transparent;
}

.nav-cta {
  margin-left: 0.4rem;
}

.hero {
  position: relative;
  padding: 6rem 0 4.5rem;
}

.hero::before,
.hero::after,
.page-hero::before {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  filter: blur(18px);
}

.hero::before {
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: rgba(216, 179, 95, 0.12);
  top: -4rem;
  right: -8rem;
}

.hero::after {
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(216, 179, 95, 0.08);
  bottom: 4rem;
  left: -5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.88fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(3.6rem, 7vw, 6.7rem);
  margin: 1rem 0 1.2rem;
  max-width: 10ch;
}

.hero-text {
  max-width: 56ch;
  color: var(--sand);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.8rem;
  margin-top: 2.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-meta strong {
  display: block;
  color: var(--ivory);
}

.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(27, 24, 18, 0.95), rgba(9, 9, 9, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-card img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
}

.hero-card-overlay {
  position: absolute;
  inset: auto 1.35rem 1.35rem 1.35rem;
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.08), rgba(6, 6, 6, 0.86));
  border: 1px solid rgba(244, 235, 216, 0.12);
  border-radius: calc(var(--radius-md) - 2px);
  padding: 1.15rem;
}

.hero-card-overlay strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.metric-row,
.service-grid,
.story-grid,
.split-grid,
.highlight-grid,
.gallery-grid,
.location-grid,
.contact-grid,
.login-grid,
.footer-grid,
.media-grid,
.timeline,
.awards-grid {
  display: grid;
  gap: 1.3rem;
}

.metric-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.2rem;
}

.metric-card,
.panel,
.service-card,
.spotlight-card,
.gallery-card,
.location-card,
.contact-card,
.login-card,
.film-card,
.award-card {
  background: linear-gradient(180deg, rgba(21, 20, 17, 0.92), rgba(10, 10, 10, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.panel {
  padding: 1.5rem;
}

.metric-card {
  padding: 1.3rem 1.2rem;
}

.metric-value {
  font-size: 2.1rem;
  color: var(--gold-bright);
  margin-bottom: 0.2rem;
}

.metric-label,
.card-copy,
.service-card p,
.spotlight-card p,
.location-card p,
.contact-card p,
.film-card p,
.award-card p {
  color: var(--sand);
}

.section {
  padding: 4.6rem 0;
}

.section-header {
  margin-bottom: 2rem;
}

.story-grid,
.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.stack {
  display: grid;
  gap: 1rem;
}

.media-stack {
  position: relative;
  min-height: 100%;
}

.media-card,
.wide-media,
.gallery-card img,
.award-card img,
.location-visual img {
  border-radius: var(--radius-md);
}

.media-card {
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card.primary {
  aspect-ratio: 4 / 5;
}

.media-card.secondary {
  position: absolute;
  width: min(48%, 240px);
  right: -0.4rem;
  bottom: 1rem;
  aspect-ratio: 4 / 3;
}

.info-chip-row,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.info-chip,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.88rem;
}

.service-grid,
.highlight-grid,
.contact-grid,
.location-grid,
.awards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.spotlight-card,
.contact-card,
.location-card,
.film-card,
.award-card,
.login-card {
  padding: 1.5rem;
}

.service-index,
.film-badge,
.location-badge,
.contact-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: rgba(217, 180, 96, 0.12);
  color: var(--gold-bright);
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.card-title,
.spotlight-title,
.film-title,
.login-title {
  font-size: 2rem;
  margin: 0 0 0.75rem;
}

.home-gallery {
  margin-top: 1.4rem;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-card {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 480ms ease;
}

.gallery-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  background: linear-gradient(180deg, transparent, rgba(6, 6, 6, 0.9));
  color: var(--ivory);
  font-size: 0.9rem;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.wide-media {
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.wide-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-hero {
  position: relative;
  padding: 5.3rem 0 3rem;
}

.page-hero::before {
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(216, 179, 95, 0.09);
  right: -6rem;
  top: -3rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr);
  gap: 1.6rem;
  align-items: end;
}

.page-title {
  max-width: 11ch;
}

.page-panel {
  padding: 1.35rem;
}

.page-panel strong {
  display: block;
  font-size: 1rem;
  color: var(--gold-bright);
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.film-card ul,
.location-card ul,
.contact-list,
.feature-list,
.footer-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.film-card li,
.location-card li,
.contact-list li,
.feature-list li,
.footer-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(217, 180, 96, 0.08);
  color: var(--sand);
}

.film-card li:last-child,
.location-card li:last-child,
.contact-list li:last-child,
.feature-list li:last-child,
.footer-list li:last-child {
  border-bottom: none;
}

.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-step {
  position: relative;
  padding: 1.35rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.timeline-step span {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--gold-bright);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.contact-grid {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 0.95rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.field {
  display: grid;
  gap: 0.55rem;
}

.field label {
  font-size: 0.88rem;
  color: var(--sand);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(217, 180, 96, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ivory);
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(240, 212, 135, 0.8);
  box-shadow: 0 0 0 4px rgba(217, 180, 96, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

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

.form-note,
.status-message,
.small-print {
  color: var(--muted);
  font-size: 0.9rem;
}

.status-message {
  min-height: 1.5rem;
}

.status-message.is-success {
  color: #c8efbc;
}

.status-message.is-error {
  color: #ffb3b3;
}

.login-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: stretch;
}

.login-card.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  background:
    linear-gradient(160deg, rgba(216, 179, 95, 0.17), rgba(10, 10, 10, 0.95) 42%),
    url("assets/images/brand-card.jpeg") center/cover;
}

.tab-switch {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 1.25rem;
}

.tab-switch button {
  border: none;
  background: transparent;
  color: var(--sand);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  transition: background var(--ease), color var(--ease);
}

.tab-switch button[aria-selected="true"] {
  background: linear-gradient(135deg, rgba(244, 221, 146, 0.14), rgba(141, 103, 38, 0.35));
  color: var(--gold-bright);
}

.tab-panel[hidden] {
  display: none;
}

.cta-band {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(244, 221, 146, 0.08), rgba(18, 18, 18, 0.92));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(217, 180, 96, 0.1);
  background: linear-gradient(180deg, rgba(8, 8, 8, 0), rgba(8, 8, 8, 0.95));
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.9fr 0.9fr;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 1rem;
}

.footer-title {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  color: var(--gold-bright);
  text-transform: uppercase;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(217, 180, 96, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.85rem;
}

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

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}

.lightbox.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-dialog {
  position: relative;
  width: min(92vw, 1080px);
}

.lightbox-dialog img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #050505;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 7, 7, 0.72);
  color: var(--ivory);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .story-grid,
  .split-grid,
  .login-grid,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .highlight-grid,
  .location-grid,
  .film-grid,
  .awards-grid,
  .gallery-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .media-card.secondary {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }
}

@media (max-width: 860px) {
  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .brand img {
    width: 150px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    inset: 8.05rem 1rem auto 1rem;
    display: grid;
    gap: 0.55rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(10, 10, 10, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-0.75rem);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--ease), opacity var(--ease);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta {
    margin-left: 0;
  }

  .hero {
    padding-top: 4.8rem;
  }

  .hero-title {
    font-size: clamp(3rem, 12vw, 4.8rem);
  }

  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 640px) {
  .service-grid,
  .highlight-grid,
  .location-grid,
  .film-grid,
  .awards-grid,
  .gallery-grid,
  .timeline,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .nav-shell {
    min-height: 4.8rem;
  }

  .brand {
    gap: 0.65rem;
  }

  .brand img {
    width: 134px;
  }

  .brand-tag {
    font-size: 0.62rem;
  }

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

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .page-hero {
    padding-top: 4.5rem;
  }
}
