:root {
  --paper: #f6f2e8;
  --paper-dark: #ece4d4;
  --forest: #1f3b2c;
  --pine: #294c38;
  --moss: #6a8a5b;
  --gold: #c9a24b;
  --gold-soft: #e5c880;
  --ink: #1b1b1b;
  --muted: #4d5b52;
  --card: #ffffff;
  --border: rgba(41, 76, 56, 0.18);
  --shadow: 0 18px 40px rgba(31, 45, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(145deg, #f7f3ea 0%, #f2ebdd 45%, #f6f1e6 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("./assets/images/azalea.svg");
  background-repeat: repeat;
  background-size: 260px auto;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

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

a {
  color: inherit;
}

.site-header,
main,
footer {
  position: relative;
  z-index: 1;
}

.site-header {
  width: min(1180px, 92vw);
  margin: 1.4rem auto 0;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.badge-row-header {
  width: min(1180px, 92vw);
  margin: 2rem auto 0;
  justify-content: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--forest);
  text-transform: uppercase;
}

.brand img {
  width: 40px;
  height: 40px;
}

nav {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
}

nav a:hover {
  color: var(--forest);
}

main {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 2.5rem 0 3.5rem;
}

.hero {
  padding: 0.5rem 0 3.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-copy {
  max-width: 670px;
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  color: var(--moss);
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--forest);
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

h2 {
  font-size: clamp(1.6rem, 3.8vw, 2.4rem);
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.hero-actions-below {
  margin-top: 1.2rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}


.badge-card {
  display: grid;
  gap: 0.4rem;
  justify-items: center;
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(201, 162, 75, 0.45);
  background: #2b4f3a;
  box-shadow: 0 14px 26px rgba(18, 28, 22, 0.2);
  min-width: 168px;
}

.badge-card img {
  height: 64px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  filter: brightness(1.08);
}

.badge-card span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f6f2e8;
  text-align: center;
  font-weight: 600;
}

.btn {
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.btn-primary {
  background: var(--forest);
  color: #fff;
  border: 1px solid var(--forest);
  box-shadow: 0 10px 20px rgba(31, 59, 44, 0.25);
}

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

.btn-ghost {
  border: 1px solid var(--forest);
  color: var(--forest);
  background: transparent;
}

.btn-royal {
  border: 1px solid var(--gold);
  color: var(--forest);
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  box-shadow: 0 10px 24px rgba(201, 162, 75, 0.28);
}

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


.hero-art {
  position: relative;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(201, 162, 75, 0.4);
  border-radius: 18px;
  padding: 1.3rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.4rem;
}

.panel-kicker {
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--moss);
  margin: 0 0 0.4rem;
}

.panel-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  color: var(--muted);
  display: grid;
  gap: 0.6rem;
}

.panel-list li::before {
  content: "•";
  color: var(--gold);
  margin-right: 0.5rem;
}

.panel-chip {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(41, 76, 56, 0.3);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pine);
  background: rgba(201, 162, 75, 0.15);
}


.section-intro {
  margin: 2.2rem 0 1rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  color: var(--moss);
  margin-bottom: 0.4rem;
}

.story-section,
.craft-section {
  margin-top: 1.5rem;
}

.story-grid,
.craft-grid,
.zone-grid,
.project-grid {
  display: grid;
  gap: 1rem;
}

.story-grid,
.craft-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.zone-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-card,
.craft-card,
.zone-card,
.project-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.craft-card {
  border-color: rgba(41, 76, 56, 0.2);
}

.zone-card img,
.project-card img {
  width: 52px;
  height: 52px;
}

.zone-card h2 {
  margin: 0.8rem 0 0.3rem;
}

.zone-card p,
.story-card p,
.craft-card p,
.project-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.project-card {
  text-decoration: none;
  color: inherit;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(31, 45, 34, 0.18);
}

.project-card span {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--forest);
  font-weight: 700;
  font-size: 0.85rem;
}

.value-chips {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.value-chips span {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(41, 76, 56, 0.3);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pine);
  background: rgba(201, 162, 75, 0.1);
}

.drop-panel {
  margin-top: 2.5rem;
  border-radius: 18px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(41, 76, 56, 0.2);
  box-shadow: var(--shadow);
}

.drop-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.drop-panel span {
  color: var(--forest);
  font-weight: 700;
}

.contact-strip {
  margin-top: 2.5rem;
  text-align: center;
  padding: 1.4rem;
  border-radius: 16px;
  border: 1px solid rgba(41, 76, 56, 0.2);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.contact-strip a {
  color: var(--forest);
  text-decoration: none;
  font-weight: 700;
}

footer {
  width: min(1180px, 92vw);
  margin: 0 auto 2.4rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .craft-grid,
  .zone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  nav {
    gap: 0.6rem;
  }

  nav a {
    font-size: 0.62rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .story-grid,
  .craft-grid,
  .zone-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }
}
