:root {
  --ink: #18251f;
  --muted: #6e746e;
  --cream: #fbf7ef;
  --paper: #fffdf8;
  --sage: #dfe7dc;
  --moss: #536b54;
  --rose: #b45f77;
  --gold: #c5a35a;
  --shadow: 0 24px 70px rgba(24, 37, 31, 0.18);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(196, 163, 90, 0.18), transparent 30rem),
    linear-gradient(180deg, var(--cream), #f4efe6 60%, #fffaf2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(24, 37, 31, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 37, 31, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  z-index: -1;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: calc(var(--max) + 3rem);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(24, 37, 31, 0.16);
  border-radius: 50%;
  color: var(--ink);
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 12px 36px rgba(24, 37, 31, 0.08);
}

nav {
  display: flex;
  gap: 0.2rem;
  padding: 0.3rem;
  border: 1px solid rgba(24, 37, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
}

nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  transition: background 220ms ease, transform 220ms ease;
}

nav a:hover,
nav a:focus-visible {
  background: rgba(83, 107, 84, 0.12);
  transform: translateY(-1px);
}

.section-pad {
  max-width: var(--max);
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: 3.6rem;
  align-items: center;
  min-height: calc(100svh - 72px);
  padding-top: 4rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--moss);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(4.2rem, 12vw, 9.4rem);
}

h2 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.subtitle {
  max-width: 36rem;
  margin: 1.4rem 0 2rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.72rem 1.25rem;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(24, 37, 31, 0.2);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(24, 37, 31, 0.25);
}

.hero-photos {
  position: relative;
  min-height: 650px;
}

.photo-card,
.gallery-card {
  overflow: hidden;
  border: 12px solid var(--paper);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.photo-card img,
.gallery-card img,
.closing-inner img,
.image-break img {
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 900ms ease;
}

.photo-card:hover img,
.gallery-card:hover img,
.closing-inner:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.hero-photo-one {
  position: absolute;
  top: 3rem;
  right: 1rem;
  width: min(68%, 470px);
  height: 440px;
  transform: rotate(2deg);
}

.hero-photo-two {
  position: absolute;
  left: 0;
  top: 13rem;
  width: min(48%, 360px);
  height: 230px;
  transform: rotate(-4deg);
}

.hero-photo-three {
  position: absolute;
  bottom: 1.2rem;
  right: 5rem;
  width: min(70%, 520px);
  height: 270px;
  transform: rotate(-1deg);
}

.intro-band {
  margin: 0 auto;
  max-width: 1000px;
  padding: 4rem 1.5rem;
  text-align: center;
}

.intro-band p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.two-column {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.story-text {
  color: #35433b;
  font-size: 1.1rem;
}

.story-text p:first-child::first-letter {
  float: left;
  padding: 0.08rem 0.5rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.4rem;
  line-height: 0.8;
  color: var(--rose);
}

.image-break {
  position: relative;
  min-height: 75svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 3rem 0;
  background: #16231e;
}

.image-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 37, 31, 0.1), rgba(24, 37, 31, 0.52));
}

.image-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 115%;
  object-fit: cover;
  opacity: 0.82;
}

.image-break-text {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: min(920px, calc(100% - 2rem));
}

.image-break-text span {
  display: grid;
  place-items: center;
  min-height: 132px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(9px);
}

.award {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 4rem;
  align-items: center;
}

.award-panel {
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(24, 37, 31, 0.12);
  border-radius: calc(var(--radius) + 10px);
  background: rgba(255, 253, 248, 0.75);
  box-shadow: 0 20px 60px rgba(24, 37, 31, 0.08);
}

.award-panel p:last-child {
  margin: 1.6rem 0 0;
  color: #35433b;
  font-size: 1.12rem;
}

.award-photos {
  position: relative;
  min-height: 520px;
}

.award-photos .photo-card:first-child {
  position: absolute;
  right: 0;
  top: 0;
  width: 48%;
  height: 360px;
  transform: rotate(3deg);
}

.award-photos .photo-card:last-child {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 66%;
  height: 330px;
  transform: rotate(-2deg);
}

.centered {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 1rem;
}

.gallery-card {
  min-height: 280px;
  border-width: 8px;
  border-radius: 22px;
}

.gallery-card.tall {
  grid-row: span 2;
  min-height: 560px;
}

.gallery-card.wide {
  grid-column: span 2;
}

.quotes {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
}

.quote-list {
  display: grid;
  gap: 1rem;
}

blockquote {
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-left: 4px solid var(--gold);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 14px 40px rgba(24, 37, 31, 0.07);
}

blockquote p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.closing-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 3rem;
  align-items: center;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: calc(var(--radius) + 18px);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.closing-inner img {
  height: 460px;
  border-radius: var(--radius);
}

.closing-inner div {
  padding: 2rem 2rem 2rem 0;
}

.closing-inner .eyebrow {
  color: #dcd6c8;
}

.closing-inner p:last-child {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.13rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 850ms ease, transform 850ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 120ms; }
.delay-2 { transition-delay: 220ms; }
.delay-3 { transition-delay: 320ms; }

.float-slow { animation: floatSlow 8s ease-in-out infinite; }
.float-medium { animation: floatMedium 7s ease-in-out infinite; }
.float-fast { animation: floatFast 6.5s ease-in-out infinite; }

@keyframes floatSlow {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@keyframes floatMedium {
  0%, 100% { translate: 0 0; }
  50% { translate: 8px -12px; }
}

@keyframes floatFast {
  0%, 100% { translate: 0 0; }
  50% { translate: -8px -8px; }
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    overflow-x: auto;
    max-width: calc(100vw - 5.5rem);
  }

  .hero,
  .two-column,
  .award,
  .quotes,
  .closing-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-photos {
    min-height: 560px;
  }

  .image-break-text {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .closing-inner div {
    padding: 0 1rem 2rem;
  }
}

@media (max-width: 620px) {
  .section-pad {
    padding: 4rem 1rem;
  }

  .site-header {
    padding: 0.7rem 1rem;
  }

  nav a {
    font-size: 0.84rem;
    padding: 0.5rem 0.65rem;
  }

  .hero-photos {
    min-height: 470px;
  }

  .hero-photo-one {
    width: 78%;
    height: 280px;
    right: 0;
  }

  .hero-photo-two {
    width: 56%;
    height: 180px;
    top: 12.5rem;
  }

  .hero-photo-three {
    width: 82%;
    height: 190px;
    right: 0.5rem;
  }

  .photo-card,
  .gallery-card {
    border-width: 7px;
    border-radius: 18px;
  }

  .award-photos {
    min-height: 500px;
  }

  .award-photos .photo-card:first-child,
  .award-photos .photo-card:last-child {
    width: 74%;
  }

  .image-break {
    min-height: 62svh;
  }

  .image-break-text span {
    min-height: 92px;
    border-radius: 28px;
  }

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

  .gallery-card,
  .gallery-card.tall,
  .gallery-card.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@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;
  }
  .reveal { opacity: 1; transform: none; }
}
