:root {
  --bg: #0b0d10;
  --bg-soft: #11141a;
  --panel: #161a21;
  --panel-2: #1c2129;
  --line: #262d38;
  --line-soft: #1f242d;
  --ink: #f6f7f9;
  --ink-dim: #cdd2dc;
  --muted: #8a93a3;
  --accent: #d9a85a;
  --accent-2: #b88838;
  --accent-soft: rgba(217,168,90,.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-2); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 72px 20px; }
@media (min-width: 640px) { .wrap { padding: 88px 28px; } }
@media (min-width: 1024px) { .wrap { padding: 104px 32px; } }
.section + .section { margin-top: 64px; }
@media (min-width: 768px) { .section + .section { margin-top: 96px; } }

.eyebrow { text-transform: uppercase; letter-spacing: .22em; font-size: 11px;
  color: var(--accent); font-weight: 600; margin-bottom: 14px; }
h1, h2, h3 { margin: 0; font-family: "Fraunces", "Inter", serif; font-weight: 600;
  letter-spacing: -.015em; color: var(--ink); }
h1 { font-size: clamp(34px, 5.2vw, 56px); line-height: 1.08; margin-bottom: 18px; }
h2 { font-size: clamp(26px, 3.4vw, 36px); line-height: 1.15; margin-bottom: 10px; }
h3 { font-size: 22px; line-height: 1.25; margin-bottom: 6px; }
p  { color: var(--ink-dim); margin: 8px 0 0; }
.lede { font-size: 18px; color: var(--ink-dim); max-width: 680px; }

/* Hero */
.hero { position: relative; padding-bottom: 8px; }
.hero::after {
  content: ""; display: block; width: 56px; height: 2px;
  background: var(--accent); margin-top: 28px; border-radius: 2px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
@media (max-width: 480px) { .hero-actions .btn { flex: 1 1 100%; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent); color: #0b0d10; font-weight: 600;
  padding: 13px 22px; border-radius: 999px; border: 0; cursor: pointer;
  font-size: 14.5px; font-family: inherit;
  transition: background .2s ease, transform .15s ease;
  text-decoration: none;
}
.btn:hover { background: var(--accent-2); color: #0b0d10; transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn.ghost:hover { border-color: var(--accent); color: var(--accent); background: transparent; }
.btn.block { width: 100%; }

/* Package cards */
.grid { display: grid; gap: 22px; grid-template-columns: 1fr; margin-top: 48px; }
@media (min-width: 920px) { .grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }

.card {
  position: relative;
  background: linear-gradient(180deg, var(--panel) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex; flex-direction: column;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
@media (min-width: 768px) { .card { padding: 30px 28px; border-radius: 18px; } }
.card:hover { border-color: var(--accent); transform: translateY(-3px);
  box-shadow: 0 24px 60px -28px rgba(217,168,90,.35); }
.card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, #1f2129 0%, #15181f 100%);
  box-shadow: 0 24px 60px -32px rgba(217,168,90,.45);
}
.tag {
  position: absolute; top: -12px; left: 28px;
  font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  color: #0b0d10; background: var(--accent);
  padding: 5px 11px; border-radius: 999px; font-weight: 700;
}
.best { color: var(--muted); font-size: 14px; min-height: 44px; margin-top: 4px; }
ul.feat { list-style: none; padding: 0; margin: 20px 0 24px; }
ul.feat li {
  padding: 10px 0; border-top: 1px solid var(--line-soft);
  color: var(--ink-dim); font-size: 14.5px;
  display: flex; gap: 12px; align-items: flex-start;
}
ul.feat li::before {
  content: ""; flex-shrink: 0;
  width: 16px; height: 16px; margin-top: 4px;
  background: var(--accent-soft);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 6.5l2.5 2.5L10 3.5' fill='none' stroke='%23d9a85a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: center;
}
.price { font-size: 13px; color: var(--muted); margin-top: auto; padding-top: 8px;
  text-transform: uppercase; letter-spacing: .12em; }
.price strong {
  display: block; margin-top: 4px; font-family: "Fraunces", serif;
  color: var(--ink); font-size: 22px; font-weight: 600; letter-spacing: -.01em;
  text-transform: none;
}

/* Portfolio strip */
.portfolio {
  margin-top: 48px;
  background: linear-gradient(135deg, #14181f 0%, #1a1f28 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex; flex-wrap: wrap; gap: 18px;
  align-items: center; justify-content: space-between;
}
@media (min-width: 768px) { .portfolio { padding: 32px 36px; border-radius: 18px; margin-top: 56px; } }
.portfolio > div { flex: 1 1 260px; }
.portfolio .btn { flex-shrink: 0; }
.portfolio h3 { font-family: "Fraunces", serif; }
.portfolio p { margin-top: 4px; }

/* Why */
.two-col { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 860px) { .two-col { grid-template-columns: 1fr 1.4fr; gap: 56px; } }
.why-list { list-style: none; padding: 0; margin: 0; }
.why-list li {
  padding: 14px 0; border-top: 1px solid var(--line-soft);
  color: var(--ink-dim); font-size: 15.5px;
  display: flex; gap: 14px; align-items: flex-start;
}
.why-list li:first-child { border-top: 0; }
.why-list li::before {
  content: ""; flex-shrink: 0; margin-top: 7px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}

.disclaimer {
  margin-top: 40px; font-size: 13.5px; color: var(--muted);
  border-left: 2px solid var(--accent); padding: 14px 18px;
  background: var(--bg-soft); border-radius: 8px; max-width: 880px;
}

/* CTA / form */
.cta {
  display: grid; gap: 32px; grid-template-columns: 1fr;
  background: linear-gradient(180deg, var(--panel-2) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--line);
  border-radius: 16px; padding: 26px 22px;
}
@media (min-width: 768px) { .cta { padding: 36px; border-radius: 18px; gap: 40px; } }
@media (min-width: 920px) { .cta { grid-template-columns: 1fr 1fr; align-items: start; padding: 44px; border-radius: 20px; } }
.contact-list { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.contact-list a {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink); font-size: 15.5px; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 12px;
  background: rgba(255,255,255,.015);
  transition: border-color .2s ease, background .2s ease;
}
.contact-list a:hover { border-color: var(--accent); background: var(--accent-soft); color: var(--ink); }
.contact-list a span.lbl {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; min-width: 64px;
}

form .row { margin-bottom: 16px; }
label { display: block; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px; font-weight: 500; }
input, select, textarea {
  width: 100%; background: #0b0d10; border: 1px solid var(--line); color: var(--ink);
  padding: 14px 15px; border-radius: 12px; font-size: 16px; font-family: inherit;
  transition: border-color .15s ease, background .15s ease;
  -webkit-appearance: none; appearance: none;
}
select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%238a93a3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent);
  background: #0e1117; }
textarea { resize: vertical; }
#formResult { display: none; margin-top: 14px; color: var(--accent); font-weight: 600;
  padding: 12px 14px; background: var(--accent-soft); border-radius: 10px;
  border: 1px solid var(--accent); }
#formError  { display: none; margin-top: 14px; color: #ff7a7a; font-weight: 500;
  padding: 12px 14px; background: rgba(255,122,122,.08); border-radius: 10px;
  border: 1px solid rgba(255,122,122,.35); }

/* Footer */
footer { margin-top: 80px; padding-top: 28px; border-top: 1px solid var(--line-soft);
  color: var(--muted); font-size: 13.5px; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; }
