@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

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

:root {
  --green: #215732;
  --purple: #6C3082;
  --white: #ffffff;
  --rule: #d8d0dc;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: #222;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

/* ── MASTHEAD ── */
.masthead {
  border-top: 3px solid var(--green);
  border-bottom: 1px solid var(--rule);
  padding: 48px 24px 36px;
  text-align: center;
}

.masthead .issue-line {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 20px;
}

.masthead h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--green);
  text-transform: uppercase;
}

.masthead h1 em {
  font-weight: 400;
  font-style: italic;
  display: block;
  font-size: 0.55em;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 6px;
}

.masthead .location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--purple);
}

.masthead .location::before,
.masthead .location::after {
  content: '';
  display: block;
  height: 1px;
  width: 48px;
  background: var(--purple);
  opacity: 0.5;
}

/* ── VIDEO ── */
.video-section {
  width: 100%;
  max-width: 1100px;
  margin: 52px auto 0;
  padding: 0 24px;
}

.video-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--purple);
  margin-bottom: 12px;
  text-align: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── ABOUT ── */
.about-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 64px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  align-items: start;
}

.about-label-col {
  padding-top: 8px;
  border-top: 2px solid var(--green);
}

.about-label-col span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--green);
  margin-top: 10px;
}

.about-label-col .section-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--rule);
  line-height: 1;
  margin-top: 16px;
}

.about-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
  font-weight: 300;
  line-height: 1.7;
  color: #2a2a2a;
  margin-bottom: 1.1em;
}

.about-text p:last-child { margin-bottom: 0; }

/* Drop cap */
.about-text p:first-child::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 4.2em;
  font-weight: 700;
  float: left;
  line-height: 0.75;
  margin: 6px 10px 0 0;
  color: var(--green);
}

/* ── INLINE VIDEOS ── */
.inline-video {
  width: 100%;
  max-width: 1100px;
  margin: 60px auto 60px;
  padding: 0 24px;
}

.inline-video .video-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--purple);
  margin-bottom: 12px;
  text-align: center;
}

/* ── INLINE PHOTOS (same treatment as inline videos) ── */
.inline-photo {
  width: 100%;
  max-width: 1100px;
  margin: 60px auto 60px;
  padding: 0 24px;
}

.inline-photo img {
  width: 100%;
  display: block;
}

.inline-video.vertical {
  max-width: 400px;
}

.inline-video.vertical .video-wrapper {
  padding-top: 177.78%;
}

/* ── PULL QUOTE ── */
.pull-quote {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 64px;
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}

.pull-quote::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  line-height: 0;
  color: var(--purple);
  opacity: 0.18;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.pull-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--green);
  line-height: 1.4;
  margin: 0 auto 14px;
  max-width: 680px;
  position: relative;
}

.pull-quote cite {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-style: normal;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
}

/* ── GALLERY ── */
.gallery-header {
  width: 100%;
  max-width: 1100px;
  margin: 80px auto 36px;
  padding: 36px 24px 0;
  border-top: 1px solid var(--rule);
  text-align: center;
}

.gallery-header span {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--green);
}

.gallery {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 100px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gallery-item { width: 100%; }

.gallery-item.full { grid-column: 1 / -1; }

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-item figure img {
  height: auto;
  object-fit: initial;
}

/* ── PHOTO CAPTIONS ── */
.gallery-item figcaption {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #999;
  padding: 10px 0 0;
  line-height: 1.4;
}

/* ── SECTION NOTE ── */
.section-note {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 36px;
  padding: 0 24px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-style: italic;
  color: var(--green);
}

/* ── EDITORIAL ASIDE (photo left, text right) ── */
.editorial-aside {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 64px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  align-items: center;
}

.editorial-aside-photos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.editorial-aside-photos img {
  width: 100%;
  display: block;
}

.editorial-aside-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  line-height: 1.75;
  color: #333;
}

.editorial-aside-text p {
  margin: 0;
}

@media (max-width: 700px) {
  .editorial-aside {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ── EDITORIAL NOTE ── */
.editorial-note {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 72px;
  padding: 0 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  line-height: 1.75;
  color: #333;
}

/* ── FOOTER ── */
footer {
  padding: 36px 24px;
  text-align: center;
  border-top: 3px solid var(--green);
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-label-col { display: flex; align-items: center; gap: 16px; }
  .about-label-col .section-num { margin-top: 0; font-size: 2.5rem; }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item.full { grid-column: 1; }
}
