:root {
  --bg: #fffaf0;
  --paper: #fffdf8;
  --text: #1b2430;
  --muted: #4b5a6a;
  --accent: #ff6a3d;
  --accent-2: #0a8f8a;
  --line: #e8dfd0;
  --shadow: 0 24px 60px rgba(26, 30, 36, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 5%, #ffe8cd 0%, rgba(255, 232, 205, 0) 30%),
    radial-gradient(circle at 92% 14%, #d8f4ef 0%, rgba(216, 244, 239, 0) 35%),
    var(--bg);
  min-height: 100vh;
  line-height: 1.55;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  filter: blur(3px);
  opacity: 0.45;
  animation: drift 16s ease-in-out infinite;
}

.bg-shape-one {
  width: 280px;
  height: 280px;
  top: 16%;
  left: -40px;
  border-radius: 42% 58% 30% 70% / 43% 44% 56% 57%;
  background: linear-gradient(160deg, #ffe398 0%, #ffd1ba 100%);
}

.bg-shape-two {
  width: 340px;
  height: 340px;
  right: -50px;
  bottom: 12%;
  border-radius: 58% 42% 63% 37% / 34% 58% 42% 66%;
  background: linear-gradient(140deg, #9ce6da 0%, #b2dbff 100%);
  animation-delay: -6s;
}

.site-header,
.section,
.site-footer {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0 0.6rem;
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  z-index: 50;
}

.brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 900;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.site-nav a:hover {
  background: #fff0e5;
  color: #9f3b20;
}

.section {
  margin-top: clamp(1.4rem, 4vw, 3.2rem);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.2rem, 3.5vw, 3rem);
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--accent-2);
  font-weight: 700;
  margin: 0 0 0.6rem;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.05;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2rem, 5.6vw, 4.35rem);
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1.15rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff9257);
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 106, 61, 0.35);
}

.btn-ghost {
  border-color: #d8ccba;
  color: var(--text);
  background: var(--paper);
}

.hero-media {
  display: grid;
  gap: 0.95rem;
}

.hero-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-photo img,
.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-photo-large {
  min-height: 320px;
}

.hero-photo-small {
  max-width: 74%;
  justify-self: end;
  min-height: 180px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.story-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  box-shadow: 0 10px 25px rgba(32, 37, 43, 0.06);
}

.story-card h2 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 0.6rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.9rem;
}

.gallery-card {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 160px;
  box-shadow: 0 10px 24px rgba(27, 36, 48, 0.14);
}

.gallery-card:nth-child(1) {
  grid-column: span 5;
  min-height: 300px;
}

.gallery-card:nth-child(2) {
  grid-column: span 3;
  min-height: 300px;
}

.gallery-card:nth-child(3) {
  grid-column: span 4;
  min-height: 300px;
}

.gallery-card:nth-child(4) {
  grid-column: span 4;
}

.gallery-card:nth-child(5) {
  grid-column: span 4;
}

.gallery-card:nth-child(6) {
  grid-column: span 4;
}

.cta {
  background:
    linear-gradient(130deg, rgba(255, 106, 61, 0.14), rgba(10, 143, 138, 0.16)),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.site-footer {
  padding: 1.8rem 0 2.8rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(10px, -14px, 0) rotate(4deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    padding-top: 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-photo-small {
    max-width: 58%;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-card:nth-child(1),
  .gallery-card:nth-child(2),
  .gallery-card:nth-child(3),
  .gallery-card:nth-child(4),
  .gallery-card:nth-child(5),
  .gallery-card:nth-child(6) {
    grid-column: span 6;
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  body {
    background:
      radial-gradient(circle at 0% 3%, #ffe8cd 0%, rgba(255, 232, 205, 0) 35%),
      radial-gradient(circle at 100% 20%, #d8f4ef 0%, rgba(216, 244, 239, 0) 30%),
      var(--bg);
  }

  .site-header,
  .section,
  .site-footer {
    width: min(1120px, calc(100% - 1.2rem));
  }

  .site-nav {
    gap: 0.25rem;
  }

  .site-nav a {
    font-size: 0.92rem;
    padding: 0.35rem 0.65rem;
  }

  .hero-photo-large {
    min-height: 260px;
  }

  .hero-photo-small {
    min-height: 160px;
    max-width: 75%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card:nth-child(1),
  .gallery-card:nth-child(2),
  .gallery-card:nth-child(3),
  .gallery-card:nth-child(4),
  .gallery-card:nth-child(5),
  .gallery-card:nth-child(6) {
    grid-column: span 1;
    min-height: 190px;
  }
}
