* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f3ef;
  --bg-alt: #fff8ef;
  --ink: #1c1b1a;
  --muted: #5b5854;
  --accent: #d04f2f;
  --accent-dark: #a73a20;
  --leaf: #3b7f6f;
  --sun: #f2b542;
  --surface: #ffffff;
  --stroke: #e6ddd4;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px rgba(32, 28, 24, 0.12);
  --shadow-soft: 0 16px 40px rgba(32, 28, 24, 0.08);
  --max: 1120px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Archivo', sans-serif;
  background: radial-gradient(circle at top right, rgba(240, 216, 190, 0.45), transparent 55%),
    linear-gradient(180deg, #fdfaf6 0%, #f6f1eb 55%, #f3efe9 100%);
  color: var(--ink);
  line-height: 1.6;
}

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

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

.site-header {
  background: linear-gradient(135deg, rgba(208, 79, 47, 0.08), rgba(59, 127, 111, 0.12));
  padding: 24px 0 80px;
  position: relative;
  overflow: hidden;
}

.site-header::before,
.site-header::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
  z-index: 0;
}

.site-header::before {
  width: 260px;
  height: 260px;
  background: rgba(242, 181, 66, 0.3);
  top: -80px;
  left: -60px;
}

.site-header::after {
  width: 360px;
  height: 360px;
  background: rgba(59, 127, 111, 0.22);
  bottom: -180px;
  right: -140px;
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--accent);
}

.menu-toggle {
  background: var(--surface);
  border: 1px solid var(--stroke);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: none;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 500;
}

.menu a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.menu a:hover {
  background: rgba(208, 79, 47, 0.12);
  color: var(--accent-dark);
}

.menu .cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(208, 79, 47, 0.2);
}

.menu .cta:hover {
  background: var(--accent-dark);
  color: #fff;
}

.hero {
  max-width: var(--max);
  margin: 48px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
}

.hero-copy {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(208, 79, 47, 0.25);
}

.btn.ghost {
  background: transparent;
  border-color: var(--stroke);
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  background: var(--surface);
  border: 1px solid var(--stroke);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(208, 79, 47, 0.12);
}

.stamp {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: var(--accent);
}

.stamp-line {
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  width: 60%;
}

.section {
  padding: 80px 20px;
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 40px);
}

.section p {
  color: var(--muted);
}

.grid.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-bottom: 10px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.list li {
  background: var(--surface);
  border-radius: 12px;
  padding: 12px 16px;
  border: 1px solid var(--stroke);
}

.highlight {
  background: linear-gradient(135deg, rgba(59, 127, 111, 0.12), rgba(242, 181, 66, 0.18));
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 127, 111, 0.2);
}

.schedule {
  display: grid;
  gap: 24px;
}

.schedule-card {
  display: grid;
  gap: 18px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
}

.schedule-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.schedule-card strong {
  font-size: 18px;
}

.note {
  font-size: 14px;
}

.location-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}

.location-info {
  display: grid;
  gap: 16px;
}

.info-block {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
}

.info-block a {
  color: var(--accent-dark);
  font-weight: 600;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.gallery {
  position: relative;
}

.carousel {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.carousel-controls {
  position: absolute;
  inset: auto 20px 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.carousel-btn {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  font-size: 18px;
  cursor: pointer;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  pointer-events: auto;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(28, 27, 26, 0.3);
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--accent);
}

.contact {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.contact-card {
  background: linear-gradient(135deg, rgba(208, 79, 47, 0.15), rgba(242, 181, 66, 0.2));
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(208, 79, 47, 0.2);
}

.contact-copy address {
  font-style: normal;
  margin-top: 8px;
}

.footer {
  max-width: var(--max);
  margin: 0 auto 60px;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 880px) {
  .menu-toggle {
    display: inline-flex;
  }

  .menu {
    position: absolute;
    top: 60px;
    right: 20px;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
    min-width: 200px;
    display: none;
  }

  .menu.open {
    display: flex;
  }

  .hero {
    margin-top: 32px;
  }

  .carousel-slide img {
    height: 320px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 32px;
  }

  .schedule-card div {
    flex-direction: column;
    align-items: flex-start;
  }
}
