:root {
  --bg: #f4efe7;
  --panel: rgba(255, 250, 244, 0.74);
  --panel-strong: #f8f2ea;
  --text: #1c1815;
  --muted: #655c55;
  --line: rgba(28, 24, 21, 0.1);
  --accent: #b85c38;
  --accent-dark: #8a4124;
  --shadow: 0 24px 60px rgba(46, 31, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(184, 92, 56, 0.12), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(114, 86, 56, 0.12), transparent 24%),
    linear-gradient(180deg, #fbf7f1 0%, var(--bg) 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 4rem;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 247, 241, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(61, 42, 29, 0.08);
}

.brand,
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
}

.brand {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.site-nav {
  display: flex;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  padding: 4.5rem 0 3rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.92;
  max-width: 10ch;
}

.hero-text,
.about-panel p,
.contact-card p,
.gallery-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 34rem;
  margin: 1.25rem 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #fff8f2;
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.hero-card,
.about-panel,
.stats-panel,
.contact-card,
.gallery-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1rem;
  border-radius: 2rem;
}

.hero-image {
  display: block;
  width: 100%;
  height: 34rem;
  object-fit: cover;
  object-position: center;
  border-radius: 1.4rem;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.25rem 0.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.featured-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 4rem;
}

.featured-strip p {
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-align: center;
  background: rgba(255, 255, 255, 0.42);
  color: var(--muted);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-heading h2,
.about-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
  max-width: 12ch;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.gallery-card {
  overflow: hidden;
  border-radius: 1.5rem;
}

.gallery-card:nth-child(1) {
  grid-column: span 5;
}

.gallery-card:nth-child(2) {
  grid-column: span 3;
}

.gallery-card:nth-child(3) {
  grid-column: span 4;
}

.gallery-wide {
  grid-column: span 12;
}

.gallery-image {
  display: block;
  width: 100%;
  height: 18rem;
  object-fit: cover;
  object-position: center;
}

.gallery-tall .gallery-image {
  height: 32rem;
}

.gallery-copy {
  padding: 1.1rem 1.1rem 1.3rem;
}

.gallery-copy h3 {
  margin: 0 0 0.35rem;
  font-size: 1.9rem;
}

.masonry-section {
  margin-top: 4rem;
}

.masonry-grid {
  column-count: 3;
  column-gap: 1rem;
}

.masonry-card {
  break-inside: avoid;
  margin: 0 0 1rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: rgba(255, 250, 244, 0.72);
  box-shadow: var(--shadow);
}

.masonry-card img {
  display: block;
  width: 100%;
  border-radius: 1rem;
}

.masonry-card figcaption {
  padding: 0.8rem 0.2rem 0.1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.about-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  margin-top: 4rem;
}

.about-panel,
.stats-panel,
.contact-card {
  border-radius: 1.7rem;
  padding: 1.5rem;
}

.stats-panel {
  display: grid;
  gap: 1rem;
  align-content: center;
  background: linear-gradient(180deg, rgba(184, 92, 56, 0.08), rgba(255, 255, 255, 0.5));
}

.stat-number {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 0.95;
}

.stat-label {
  color: var(--muted);
}

.contact-section {
  margin-top: 4rem;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 920px) {
  .hero,
  .about-section,
  .contact-card,
  .section-heading {
    grid-template-columns: 1fr;
    display: grid;
  }

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

  .masonry-grid {
    column-count: 2;
  }

  .gallery-card:nth-child(1),
  .gallery-card:nth-child(2),
  .gallery-card:nth-child(3),
  .gallery-wide {
    grid-column: span 12;
  }

  .hero-card {
    order: -1;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 1rem, 1180px);
  }

  .site-header {
    border-radius: 1.4rem;
    padding: 1rem;
  }

  .site-nav {
    gap: 0.75rem;
    font-size: 0.88rem;
  }

  .featured-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-image {
    height: 24rem;
  }

  .hero-meta,
  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .masonry-grid {
    column-count: 1;
  }
}
