/* ---------- Design tokens ---------- */
:root {
  --cream: #FBF3E6;
  --cream-alt: #F5EAD8;
  --navy: #1B2A4A;
  --charcoal: #2B2B2B;
  --sky: #4EA1E0;
  --red: #E0362B;
  --teal: #159E8C;
  --pink: #F2A6CE;
  --yellow: #DCE85E;
  --orange: #F2A13D;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 16px;
}

p { margin: 0 0 16px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 10px;
}

.eyebrow-center { text-align: center; }

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-instagram {
  background: linear-gradient(135deg, var(--red), var(--pink) 50%, var(--orange));
  color: #fff;
  box-shadow: 0 6px 16px rgba(224, 54, 43, 0.25);
}

.btn-large { padding: 16px 32px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid rgba(27, 42, 74, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand-logo { height: 56px; width: auto; }

.site-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.site-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a:hover { color: var(--red); }

/* ---------- Hero ---------- */
.hero {
  padding-top: 64px;
  padding-bottom: 64px;
}

.hero-text {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 1.1rem;
  color: #4a4a4a;
  max-width: 540px;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  max-width: var(--max-width);
  max-height: 640px;
  margin: 0 auto;
  object-fit: cover;
  object-position: center 35%;
}

.gems-banner {
  background: var(--cream-alt);
  padding: 20px 0;
}

.hero-link-wrap {
  text-align: center;
  margin: 10px 0 0;
}

.hero-link {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
}

.hero-link:hover { text-decoration: underline; }

/* ---------- Story ---------- */
.story { padding: 96px 0; }

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.story-photos {
  position: relative;
  display: grid;
}

.story-photo {
  border-radius: 16px;
  object-fit: cover;
}

.story-photo-main {
  width: 100%;
  aspect-ratio: 3 / 4;
}

.story-photo-small {
  width: 45%;
  aspect-ratio: 1 / 1;
  position: absolute;
  bottom: -32px;
  right: -32px;
  border: 6px solid var(--cream);
  box-shadow: 0 12px 28px rgba(27,42,74,0.2);
}

.story-copy h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }

.story-copy em { color: var(--red); font-style: italic; }

/* ---------- Mission ---------- */
.mission {
  padding: 96px 0;
  background: var(--cream-alt);
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  max-width: 640px;
  margin: 0 auto 48px;
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  justify-content: center;
  gap: 28px;
}

.mission-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  border-top: 6px solid var(--navy);
  box-shadow: 0 8px 24px rgba(27,42,74,0.06);
}

.mission-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.mission-card p { margin: 0; color: #4a4a4a; }

.mission-card-red { border-top-color: var(--red); }
.mission-card-teal { border-top-color: var(--teal); }
.mission-card-orange { border-top-color: var(--orange); }

/* ---------- Gems gallery page ---------- */
.page-hero {
  padding: 64px 0 48px;
  text-align: center;
}

.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }

.page-hero p { max-width: 560px; margin: 0 auto; color: #4a4a4a; }

.gallery {
  padding: 0 0 96px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(27,42,74,0.06);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-caption {
  padding: 14px 16px;
  font-size: 0.9rem;
  color: #6a6a6a;
}

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 32px 0 48px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-logo { height: 40px; }

.site-footer p { margin: 0; }

.site-footer a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .site-nav { display: none; }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .story-photo-small {
    right: 0;
  }

  .mission-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .brand-logo { height: 44px; }
  .story, .mission { padding: 64px 0; }
}
