:root {
  --brown-900: #2B211E;
  --brown-800: #3E302C;
  --brown-700: #564743;
  --brown-500: #8A7470;
  --wine: #761515;
  --wine-dark: #5C1010;
  --gold: #C9A77C;
  --sand-100: #FBF6F2;
  --sand-200: #F4E9E1;
  --sand-300: #EAD5CA;
  --rose: #B78F94;
  --ink: #2B211E;
  --muted: #6E5E5A;
  --line: rgba(86, 71, 67, 0.14);
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius: 14px;
  --wrap: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand-100);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
@media (max-width: 600px) { .wrap { padding: 0 16px; } }

h1, h2, h3, .pillar .num, .includes strong, .hero-card .mono { font-variant-numeric: lining-nums; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; color: var(--brown-900); }
h1 { font-size: clamp(40px, 6vw, 68px); letter-spacing: -0.5px; }
h2 { font-size: clamp(32px, 4.2vw, 48px); letter-spacing: -0.3px; }
h3 { font-size: clamp(24px, 2.6vw, 30px); }
p + p { margin-top: 14px; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 16px;
}

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 242, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 42px; height: 42px; }
.brand-name { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--brown-900); line-height: 1; }
.brand-name small { display: block; font-family: var(--sans); font-size: 10px; letter-spacing: 3px; font-weight: 600; color: var(--brown-500); margin-top: 4px; }
.nav { display: flex; gap: 28px; font-size: 14px; font-weight: 500; }
.nav a { text-decoration: none; color: var(--brown-700); }
.nav a:hover { color: var(--wine); }
@media (max-width: 820px) { .nav { display: none; } }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px; font-weight: 600; letter-spacing: 0.3px;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--wine); color: #fff; box-shadow: 0 10px 24px -12px rgba(118, 21, 21, .7); }
.btn-primary:hover { background: var(--wine-dark); }
.btn-ghost { border: 1.5px solid var(--brown-700); color: var(--brown-800); }
.btn-ghost:hover { background: var(--brown-800); color: var(--sand-100); }
.btn-light { background: var(--sand-200); color: var(--brown-900); }
.btn-light:hover { background: #fff; }
.btn .arrow { font-size: 18px; line-height: 1; }

/* HERO */
.hero { padding: 96px 0 88px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; right: -180px; top: -120px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 167, 124, .22), transparent 68%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 64px; align-items: center; position: relative; }
.hero h1 em { font-style: italic; color: var(--wine); }
.hero .lead { font-size: 19px; color: var(--muted); margin: 24px 0 36px; max-width: 580px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-card {
  background: var(--brown-800); color: var(--sand-200);
  border-radius: 22px; padding: 40px 36px;
  box-shadow: 0 30px 60px -30px rgba(43, 33, 30, .55);
}
.hero-card .mono { font-family: var(--serif); font-size: 76px; line-height: 1; color: var(--sand-200); }
.hero-card .mono span { color: var(--gold); font-style: italic; }
.hero-card .tag { font-size: 11px; letter-spacing: 3px; font-weight: 600; color: var(--gold); margin: 8px 0 28px; }
.hero-card ul { list-style: none; border-top: 1px solid rgba(234, 213, 202, .16); }
.hero-card li { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(234, 213, 202, .16); font-size: 14px; }
.hero-card li span:first-child { color: var(--rose); }
.hero-card li span:last-child { text-align: right; font-weight: 500; }
@media (max-width: 900px) {
  .hero { padding: 64px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero-single { grid-template-columns: 1fr; }
.hero-single > div { max-width: 820px; }
.hero-single .lead { max-width: 680px; }

/* SECTIONS */
section { padding: 96px 0; }
@media (max-width: 600px) { section { padding: 68px 0; } }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head p { color: var(--muted); font-size: 18px; margin-top: 16px; }
.bg-sand { background: var(--sand-200); }
.bg-dark { background: var(--brown-800); color: var(--sand-200); }
.bg-dark h2, .bg-dark h3 { color: var(--sand-100); }
.bg-dark .eyebrow { color: var(--gold); }
.bg-dark .section-head p { color: var(--sand-300); opacity: .85; }

/* PILLARS */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; }
.pillar .num { font-family: var(--serif); font-size: 40px; color: var(--gold); line-height: 1; margin-bottom: 14px; }
.pillar h3 { font-size: 24px; margin-bottom: 10px; }
.pillar p { color: var(--muted); font-size: 16px; }
@media (max-width: 860px) { .pillars { grid-template-columns: 1fr; } }

/* FLAGSHIP */
.flagship { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.flagship .badge {
  display: inline-block; background: var(--wine); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; margin-bottom: 18px;
}
.flagship .intro p { color: var(--muted); font-size: 18px; }
.flagship .intro .btn { margin-top: 32px; }
.phases { display: grid; gap: 14px; }
.phase { background: #fff; border-radius: var(--radius); padding: 24px 26px; border-left: 4px solid var(--wine); }
.phase-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.phase h3 { font-size: 22px; }
.phase .count { font-size: 12px; font-weight: 600; color: var(--wine); letter-spacing: 1px; white-space: nowrap; }
.phase p { font-size: 15px; color: var(--muted); }
.includes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 56px; }
.includes div { background: var(--sand-100); padding: 26px 22px; }
.includes strong { display: block; font-family: var(--serif); font-size: 34px; color: var(--brown-900); line-height: 1.1; }
.includes span { font-size: 14px; color: var(--muted); }
@media (max-width: 900px) {
  .flagship { grid-template-columns: 1fr; gap: 36px; }
  .includes { grid-template-columns: 1fr 1fr; }
}

/* PRODUCTS */
.pj { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.pj-card { background: rgba(255, 255, 255, .05); border: 1px solid rgba(234, 213, 202, .18); border-radius: 18px; padding: 32px; }
.pj-card ul { list-style: none; }
.pj-card li { padding: 12px 0 12px 30px; position: relative; border-bottom: 1px solid rgba(234, 213, 202, .12); font-size: 16px; }
.pj-card li:last-child { border-bottom: 0; }
.pj-card li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.pj .text p { color: var(--sand-300); }
.pj .note { margin-top: 22px; padding: 18px 20px; border-radius: 12px; background: rgba(201, 167, 124, .12); font-size: 15px; color: var(--sand-200); }
.pj .text .btn { margin-top: 28px; }
@media (max-width: 900px) { .pj { grid-template-columns: 1fr; } }

.products { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.product { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 36px 32px; display: flex; flex-direction: column; }
.product .type { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--brown-500); margin-bottom: 12px; }
.product h3 { margin-bottom: 14px; }
.product p { color: var(--muted); font-size: 16px; }
.product ul { list-style: none; margin: 18px 0 28px; }
.product li { font-size: 15px; padding: 7px 0 7px 22px; position: relative; color: var(--brown-700); }
.product li::before { content: ''; position: absolute; left: 0; top: 16px; width: 8px; height: 8px; border-radius: 50%; background: var(--rose); }
.product .btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 860px) { .products { grid-template-columns: 1fr; } }

/* ABOUT NATALIA */
.about { display: grid; grid-template-columns: 360px 1fr; gap: 72px; align-items: center; }
.about-photo { position: relative; }
.about-photo img { border-radius: 20px; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 15%; width: 100%; height: auto; box-shadow: 0 30px 60px -30px rgba(43, 33, 30, .6); }
.about-photo::after { content: ''; position: absolute; inset: 18px -18px -18px 18px; border: 1.5px solid var(--gold); border-radius: 20px; z-index: -1; }
.about .role { font-size: 15px; color: var(--wine); font-weight: 600; margin: 8px 0 22px; }
.about p { color: var(--muted); }
.creds { list-style: none; margin-top: 28px; display: grid; gap: 12px; }
.creds li { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; font-size: 15px; }
.creds .ic { flex: 0 0 auto; font-size: 18px; line-height: 1.4; }
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 44px; }
  .about-photo { max-width: 300px; margin-right: 18px; }
}

/* COMPANY DATA */
.company { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.data-table { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.data-row { display: grid; grid-template-columns: 170px 1fr; gap: 16px; padding: 18px 24px; border-bottom: 1px solid var(--line); font-size: 15px; }
.data-row:last-child { border-bottom: 0; }
.data-row dt { color: var(--brown-500); font-weight: 500; }
.data-row dd { color: var(--brown-900); font-weight: 600; overflow-wrap: anywhere; }
.data-row a { color: var(--wine); }
.company .text p { color: var(--muted); }
@media (max-width: 860px) {
  .company { grid-template-columns: 1fr; }
  .data-row { grid-template-columns: 1fr; gap: 2px; }
}

/* FOOTER */
.site-footer { background: var(--brown-900); color: var(--sand-300); padding: 64px 0 36px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(234, 213, 202, .12); }
.site-footer .brand-name { color: var(--sand-100); }
.site-footer .brand-name small { color: var(--rose); }
.site-footer h4 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; font-weight: 600; }
.site-footer ul { list-style: none; display: grid; gap: 8px; }
.site-footer a { text-decoration: none; color: var(--sand-300); }
.site-footer a:hover { color: #fff; }
.footer-legal { padding-top: 28px; display: grid; gap: 10px; color: var(--rose); font-size: 13px; line-height: 1.6; }
.footer-legal strong { color: var(--sand-200); font-weight: 600; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* LEGAL PAGES */
.legal { padding: 72px 0 96px; }
.legal .wrap { max-width: 820px; }
.legal h1 { font-size: clamp(36px, 5vw, 52px); margin-bottom: 8px; }
.legal .updated { color: var(--brown-500); font-size: 14px; margin-bottom: 40px; }
.legal h2 { font-size: 28px; margin: 40px 0 12px; }
.legal p, .legal li { color: var(--brown-700); font-size: 16px; }
.legal ul { padding-left: 22px; margin-top: 10px; display: grid; gap: 6px; }
.legal a { color: var(--wine); }
