:root {
  --bg: #fff5ec;
  --fg: #26110f;
  --muted: #5c3f3b;
  --accent: #ff7b73;
  --accent-2: #ffd166;
  --card: rgba(255, 255, 255, 0.9);
  --glass: rgba(255, 255, 255, 0.92);
  --shadow: 0 24px 80px rgba(255, 123, 115, 0.2);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--fg);
  background: linear-gradient(120deg, #fff1e6 0%, #ffe8f5 45%, #e9f7ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}
body::before {
  content: '';
  position: fixed;
  inset: -10% -18%;
  background:
    radial-gradient(90% 70% at 20% 8%, rgba(255, 255, 255, 0.78), transparent 60%),
    radial-gradient(80% 70% at 80% 4%, rgba(255, 226, 242, 0.8), transparent 55%),
    conic-gradient(from 120deg at 50% 35%, rgba(255, 191, 174, 0.55) 0deg 110deg, transparent 110deg 170deg, rgba(255, 190, 228, 0.5) 170deg 260deg, transparent 260deg 360deg),
    repeating-linear-gradient(-16deg, rgba(255, 255, 255, 0.35) 0 20px, rgba(255, 255, 255, 0) 20px 48px);
  filter: blur(20px);
  opacity: 0.9;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  inset: -18% -12%;
  background: repeating-conic-gradient(from 30deg at 50% 38%, rgba(255, 255, 255, 0.26) 0deg 24deg, transparent 24deg 48deg);
  mix-blend-mode: soft-light;
  opacity: 0.4;
  z-index: 0;
}
.shell {
  width: min(1100px, 100%);
  background: var(--glass);
  border: 1px solid rgba(255, 181, 164, 0.35);
  border-radius: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  z-index: 1;
  backdrop-filter: blur(12px);
}
.shell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 85%, rgba(255, 209, 102, 0.14), transparent 45%);
  pointer-events: none;
  z-index: 0;
}
.content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  padding: 48px 56px;
}
.hero {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.badge {
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 209, 102, 0.28);
  border: 1px solid rgba(255, 123, 115, 0.2);
  color: var(--fg);
  font-weight: 700;
  letter-spacing: 0.5px;
}
h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
  color: #1b0c0a;
}
p {
  margin: 0;
  color: var(--muted);
  max-width: 50ch;
}
.cta-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  margin-top: 18px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 165, 141, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
button {
  cursor: pointer;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  padding: 16px 18px;
  transition: transform 140ms ease, box-shadow 140ms ease, background 160ms ease, border-color 160ms ease;
  text-align: center;
  color: var(--fg);
}
button:focus-visible,
.map-btn:focus-visible {
  outline: 2px solid rgba(255, 123, 115, 0.7);
  outline-offset: 2px;
}
.cta {
  background: linear-gradient(135deg, var(--accent), #ffb48a);
  color: #2a0b08;
  box-shadow: 0 12px 35px rgba(255, 123, 115, 0.35);
}
.cta:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 42px rgba(255, 123, 115, 0.45);
}
.ghost,
.map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 165, 141, 0.6);
  color: var(--fg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.ghost:hover,
.map-btn:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}
.map-btn {
  background: linear-gradient(135deg, var(--accent-2), #fff3c5);
  border-color: rgba(255, 209, 102, 0.7);
  color: #4d2a0b;
  box-shadow: 0 12px 30px rgba(255, 209, 102, 0.35);
}
.map-btn:hover {
  background: linear-gradient(135deg, #ffe89a, #fff6d6);
}
.cta-row button,
.cta-row .map-btn {
  width: 100%;
}
.card {
  background: var(--card);
  border: 1px solid rgba(255, 181, 164, 0.35);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--fg);
  box-shadow: 0 12px 26px rgba(255, 123, 115, 0.12);
}
.card.stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.swatch {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff7b73, #ffd166);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}
.side {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 320px;
  background: linear-gradient(160deg, rgba(255, 123, 115, 0.15), rgba(255, 209, 102, 0.2));
  border: 1px solid rgba(255, 165, 141, 0.4);
  box-shadow: 0 18px 40px rgba(255, 123, 115, 0.18);
}
.side img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) brightness(1.08);
  opacity: 0.92;
}
.side::after {
  content: 'Pentinats';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 48px;
  letter-spacing: 10px;
  color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(1px);
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 99;
}
.overlay.active {
  display: flex;
}
.modal {
  width: min(1000px, 100%);
  height: min(720px, 90vh);
  background: #fffaf5;
  border-radius: 18px;
  border: 1px solid rgba(255, 165, 141, 0.5);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  color: var(--fg);
}
.modal header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 209, 102, 0.2);
  border-bottom: 1px solid rgba(255, 165, 141, 0.5);
}
.modal header span {
  font-weight: 700;
}
.modal header button {
  background: rgba(255, 255, 255, 0.8);
  color: var(--fg);
  border: 1px solid rgba(255, 165, 141, 0.6);
}
iframe {
  width: 100%;
  height: calc(100% - 50px);
  border: none;
  background: #fffaf5;
}
@media (max-width: 720px) {
  body {
    padding: 20px;
  }
  .content {
    padding: 32px 24px;
  }
  .shell {
    border-radius: 22px;
  }
}

@media (max-width: 900px) {
  .cta-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .cta-row {
    grid-template-columns: 1fr;
  }
  .content {
    padding: 28px 18px;
  }
  h1 {
    font-size: clamp(30px, 9vw, 38px);
  }
}
