:root {
  --cream: #f7f1e8;
  --azulejo: #1e4d7b;
  --terracotta: #c45c3a;
  --nata-gold: #c9a227;
  --piri: #d9480f;
  --ginja: #6b1c2a;
  --ranch: #6d8f4a;
  --vinegar: #5d4196;
  --vinegar-accent: #d3b34e;
  --butter: #f0c93a;
  --ink: #2c2418;
  --muted: #6a5f52;
  --paper: #fffdf9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffffeb;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e8dfd2;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.stamp {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 4px solid var(--terracotta);
  background: var(--azulejo);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stamp .t1,
.stamp .t2 {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 8px;
  line-height: 1;
}

.stamp .t1 {
  color: var(--cream);
}

.stamp .t2 {
  color: var(--nata-gold);
}

.stamp .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  margin: 2px 0;
  background: var(--terracotta);
}

.brand-name {
  font-family: "Fredoka", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--azulejo);
}

.brand-tag {
  margin-top: 3px;
  font-size: 9px;
  letter-spacing: 0.16em;
  font-weight: 500;
  color: var(--terracotta);
}

.nav-toggle {
  display: none;
  border: 2px solid var(--azulejo);
  background: #fff;
  color: var(--azulejo);
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 10px;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  color: var(--ink);
}

.lang-switch {
  color: var(--azulejo);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 9px;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 18px;
  cursor: pointer;
}

.btn.primary {
  background: var(--azulejo);
  color: #fff;
}

.btn.secondary {
  background: #fff;
  color: var(--azulejo);
  border: 2px solid var(--azulejo);
}

.btn.piri {
  background: var(--piri);
  color: #fff;
}

.btn.gold {
  background: var(--nata-gold);
  color: var(--ink);
}

.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 56px;
  align-items: center;
}

.hero h1 {
  font-family: "Fredoka", sans-serif;
  font-size: 48px;
  line-height: 1.05;
  margin: 0 0 18px;
}

