:root {
  color-scheme: light;
  --bg: #fdf7f5;
  --surface: #ffffff;
  --accent: #d98e7b;
  --accent-dark: #b06a59;
  --text: #241d1b;
  --muted: #6f5f5b;
  --shadow: 0 20px 50px rgba(36, 29, 27, 0.1);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(253, 247, 245, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 142, 123, 0.15);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #f2c5b8);
  color: white;
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.brand__mark svg {
  width: 100%;
  height: 100%;
}

.brand__name {
  font-size: 1.1rem;
}

.nav {
  display: flex;
  gap: 20px;
  font-weight: 500;
  color: var(--muted);
}

.nav a:hover {
  color: var(--accent-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(217, 142, 123, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid rgba(217, 142, 123, 0.4);
  box-shadow: none;
}

.btn--small {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.hero {
  padding: 80px 0 40px;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  margin: 12px 0 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero__stats {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.hero__stats strong {
  display: block;
  font-size: 1.4rem;
}

.hero__card {
  display: flex;
  justify-content: center;
}

.card {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 360px;
}

.card__title {
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.8px;
}

.card__price {
  font-weight: 700;
  margin: 18px 0;
}

.section {
  padding: 70px 0;
}

.section--alt {
  background: #fff4f1;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.highlight {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.tile {
  padding: 22px;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.tile__image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
}

.order-frame {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.order-frame iframe {
  width: 100%;
  border: 0;
  min-height: 1200px;
}

.note {
  margin-top: 16px;
  color: var(--muted);
}

.link {
  color: var(--accent-dark);
  font-weight: 600;
}

.footer {
  padding: 28px 0 40px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer__links {
  display: flex;
  gap: 16px;
}

.footer__links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(217, 142, 123, 0.15);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer__links a:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-4px);
}

@media (max-width: 720px) {
  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 50px;
  }

  .order-frame iframe {
    min-height: 840px;
  }
}
