:root {
  --paper: #f7f1e7;
  --paper-deep: #eadfce;
  --ink: #13233a;
  --muted: #586270;
  --line: #1f2e4218;
  --red: #d95d39;
  --gold: #dfaa3d;
  --cream: #fffaf2;
  --shadow: 0 18px 45px rgba(19, 35, 58, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fcf7ef 0%, var(--paper) 100%);
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding: 10px 0 18px;
  border-bottom: 1px solid var(--line);
}

.brand {
  color: var(--ink);
  text-decoration: none;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.topnav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.topnav a,
.button {
  color: inherit;
  text-decoration: none;
}

.topnav a {
  color: var(--muted);
  font-size: 0.98rem;
}

.hero,
.strip,
.collections,
.about,
.visit-panel {
  animation: rise 0.75s ease both;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: center;
  padding: 28px 0 36px;
}

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

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.hero-text,
.card p,
.about-points p,
.visit-panel p,
.strip p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
}

.button-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.button-secondary {
  background: transparent;
}

.hero-display {
  display: grid;
  gap: 16px;
}

.display-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.display-panel {
  border: 1px solid var(--ink);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.display-panel-large {
  min-height: 270px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(217, 93, 57, 0.1), transparent 55%),
    var(--cream);
}

.display-panel-small {
  min-height: 170px;
  padding: 20px;
  border-radius: 22px;
}

.display-label {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.display-panel strong {
  display: block;
  max-width: 8ch;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
}

.accent-red {
  background: #f3d6ce;
}

.accent-gold {
  background: #f5e3b5;
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 20px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.strip div {
  padding: 18px 12px 18px 0;
}

.strip div:not(:last-child) {
  border-right: 1px solid var(--line);
}

.strip span,
.card-number {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.collections,
.about,
.visit-panel {
  padding: 34px 0;
}

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

.section-heading h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.95;
  max-width: 10ch;
}

.grid,
.about-points {
  display: grid;
  gap: 18px;
}

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

.card {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--ink);
  border-radius: 26px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.featured-card {
  background: var(--ink);
  color: #fff;
}

.featured-card p {
  color: rgba(255, 255, 255, 0.78);
}

.featured-card .card-number {
  color: var(--gold);
}

.card h3,
.about-points h3 {
  margin-bottom: 10px;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 1.9rem;
  line-height: 1;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.about-copy h2,
.visit-panel h2 {
  margin-bottom: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
  max-width: 12ch;
}

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

.about-points article {
  padding-top: 20px;
  border-top: 3px solid var(--ink);
}

.visit-panel {
  margin-top: 8px;
  padding: 36px;
  border: 1px solid var(--ink);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(223, 170, 61, 0.18), rgba(217, 93, 57, 0.12)),
    var(--cream);
  box-shadow: var(--shadow);
}

.visit-panel .button {
  margin-top: 12px;
}

.special-content {
  padding: 28px 0 34px;
  animation: rise 0.45s ease both;
}

.special-content h1 {
  max-width: 11ch;
}

.special-text {
  max-width: 640px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.whatsapp-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
}

.whatsapp-toggle,
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  background: #25d366;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 35px rgba(37, 211, 102, 0.28);
  cursor: pointer;
}

.whatsapp-popup {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(320px, calc(100vw - 32px));
  padding: 22px;
  border: 1px solid var(--ink);
  border-radius: 24px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.whatsapp-popup[hidden] {
  display: none;
}

.whatsapp-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: #ebf1e7;
  color: var(--ink);
  cursor: pointer;
}

.whatsapp-eyebrow {
  margin-bottom: 8px;
  color: #128c4a;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.whatsapp-popup h2 {
  margin-bottom: 10px;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 1.8rem;
  line-height: 1;
}

.whatsapp-popup p {
  color: var(--muted);
  line-height: 1.6;
}

.whatsapp-link {
  width: 100%;
  margin-top: 8px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero,
  .grid,
  .about,
  .about-points,
  .special-grid,
  .strip,
  .display-stack {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
  }

  .strip div:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 12px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .visit-panel {
    padding: 26px;
  }

  .whatsapp-widget {
    right: 12px;
    bottom: 12px;
  }

  .whatsapp-popup {
    width: min(320px, calc(100vw - 24px));
  }
}
