@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Josefin+Sans:wght@200;300;400&display=swap');

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

:root {
  --black:      #0a0a08;
  --offwhite:   #f5f0e8;
  --cream:      #ede6d6;
  --gold:       #b8952a;
  --gold-light: #d4b054;
  --grey-mid:   #7a7468;
  --rule:       rgba(184,149,42,0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--offwhite);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ── HEADER ── */
header {
  position: relative;
  text-align: center;
  padding: 80px 24px 60px;
  border-bottom: 1px solid var(--rule);
}

header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184,149,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--offwhite);
  margin-bottom: 18px;
}

h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.tagline {
  font-style: italic;
  font-size: 1rem;
  color: var(--grey-mid);
  max-width: 560px;
  margin: 0 auto;
}

/* ── GALLERY ── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
}

.gallery-item {
  overflow: hidden;
  height: 500px;
  position: relative;


}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;


  display: block;


}


.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 20px 18px;
  background: linear-gradient(transparent, rgba(10,10,8,0.82));
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ── DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.divider-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── MAIN CONTENT ── */
main {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px 100px;
}

/* ── SECTIONS ── */
section {
  padding: 52px 0;
}

/* ── SECTION HEADINGS ── */
.section-label {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  color: var(--offwhite);
  margin-bottom: 20px;
}

p {
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

/* ── LISTS ── */
ul.styled {
  list-style: none;
  padding: 0;
}

ul.styled li {
  position: relative;
  padding-left: 20px;
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 4px;
}

ul.styled li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--grey-mid);
}

/* ── CONTACT ── */
.contact-block {
  text-align: center;
  padding: 52px 0 20px;
}

.contact-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--offwhite);
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.contact-details a {
  font-size: 1rem;
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
  padding-bottom: 2px;
}

.contact-details a:hover {
  color: var(--offwhite);
  border-color: var(--gold);
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid var(--rule);
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .gallery {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 40px 0;
  }

  .gallery-item {
  overflow: hidden;
  height: 500px;
    aspect-ratio: 4/3;
  }

  .gallery-caption {
    opacity: 1;
    transform: none;
  }

  section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  header {
    padding: 60px 20px 48px;
  }

  main {
    padding: 0 20px 80px;
  }
}

/* ── VIDEO GRID ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-item iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}

.video-title {
  margin-top: 10px;
  font-style: italic;
  color: var(--grey-mid);
  font-size: 0.95rem;
  text-align: center;
}

@media (max-width: 680px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}
