:root {
  --forest: #163325;
  --forest-2: #1f4632;
  --mid-green: #2f6b4a;
  --mint: #a8f0c6;
  --mint-2: #d7fbe6;
  --cream: #f7faf6;
  --ink: #12241a;
  --white: #ffffff;
  --orange: #e8772e;
  --orange-2: #ffe3cc;
  --shadow: 0 12px 30px rgba(10, 30, 20, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  margin: 0;
}

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

.page {
  max-width: 480px;
  margin: 0 auto;
  padding: 28px 20px 48px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.page.wide { max-width: 560px; }

/* ---------- Hero (link-in-bio) ---------- */
.hero-compact {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid var(--mint);
  box-shadow: var(--shadow);
  margin-bottom: 6px;
}

.hero-compact h1 { font-size: 26px; color: var(--forest); }

.tagline {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--mid-green);
  background: var(--mint-2);
  padding: 6px 14px;
  border-radius: 999px;
}

.social-row {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.social-row a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-size: 18px;
}

.social-row a img {
  width: 20px;
  height: 20px;
}

/* ---------- Video showcase (mini grid, link-in-bio) ---------- */
.section-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--mid-green);
  text-align: center;
  margin-bottom: 12px;
  display: block;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.video-grid a { display: block; }

.video-grid img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(10, 30, 20, 0.15);
}

.video-tile {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(10, 30, 20, 0.15);
}

.video-tile video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #dcdad4;
}

.sound-toggle {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: rgba(10, 20, 15, 0.55);
  backdrop-filter: blur(2px);
  color: var(--white);
  font-size: 13px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.sound-toggle:active { transform: scale(0.92); }

.video-showcase { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}

.btn:active { transform: scale(0.98); }

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
  margin-top: 14px;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.btn-email {
  background: var(--white);
  color: var(--forest);
  border: 2px solid var(--forest-2);
}

/* ---------- Link list (Linktree-style cards) ---------- */
.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--white);
  border: 2px solid var(--mint-2);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-weight: 700;
  font-size: 16px;
  color: var(--forest);
  box-shadow: 0 4px 14px rgba(10, 30, 20, 0.08);
}

.link-card span {
  font-weight: 400;
  font-size: 13px;
  color: #4a6357;
}

.link-card.featured {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.link-card.featured span { color: var(--mint-2); }

.brand-cta {
  background: var(--mint-2);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand-cta p {
  margin: 0;
  font-weight: 700;
  font-size: 17px;
  color: var(--forest);
}

footer.site-footer {
  text-align: center;
  font-size: 13px;
  color: #4a6357;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ---------- Portfolio page ---------- */
.hero-portfolio {
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-2) 100%);
  border-radius: var(--radius-lg);
  padding: 0 24px 24px;
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  position: relative;
}

.hero-portfolio img.cutout {
  width: 200px;
  height: 250px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 3px solid rgba(255, 255, 255, 0.15);
  margin-top: 4px;
}

.hero-portfolio h1 { font-size: 28px; }

.hero-portfolio .tagline {
  background: rgba(168, 240, 198, 0.16);
  color: var(--mint);
}

.value-prop {
  font-size: 14px;
  color: var(--mint-2);
  max-width: 320px;
  line-height: 1.5;
  margin: 4px 0 4px;
}

.stats-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  text-align: center;
}

.stat {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 8px;
  box-shadow: 0 4px 14px rgba(10, 30, 20, 0.08);
}

.stat strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: var(--forest);
}

.stat span {
  font-size: 11px;
  color: #4a6357;
  font-weight: 600;
}

.brands h2, .videos h2, .bio h2, .who-am-i h2, .contact-cta h2 {
  font-size: 20px;
  color: var(--forest);
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 13px;
  color: #4a6357;
  text-align: center;
  margin: -10px 0 16px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  box-shadow: 0 4px 14px rgba(10, 30, 20, 0.08);
}

.logo-grid img {
  max-height: 40px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
}

.video-grid.big {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.bio p {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  font-size: 15px;
  line-height: 1.6;
  color: #294636;
  box-shadow: 0 4px 14px rgba(10, 30, 20, 0.08);
  margin: 0;
  text-align: center;
}

.who-am-i-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: 0 4px 14px rgba(10, 30, 20, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.who-am-i-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid var(--mint-2);
}

.who-am-i-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #294636;
  text-align: center;
  margin: 0;
}

.pricing h2 {
  font-size: 20px;
  color: var(--forest);
  text-align: center;
  margin-bottom: 16px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: 0 4px 14px rgba(10, 30, 20, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-card strong {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: var(--forest);
}

.price-card span {
  font-weight: 600;
  font-size: 14px;
  color: #294636;
}

.price-card p {
  margin: 0;
  font-size: 12px;
  color: #4a6357;
  line-height: 1.4;
}

.contact-cta {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--white);
}

.contact-cta h2 { color: var(--white); }

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer.back-link {
  text-align: center;
  font-weight: 600;
  color: var(--mid-green);
}

.framora-footer-cta {
  display: flex;
  justify-content: center;
}

@media (min-width: 420px) {
  .contact-row { flex-direction: row; }
}

/* ---------- Minimalist hub (index.html) ---------- */
.hub-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px 24px;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.hub-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}

.hub-name {
  font-size: 26px;
  color: var(--forest);
}

.hub-bio {
  font-size: 15px;
  line-height: 1.65;
  color: var(--mid-green);
  max-width: 340px;
  margin-top: -16px;
}

.hub-cta {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
}

.hub-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.hub-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  font-family: 'Poppins', sans-serif;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}

.hub-btn:active { transform: scale(0.98); }

.hub-btn strong { font-size: 19px; }
.hub-btn span { font-size: 13px; font-weight: 500; }

.hub-btn.ugc {
  background: var(--forest);
  color: var(--white);
}
.hub-btn.ugc span { color: var(--mint-2); }

.hub-btn.personal {
  background: var(--orange);
  color: var(--white);
}
.hub-btn.personal span { color: var(--orange-2); }

.hub-social {
  margin-top: 8px;
  justify-content: center;
}

/* ---------- Perfume landing (perfumes.html) ---------- */
.hero-perfume {
  background: linear-gradient(160deg, var(--forest) 0%, #4a2d12 100%);
}

.hero-perfume .tagline {
  background: rgba(232, 119, 46, 0.2);
  color: var(--orange-2);
}

.featured-perfume {
  background: linear-gradient(135deg, var(--orange) 0%, #c65a1c 100%);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  color: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}

.featured-perfume img {
  height: 64px;
  width: auto;
  margin-bottom: 4px;
}

.featured-perfume h2 { color: var(--white); font-size: 20px; margin: 0; }

.featured-perfume p {
  margin: 0;
  font-size: 14px;
  color: var(--orange-2);
  max-width: 320px;
}

.featured-perfume .btn {
  background: var(--forest);
  color: var(--white);
  margin-top: 6px;
}

.logo-grid.luxury {
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
}

.logo-grid.luxury img {
  height: 26px;
  width: auto;
  max-width: 90%;
  filter: grayscale(100%);
  opacity: 0.85;
}

.logo-marquee {
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 0;
  box-shadow: 0 4px 14px rgba(10, 30, 20, 0.08);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: logo-scroll 44s linear infinite;
}

.logo-track img {
  height: 24px;
  width: auto;
  flex-shrink: 0;
  filter: grayscale(100%);
  opacity: 0.85;
}

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


.perfume-cta {
  background: linear-gradient(160deg, var(--forest) 0%, #4a2d12 100%);
}
