:root {
  --ss-orange: #e85d04;
  --ss-orange-dark: #c44b00;
  --ss-ink: #1a1a1a;
  --ss-muted: #5b5753;
  --ss-line: #e4ddd6;
  --ss-bg: #fff8f3;
  --ss-card: #ffffff;
  --ss-radius: 14px;
  --ss-shadow: 0 10px 28px rgba(26, 26, 26, 0.07);
  --ss-max: 1120px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ss-ink);
  background: var(--ss-bg);
  line-height: 1.55;
}

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

a { color: var(--ss-orange-dark); }

.wrap {
  width: min(var(--ss-max), calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--ss-line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.logo {
  height: 46px;
  width: auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  align-items: center;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  color: var(--ss-ink);
  font-weight: 650;
  font-size: 0.95rem;
}

.nav a[aria-current="page"] { color: var(--ss-orange); }

.nav .btn {
  background: var(--ss-orange);
  color: #fff !important;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
}

.hero {
  position: relative;
  min-height: 280px;
  color: #fff;
}

.hero img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.hero-copy {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.15), rgba(26,26,26,0.72));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem 0 1.8rem;
}

.hero h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  letter-spacing: -0.03em;
}

.hero p {
  margin: 0 0 1rem;
  max-width: 38rem;
  font-size: 1.05rem;
}

.btn {
  display: inline-block;
  background: var(--ss-orange);
  color: #fff;
  text-decoration: none;
  font-weight: 750;
  padding: 0.8rem 1.15rem;
  border-radius: 10px;
}

.btn:hover { background: var(--ss-orange-dark); }

.btn-ghost {
  background: #fff;
  color: var(--ss-orange-dark);
}

.section { padding: 2.2rem 0; }

.section h2 {
  margin: 0 0 0.4rem;
  font-size: 1.55rem;
}

.lede {
  margin: 0 0 1.4rem;
  color: var(--ss-muted);
  max-width: 40rem;
}

.cards {
  display: grid;
  gap: 1.1rem;
}

.card {
  background: var(--ss-card);
  border: 1px solid var(--ss-line);
  border-radius: var(--ss-radius);
  overflow: hidden;
  box-shadow: var(--ss-shadow);
}

.card-photos {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3px;
  background: #eee;
}

.card-photos img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.card-photos img:first-child {
  grid-row: span 2;
  height: 343px;
}

.card-body { padding: 1rem 1.05rem 1.15rem; }

.card h3 { margin: 0 0 0.35rem; font-size: 1.25rem; }

.price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ss-orange-dark);
  margin: 0 0 0.15rem;
}

.price span { font-size: 0.95rem; font-weight: 600; color: var(--ss-muted); }

.meta {
  margin: 0 0 0.75rem;
  color: var(--ss-muted);
  font-size: 0.95rem;
}

.card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.includes {
  display: grid;
  gap: 0.7rem;
}

.include {
  background: #fff;
  border: 1px solid var(--ss-line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.cta-band {
  background: #1a1a1a;
  color: #fff;
}

.cta-band h2 { color: #fff; }

.cta-band .lede { color: #ddd; }

.site-footer {
  border-top: 1px solid var(--ss-line);
  padding: 1.5rem 0 2rem;
  color: var(--ss-muted);
  font-size: 0.95rem;
}

.site-footer a { color: inherit; }

@media (min-width: 760px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .card-photos { grid-template-columns: 1fr 1fr; }
  .card-photos img,
  .card-photos img:first-child { height: 140px; grid-row: auto; }
  .includes { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .gallery img { height: 170px; }
  .hero img { height: 460px; }
}

@media (max-width: 759px) {
  .site-header .wrap { flex-direction: column; align-items: flex-start; }
  .nav { width: 100%; }
  .nav .btn { margin-left: auto; }
}
