@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple: #6B2FFF;
  --pink: #FF2D78;
  --text: #111;
  --muted: #666;
  --border: #e5e5e5;
  --side-pad: 80px;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: #fff;
  font-size: 15px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  transform: translateZ(0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--side-pad);
  height: 64px;
  background: rgba(250,250,248,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}

.nav-logo {
  text-decoration: none;
  font-family: Georgia, serif;
  font-size: 30px;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0 9px;
}

.nav-burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: #fafaf8;
  border-bottom: 0.5px solid var(--border);
  padding: 20px var(--side-pad);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover, .nav-mobile a.active { color: var(--text); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fafaf8;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-mobile {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 45;
  }
  body { padding-top: 64px; }
}

/* ── Label ── */
.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 16px;
}

/* ── Hero ── */
.hero {
  padding: 120px var(--side-pad) 100px;
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--muted);
  font-size: 14px;
  max-width: 420px;
  line-height: 1.7;
}

/* ── Contact rows ── */
.contact-section {
  border-top: 1px solid var(--border);
}

.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px var(--side-pad);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background 0.2s;
  overflow: hidden;
}

.contact-row::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.contact-row:hover { background: #fafafa; }
.contact-row:hover::after { transform: scaleX(1); }

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

.contact-label {
  font-family: Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--text);
}

.contact-desc {
  font-size: 13px;
  color: var(--muted);
}

.contact-row-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-value {
  font-size: 14px;
  color: var(--muted);
}

.contact-arrow {
  font-size: 20px;
  color: var(--purple);
  transition: transform 0.2s;
}

.contact-row:hover .contact-arrow { transform: translateX(4px); }

/* ── CTA ── */
.cta-section {
  padding: 80px var(--side-pad);
  border-top: 1px solid var(--border);
}

.cta-section h2 {
  font-family: Georgia, serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  margin-bottom: 32px;
  max-width: 560px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid var(--text);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover { background: var(--text); color: #fff; }

.btn-gradient {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  transition: opacity 0.2s;
}

.btn-gradient:hover { opacity: 0.85; }

/* ── Footer ── */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px var(--side-pad);
  border-top: 1px solid var(--border);
}

footer p { font-size: 13px; color: var(--muted); }

footer ul { list-style: none; display: flex; gap: 32px; }

footer ul a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
footer ul a:hover { color: var(--text); }

/* ── Responsive ── */
@media (max-width: 900px) {
  :root { --side-pad: 32px; }
}

@media (max-width: 560px) {
  .contact-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .contact-row-right { width: 100%; justify-content: space-between; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
}

.reia {
  background: linear-gradient(135deg, #6B2FFF, #FF2D78);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
