:root {
  --bg: #f7f3ea;
  --bg-2: #efe7d6;
  --surface: #fffdf8;
  --text: #1f1f1f;
  --muted: #575757;
  --accent: #b64a2d;
  --accent-2: #124e61;
  --line: #d7ccb9;
  --shadow: 0 12px 30px rgba(22, 22, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(182, 74, 45, 0.14) 0%, transparent 26%),
    radial-gradient(circle at 84% 0%, rgba(18, 78, 97, 0.2) 0%, transparent 34%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  line-height: 1.6;
}

.snap-container {
  height: 100dvh;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.panel {
  min-height: 100svh;
  opacity: 0.78;
  transform: translateY(10px);
  transition: opacity 520ms ease, transform 640ms ease;
}

.panel.panel-active {
  opacity: 1;
  transform: translateY(0);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.15;
  margin: 0;
}

p {
  margin-top: 0;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  overflow: hidden;
}

.hero-content {
  max-width: 840px;
  position: relative;
  z-index: 2;
  animation: appear 700ms ease-out both;
}

.logo-wrap {
  width: min(520px, 86vw);
  margin: 0 auto 1.5rem;
}

.logo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 8px 20px rgba(18, 78, 97, 0.22));
}

.hero h1 {
  letter-spacing: 0.08em;
  font-size: clamp(2.4rem, 8vw, 5rem);
  margin-bottom: 0.6rem;
}

.overline {
  font-size: 0.95rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.7vw, 1.35rem);
  color: #303030;
  margin: 0 auto 1.8rem;
  max-width: 46ch;
}

.cta {
  display: inline-block;
  padding: 0.78rem 1.2rem;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(140deg, var(--accent), #d36a4d);
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease;
  box-shadow: var(--shadow);
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
}

.cta.secondary {
  background: linear-gradient(140deg, var(--accent-2), #1e7088);
}

.cta-next {
  padding: 0.48rem 0.88rem;
  font-size: 0.9rem;
  font-weight: 600;
  width: fit-content;
  align-self: flex-start;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.8;
  z-index: 1;
}

.hero-bg-shape-left {
  width: 40vw;
  height: 40vw;
  max-width: 500px;
  max-height: 500px;
  left: -10vw;
  top: -8vw;
  background: radial-gradient(circle, rgba(182, 74, 45, 0.3) 0%, rgba(182, 74, 45, 0) 70%);
}

.hero-bg-shape-right {
  width: 34vw;
  height: 34vw;
  max-width: 420px;
  max-height: 420px;
  right: -8vw;
  bottom: -10vw;
  background: radial-gradient(circle, rgba(18, 78, 97, 0.35) 0%, rgba(18, 78, 97, 0) 70%);
}

.section {
  width: min(1040px, 92vw);
  margin: 0 auto;
  padding: 4.5rem 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section:first-of-type {
  border-top: 0;
}

.section-heading {
  margin-bottom: 1.2rem;
}

.section-kicker {
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent-2);
}

.section h2 {
  font-size: clamp(1.8rem, 4.3vw, 3rem);
  margin-bottom: 1rem;
}

.intro p {
  max-width: 70ch;
}

.offers-lead {
  max-width: 60ch;
  margin-bottom: 1rem;
}

.offers-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 26vw);
  gap: 0.9rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.5rem 0.2rem 0.5rem 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.offer-item {
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  min-height: 220px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.offer-badge {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--accent-2), #2b7c93);
  margin-bottom: 0.7rem;
}

.offer-logo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  margin-bottom: 0.7rem;
}

.offer-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.offer-item p {
  margin-bottom: 0;
  color: #353535;
}

.offer-item-placeholder {
  border-style: dashed;
  border-color: #c9bba4;
  background: linear-gradient(180deg, #fffaf0 0%, #fffdf8 100%);
}

.offer-item-placeholder .offer-badge {
  background: linear-gradient(145deg, var(--accent), #d36a4d);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  animation: rise 700ms ease both;
}

.card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.4rem;
}

.card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.arrival-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.arrival-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.arrival-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.arrival-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.arrival-note {
  margin-bottom: 0;
  color: #4b4b4b;
}

.contact-box {
  margin: 1.2rem 0 1.5rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--accent);
  background: rgba(255, 253, 248, 0.85);
}

.contact a {
  color: var(--accent-2);
}

.site-footer {
  border-top: 1px solid var(--line);
  width: min(1040px, 92vw);
  margin: 0 auto;
  padding: 1.4rem 0 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.site-footer nav {
  display: flex;
  gap: 1rem;
}

.site-footer a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 700;
}

@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .offers-track {
    grid-auto-columns: minmax(210px, 72vw);
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .arrival-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.6rem 0;
  }
}

@media (max-width: 520px) {
  .panel {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero {
    padding-top: 3rem;
  }

  .logo-wrap {
    width: min(420px, 92vw);
  }

  .cta {
    width: 100%;
    text-align: center;
  }

  .cta-next {
    width: auto;
  }
}
