:root {
  --bg: #fffaf7;
  --text: #1b1b1b;
  --muted: #636363;
  --brand: #ff5a2c;
  --brand-dark: #e74c1f;
  --card: #ffffff;
  --line: #ece3dc;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1100px, 92%); margin-inline: auto; }
.section { padding: 72px 0; }
.section-muted { background: #fff1ea; }
.section h2 { font-size: clamp(1.8rem, 2.4vw, 2.4rem); margin-bottom: 10px; }
.section-sub { color: var(--muted); margin-bottom: 30px; }

.hero {
  position: relative;
  min-height: 88vh;
  background: url('images/hero.png') center/cover no-repeat;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.2));
}
.hero-content {
  position: relative;
  color: #fff;
  text-align: left;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .8rem;
  margin-bottom: 10px;
  color: #ffd4c7;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.18;
  margin-bottom: 16px;
}
.hero h1 span { color: #ffd2c2; }
.hero .lead {
  width: min(560px, 100%);
  color: #f3f3f3;
}
.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
}
.btn-primary:hover { background: var(--brand-dark); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,.5);
  color: #fff;
  background: rgba(255,255,255,.08);
}

.split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: start;
}
.highlight-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
}
.highlight-card ul {
  margin-top: 12px;
  padding-left: 20px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.testimonial-grid blockquote {
  background: #fff;
  border-left: 4px solid var(--brand);
  border-radius: 12px;
  padding: 20px;
  font-size: .97rem;
  color: #313131;
}
.testimonial-grid cite {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-style: normal;
}

.outlet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.outlet-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.outlet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 24px rgba(0,0,0,.08);
}
.outlet-card img { height: 210px; width: 100%; object-fit: cover; }
.outlet-content { padding: 16px; }
.outlet-content p { color: var(--muted); margin: 8px 0 10px; font-size: .93rem; }
.card-link { color: var(--brand); font-weight: 600; }

.coming-soon {
  display: grid;
  place-items: center;
  min-height: 340px;
  border-style: dashed;
  background: linear-gradient(180deg, #fff, #fff6f1);
}
.coming-soon-inner { text-align: center; padding: 20px; }
.badge {
  display: inline-block;
  background: #ffe6db;
  color: #8b3a21;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: .78rem;
  margin-bottom: 10px;
}

.footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 22px 0;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #4c4c4c;
}
.footer a { color: var(--brand); font-weight: 600; }

@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
}
