:root {
  --green: #d3e591;
  --green-dark: #b9d466;
  --ink: #08040a;
  --ink-soft: #3a393c;
  --cream: #faf8f2;
  --white: #ffffff;
  --radius-lg: 40px;
  --radius-md: 18px;
  --max-width: 1246px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}

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

a { color: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 70px 0; }
.section--green { background: var(--green); }
.section--tight { padding: 40px 0; }

/* ---------- Header / logo ---------- */
.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  color: var(--ink);
}
.logo__main {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  letter-spacing: 0.02em;
}
.logo__main b { font-weight: 700; }
.logo__sub {
  font-family: 'Quicksand', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  margin-top: 4px;
}

.topbar {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 5;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
}
.hero__tagbox {
  background: var(--green);
  border-radius: 24px;
  padding: 24px 28px;
  margin-top: 28px;
  display: inline-block;
}
.hero__tagbox p {
  margin: 0;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
}
.hero__tagbox p + p { font-weight: 500; margin-top: 4px; }
.hero__illus img { width: 100%; height: auto; }

.btn {
  display: inline-block;
  border-radius: 30px;
  padding: 14px 30px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--ink);
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--ink); }
.btn--outline.on-green { border-color: var(--ink); }
.btn--solid { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--solid-green { background: var(--green); color: var(--ink); border-color: var(--ink); }

/* ---------- Philosophy ---------- */
.philosophy { text-align: center; }
.philosophy__lead {
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 600;
}
.philosophy__choice { font-size: 18px; margin-bottom: 6px; }
.philosophy__bubbles {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 20px;
  margin-bottom: 20px;
}
.philosophy__illus { margin: 20px auto; max-width: 780px; }
.philosophy__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
  font-size: 16px;
  color: var(--ink-soft);
}
.philosophy__cols p:last-child { text-align: right; }

/* ---------- Diversity ---------- */
.diversity__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.diversity h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 24px; }
.diversity p { font-size: 17px; color: var(--ink-soft); margin: 0 0 16px; }

/* ---------- Feature cards ---------- */
.features h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 40px;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card__label {
  text-align: center;
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 17px;
}
.feature-card__art {
  background: var(--green);
  border-radius: var(--radius-md);
  padding: 24px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card__art img { width: 100%; }

/* ---------- Branches ---------- */
.branches h2 { text-align: center; font-size: clamp(28px, 4vw, 42px); margin-bottom: 40px; }
.branches__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.branch-card {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.branch-card__photo {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
}
.branch-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.branch-card h3 {
  text-align: center;
  font-size: 20px;
  text-transform: lowercase;
  margin-bottom: 12px;
}
.branch-card p { font-size: 14px; line-height: 1.6; margin: 0 0 16px; }
.branch-card .btn { display: block; text-align: center; font-size: 13px; padding: 10px 18px; }

/* ---------- Sister brands ---------- */
.sisters { }
.sisters__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
}
.sisters__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.sisters h2 { font-size: clamp(28px, 4.5vw, 48px); margin-bottom: 24px; }
.sisters__pills { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.pill {
  background: var(--green);
  border-radius: 30px;
  padding: 12px 26px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--ink);
  display: inline-block;
}
.pill--static { cursor: default; }
.sisters__illus img { max-width: 260px; margin: 0 auto; }

/* ---------- Footer ---------- */
.footer { background: var(--white); padding: 60px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 40px;
}
.social-icons { display: flex; gap: 14px; }
.social-icons a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.social-icons a:hover { background: var(--green-dark); }
.social-icons svg { width: 20px; height: 20px; fill: var(--white); }
.footer h4 { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 10px; color: var(--ink-soft); }
.footer p { font-size: 15px; margin: 0; line-height: 1.6; }
.footer a.email { text-decoration: none; display: block; }

.footer__banner {
  background: var(--green);
  border-radius: 24px 24px 0 0;
  margin-top: 20px;
  padding: 30px 40px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__banner img { max-width: 460px; width: 100%; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero__grid, .diversity__grid, .sisters__grid { grid-template-columns: 1fr; }
  .hero { padding-top: 150px; text-align: center; }
  .hero__tagbox { margin-left: auto; margin-right: auto; }
  .philosophy__cols { grid-template-columns: 1fr; }
  .philosophy__cols p:last-child { text-align: left; }
  .features__grid, .branches__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .social-icons { justify-content: center; }
  .sisters__pills { align-items: center; }
  .sisters { text-align: center; }
}
