:root {
  --bg: #f6f1e9;
  --bg-soft: #fbf8f3;
  --panel: #fffdf9;
  --text: #181613;
  --muted: #6f675c;
  --line: #ded4c5;
  --gold: #9a7a45;
  --gold-soft: #c6a777;
  --ink: #131210;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

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

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

h1,
h2 {
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0.01em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgb(251 248 243 / 88%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.nav {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: max(0px, env(safe-area-inset-top));
}

.brand {
  font-family: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
  font-size: 1.18rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
}

.menu {
  display: none;
  position: fixed;
  inset: 64px 0 auto 0;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: 0.95rem 4vw 1.1rem;
  gap: 0.85rem;
  flex-direction: column;
  box-shadow: 0 16px 30px rgb(16 13 10 / 10%);
}

.menu.open {
  display: flex;
}

.menu a {
  color: var(--muted);
  font-weight: 500;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.menu-toggle {
  min-height: 40px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
}

.hero {
  padding: 1.9rem 0 2.35rem;
  background:
    radial-gradient(circle at 90% 0%, rgb(198 167 119 / 17%), transparent 42%),
    linear-gradient(180deg, #f9f5ee 0%, #f4eee3 100%);
}

.hero-content {
  display: grid;
  gap: 1.1rem;
}

.eyebrow {
  margin: 0 0 0.45rem;
  color: var(--gold);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

h1 {
  font-size: clamp(2rem, 8.5vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 0.62rem;
}

.hero-text > p {
  margin: 0;
  color: #5f5649;
  max-width: 60ch;
}

.hero-image {
  justify-self: start;
  width: min(430px, 100%);
}

.hero-image img {
  border-radius: 24px;
  border: 1px solid #d2c6b4;
  box-shadow: 0 24px 44px rgb(18 16 13 / 14%);
}

.cta-row {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  min-height: 44px;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  color: #1f160c;
}

.btn-ghost {
  border-color: #cdbfa9;
  background: rgb(255 255 255 / 60%);
}

.btn-ghost.dark {
  border-color: #c5a16a;
  color: #2f2212;
  background: rgb(255 245 226 / 72%);
}

.section {
  padding: 2.75rem 0;
}

h2 {
  font-size: clamp(1.5rem, 5.8vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.section-intro {
  margin: 0 0 1.05rem;
  color: var(--muted);
  line-height: 1.5;
}

.about-grid {
  display: grid;
  gap: 1rem;
}

.about-copy p {
  margin: 0 0 0.75rem;
  color: #50473b;
}

.facts {
  display: grid;
  gap: 0.7rem;
}

.fact {
  padding: 0.9rem;
  border-radius: 14px;
  border: 1px solid #e3d9cb;
  background: #fdfaf5;
}

.fact .label {
  color: #8a7d6b;
  font-size: 0.84rem;
}

.fact .value {
  margin-top: 0.22rem;
  font-weight: 600;
}

.section-dark {
  background: #f2ecdf;
}

.gallery-grid {
  columns: 1 290px;
  column-gap: 0.7rem;
}

.gallery-card {
  break-inside: avoid;
  margin-bottom: 0.7rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #ddcfbd;
  background: #fffaf2;
}

.gallery-card img {
  width: 100%;
  height: auto;
}

.gallery-meta {
  padding: 0.7rem 0.8rem 0.85rem;
  display: grid;
  gap: 0.45rem;
  color: #584f44;
  font-size: 0.94rem;
  line-height: 1.35;
}

.gallery-meta a {
  color: #7d6031;
  font-weight: 600;
}

.section-cinematic {
  background: #15130f;
  color: #f8f3eb;
  padding-bottom: 0;
}

.section-cinematic h2 {
  color: #f8f3eb;
}

.section-cinematic .section-intro {
  color: #d8cbbb;
}

.background-video-list {
  display: grid;
  gap: 1px;
  margin-top: 1.4rem;
  background: #2c271f;
}

.background-video-item {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #000;
  overflow: hidden;
}

.background-video-item iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.background-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0.85rem;
  background: linear-gradient(180deg, rgb(0 0 0 / 14%), rgb(0 0 0 / 58%));
}

.background-video-copy {
  max-width: min(760px, 92vw);
}

.background-video-copy p {
  margin: 0;
}

.background-video-copy .eyebrow {
  color: #e3c391;
}

.background-video-title {
  font-family: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
  margin: 0 0 0.3rem;
  font-size: clamp(1.2rem, 4vw, 2.3rem);
  letter-spacing: 0.03em;
}

.background-video-description {
  color: #f4eee2;
}

.video-grid {
  display: grid;
  gap: 0.75rem;
}

.posts-grid {
  display: grid;
  gap: 0.75rem;
}

.post-card {
  border: 1px solid #e0d5c6;
  border-radius: 16px;
  background: #fffdf9;
  padding: 0.95rem;
  display: grid;
  gap: 0.5rem;
}

.post-card .eyebrow {
  margin: 0;
}

.post-card h3 {
  margin: 0;
  font-size: clamp(1.05rem, 4vw, 1.3rem);
}

.post-card p {
  margin: 0;
  color: #5d5348;
  line-height: 1.45;
}

.post-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #7d6031;
  font-weight: 600;
}

.video-card {
  border: 1px solid #e0d5c6;
  border-radius: 16px;
  overflow: hidden;
  background: #fffdf9;
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-caption {
  padding: 0.78rem 0.8rem 0.92rem;
  color: #5d5348;
  line-height: 1.35;
}

.empty-state {
  border: 1px dashed #bfad95;
  border-radius: 12px;
  padding: 0.95rem;
  color: #7d715f;
  background: #fcf8f1;
  line-height: 1.45;
}

.section-accent {
  background: linear-gradient(145deg, #efdfc1, #e4c591);
}

.contact-block h2,
.contact-block p {
  color: #261b0f;
}

.site-footer {
  border-top: 1px solid #dfd3c4;
  background: #f5efe4;
  padding: 0.9rem 0 calc(0.9rem + env(safe-area-inset-bottom));
  color: #7a6d5c;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

@media (max-width: 520px) {
  .container {
    width: min(1180px, 94vw);
  }

  .cta-row {
    width: 100%;
  }

  .cta-row .btn {
    width: 100%;
  }

  .brand {
    font-size: 1.02rem;
    letter-spacing: 0.16em;
  }

  .hero-image img {
    border-radius: 18px;
  }

  .section {
    padding: 2.5rem 0;
  }
}

@media (min-width: 760px) {
  .menu-toggle {
    display: none;
  }

  .menu {
    display: flex;
    position: static;
    flex-direction: row;
    background: transparent;
    border: 0;
    padding: 0;
    gap: 1.15rem;
  }

  .hero-content {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    min-height: min(76vh, 810px);
    gap: 1.7rem;
  }

  .hero-image {
    justify-self: end;
  }

  .about-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 1.4rem;
  }

  .gallery-grid {
    columns: 2 260px;
    column-gap: 1rem;
  }

  .background-video-item {
    aspect-ratio: 16 / 9;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap: 1rem;
  }

  .posts-grid {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap: 1rem;
  }

  .section {
    padding: 4.4rem 0;
  }
}

@media (min-width: 1080px) {
  .gallery-grid {
    columns: 3 280px;
  }

  .video-grid {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
  }

  .posts-grid {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
  }

  .background-video-overlay {
    padding: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
