/* ===== Rosado Lucky Stars LLC — Styles ===== */

:root {
  --bg: #0b1020;
  --bg-2: #11182f;
  --surface: #ffffff;
  --surface-alt: #f6f7fb;
  --text: #0e1530;
  --text-soft: #4a5275;
  --muted: #8a91ad;
  --line: #e5e8f2;
  --primary: #d4a23a;        /* gold */
  --primary-2: #b88828;
  --accent: #ff5a8a;          /* rosado / pink */
  --accent-2: #e94476;
  --radius: 14px;
  --shadow-sm: 0 2px 8px rgba(14,21,48,.06);
  --shadow-md: 0 10px 30px rgba(14,21,48,.10);
  --shadow-lg: 0 20px 60px rgba(14,21,48,.18);
  --max: 1180px;
  --t: .25s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

p { margin: 0 0 1em; color: var(--text-soft); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 14px;
}

.lead { font-size: 1.15rem; color: var(--text-soft); max-width: 60ch; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--t), background var(--t), color var(--t), box-shadow var(--t);
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: .85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #14182b;
  box-shadow: 0 8px 24px rgba(212,162,58,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(212,162,58,.45); }
.btn-ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.35);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: #fff; }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.brand-mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; border-radius: 10px;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.brand-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; letter-spacing: .02em; }
.brand-name em { color: var(--primary); font-style: normal; font-weight: 600; }

.nav { display: flex; gap: 28px; }
.nav a {
  font-size: .95rem; font-weight: 500; color: var(--text-soft);
  position: relative; padding: 6px 0;
  transition: color var(--t);
}
.nav a:hover, .nav a.active { color: var(--text); }
.nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--primary); border-radius: 2px;
}

.nav-cta { }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--t); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden;
  color: #fff;
  padding: 120px 0 110px;
  background: radial-gradient(ellipse at 20% 0%, #1d2552 0%, transparent 60%),
              radial-gradient(ellipse at 90% 100%, #3a1f4d 0%, transparent 55%),
              linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.9), transparent 50%),
    radial-gradient(1.5px 1.5px at 60% 20%, rgba(255,255,255,.7), transparent 50%),
    radial-gradient(2px 2px at 80% 60%, rgba(255,255,255,.8), transparent 50%),
    radial-gradient(1px 1px at 30% 70%, rgba(255,255,255,.6), transparent 50%),
    radial-gradient(2px 2px at 75% 85%, rgba(255,255,255,.7), transparent 50%),
    radial-gradient(1.5px 1.5px at 10% 90%, rgba(255,255,255,.5), transparent 50%),
    radial-gradient(2px 2px at 45% 45%, rgba(255,255,255,.6), transparent 50%);
  opacity: .8;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 820px; }
.hero h1 { color: #fff; }
.hero h1 br { display: block; }
.hero .lead { color: rgba(255,255,255,.85); margin-bottom: 32px; }
.hero .eyebrow { color: var(--primary); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 600px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: #fff; font-weight: 700;
}
.hero-stats span { font-size: .82rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .12em; }

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head .section-sub { font-size: 1.05rem; color: var(--text-soft); }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.align-center { align-items: center; gap: 60px; }
.reverse > div:first-child { order: 2; }

/* ===== Service cards ===== */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212,162,58,.15), rgba(255,90,138,.12));
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.card-link {
  display: inline-block; margin-top: 12px;
  font-weight: 600; color: var(--primary-2);
  font-size: .9rem;
}
.card-link:hover { color: var(--accent-2); }

/* ===== Process steps ===== */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  counter-reset: step;
}
.steps li {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--primary);
  display: block; margin-bottom: 8px;
}
.steps h4 { margin-bottom: 6px; }
.steps p { margin: 0; font-size: .95rem; }