.hero p {
  margin: 0 0 28px;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-card {
  background: var(--azulejo);
  color: var(--cream);
  border-radius: 20px;
  padding: 36px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-card .stamp {
  width: 120px;
  height: 120px;
  border-width: 7px;
  margin-bottom: 20px;
}

.hero-card .stamp .t1,
.hero-card .stamp .t2 {
  font-size: 18px;
}

.hero-card .stamp .dot {
  width: 8px;
  height: 8px;
  margin: 8px 0;
}

.hero-card h2 {
  font-family: "Fredoka", sans-serif;
  font-size: 28px;
  margin: 0 0 8px;
}

.hero-meta {
  color: #d9cfc2;
  margin: 0 0 20px;
}

.hero-card .hero-meta,
.hero-card p {
  color: #f0e6d8;
  max-width: none;
}

.section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.section h2 {
  font-family: "Fredoka", sans-serif;
  font-size: 34px;
  margin: 0 0 18px;
}

.section-lead {
  margin: 0 0 28px;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.58;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 14px;
  border-top: 8px solid var(--nata-gold);
  box-shadow: 0 8px 24px rgb(0 0 0 / 5%);
  padding: 24px;
}

.card.piri {
  border-top-color: var(--piri);
}

.card.ginja {
  border-top-color: var(--ginja);
}

.card.ranch {
  border-top-color: var(--ranch);
}

.card.vinegar {
  border-top-color: var(--vinegar);
}

.card.butter {
  border-top-color: var(--butter);
}

.card h3 {
  font-family: "Fredoka", sans-serif;
  font-size: 22px;
  margin: 0 0 8px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.band {
  background: var(--azulejo);
  color: var(--cream);
  padding: 64px 0;
}

.band-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.band .stamp {
  width: 88px;
  height: 88px;
  border-color: var(--nata-gold);
}

.band .stamp .t1,
.band .stamp .t2 {
  font-size: 12px;
}

.band .stamp .dot {
  width: 5px;
  height: 5px;
  margin: 4px 0;
  background: var(--nata-gold);
}

.band h2 {
  font-family: "Fredoka", sans-serif;
  font-size: 36px;
  margin: 0 0 10px;
}

.band p {
  margin: 0 0 20px;
  color: #d9cfc2;
  font-size: 18px;
}

.kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 10px;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.panel {
  background: var(--paper);
  border: 1px solid #e4d7c6;
  border-radius: 14px;
  padding: 24px;
}

.panel h3 {
  margin: 0 0 10px;
  font-family: "Fredoka", sans-serif;
  font-size: 24px;
  color: var(--azulejo);
}

.panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.story-flow {
  display: grid;
  gap: 18px;
  max-width: 860px;
}

.story-flow article {
  background: #fff;
  border: 1px solid #e6dac9;
  border-radius: 12px;
  padding: 20px 22px;
}

.story-flow h3 {
  margin: 0 0 8px;
  font-family: "Fredoka", sans-serif;
  color: var(--azulejo);
  font-size: 24px;
}

.story-flow p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e6dac9;
  padding: 18px;
}

.contact-card h3 {
  margin: 0 0 8px;
  font-family: "Fredoka", sans-serif;
  font-size: 21px;
  color: var(--azulejo);
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.contact-card a {
  color: var(--piri);
  font-weight: 700;
}

.contact-form {
  margin-top: 28px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e6dac9;
  padding: 24px;
}

.contact-form h3 {
  margin: 0 0 10px;
  font-family: "Fredoka", sans-serif;
  font-size: 24px;
  color: var(--azulejo);
}

.contact-form p {
  margin: 0 0 16px;
  color: var(--muted);
}

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

label {
  display: block;
  font-size: 13px;
  margin: 0 0 6px;
  font-weight: 700;
  color: var(--ink);
}

input,
textarea {
  width: 100%;
  border: 1px solid #d8cab7;
  border-radius: 9px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.labels-shell {
  background: #ddd6ca;
  border-radius: 16px;
  padding: 24px;
}

.labels-shell h2 {
  margin-bottom: 10px;
}

.labels-shell .section-lead {
  margin-bottom: 20px;
}

.labels-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.label-card {
  width: 240px;
  min-height: 400px;
  background: var(--cream);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgb(0 0 0 / 10%);
  display: flex;
  flex-direction: column;
}

.label-band {
  height: 10px;
}

.label-inner {
  padding: 18px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.label-inner .stamp {
  width: 100px;
  height: 100px;
  border-width: 5px;
  margin-bottom: 14px;
}

.label-inner .stamp .t1,
.label-inner .stamp .t2 {
  font-size: 15px;
}

.label-inner .stamp .dot {
  width: 5px;
  height: 5px;
  margin: 5px 0;
}

.label-cat {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--azulejo);
  font-weight: 600;
  margin: 0 0 6px;
}

.label-name {
  margin: 0 0 6px;
  line-height: 1.05;
  font-family: "Fredoka", sans-serif;
  font-size: 26px;
  font-weight: 700;
}

.label-sub {
  font-size: 11px;
  color: #5a5044;
  margin: 0 0 12px;
}

.label-rule {
  width: 100%;
  height: 4px;
  border-radius: 3px;
  margin: 0 0 14px;
}

.label-copy {
  margin: 0;
  color: #4a4036;
  line-height: 1.45;
  font-size: 12.5px;
  flex: 1;
}

.label-meta {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
}

.label-use {
  margin-top: 4px;
  color: #6a5f52;
  font-size: 10px;
}

.label-legal {
  margin-top: 10px;
  color: #8a7e70;
  font-size: 8.5px;
  letter-spacing: 0.04em;
}

.pack-sleeve {
  width: min(430px, 100%);
  min-height: 320px;
  background: #e8dcc8;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 12px 30px rgb(0 0 0 / 10%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pack-sleeve .stamp {
  width: 118px;
  height: 118px;
  border-width: 6px;
  margin-bottom: 16px;
}

.pack-sleeve .stamp .t1,
.pack-sleeve .stamp .t2 {
  font-size: 17px;
}

.trio {
  width: 100%;
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.chip {
  flex: 1;
  height: 46px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 13px;
}

.chip.gold {
  background: var(--nata-gold);
  color: var(--ink);
}

.chip.piri {
  background: var(--piri);
}

.chip.ginja {
  background: var(--ginja);
}

.chip.ranch {
  background: var(--ranch);
}

.chip.vinegar {
  background: var(--vinegar);
}

.chip.butter {
  background: var(--butter);
  color: var(--ink);
}

.site-footer {
  margin-top: 56px;
  background: var(--ink);
  color: #cfc5b8;
}

.site-footer .page-wrap {
  padding-top: 44px;
  padding-bottom: 44px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.footer-links a {
  color: var(--cream);
}

.site-footer .brand-name {
  color: var(--cream);
}

.site-footer .brand-tag {
  color: var(--nata-gold);
}

.footer-copy {
  margin: 18px 0 0;
  color: #c8baab;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .site-nav {
    padding: 14px 20px;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
    gap: 28px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .cards,
  .grid-two,
  .contact-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .band {
    padding: 40px 0;
  }

  .band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-wrap {
    padding: 0 20px;
  }

  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
