:root {
  --ink: #17222b;
  --cream: #f7f3ec;
  --paper: #fffdf9;
  --teal: #1f6e70;
  --teal-dark: #124c4e;
  --gold: #c5a55a;
  --rose: #b87569;
  --muted: #6f736f;
  --shadow: 0 24px 70px rgba(11, 20, 25, .18);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 4rem);
  color: white;
}
.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.75rem;
}
.brand strong,
.brand small { display: block; }
.brand strong { font-size: .98rem; letter-spacing: .08em; text-transform: uppercase; }
.brand small { font-size: .68rem; opacity: .8; letter-spacing: .08em; }

nav { display: flex; align-items: center; gap: 1.4rem; }
nav a { text-decoration: none; font-size: .9rem; font-weight: 600; }
.nav-button {
  padding: .65rem 1rem;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,14,18,.36), rgba(8,14,18,.22) 35%, rgba(8,14,18,.88)),
    linear-gradient(90deg, rgba(8,14,18,.5), transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  padding: 11rem clamp(1.25rem, 7vw, 7rem) clamp(3.5rem, 8vw, 7rem);
}
.eyebrow {
  margin: 0 0 .8rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .24em;
}
.hero h1,
.section h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.06;
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 7vw, 6.6rem);
}
.hero-content > p:not(.eyebrow) {
  max-width: 720px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255,255,255,.88);
}
.hero-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.6rem;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: .8rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
.button.primary {
  color: white;
  background: var(--teal);
}
.button.secondary {
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
}

.section {
  padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 7vw, 7rem);
}
.section-heading { max-width: 760px; margin-bottom: 2.5rem; }
.section h2 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
.section-heading > p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}
.dark {
  color: white;
  background: var(--ink);
}
.dark .section-heading > p:last-child { color: rgba(255,255,255,.72); }

.mission {
  text-align: center;
  background:
    radial-gradient(circle at 10% 15%, rgba(31,110,112,.08), transparent 25%),
    radial-gradient(circle at 90% 80%, rgba(197,165,90,.10), transparent 25%),
    var(--cream);
}
.mission .section-heading { margin-inline: auto; }
blockquote {
  max-width: 980px;
  margin: 2rem auto 3rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  line-height: 1.55;
}
blockquote em { color: var(--rose); }
.values {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 3rem;
}
.values span {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .28em;
}
.values span:not(:last-child)::after {
  content: "•";
  margin-left: 3rem;
  color: var(--gold);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.2rem;
}
.photo-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0f171c;
  box-shadow: var(--shadow);
}
.photo-card.large { grid-row: span 2; min-height: 680px; }
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 3rem 1.4rem 1.4rem;
  background: linear-gradient(transparent, rgba(0,0,0,.8));
}
.photo-card strong,
.photo-card span { display: block; }
.photo-card strong { font-size: 1.1rem; }
.photo-card span { color: rgba(255,255,255,.72); font-size: .9rem; }

.partnership {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}
.partnership-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.partnership-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.connect {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
}
.connect > div:first-child { max-width: 720px; }
.connect .button.secondary { color: white; }
.qr-card {
  width: min(300px, 100%);
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
  color: var(--ink);
  background: white;
}
.qr-card img { border-radius: 16px; }
.qr-card p { margin: .7rem 0 0; font-weight: 800; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1.25rem, 7vw, 7rem);
  color: var(--muted);
  background: var(--cream);
  font-size: .88rem;
}

@media (max-width: 900px) {
  nav a:not(.nav-button) { display: none; }
  .photo-grid,
  .partnership,
  .connect { grid-template-columns: 1fr; }
  .photo-card.large { min-height: 500px; grid-row: auto; }
  .qr-card { width: 260px; }
}

@media (max-width: 640px) {
  .site-header { padding: 1rem; }
  .brand small { display: none; }
  .hero { min-height: 88svh; }
  .hero > img { object-position: 56% center; }
  .hero-content { padding-inline: 1.25rem; }
  .hero-actions .button,
  .social-links .button { width: 100%; }
  .section { padding-inline: 1.25rem; }
  .photo-card,
  .photo-card.large { min-height: 360px; }
  .values { gap: .85rem 1rem; }
  .values span:not(:last-child)::after { margin-left: 1rem; }
  footer { flex-direction: column; }
}
