:root {
  --cream: #f4f0e6;
  --paper: #fbf8f1;
  --ink: #1a1916;
  --muted: #5e5a52;
  --green: #2f5d50;
  --green-deep: #1c3b33;
  --gold: #b08d2f;
  --line: #e2dccb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0 auto;
  max-width: 46rem;
  font-family: Outfit, "Helvetica Neue", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100vh;
  box-shadow: 0 0 0 100vw #ebe6d8;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.3rem;
  position: sticky;
  top: 0;
  background: color-mix(in srgb, var(--cream) 90%, white);
  border-bottom: 1px solid var(--line);
  z-index: 2;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--green-deep);
}
.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  background: var(--paper);
  border-radius: 8px;
}
.brand span {
  font-weight: 600;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
}
nav { display: flex; gap: 1.1rem; }
nav a {
  font-size: 0.88rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}
nav a:hover { color: var(--green); }

main { padding: 1rem 1.25rem 3rem; }

.hero {
  margin: 0.4rem 0 1.6rem;
  padding: 2.4rem 1.5rem 2.2rem;
  background: linear-gradient(160deg, var(--green-deep), var(--green));
  color: var(--paper);
  text-align: center;
  border-radius: 18px;
}
.hero-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  background: var(--paper);
  border-radius: 20px;
  padding: 8px;
  margin-bottom: 1rem;
}
.hero .eyebrow { color: #e8d48a; }
.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 9vw, 3.7rem);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 0.8rem;
  letter-spacing: -0.03em;
}
.hero .lead {
  color: #efe8d6;
  margin: 0 auto;
  max-width: 28rem;
}
.hero .btn.ghost {
  color: var(--paper);
  box-shadow: inset 0 0 0 1.5px #e8d48a;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 0.65rem;
}
h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0 0 0.65rem;
  line-height: 1.15;
  font-weight: 600;
}
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
.lead { color: var(--muted); font-size: 1.05rem; }
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.4rem 0 0;
  justify-content: center;
}
.contact .actions { justify-content: flex-start; }

.btn {
  display: inline-block;
  background: var(--gold);
  color: #1a1916;
  text-decoration: none;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
}
.hero .btn { background: var(--paper); color: var(--green-deep); }
.btn.ghost {
  background: transparent;
  color: var(--green);
  box-shadow: inset 0 0 0 1.5px var(--green);
}
.offer, .apps, .contact { padding: 1.8rem 0 1.5rem; border-top: 1px solid var(--line); }

.tiles {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.tiles li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.05rem 1.1rem;
}
.tiles strong, .tiles span { display: block; }
.tiles strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
  color: var(--green-deep);
}
.tiles span { color: var(--muted); font-size: 0.92rem; }

.price-card {
  margin-top: 1.4rem;
  padding: 1.2rem 1.2rem 1.1rem;
  border-radius: 16px;
  background: var(--green-deep);
  color: var(--paper);
  text-align: center;
}
.price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  font-weight: 600;
  margin: 0;
  color: #e8d48a;
}
.price small { font-size: 1rem; font-family: Outfit, sans-serif; font-weight: 500; color: var(--paper); }
.price-card .note { color: #d9d1bf; font-size: 0.88rem; margin: 0.35rem 0 0; }

.cards { display: grid; gap: 0.8rem; margin-top: 1.1rem; }
.cards article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
}
.cards p { margin: 0.3rem 0 0; color: var(--muted); }
.cards a { color: var(--green); font-weight: 500; }

.addr {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 1.4rem;
}

footer {
  padding: 1.1rem 1.3rem 2.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
footer a { color: var(--green); }

@media (max-width: 560px) {
  .tiles { grid-template-columns: 1fr; }
  nav { gap: 0.7rem; }
}
