:root {
  --bg: #f7fbef;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --text: #142018;
  --muted: #59655e;
  --line: rgba(185, 204, 154, 0.55);
  --accent: #d7f04a;
  --accent-strong: #b9dc1c;
  --accent-soft: rgba(215, 240, 74, 0.18);
  --shadow: 0 24px 60px rgba(20, 32, 24, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1160px;
  --font-ui: "Oswald", sans-serif;
  --font-display: "Dela Gothic One", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(215, 240, 74, 0.22), transparent 28%),
    linear-gradient(180deg, #fbfdf7 0%, var(--bg) 100%);
  overflow-x: hidden;
  padding-top: 112px;
}

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

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

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient__orb {
  position: absolute;
  opacity: 0.55;
}

.ambient__orb {
  border-radius: 50%;
  filter: blur(10px);
  animation: float 12s ease-in-out infinite;
}

.ambient__orb--one {
  top: 6%;
  right: 6%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(215, 240, 74, 0.88), rgba(215, 240, 74, 0.08));
}

.ambient__orb--two {
  bottom: 10%;
  left: 3%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(193, 230, 66, 0.62), rgba(193, 230, 66, 0.04));
  animation-delay: -4s;
}

.hero,
.section,
.footer {
  position: relative;
}

.hero {
  padding: 8px 0 42px;
}

.topbar {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 1000;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), var(--container));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(20, 32, 24, 0.08);
}

.brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

.topbar__links {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  overflow-x: auto;
  scrollbar-width: none;
}

.topbar__links::-webkit-scrollbar {
  display: none;
}

.topbar__links a {
  position: relative;
  white-space: nowrap;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.topbar__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(0.7);
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.topbar__links a.is-active {
  color: var(--text);
}

.topbar__links a.is-active::after {
  opacity: 0.95;
  transform: scaleX(1);
}

.hero__shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  margin-top: 26px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(244, 250, 223, 0.92));
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero__shell::before,
.hero__shell::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
}

.hero__shell::before {
  top: -28px;
  right: 18%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(215, 240, 74, 0.42), rgba(215, 240, 74, 0));
  animation: pulse 5s ease-in-out infinite;
}

.hero__shell::after {
  bottom: -40px;
  right: -24px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(185, 220, 28, 0.28), rgba(185, 220, 28, 0));
}

.hero__content {
  padding: 18px 8px 18px 6px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #688207;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 700px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
}

h2 {
  max-width: 780px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

h3 {
  font-family: var(--font-ui);
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.hero__lead {
  max-width: 620px;
  margin-top: 16px;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.button--primary {
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(185, 220, 28, 0.28);
}

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

.button--ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.hero__stack {
  display: grid;
  gap: 18px;
}

.hero-card,
.about-card,
.carousel,
.contact-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 160px;
  padding: 26px;
}

.hero-card--accent {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(240, 248, 210, 0.92));
}

.hero-card__label,
.about-card__title,
.carousel__tag {
  color: #688207;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card strong {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
}

.hero-card span:last-child {
  color: var(--muted);
}

.section {
  padding: 54px 0;
}

.section--muted {
  background: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(220, 231, 199, 0.75);
  border-bottom: 1px solid rgba(220, 231, 199, 0.75);
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading p:last-child {
  max-width: 760px;
  margin-top: 10px;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.about-card {
  padding: 26px;
}

.about-card__title {
  margin-bottom: 10px;
}

.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.upcoming-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.upcoming-card__media {
  overflow: hidden;
  border-radius: var(--radius-md);
  min-height: 180px;
  margin-bottom: 2px;
  background: #e7edd8;
}

.upcoming-card__media img {
  height: 100%;
  object-fit: cover;
}

.upcoming-card__tag,
.upcoming-card__date {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.upcoming-card__tag {
  color: #688207;
}

.upcoming-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.carousel {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  gap: 16px;
  align-items: center;
  padding: 18px;
}

.carousel__viewport {
  position: relative;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  gap: 18px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.carousel__slide {
  flex: 0 0 calc(50% - 9px);
  min-width: calc(50% - 9px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.carousel--gallery .carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.carousel__media {
  overflow: hidden;
  min-height: 240px;
  background: #e7edd8;
}

.carousel__media img,
.gallery-card img {
  height: 100%;
  object-fit: cover;
}

.carousel__body {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px;
}

.carousel__meta {
  color: var(--muted);
  font-size: 0.96rem;
  letter-spacing: 0.015em;
}

.carousel__detail {
  font-size: 1.02rem;
  letter-spacing: 0.015em;
}

.carousel__detail strong {
  font-weight: 700;
}

.price-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  width: fit-content;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(185, 220, 28, 0.2);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.carousel__nav {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-size: 2rem;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
}

.carousel__dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 2px;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 32, 24, 0.16);
  cursor: pointer;
}

.carousel__dot.is-active {
  background: #8dac00;
  transform: scale(1.2);
}

.gallery-page {
  align-items: stretch;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #dde7c7;
}

.gallery-tile img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-tile:hover img {
  transform: scale(1.05);
}

.gallery-tile span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(20, 32, 24, 0.72);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.8fr);
  gap: 24px;
  padding: 30px;
}

.contact-copy p:last-child {
  max-width: 640px;
  margin-top: 12px;
  color: var(--muted);
}

.contact-actions {
  display: grid;
  gap: 12px;
  align-content: center;
}

.footer {
  padding: 0 0 26px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -18px, 0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .hero__shell,
  .contact-shell,
  .about-grid,
  .upcoming-grid {
    grid-template-columns: 1fr;
  }

  .hero__stack {
    grid-template-columns: 1fr 1fr;
  }

  .carousel__slide {
    flex-basis: calc(100% - 0px);
    min-width: calc(100% - 0px);
  }

  .carousel--gallery .carousel__slide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .carousel__media {
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 14px;
  }

  .topbar {
    gap: 12px;
    align-items: flex-start;
    border-radius: 24px;
  }

  .topbar__links {
    width: 100%;
    gap: 12px;
  }

  .hero__shell,
  .contact-shell,
  .carousel {
    padding: 16px;
  }

  .hero__stack {
    grid-template-columns: 1fr;
  }

  .carousel {
    grid-template-columns: 1fr;
  }

  .carousel--gallery .carousel__slide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .carousel__nav {
    display: none;
  }

  .carousel__media {
    min-height: 240px;
  }

  .section {
    padding: 42px 0;
  }

  .footer__inner {
    flex-direction: column;
  }
}
