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

:root {
  --gold: #c9a84c;
  --gold-light: #f5ecd7;
  --gold-dark: #8a6914;
  --cream: #faf8f4;
  --charcoal: #1a1a1a;
  --warm-gray: #6b6358;
  --blush: #f0e6e0;
  --white: #ffffff;
}

body {
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 2rem; }

/* Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(250, 248, 244, 0.97);
  backdrop-filter: blur(8px);
  z-index: 100;
  padding: 1.2rem 3rem;
  border-bottom: 1px solid var(--gold-light);
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.logo svg { color: var(--gold); }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--warm-gray);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--gold);
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('https://images.unsplash.com/photo-1617038220319-276d3cfab638?w=1400&h=900&fit=crop') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.4), rgba(26, 26, 26, 0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 2rem;
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* Page hero for inner pages */
.page-hero {
  padding: 8rem 2rem 3rem;
  text-align: center;
  background: var(--charcoal);
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero-sub {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}

/* Buttons */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.9rem 2.5rem;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.7rem 2rem;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* Collection */
.collection {
  padding: 6rem 2rem;
}

.section-header {
  max-width: 600px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--warm-gray);
  font-size: 1rem;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.gallery {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.gallery-caption p {
  font-size: 0.8rem;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

/* Process */
.process {
  background: var(--charcoal);
  padding: 6rem 2rem;
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.process-image img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
}

.process-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 2.5rem;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  min-width: 40px;
}

.process-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.process-step p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.7;
}

.process-link {
  margin-top: 1.5rem;
}

/* About */
.about {
  padding: 5rem 2rem;
}

.about-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--warm-gray);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* About English section */
.about-en {
  padding: 4rem 2rem;
  border-top: 1px solid var(--gold-light);
}

.about-en h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.about-en p {
  color: var(--warm-gray);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
}

/* Values */
.values {
  padding: 5rem 2rem;
  background: var(--blush);
}

.values h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--white);
  padding: 2rem;
  border-top: 3px solid var(--gold);
}

.value-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* Timeline */
.bio-timeline {
  padding: 5rem 2rem;
}

.bio-timeline h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
  text-align: center;
}

.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--gold-light);
}

.timeline-item {
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.55rem;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

.timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 0.3rem;
}

.timeline-item p {
  color: var(--warm-gray);
  font-size: 0.95rem;
}

/* Taller page */
.taller-intro {
  padding: 5rem 2rem;
}

.taller-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.taller-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}

.taller-text p {
  color: var(--warm-gray);
  margin-bottom: 1rem;
}

.taller-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* Proceso detailed */
.taller-proceso {
  padding: 4rem 2rem 5rem;
  background: var(--blush);
}

.taller-proceso h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--charcoal);
  margin-bottom: 3rem;
  text-align: center;
}

.proceso-block {
  margin-bottom: 2.5rem;
}

.proceso-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.paso-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 40px;
}

.proceso-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--charcoal);
}

.proceso-block p {
  color: var(--warm-gray);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.proceso-img-full {
  margin: 2rem 0;
}

.proceso-img-full img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* Tools grid */
.taller-tools {
  padding: 5rem 2rem;
}

.taller-tools h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
  text-align: center;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tool-card {
  background: var(--white);
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
}

.tool-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.tool-card p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* Colecciones page */
.coleccion-section {
  padding: 5rem 2rem;
}

.coleccion-section.alt-bg {
  background: var(--blush);
}

.coleccion-header {
  max-width: 700px;
  margin-bottom: 3rem;
}

.coleccion-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}

.coleccion-year {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 1px;
}

.coleccion-header p {
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.coleccion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pieza-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.pieza-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.pieza-card p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* Encargos */
.encargos {
  padding: 5rem 2rem;
  background: var(--charcoal);
  text-align: center;
}

.encargos h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.encargos p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.encargos .btn-gold {
  margin-top: 1rem;
}

/* CTA */
.cta {
  background: var(--blush);
  text-align: center;
  padding: 5rem 2rem;
}

.cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.cta p {
  color: var(--warm-gray);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1rem;
}

/* Footer */
footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.6);
  padding: 3rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  color: var(--gold);
}

.footer-brand p {
  margin-top: 0.3rem;
  font-size: 0.85rem;
}

.footer-nav h4,
.footer-info h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-info p {
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.footer-info a {
  color: var(--gold-light);
  text-decoration: none;
}

.footer-info a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* Responsive */
@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }
  .process-inner { grid-template-columns: 1fr; }
  .process-image { display: none; }
  .about-content { grid-template-columns: 1fr; }
  .taller-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .coleccion-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 650px) {
  header { padding: 1rem 1.5rem; }
  .nav-menu { display: none; }
  .hero h1 { font-size: 2.5rem; }
  .hero-sub { font-size: 0.95rem; }
  .page-hero { padding: 6rem 1.5rem 2rem; }
  .page-hero h1 { font-size: 2.2rem; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .section-header h2,
  .process-text h2,
  .about-text h2,
  .cta h2 { font-size: 2rem; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .tools-grid { grid-template-columns: 1fr; }
  .coleccion-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

.brand-icon { width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; margin-right: 6px; }
