/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --chalk:    #f5f2ee;
  --stone:    #2b2b2b;
  --granite:  #4a4a4a;
  --rope:     #c8773a;
  --rope-light: #e8a96a;
  --accent:   #1a3a2a;
  --muted:    #7a7a7a;
  --card-bg:  #ffffff;
  --border:   #e0dbd4;

  --font-head: 'Georgia', 'Times New Roman', serif;
  --font-body: system-ui, -apple-system, sans-serif;
  --max-w: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--chalk);
  color: var(--stone);
  line-height: 1.6;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(245, 242, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

nav .logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  color: var(--accent);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

nav ul a {
  font-size: 0.9rem;
  color: var(--granite);
  transition: color 0.2s;
}

nav ul a:hover { color: var(--rope); }

.btn-nav {
  background: var(--accent);
  color: var(--chalk) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-size: 0.875rem !important;
  transition: background 0.2s !important;
}

.btn-nav:hover { background: var(--rope) !important; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,58,42,0.75) 0%, rgba(43,43,43,0.65) 55%, rgba(58,42,26,0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rope-light);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: var(--chalk);
  margin-bottom: 1.5rem;
}

.subhead {
  font-size: 1.1rem;
  color: rgba(245, 242, 238, 0.75);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.btn-primary {
  display: inline-block;
  background: var(--rope);
  color: var(--chalk);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--rope-light);
  transform: translateY(-1px);
}

/* ── Shared section styles ── */
section { padding: 5.5rem 0; }

h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--stone);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--granite);
  max-width: 620px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

/* ── Why It Matters ── */
.section-why { background: var(--chalk); }

.films {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.film-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
}

.film-card--accent {
  border-color: var(--rope);
  background: #fff8f3;
}

.film-badge {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.film-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--stone);
}

.film-card p { font-size: 0.95rem; color: var(--granite); line-height: 1.65; }

.films-cta {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--granite);
  border-left: 3px solid var(--rope);
  padding-left: 1.25rem;
  max-width: 560px;
}

/* ── Services ── */
.section-services {
  background: var(--accent);
}

.section-services h2,
.section-services .section-sub { color: var(--chalk); }
.section-services .section-sub { color: rgba(245,242,238,0.75); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 2rem;
  transition: background 0.2s;
}

.service:hover { background: rgba(255,255,255,0.1); }

.service-icon { font-size: 1.75rem; margin-bottom: 1rem; }

.service h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--chalk);
  margin-bottom: 0.65rem;
}

.service p { font-size: 0.9rem; color: rgba(245,242,238,0.7); line-height: 1.65; }

/* ── About ── */
.section-about { background: #eee9e2; }

.about-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  color: var(--granite);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.75;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 2rem;
}

.credential {
  font-size: 0.875rem;
  color: var(--granite);
  padding-left: 1.2rem;
  position: relative;
}

.credential::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--rope);
}

/* ── Second video ── */
.section-video2 {
  position: relative;
  height: 70vh;
  overflow: hidden;
  padding: 0;
}

.video2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* About photos */
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
  width: 420px;
  flex-shrink: 0;
}

.about-photo {
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.about-photo--main {
  grid-column: 1 / -1;
  height: 260px;
}

.about-photo--secondary,
.about-photo--tertiary {
  height: 160px;
}

/* ── Contact ── */
.section-contact { background: var(--chalk); }

.contact-form {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--granite);
  letter-spacing: 0.02em;
}

input, select, textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--card-bg);
  color: var(--stone);
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--rope);
}

textarea { resize: vertical; }

/* ── Footer ── */
footer {
  background: var(--stone);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

footer .logo {
  font-family: var(--font-head);
  color: var(--chalk);
  font-size: 1.1rem;
}

footer span:last-child {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── Responsive ── */
@media (max-width: 700px) {
  nav ul { display: none; }

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

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

  .about-photos { width: 100%; }

  .hero { padding: 7rem 1.5rem 4rem; }
}
