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

:root {
  --green: #0b3d2e;
  --green-dark: #06251b;
  --cream: #f5e7cf;
  --cream-soft: #faf4e8;
  --gold: #c89a3c;
  --text-main: #1f2933;
  --text-soft: #4b5563;
  --bg: #fdfbf7;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #f9f5eb, #fdfbf7);
  color: var(--text-main);
  line-height: 1.7;
  font-size: 16px;
}

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

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

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

/* Top bar & nav */

.top-bar {
  background: var(--green-dark);
  color: #e5f4ed;
  font-size: 0.85rem;
  padding: 0.4rem 0;
  text-align: center;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(11, 61, 46, 0.96);
  color: #fff;
}

.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(250, 250, 249, 0.9);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text span:first-child {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.brand-text span:last-child {
  font-size: 0.9rem;
  opacity: 0.9;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.25rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #f8e3a1);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(250, 250, 249, 0.28);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), rgba(8, 47, 35, 0.9));
  font-size: 0.85rem;
}

.nav-cta i {
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  font-size: 1.7rem;
}

/* Hero */

.hero {
  position: relative;
  color: #fff;
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding: 3.25rem 0 4.5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.32), transparent 60%),
    linear-gradient(135deg, rgba(6, 37, 27, 0.9), rgba(11, 61, 46, 0.75)),
    url("../images/hero-1.jpg") center/cover no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.35), transparent 60%);
  z-index: -1;
}

.hero-inner {
  text-align: center;
}

.hero-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  opacity: 0.95;
}

.hero-title {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-subtitle {
  margin-top: 0.9rem;
  font-size: 1.05rem;
  max-width: 32rem;
  margin-inline: auto;
  opacity: 0.95;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin: 1.4rem 0 2.2rem;
}

.badge {
  font-size: 0.8rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.45);
  background: rgba(15, 118, 110, 0.28);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #fef9c3, #facc15);
  color: #1c1917;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.4);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.25);
  border-color: rgba(248, 250, 252, 0.45);
  color: #f9fafb;
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.45);
}

/* Sections */

.section {
  padding: 3.75rem 0;
}

.section-muted {
  background: linear-gradient(to bottom, #fdfbf7, #f5eee0);
}

.section-title {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}

.section-kicker {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 2.2rem;
}

/* Why section */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.why-card {
  background: #fff;
  border-radius: 1.1rem;
  padding: 1.4rem 1.3rem;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
}

.why-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top left, #fef3c7, #eab308);
  margin-bottom: 0.7rem;
}

.why-card-title {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* Past minis gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.gallery-item {
  position: relative;
  border-radius: 1.1rem;
  overflow: hidden;
  background: #000;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) saturate(1.08);
  transform: scale(1.02);
  transition: transform 0.25s ease;
}

.gallery-item::after {
  content: attr(data-label);
  position: absolute;
  inset-inline: 0.8rem;
  bottom: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.85), rgba(8, 47, 35, 0.95));
  color: #f9fafb;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* How it works */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: #fff;
  border-radius: 1.1rem;
  padding: 1.4rem 1.3rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.step-number {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

/* Available minis */

.available-intro {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.4rem;
  color: var(--text-soft);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.mini-card {
  background: #fff;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
}

.mini-media {
  position: relative;
  aspect-ratio: 3/4;
}

.mini-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.06) saturate(1.06);
}

.mini-tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(15, 23, 42, 0.82);
  color: #f9fafb;
}

.mini-body {
  padding: 1.2rem 1.25rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.mini-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.mini-meta {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.mini-price {
  font-weight: 600;
  color: var(--green);
}

.bundle-list {
  margin: 0.75rem 0 1rem;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
}

.bundle-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.bundle-list span {
  margin-top: 0.15rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.bundle-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* Split layouts */

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.about-split img {
  border-radius: 1.3rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
  filter: contrast(1.05) saturate(1.06);
}

.about-copy p + p {
  margin-top: 0.7rem;
}

/* FAQ */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item + .faq-item {
  border-top: 1px solid #e5e7eb;
}

.faq-question {
  padding: 1rem 0;
  font-weight: 600;
}

.faq-answer {
  padding-bottom: 1.1rem;
  color: var(--text-soft);
}

/* Contact form */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
}

.contact-card {
  background: #fff;
  border-radius: 1.1rem;
  padding: 1.6rem 1.5rem 1.5rem;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  display: inline-block;
}

input,
textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 0.65rem;
  border: 1px solid #e5e7eb;
  font: inherit;
  resize: vertical;
}

textarea {
  min-height: 140px;
}

/* Page hero & legal */

.page-hero {
  padding: 3.1rem 0 2.5rem;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}

.page-hero p {
  margin-top: 0.8rem;
  color: var(--text-soft);
}

.legal {
  max-width: 760px;
  margin: 0 auto;
}

.legal h2 {
  font-size: 1.1rem;
  margin-top: 1.6rem;
  margin-bottom: 0.4rem;
}

.legal p,
.legal li {
  font-size: 0.95rem;
  color: var(--text-soft);
}

.legal ul {
  padding-left: 1.1rem;
}

/* Footer */

.site-footer {
  background: linear-gradient(180deg, #06251b, #020816);
  color: #e5f4ed;
  padding-top: 2.8rem;
  margin-top: 3rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.2rem;
  padding-bottom: 2.1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.footer-brand p {
  font-size: 0.9rem;
  color: #cbd5f5;
  margin-top: 0.7rem;
}

.footer-heading {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.footer-links a:hover {
  color: #fef3c7;
}

.footer-payments {
  margin-top: 0.8rem;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 1.55rem;
}

.payment-icons i {
  padding: 0.35rem 0.55rem;
  border-radius: 0.5rem;
  background: rgba(15, 23, 42, 0.75);
}

.footer-bottom {
  padding: 1.3rem 0 1.6rem;
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Responsive */

@media (max-width: 960px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-split,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .site-nav.open .nav-links,
  .site-nav.open .nav-cta {
    display: flex;
  }
  .site-nav.open .site-nav-inner {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .site-nav.open .nav-links {
    flex-basis: 100%;
    justify-content: center;
  }
  .site-nav.open .nav-cta {
    margin-left: auto;
  }
  .hero {
    padding-top: 2.4rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 640px) {
  .why-grid,
  .gallery-grid,
  .steps,
  .mini-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .footer-main {
    grid-template-columns: minmax(0, 1fr);
  }
}
