:root{
  --bg:#F7F3EE;
  --surface:#fff;
  --text:#280202;
  --muted:#5B5B5B;
  --line:#DDD6CF;
  --accent:#B08D57;

  --sans:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  --serif:"Cormorant Garamond",Georgia,"Times New Roman",serif;
  --display:"DM Serif Display",Georgia,"Times New Roman",serif;

  --radius:18px;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  background:var(--bg);
  color:var(--text);
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,textarea{font:inherit}
ul{margin:0;padding:0;list-style:none}

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

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* Reutilizables */
.card{
  background:rgba(255,255,255,.85);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 1px 0 rgba(0,0,0,.03);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--surface);
  font-weight:600;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.btn:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow);
  border-color:rgba(176,141,87,.55);
}
.btn.primary{
  background:linear-gradient(135deg, var(--accent), #d2b07a);
  border-color:rgba(0,0,0,.08);
  color:#111;
}
.btn.ghost{background:transparent}

.pill{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.7);
  font-size:12px;
  color:var(--muted);
}

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(247,243,238,.9);
  border-bottom:1px solid rgba(221,214,207,.7);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.logo{
  width:72px;height:72px;
  border-radius:14px;
  border:1px solid var(--line);
  background:var(--surface);
  overflow:hidden;
  box-shadow:0 6px 16px rgba(0,0,0,.06);
}
.logo img{
  width:100%;height:100%;
  object-fit:contain;
  padding:10px;
}
.brand-text .name{
  font-family:var(--serif);
  font-weight:700;
  font-size:22px;
  line-height:1.1;
}
.brand-text .tag{
  font-size:12px;
  color:var(--muted);
}

.nav-desktop ul{
  display:flex;
  gap:10px;
  font-size:14px;
  color:var(--muted);
}
.nav-desktop a{
  display:block;
  padding:10px 12px;
  border-radius:999px;
}
.nav-desktop a:hover{
  background:rgba(255,255,255,.7);
  color:var(--text);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.burger{
  display:none;
  width:42px;height:42px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.8);
  cursor:pointer;
}
.burger span{
  display:block;
  width:18px;height:2px;
  background:var(--text);
  margin:0 auto;
  position:relative;
}
.burger span::before,
.burger span::after{
  content:"";
  position:absolute;left:0;
  width:18px;height:2px;
  background:var(--text);
}
.burger span::before{top:-6px}
.burger span::after{top:6px}

.mobile{
  display:none;
  padding:0 0 14px;
}
.mobile.open{display:block}
.mobile ul{
  padding:10px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.85);
  display:flex;
  flex-direction:column;
  gap:6px;
}
.mobile a{
  padding:10px;
  border-radius:12px;
  color:var(--muted);
}
.mobile a:hover{background:rgba(255,255,255,.9);color:var(--text)}

/* Secciones */
.section{padding:38px 0}
.section-title{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:14px;
  margin-bottom:18px;
}
.section-title h2{
  margin:0;
  font-family:var(--serif);
  font-size:28px;
}
.section-title p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
  max-width:60ch;
}

/* Hero */
.hero{padding:54px 0 28px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  align-items:start;
}
.hero-title{
  margin:14px 0 12px;
  font-family:var(--serif);
  font-size:clamp(34px, 5vw, 56px);
  line-height:1.03;
}
.hero-subtitle{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
  max-width:53ch;
}
.hero-ctas{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.hero-card{
  border-radius:calc(var(--radius) + 8px);
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero-meta{
  padding:14px 14px 16px;
  display:flex;
  justify-content:space-between;
  gap:10px;
}
.hero-meta strong{
  font-family:var(--serif);
  font-size:16px;
}
.hero-meta small{
  display:block;
  margin-top:2px;
  color:var(--muted);
}

/* Grids simples */
.collections-grid,
.process-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.about-grid{
  display:grid;
  grid-template-columns: 7fr 5fr;
  gap:14px;
}

.collection-card .card-body,
.step .feature,
.about .feature,
.contact form{
  padding:18px;
}

.collection-card .card-title{
  margin:0 0 8px;
  font-family:var(--display);
  font-size:22px;
}
.collection-card .card-text{
  margin:0 0 12px;
  color:var(--muted);
  line-height:1.6;
}

.step .num{
  width:34px;height:34px;
  border-radius:12px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  background:var(--surface);
  font-weight:700;
  font-family:var(--serif);
}
.step h3{
  margin:0;
  font-family:var(--serif);
  font-size:20px;
}

.step .feature {
  position: relative;
  z-index: 2;
}
.kicker{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
  margin-bottom: 1rem;
}
.proceso1 {
  position: relative;
  overflow: hidden;
  background-image: url("imgs/process2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.proceso2 {
  position: relative;
  overflow: hidden;
  background-image: url("imgs/process1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.proceso3 {
  position: relative;
  overflow: hidden;
  background-image: url("imgs/process3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.proceso1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7); /* blanco semitransparente */
  backdrop-filter: blur(1px); /* opcional, efecto más fino */
}.proceso2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7); /* blanco semitransparente */
  backdrop-filter: blur(1px); /* opcional, efecto más fino */
}
.proceso3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7); /* blanco semitransparente */
  backdrop-filter: blur(1px); /* opcional, efecto más fino */
}

.form-title{
  margin:0 0 6px;
  font-family:var(--serif);
  font-size:22px;
}
input,textarea{
  width:100%;
  padding:12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.95);
  outline:none;
}
input:focus,textarea:focus{
  border-color:rgba(176,141,87,.7);
  box-shadow:0 0 0 4px rgba(176,141,87,.15);
}
.form-note{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.4;
}

/* Footer */
.site-footer{
  padding:28px 0 34px;
  border-top:1px solid rgba(221,214,207,.7);
  color:var(--muted);
  font-size:13px;
}
.footer-grid{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.footer-links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.footer-links a[aria-disabled="true"]{
  opacity:.6;
  pointer-events:none;
}

/* Responsive */
@media (max-width:900px){
  .nav-desktop{display:none}
  .burger{display:inline-grid;place-items:center}
  .hero-grid{grid-template-columns:1fr}

  .collections-grid,
  .process-grid{grid-template-columns:1fr}

  .about-grid{grid-template-columns:1fr}

  .logo{width:64px;height:64px}
  .brand-text .name{font-size:20px}
}
