@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@400;500;600&display=swap');

:root {
  --burgundy: #6B1F2A;
  --burgundy-dark: #4E1520;
  --gold: #B8923F;
  --cream: #F7F1E6;
  --ivory: #FFFDF8;
  --charcoal: #2B2420;
  --charcoal-soft: #55483F;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--burgundy);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; max-width: 62ch; }

a { color: var(--burgundy); }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */

.site-header {
  background: var(--ivory);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--burgundy);
  line-height: 1.2;
  max-width: 220px;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.98rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

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

/* Hero (home page) */

.hero {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--burgundy-dark) 0%, rgba(78, 21, 32, 0.92) 38%, rgba(78, 21, 32, 0.55) 70%, rgba(78, 21, 32, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 96px 0 84px;
}

.hero-text .eyebrow-rule {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 24px;
}

.hero-text h1 {
  color: var(--ivory);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin-bottom: 0.4em;
}

.hero-text p.lede {
  color: #EFE4D8;
  font-size: 1.15rem;
  max-width: 46ch;
}

.services-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-list li {
  font-size: 1.05rem;
  padding-left: 22px;
  position: relative;
  color: var(--ivory);
}

.services-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-video {
  position: relative;
  border: 3px solid var(--gold);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

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

/* Generic page section (about / contact) */

.page-hero {
  padding: 64px 0 20px;
}

.page-hero .eyebrow-rule {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 20px;
}

.split-section {
  padding: 24px 0 96px;
}

.split-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-section.reverse .container {
  direction: rtl;
}

.split-section.reverse .container > * {
  direction: ltr;
}

.split-section img {
  border-radius: 4px;
  box-shadow: 0 20px 48px rgba(43, 36, 32, 0.18);
}

.split-section h2 {
  font-size: 1.9rem;
}

.split-section h3 {
  font-size: 1.2rem;
  margin-top: 1.6em;
}

/* Contact form */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 460px;
  margin-top: 28px;
}

.contact-form label {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form input,
.contact-form textarea {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid #D9CBB8;
  border-radius: 3px;
  background: var(--ivory);
  color: var(--charcoal);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

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

.btn-primary {
  align-self: flex-start;
  background: var(--burgundy);
  color: var(--ivory);
  border: none;
  padding: 13px 28px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 3px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s ease;
}

.btn-primary:hover { background: var(--burgundy-dark); }

.form-note {
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  margin-top: -4px;
}

.direct-email {
  margin-top: 28px;
  font-size: 0.95rem;
}

/* Footer */

.site-footer {
  background: var(--burgundy-dark);
  color: #E4D6C8;
  padding: 28px 0;
  margin-top: 0;
}

.site-footer .container {
  text-align: center;
  font-size: 0.88rem;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

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

/* Responsive */
@media (max-width: 880px) {
  .hero-content,
  .split-section .container {
    grid-template-columns: 1fr;
  }

  .split-section.reverse .container {
    direction: ltr;
  }

  .hero-content { padding: 56px 0; }

  nav.main-nav ul { gap: 20px; }

  .brand-name { max-width: none; }
}

@media (max-width: 560px) {
  .site-header .container { flex-wrap: wrap; gap: 12px; }
  nav.main-nav ul { gap: 16px; font-size: 0.92rem; }
}
