:root {
  --bg: #080808;
  --bg-soft: #111111;
  --card: rgba(255,255,255,0.05);
  --text: #f5f1e8;
  --muted: #c8bfae;
  --gold: #c9a96a;
  --gold-strong: #e1bc79;
  --line: rgba(201, 169, 106, 0.25);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    /**radial-gradient(circle at top, rgba(201,169,106,0.15), transparent 22%),**/
     #050505;
  color: var(--text);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(8, 8, 8, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--muted);
  transition: 0.25s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

.hero {
  padding: 6rem 0 4rem;
}

.hero-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.05;
}

h1, h2 {
  font-family: 'Cormorant Garamond', serif;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
}

.hero-text,
.section-heading h2,
.service-card p,
.process-step p,
.about-grid p,
.cta-box p,
.contact-grid p,
.contact-form label,
.hero-card p,
.hero-card li,
.site-footer p,
.site-footer a {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  color: #111;
  box-shadow: 0 12px 30px rgba(201, 169, 106, 0.22);
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
}

.hero-card,
.service-card,
.process-step,
.cta-box,
.contact-form {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card-inner,
.service-card,
.process-step,
.cta-box,
.contact-form {
  padding: 2rem;
}

.card-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.hero-card ul {
  padding-left: 1rem;
  margin: 1.2rem 0 0;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 2rem;
}

.cards-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.service-card,
.process-step {
  min-height: 100%;
}

.process-step span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-box {
  text-align: center;
  padding: 3rem 2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  outline: none;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-wrap div {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand img {
  height: 175px;
  width: auto;
  display: block;
}

.hero {
  padding-top: 50px; /* ajustá entre 60–100 según veas */
}

.hero-copy p {
  margin-top: 24px;
  max-width: 520px;
}

.blog {
  min-height: 100vh;
  background: #050505;
  color: #fff;
  padding: 160px 0 100px;
}

.blog .container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog h1 {
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 400;
  letter-spacing: -2px;
  margin: 0 0 18px;
  line-height: 0.95;
}

.blog > .container > p {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 70px;
}

.blog-item {
  padding: 42px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.28);
}

.blog-item:last-child {
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.blog-item h2 {
  max-width: 850px;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -1px;
  margin: 0 0 18px;
}

.blog-item p {
  max-width: 700px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.66);
  margin: 0 0 26px;
}

.blog-item a {
  display: inline-block;
  color: #d4af37;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(212, 175, 55, 0.5);
  padding-bottom: 6px;
  transition: all 0.25s ease;
}

.blog-item a:hover {
  color: #fff;
  border-bottom-color: #fff;
  transform: translateX(4px);
}

.post {
  padding: 160px 0 100px;
  background: #050505;
  color: #fff;
}

.post .container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.post h1 {
  font-size: 48px;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.1;
}

.post p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}

.hero-card {
  transform: translateY(30px);
}

/* Responsive */
@media (max-width: 768px) {
  .blog {
    padding: 130px 0 80px;
  }

  .blog > .container > p {
    margin-bottom: 48px;
  }

  .blog-item {
    padding: 34px 0;
  }
}


@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .cards-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 80px;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(8,8,8,0.96);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
  }

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

  .hero-grid,
  .about-grid,
  .contact-grid,
  .cards-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }

  .section {
    padding: 4rem 0;
  }

  h1 {
    font-size: 3rem;
  }
}

.contact-info {
  margin-top: 32px;
  display: flex;
  gap: 40px; /* espacio entre WhatsApp, Mail, Instagram */
  flex-wrap: wrap; /* para que en mobile bajen prolijo */
}

.contact-info a {
  color: #c8a96b;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.6px;
  position: relative;
  transition: all 0.3s ease;
}

/* línea sutil debajo (detalle premium) */
.contact-info a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #c8a96b;
  transition: width 0.3s ease;
}

.contact-info a:hover::after {
  width: 100%;
}

.contact-info a:hover {
  opacity: 0.8;
}



