/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #4a7c59;
  --green-light:#7aad8a;
  --cream:      #fdf6ee;
  --blush:      #e0a2a4;
  --pink:       #c4797c;
  --pink-light: #f6ebec;
  --pink-dark:  #9d6163;
  --brown:      #6b4f3a;
  --text:       #2e2e2e;
  --muted:      #7a7a7a;
  --radius:     12px;
  --shadow:     0 4px 18px rgba(0,0,0,0.08);
  --max-w:      1100px;
}

body {
  font-family: 'Courier Prime', monospace;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

/* ── Nav ── */
header {
  background: #fff;
  border-bottom: 1px solid #ecddd0;
  border-top: 3px solid var(--pink);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  height: 68px;
  width: auto;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0.25rem;
}

nav ul li a {
  text-decoration: none;
  color: var(--text);
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

nav ul li a:hover {
  background: var(--pink);
  color: #fff;
}

nav ul li a.active {
  background: var(--green);
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── Hero logo ── */
.hero-logo {
  width: min(460px, 85vw);
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
}

/* ── Page layout ── */
main { min-height: 80vh; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

section { margin-bottom: 4rem; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #e8f5ec 0%, #fdf0f0 100%);
  text-align: center;
  padding: 6rem 1.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--green);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary,
.btn-outline {
  background: var(--pink);
  color: #fff;
  border: 2px solid var(--pink);
}
.btn-primary:hover,
.btn-outline:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
}

/* ── Cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s;
}
.card:hover { transform: translateY(-4px); }
a.card { display: block; text-decoration: none; color: inherit; }
.card .icon { font-size: 2.4rem; margin-bottom: 0.75rem; }
.card .icon-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  display: block;
}
.card h3 { color: var(--green); margin-bottom: 0.5rem; font-size: 1.15rem; }
.card p  { color: var(--muted); font-family: 'Courier Prime', monospace; font-size: 0.9rem; }

.cards-lg { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.875rem; }
.cards-lg .card { padding: 2.5rem; }
.cards-lg .card .icon { font-size: 3rem; }
.cards-lg .card .icon-img { width: 70px; height: 70px; }
.cards-lg .card h3 { font-size: 1.44rem; }
.cards-lg .card p  { font-size: 1.125rem; }
.cards-lg .card { border: 3px solid var(--pink); }

/* ── About ── */
.about-layout {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  max-width: 760px;
  margin: 0 auto;
}

.about-photo {
  width: min(230px, 42.5vw);
  height: auto;
  flex-shrink: 0;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-text p { margin-bottom: 1rem; }
.about-text p:last-child { margin-bottom: 0; }

.about-text {
  font-family: 'Courier Prime', monospace;
  color: var(--muted);
}

/* ── Section headings ── */
.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title h2 {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.section-title h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--pink);
  border-radius: 2px;
  margin: 0.6rem auto 0;
}
.section-title p { color: var(--muted); font-family: 'Courier Prime', monospace; }

/* ── Form ── */
.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  border: 3px solid var(--pink);
}

.form-group { margin-bottom: 1.25rem; }

label {
  display: block;
  font-family: 'Courier Prime', monospace;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.35rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green);
}
textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  background: #e6f4ea;
  border: 1px solid var(--green-light);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  color: var(--green);
  font-family: 'Courier Prime', monospace;
  margin-top: 1rem;
}

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card.popular::before {
  content: 'Popular';
  position: absolute;
  top: 14px; right: -22px;
  background: var(--pink);
  color: #fff;
  font-family: 'Courier Prime', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 32px;
  transform: rotate(45deg);
}

.pricing-card h3 { color: var(--green); font-size: 1.25rem; margin-bottom: 0.5rem; }

.price {
  font-size: 2.5rem;
  color: var(--pink);
  font-weight: bold;
  margin: 0.75rem 0;
}
.price small { font-size: 1rem; color: var(--muted); }

.pricing-card ul {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  text-align: left;
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
}
.pricing-card ul li {
  padding: 0.35rem 0;
  border-bottom: 1px solid #f0ebe5;
  color: var(--text);
}
.pricing-card ul li::before { content: '✿  '; color: var(--green-light); }

.pricing-card p {
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  color: var(--text);
  text-align: left;
  margin: 0.9rem 0;
}
.pricing-card p.tagline { font-weight: 700; color: var(--brown); }

.pricing-grid.single {
  max-width: 380px;
  margin: 0 auto;
}

.pricing-grid.wide {
  max-width: 640px;
  margin: 0 auto;
}

.pricing-card h4 {
  color: var(--green);
  font-size: 1.05rem;
  text-align: left;
  margin: 1.25rem 0 0.25rem;
}

/* ── Instagram embed ── */
.instagram-embed-wrap {
  position: relative;
  max-width: 540px;
  height: 362px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.instagram-embed-wrap iframe {
  position: absolute;
  top: -158px;
  left: 50%;
  width: 540px;
  height: 600px;
  margin-left: -270px;
  border: none;
}

/* ── Video grid ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.video-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}
.video-wrap video {
  width: 100%;
  display: block;
}

/* ── Workshop timeline ── */
.workshop-list { display: flex; flex-direction: column; gap: 1.25rem; max-width: 760px; margin: 0 auto; }

.workshop-item {
  background: #fff;
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
}
.workshop-item h3 { color: var(--green); margin-bottom: 0.25rem; }
.workshop-item .meta {
  font-family: 'Courier Prime', monospace;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.workshop-item p { font-family: 'Courier Prime', monospace; font-size: 0.93rem; color: var(--text); }

/* ── Collab ── */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.collab-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.collab-card h3 { color: var(--green); margin-bottom: 0.5rem; }
.collab-card p { font-family: 'Courier Prime', monospace; font-size: 0.9rem; color: var(--muted); }

/* ── Footer ── */
footer {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 2rem 1.5rem;
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  border-top: 3px solid var(--pink);
}
footer a { color: var(--blush); text-decoration: none; }

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--blush);
  text-decoration: none;
  font-size: 0.9rem;
  margin-top: 0.75rem;
  transition: opacity 0.2s;
}
.footer-instagram:hover { opacity: 0.8; }
.footer-instagram svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 700px) {
  nav ul { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: #fff; padding: 1rem; border-bottom: 1px solid #ecddd0; }
  nav ul.open { display: flex; }
  .hamburger { display: flex; }
  .about-layout { flex-direction: column; text-align: center; }
}