/* ===== Service blocks ===== */
.service-block { padding: 90px 0; border-bottom: 1px solid var(--line); }
.service-block.alt { background: var(--surface-alt); }
.service-block .check-list {
  list-style: none; padding: 0; margin: 18px 0 0;
}
.check-list li {
  position: relative;
  padding: 8px 0 8px 32px;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-size: .75rem; font-weight: 700;
  display: grid; place-items: center;
}
.service-visual { display: flex; justify-content: center; }
.visual-card {
  background: linear-gradient(135deg, #0b1020, #1d2552);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px 36px;
  max-width: 380px; width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.visual-card::before {
  content: "★";
  position: absolute; top: -30px; right: -20px;
  font-size: 9rem; color: rgba(212,162,58,.18);
  font-family: serif;
}
.visual-card h4 { color: var(--primary); margin-bottom: 6px; font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; font-family: 'Inter', sans-serif; }
.visual-card p { color: rgba(255,255,255,.85); margin-bottom: 24px; }
.visual-card p:last-child { margin-bottom: 0; }

/* ===== Page hero (inner pages) ===== */
.page-hero {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  color: #fff;
  padding: 110px 0 90px;
  text-align: center;
}
.page-hero h1 { color: #fff; }
.page-hero .lead { color: rgba(255,255,255,.85); margin: 0 auto; }

/* ===== About — values ===== */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.value {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 24px;
}
.value h4 { color: var(--primary-2); margin-bottom: 6px; }
.value p { margin: 0; font-size: .95rem; }

/* ===== Stats row ===== */
.section-stats {
  background: linear-gradient(135deg, var(--bg), var(--bg-2));
  color: #fff;
  padding: 60px 0;
}
.stats-row {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.stats-row strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--primary);
}
.stats-row span { color: rgba(255,255,255,.7); font-size: .9rem; text-transform: uppercase; letter-spacing: .12em; }

/* ===== Tag cloud ===== */
.tag-cloud {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.tag-cloud span {
  background: var(--surface-alt);
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: .9rem; color: var(--text-soft);
  transition: var(--t);
}
.tag-cloud span:hover { background: var(--primary); color: #14182b; border-color: var(--primary); }

/* ===== CTA section ===== */
.section-cta {
  background: linear-gradient(135deg, var(--bg) 0%, #1d2552 60%, #3a1f4d 100%);
  color: #fff; text-align: center;
}
.section-cta h2 { color: #fff; }
.section-cta p { color: rgba(255,255,255,.85); max-width: 580px; margin: 0 auto 28px; }

/* ===== Contact ===== */
.contact-grid { gap: 60px; align-items: start; }
.contact-info h3 { font-family: 'Inter', sans-serif; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .14em; color: var(--primary-2); }
.contact-list { list-style: none; padding: 0; margin: 28px 0; }
.contact-list li {
  display: grid; grid-template-columns: 90px 1fr; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  align-items: center;
}
.contact-list span { color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; }
.contact-list a { color: var(--text); font-weight: 500; }
.contact-list a:hover { color: var(--primary-2); }

.social-row { display: flex; gap: 14px; margin-top: 8px; }
.social-row a {
  padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px;
  font-size: .85rem; color: var(--text-soft);
  transition: var(--t);
}
.social-row a:hover { background: var(--text); color: #fff; border-color: var(--text); }

.contact-form {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 36px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; color: var(--text); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  background: #fff;
  color: var(--text);
  transition: border-color var(--t), box-shadow var(--t);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212,162,58,.18);
}
.field textarea { resize: vertical; }
.form-note { font-size: .8rem; color: var(--muted); margin: 12px 0 0; }
.form-success {
  margin-top: 16px; padding: 14px 16px;
  background: rgba(212,162,58,.12); color: var(--primary-2);
  border-radius: 10px; font-weight: 500;
}
.hp-field { position: absolute; left: -9999px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--bg); color: rgba(255,255,255,.75);
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer .brand-name { color: #fff; }
.site-footer h5 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  margin: 0 0 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 4px 0; font-size: .92rem; }
.site-footer a { color: rgba(255,255,255,.75); transition: color var(--t); }
.site-footer a:hover { color: var(--primary); }
.footer-tag { color: rgba(255,255,255,.6); font-size: .9rem; margin-top: 14px; max-width: 360px; }
.footer-bottom { padding-top: 20px; }
.footer-bottom p { color: rgba(255,255,255,.5); font-size: .82rem; margin: 0; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .reverse > div:first-child { order: 0; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .hero { padding: 90px 0 80px; }
  .nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 16px 24px; gap: 14px;
    box-shadow: var(--shadow-md);
  }
  .steps { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
}
