:root {
  --bg: #f7f3ec;
  --surface: #ffffff;
  --text: #20201e;
  --muted: #66645f;
  --line: #ded8cd;
  --forest: #275317;
  --artist: #1D4B97;
  --accent: #275317;
  --shadow: 0 18px 40px rgba(32, 32, 30, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(247, 243, 236, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.signature-brand img {
  display: block;
  width: 140px;
  height: auto;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.top-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 800;
  padding: 9px 12px;
  border-radius: 999px;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  background: var(--surface);
  color: var(--text);
  outline: none;
}

.hero {
  min-height: calc(100vh - 77px);
  display: grid;
  place-items: center;
  padding: 56px clamp(18px, 4vw, 56px);
}

.hero-content,
.page-section {
  width: min(1180px, 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 920px;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.intro {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.category-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 28px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(32, 32, 30, 0.14);
  outline: none;
}

.category-card span {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.category-card small {
  margin-top: 8px;
  font-size: 1rem;
  color: rgba(32, 32, 30, 0.72);
}

.category-card.forest {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.92), transparent 36%),
    linear-gradient(135deg, #275317, #5f8f49);
  color: #ffffff;
}

.category-card.artist {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.92), transparent 36%),
    linear-gradient(135deg, #1D4B97, #6f91c5);
  color: #ffffff;
}

.category-card.baking {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.92), transparent 36%),
    linear-gradient(135deg, #C26334, #d89a73);
  color: #ffffff;
}

.category-card.purple {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.92), transparent 36%),
    linear-gradient(135deg, #8A2D68, #bd76a1);
  color: #ffffff;
}

.category-card.coming-soon {
  cursor: default;
  user-select: none;
}

.category-card.forest small,
.category-card.artist small,
.category-card.baking small,
.category-card.purple small {
  color: rgba(255, 255, 255, 0.84);
}

.page-section {
  padding: 70px clamp(18px, 4vw, 56px);
  margin: 0 auto;
}

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

.toolbar {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.toolbar label {
  font-weight: 900;
}

.toolbar input {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  font: inherit;
}

.toolbar input:focus {
  outline: 3px solid rgba(40, 95, 43, 0.16);
  border-color: var(--accent);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}

.plan-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(32, 32, 30, 0.07);
}

.plan-card h3 {
  margin: 0;
  padding: 18px 20px;
  font-size: 1.45rem;
  line-height: 1.2;
  border-bottom: 1px solid var(--line);
}

.image-wrap {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #fff;
  cursor: zoom-in;
  text-align: left;
}

.plan-card img {
  display: block;
  width: 100%;
  height: auto;
}

.empty-message {
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: 18px;
  padding: 20px;
  color: var(--muted);
}


@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    min-height: auto;
  }

  .category-card {
    min-height: 170px;
  }

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


.signature-brand {
  cursor: default;
  user-select: none;
}


body.modal-open {
  overflow: hidden;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.86);
}

.image-modal[hidden] {
  display: none;
}

.image-modal img {
  max-width: 96vw;
  max-height: 94vh;
  width: auto;
  height: auto;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.modal-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 101;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #20201e;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.45);
}
