/* ============================
   Yeimi Hernández - styles.css
   (Consolidado sin Tailwind build)
   ============================ */

/* 1) Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Allura&display=swap');

/* 2) Theme variables (desde tu theme.css) */
:root {
  --font-size: 16px;

  --background: #FAF8F5;
  --foreground: #3D3530;

  --card: #ffffff;
  --card-foreground: #3D3530;

  --popover: #ffffff;
  --popover-foreground: #3D3530;

  --primary: #8B6F47;
  --primary-foreground: #FAF8F5;

  --secondary: #D4C4B0;
  --secondary-foreground: #3D3530;

  --muted: #E8DFD4;
  --muted-foreground: #7A6D63;

  --accent: #B8956A;
  --accent-foreground: #FAF8F5;

  --destructive: #d4183d;
  --destructive-foreground: #ffffff;

  --border: rgba(139, 111, 71, 0.15);

  --input: transparent;
  --input-background: #F5EFE7;
  --switch-background: #D4C4B0;

  --font-weight-medium: 500;
  --font-weight-normal: 400;

  --ring: #8B6F47;
  --radius: 0.625rem;

  --sidebar: #FAF8F5;
  --sidebar-foreground: #3D3530;
  --sidebar-primary: #8B6F47;
  --sidebar-primary-foreground: #FAF8F5;
  --sidebar-accent: #E8DFD4;
  --sidebar-accent-foreground: #3D3530;
  --sidebar-border: rgba(139, 111, 71, 0.15);
  --sidebar-ring: #8B6F47;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{ margin:0; }

/* Contenedor centrado real */
.container{
  width: min(1200px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}


/* 3) Base typography (sin @apply) */
h1, h2, h3, h4, p { margin: 0; }

h1 { font-weight: var(--font-weight-medium); line-height: 1.5; font-size: 2rem; }
h2 { font-weight: var(--font-weight-medium); line-height: 1.5; font-size: 1.5rem; }
h3 { font-weight: var(--font-weight-medium); line-height: 1.5; font-size: 1.125rem; }
h4 { font-weight: var(--font-weight-medium); line-height: 1.5; font-size: 1rem; }

label, button { font-weight: var(--font-weight-medium); line-height: 1.5; font-size: 1rem; }
input { font-weight: var(--font-weight-normal); line-height: 1.5; font-size: 1rem; }

* { box-sizing: border-box; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* 4) Utilidades mínimas (subset Tailwind) */

/* Layout / Position */
.min-h-screen { min-height: 100vh; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-6 { bottom: 1.5rem; }
.right-6 { right: 1.5rem; }
.z-50 { z-index: 50; }

/* Backdrop */
.backdrop-blur-sm { backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }


.mx-auto { margin-left: auto; margin-right: auto; }
@media (min-width: 1024px) {
  .container { max-width: 1200px; }
}

/* Spacing */
.p-2 { padding: .5rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pb-4 { padding-bottom: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-12 { margin-bottom: 3rem; }

.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
@media (min-width: 1024px) {
  .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
}

/* Flex / Grid */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.grid { display: grid; }
@media (min-width: 768px) {
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Visibility */
.hidden { display: none; }
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
}

/* Sizing */
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }
.w-14 { width: 3.5rem; }
.h-14 { height: 3.5rem; }

/* Colors (mapeo simple) */
.bg-\[\#2C2520\] { background: #2C2520; }
.bg-foreground { background: var(--foreground); }
.text-background { color: var(--background); }
.text-white { color: #fff; }

/* Opacity helpers (imitación text-background/70 etc.) */
.text-background\/70 { color: rgba(250, 248, 245, 0.70); }
.text-background\/60 { color: rgba(250, 248, 245, 0.60); }

/* Borders */
.border { border: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-background\/20 { border-color: rgba(250, 248, 245, 0.20); }
.border-background\/30 { border-color: rgba(250, 248, 245, 0.30); }

/* Rounded */
.rounded-full { border-radius: 9999px; }

/* Typography helpers */
.text-2xl { font-size: 1.5rem; }
.text-lg { font-size: 1.125rem; }
.text-sm { font-size: .875rem; }

/* Effects */
.shadow-lg { box-shadow: 0 10px 25px rgba(0,0,0,.18); }

/* Transitions */
.transition-colors { transition: color .2s ease, background-color .2s ease, border-color .2s ease; }
.transition-all { transition: all .3s ease; }
.duration-300 { transition-duration: .3s; }

/* Hover */
.hover\:bg-background\/10:hover { background: rgba(250, 248, 245, 0.10); }
.hover\:text-background:hover { color: var(--background); }
.hover\:scale-110:hover { transform: scale(1.10); }

/* Buttons / Links accessibility */
button { background: none; border: none; color: inherit; cursor: pointer; }

/* Main spacing fix for fixed header:
   ajusta si el header tapa el inicio de las páginas */
main { padding-top: 96px; }


/* ===== Layout components (Header / Footer / WhatsApp) ===== */

.site-header{
  position: fixed; top:0; left:0; right:0;
  z-index: 50;
  background:#2C2520;
  border-bottom: 1px solid rgba(250,248,245,.2);
}

.header-row{
  display:flex; align-items:center; justify-content:space-between;
  padding: 24px 0;
}

.brand{ color: var(--background); display:inline-flex; }

.nav-desktop{
  display:none;
  gap: 32px;
  align-items:center;
}

.nav-desktop a{
  color: rgba(250,248,245,.7);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  transition: color .2s ease;
}
.nav-desktop a:hover{ color: var(--background); }

.nav-toggle{
  display:inline-flex;
  width:40px; height:40px;
  align-items:center; justify-content:center;
  border-radius:999px;
  color: var(--background);
  border:1px solid rgba(250,248,245,.25);
}

.nav-mobile{
  display:none;
  padding: 18px 0 8px;
  border-top: 1px solid rgba(250,248,245,.2);
}
.nav-mobile a{
  display:block;
  padding: 10px 0;
  color: rgba(250,248,245,.8);
  font-family:'Inter', sans-serif;
}
.nav-mobile.is-open{ display:block; }

@media (min-width:768px){
  .nav-desktop{ display:flex; }
  .nav-toggle, .nav-mobile{ display:none !important; }
}

/* Espacio por header fijo */
main{ padding-top: 96px; }

/* Footer */
.site-footer{
  background: var(--foreground);
  color: var(--background);
  padding: 64px 0 32px;
}
.footer-grid{
  display:grid;
  gap: 40px;
}
.footer-title{
  font-family:'Cormorant Garamond', serif;
  font-weight:400;
  font-size: 24px;
  margin-bottom: 12px;
}
.footer-text{
  color: rgba(250,248,245,.7);
  line-height: 1.7;
  max-width: 420px;
}
.footer-subtitle{
  font-family:'Inter', sans-serif;
  font-weight:500;
  font-size: 16px;
  margin-bottom: 12px;
}
.footer-links button{
  display:block;
  padding: 6px 0;
  text-align:left;
  color: rgba(250,248,245,.7);
}
.footer-links button:hover{ color: var(--background); }

.social-row{ display:flex; gap: 10px; }
.social-row a{
  width:40px; height:40px;
  border-radius:999px;
  border:1px solid rgba(250,248,245,.3);
  display:flex; align-items:center; justify-content:center;
}
.social-row a:hover{ background: rgba(250,248,245,.1); }

.footer-contact{
  color: rgba(250,248,245,.7);
  font-size: 14px;
  line-height: 1.7;
  padding-top: 10px;
}

.footer-bottom{
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(250,248,245,.2);
  display:flex;
  flex-direction:column;
  gap: 8px;
  color: rgba(250,248,245,.6);
  font-size: 14px;
}

@media(min-width:768px){
  .footer-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
  .footer-bottom{ flex-direction:row; justify-content:space-between; align-items:center; }
}

/* WhatsApp float */
.wa-float{
  position:fixed; right: 24px; bottom: 24px;
  width:56px; height:56px; border-radius:999px;
  background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
  z-index: 50;
  font-family:'Inter', sans-serif;
  font-weight:600;
}

/* ===== Buttons ===== */
.btn{
  display:inline-block;
  border-radius: 999px;
  padding: 18px 40px;
  font-family:'Inter', sans-serif;
  font-weight:500;
  letter-spacing: 1px;
}
.btn-sm{ padding: 12px 24px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; }
.btn-gold{ background:#E8D291; color:#2C2420; }

/* ===== HERO ===== */
.hero{ position:relative; height: 100vh; overflow:hidden; }
.hero-slides{ height:100%; }
.hero-slide{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:0; transform: scale(1.02);
  transition: opacity .6s ease, transform .8s ease;
}
.hero-slide.is-active{ opacity:1; transform: scale(1); }

.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.70), rgba(0,0,0,.45), rgba(0,0,0,0));
}

.hero-content{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding: 0 0;
}

.hero-subtitle{
  color: rgba(255,255,255,.80);
  font-family:'Inter', sans-serif;
  font-weight:500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-size: 12px;
}

.hero-title{
  color:#fff;
  font-family:'Cormorant Garamond', serif;
  font-weight:300;
  line-height: .95;
  font-size: clamp(42px, 6vw, 88px);
  margin-bottom: 28px;
}

.hero-desc{
  color: rgba(255,255,255,.90);
  font-family:'Inter', sans-serif;
  font-weight:300;
  line-height:1.6;
  font-size: clamp(16px, 2vw, 22px);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-arrow{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width:56px; height:56px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.10);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}
.hero-prev{ left: 24px; }
.hero-next{ right: 24px; }
.hero-arrow:hover{ background: rgba(255,255,255,.20); }

.hero-dots{
  position:absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display:flex;
  gap: 10px;
}
.hero-dot{
  width:8px; height:8px;
  border-radius:999px;
  background: rgba(255,255,255,.40);
  border:0;
}
.hero-dot:hover{ background: rgba(255,255,255,.60); }
.hero-dot.is-active{ width:32px; background:#fff; }

.hero-scroll{
  position:absolute;
  bottom: 48px;
  left: 24px;
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,.60);
}
.hero-scroll-line{ width:1px; height:64px; background: rgba(255,255,255,.40); display:inline-block; }
.hero-scroll-text{
  font-family:'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ===== ABOUT PREVIEW ===== */
.about{ background: var(--background); min-height: 100vh; }
.about-grid{
  display:grid;
  gap: 32px;
  padding: 48px 0 0;
}
@media(min-width:1024px){
  .about-grid{ grid-template-columns: 5fr 7fr; align-items: stretch; }
}

.about-name{
  font-family:'Cormorant Garamond', serif;
  font-weight:300;
  line-height:.9;
  font-size: clamp(46px, 5.6vw, 88px);
  margin-bottom: 18px;
}
.about-text{
  font-family:'Inter', sans-serif;
  font-weight:300;
  line-height:1.8;
  color: rgba(61,53,48,.80);
  max-width: 520px;
  margin-bottom: 18px;
}

.about-right{ min-height: 520px; }
.about-photo{
  width:100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: grayscale(30%);
}

.polaroids{ position:relative; margin-top: 48px; padding-bottom: 140px; }
.polaroid{
  width: 190px;
  background:#fff;
  padding: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
  position:relative;
}
.polaroid-img{
  width:100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position:center;
}
.polaroid-cap{
  text-align:center;
  margin-top: 8px;
  font-family:'Allura', cursive;
  font-size: 18px;
}
.p1{ transform: rotate(-6deg); z-index:2; }
.p2{
  position:absolute;
  left: 120px;
  top: 48px;
  transform: rotate(3deg);
  z-index:3;
}
.polaroid-note{
  position:absolute;
  left: 140px;
  top: -18px;
  font
}


/* ===== Sections spacing ===== */
.services, .stats, .testimonials, .contact { padding: 72px 0; }
.services{ background: var(--background); }
.stats{ background: var(--background); }
.testimonials{ background: var(--card); }
.contact{ background: var(--card); }

/* shared */
.kicker{
  font-family:'Inter', sans-serif;
  font-weight:500;
  letter-spacing:3px;
  text-transform:uppercase;
  font-size:12px;
  color: var(--primary);
  margin-bottom: 16px;
}
.services-head, .stats-head, .test-head{
  text-align:center;
  max-width: 900px;
  margin: 0 auto 56px;
}
.services-title, .stats-title, .test-title{
  font-family:'Cormorant Garamond', serif;
  font-weight:300;
  font-size: clamp(34px, 4.2vw, 56px);
  margin-bottom: 18px;
}
.services-sub{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.70);
  line-height:1.7;
  font-size: 18px;
}

/* ===== Services grid ===== */
.services-grid{
  display:grid;
  gap: 24px;
}
@media(min-width:768px){
  .services-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); gap: 32px; }
}
.service-card{
  position:relative;
  overflow:hidden;
  border-radius: 14px;
  background: var(--card);
  min-height: 520px;
}
.service-media{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  transform: scale(1);
  transition: transform .7s ease;
}
.service-card:hover .service-media{ transform: scale(1.10); }
.service-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.82) 100%);
}
.service-body{
  position:absolute;
  left:0; right:0; bottom:0;
  padding: 28px;
  color:#fff;
}
.service-num{
  font-family:'Inter', sans-serif;
  font-weight:500;
  letter-spacing:2px;
  color: rgba(255,255,255,.60);
  margin-bottom: 12px;
  font-size: 12px;
}
.service-name{
  font-family:'Cormorant Garamond', serif;
  font-weight:400;
  font-size: 34px;
  margin-bottom: 12px;
}
.service-desc{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(255,255,255,.82);
  line-height:1.6;
  margin-bottom: 18px;
}
.service-link{
  display:flex; align-items:center; gap: 8px;
  font-family:'Inter', sans-serif;
  font-weight:500;
  transition: gap .2s ease;
}
.service-card:hover .service-link{ gap: 12px; }

.services-cta{ text-align:center; margin-top: 40px; }

/* ===== Stats ===== */
.stats-grid{
  display:grid;
  gap: 28px;
}
@media(min-width:768px){
  .stats-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media(min-width:1024px){
  .stats-grid{ grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
}
.stat{ text-align:center; }
.stat-value{
  font-family:'Cormorant Garamond', serif;
  font-weight:300;
  color: var(--primary);
  font-size: clamp(52px, 5vw, 82px);
}
.stat-label{
  font-family:'Cormorant Garamond', serif;
  font-weight:500;
  font-size: 20px;
  margin-top: 10px;
}
.stat-desc{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.60);
  margin: 12px auto 0;
  max-width: 260px;
  line-height:1.6;
  font-size: 14px;
}

/* ===== Testimonials slider ===== */
.test-slider{ position:relative; max-width: 980px; margin: 0 auto; }
.test-slide{ display:none; text-align:center; padding: 0 12px; }
.test-slide.is-active{ display:block; }
.test-slide blockquote{
  font-family:'Cormorant Garamond', serif;
  font-weight:400;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height:1.5;
  color: rgba(61,53,48,.90);
  margin: 0;
}
.test-author{
  font-family:'Inter', sans-serif;
  font-weight:500;
  margin-top: 26px;
  font-size: 16px;
}
.test-meta{
  font-family:'Inter', sans-serif;
  font-weight:400;
  color: rgba(61,53,48,.60);
  margin-top: 6px;
  font-size: 14px;
}
.test-nav{
  display:flex; align-items:center; justify-content:center;
  gap: 16px;
  margin-top: 36px;
}
.test-btn{
  width:48px; height:48px;
  border-radius:999px;
  border:2px solid rgba(61,53,48,.20);
}
.test-btn:hover{ border-color: rgba(61,53,48,.40); }
.test-dots{ display:flex; gap: 10px; align-items:center; }
.test-dot{
  width:8px; height:8px; border-radius:999px;
  background: rgba(61,53,48,.20);
}
.test-dot:hover{ background: rgba(61,53,48,.40); }
.test-dot.is-active{ width: 32px; background: var(--primary); }

/* ===== Contact ===== */
.contact-grid{
  display:grid;
  gap: 44px;
}
@media(min-width:1024px){
  .contact-grid{ grid-template-columns: 1fr 1fr; gap: 80px; align-items:start; }
}
.contact-title{
  font-family:'Cormorant Garamond', serif;
  font-weight:400;
  font-size: clamp(34px, 4vw, 56px);
  line-height:1.1;
  margin-bottom: 16px;
}
.contact-sub{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.70);
  line-height:1.8;
  font-size: 18px;
}
.contact-items{ margin-top: 26px; display:flex; flex-direction:column; gap: 18px; }
.contact-item{ display:flex; gap: 14px; align-items:flex-start; }
.contact-badge{
  width:48px; height:48px;
  border-radius:999px;
  background: rgba(139,111,71,.10);
  display:flex; align-items:center; justify-content:center;
  font-size: 18px;
  flex: 0 0 auto;
}
.contact-kicker{
  font-family:'Inter', sans-serif;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:1.5px;
  color: var(--primary);
  font-size: 12px;
  margin: 0 0 6px;
}
.contact-value{
  font-family:'Inter', sans-serif;
  font-weight:400;
  margin:0;
}
.contact-cta{ margin-top: 28px; }

.contact-box{
  background: var(--background);
  padding: 28px;
  border-radius: 10px;
}
@media(min-width:1024px){ .contact-box{ padding: 44px; } }

.contact-box-title{
  font-family:'Cormorant Garamond', serif;
  font-weight:500;
  font-size: 28px;
  margin-bottom: 18px;
}
.step{ margin-bottom: 16px; }
.step-title{
  font-family:'Inter', sans-serif;
  font-weight:500;
  color: var(--primary);
  margin: 0 0 6px;
}
.step-desc{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.70);
  line-height:1.7;
  margin:0;
}
.contact-quote{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.quote-text{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.60);
  font-style: italic;
  line-height:1.7;
  margin:0;
  font-size: 14px;
}
.quote-author{
  font-family:'Cormorant Garamond', serif;
  font-weight:400;
  margin-top: 10px;
  font-size: 14px;
  color: rgba(61,53,48,.80);
}

/* ====== About Page ====== */
.pt-header{ padding-top: 96px; } /* header fijo */

.page{ background: var(--background); }

.section-title{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px);
  margin: 0 0 20px;
}
.section-title.center{ text-align:center; }

/* Hero editorial */
.about-hero{ padding: 32px 0 0; background: var(--background); }
.about-hero-grid{
  display:grid;
  gap: 28px;
}
@media(min-width:1024px){
  .about-hero-grid{
    grid-template-columns: 5fr 7fr;
    align-items: stretch;
    min-height: 85vh;
  }
}

.about-hero-left{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding: 18px 0;
}
.about-title{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(52px, 6vw, 92px);
  line-height: .9;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.about-lead{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.80);
  line-height:1.8;
  max-width: 520px;
  margin: 0 0 22px;
  font-size: 16px;
}
@media(min-width:1024px){
  .about-lead{ font-size: 18px; }
}

.about-hero-right{
  min-height: 420px;
}
.about-hero-photo{
  width:100%;
  height:100%;
  min-height: 420px;
  object-fit: cover;
  filter: grayscale(30%);
  border-radius: 10px;
}

/* Polaroids */
.polaroids{
  position:relative;
  margin-top: 34px;
  padding-bottom: 20px;
  min-height: 240px;
}
.polaroid{
  position:absolute;
  background:#fff;
  padding: 10px;
  box-shadow: 0 16px 50px rgba(0,0,0,.12);
  width: 170px;
}
.polaroid-1{ transform: rotate(-12deg); left:0; top:0; z-index: 1; }
.polaroid-2{ transform: rotate(8deg); left: 110px; top: 72px; z-index: 2; width: 190px; }

.polaroid-img{ aspect-ratio: 1 / 1; overflow:hidden; background:#ddd; }
.polaroid img{ width:100%; height:100%; object-fit:cover; display:block; }

.polaroid figcaption{
  margin-top: 8px;
  text-align:center;
  font-family: 'Allura', cursive;
  font-size: 18px;
  color:#2C2420;
}

/* Cred bottom bar */
.cred-bar{
  margin-top: 42px;
  background: var(--foreground);
  color: var(--background);
  border-radius: 10px;
  padding: 22px 14px;
}
.cred-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
@media(min-width:1024px){
  .cred-grid{ grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
}
.cred{ text-align:center; padding: 10px 8px; }
.cred-icon{
  width:56px; height:56px;
  border-radius: 999px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(250,248,245,.10);
  margin: 0 auto 10px;
  font-size: 22px;
}
.cred-value{
  font-family:'Cormorant Garamond', serif;
  font-weight:300;
  font-size: 34px;
}
.cred-label{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(250,248,245,.80);
  text-transform:uppercase;
  letter-spacing: .20em;
  font-size: 11px;
  margin-top: 8px;
  line-height: 1.3;
}

/* Philosophy + values */
.about-philosophy{ padding: 72px 0; background: var(--card); }
.philo-text{
  max-width: 880px;
  margin: 0 auto;
  text-align:center;
  color: rgba(61,53,48,.80);
  font-family:'Inter', sans-serif;
  font-weight:300;
  line-height:1.8;
  font-size: 18px;
}
.philo-text p{ margin: 0 0 16px; }

.values-grid{
  display:grid;
  gap: 22px;
  margin-top: 46px;
}
@media(min-width:768px){
  .values-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media(min-width:1024px){
  .values-grid{ grid-template-columns: repeat(4, minmax(0,1fr)); }
}
.value-card{ text-align:center; padding: 8px 6px; }
.value-icon{
  width:64px; height:64px;
  border-radius: 999px;
  background: rgba(139,111,71,.10);
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 14px;
  font-size: 26px;
}
.value-title{
  font-family:'Cormorant Garamond', serif;
  font-weight:500;
  font-size: 22px;
  margin: 0 0 10px;
}
.value-desc{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.70);
  line-height:1.7;
  margin: 0;
}

/* Credentials sections */
.about-credentials{ padding: 72px 0; background: var(--background); }
.cred-sections{
  display:grid;
  gap: 28px;
  margin-top: 34px;
}
@media(min-width:1024px){
  .cred-sections{ grid-template-columns: repeat(3, minmax(0,1fr)); gap: 34px; }
}
.cred-block-head{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 14px;
}
.cred-block-head h3{
  font-family:'Cormorant Garamond', serif;
  font-weight:500;
  font-size: 26px;
  margin: 0;
}
.badge{
  width:48px; height:48px;
  border-radius: 999px;
  background: rgba(139,111,71,.10);
  display:flex; align-items:center; justify-content:center;
  font-size: 20px;
  flex: 0 0 auto;
}
.bullet-list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.bullet-list li{
  position:relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.70);
  line-height:1.7;
}
.bullet-list li::before{
  content:"";
  position:absolute;
  left:0;
  top: .65em;
  width:6px;
  height:6px;
  border-radius:999px;
  background: var(--primary);
}

/* CTA */
.about-cta{ padding: 72px 0; background: var(--card); }
.cta-box{
  max-width: 860px;
  margin: 0 auto;
  text-align:center;
  display:flex;
  flex-direction:column;
  gap: 16px;
}
.cta-box h2{
  font-family:'Cormorant Garamond', serif;
  font-weight:400;
  font-size: clamp(32px, 3.6vw, 48px);
  margin:0;
}
.cta-box p{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.70);
  font-size: 18px;
  line-height:1.8;
  margin:0;
}
.cta-actions{
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top: 8px;
}


/* ===== Consultation Page ===== */
:root{
  --gold: #E8D291;
  --dark: #2C2520;
  --sand: #D9CDB8;
}

.eyebrow{
  font-family:'Inter',sans-serif;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:12px;
  margin:0 0 18px;
}
.eyebrow-light{ color: rgba(250,248,245,.60); }

.consult-hero{
  background: var(--dark);
  color: var(--background);
  padding: 72px 0;
}
@media(min-width:1024px){ .consult-hero{ padding: 96px 0; } }

.consult-hero-inner{ max-width: 900px; margin: 0 auto; text-align:center; }
.consult-hero-title{
  font-family:'Cormorant Garamond', serif;
  font-weight:300;
  font-size: clamp(40px, 5vw, 72px);
  margin:0 0 18px;
  letter-spacing:-0.02em;
  line-height:1.1;
}
.consult-hero-lead{
  font-family:'Inter', sans-serif;
  font-weight:300;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height:1.6;
  color: rgba(250,248,245,.80);
  margin:0;
}

.consult-what{
  background: var(--sand);
  padding: 72px 0;
}
@media(min-width:1024px){ .consult-what{ padding: 96px 0; } }

.consult-what-grid{
  max-width: 1200px;
  margin: 0 auto;
  display:grid;
  gap: 40px;
  align-items:center;
}
@media(min-width:1024px){
  .consult-what-grid{ grid-template-columns: 1fr 1fr; gap: 80px; }
}

.consult-polaroids{ position:relative; height: 350px; }
@media(min-width:1024px){ .consult-polaroids{ height: 450px; } }

.consult-polaroid{ position:absolute; }
.consult-polaroid-frame{
  background:#fff;
  padding: 10px;
  box-shadow: 0 16px 50px rgba(0,0,0,.18);
}
.consult-square{ aspect-ratio: 1/1; width: 100%; overflow:hidden; background:#eee; }
.consult-square img{ width:100%; height:100%; object-fit:cover; display:block; }

.consult-polaroid-1{
  top: 48px; left: 16px;
  width: 200px;
  transform: rotate(-12deg);
  z-index: 1;
}
@media(min-width:1024px){
  .consult-polaroid-1{ width: 230px; }
}
.consult-polaroid-2{
  bottom: 32px; left: 64px;
  width: 220px;
  transform: rotate(6deg);
  z-index: 2;
}
@media(min-width:1024px){
  .consult-polaroid-2{ left: 96px; width: 260px; }
}

.consult-what-content{ display:flex; flex-direction:column; gap: 16px; }

.consult-h2{
  font-family:'Cormorant Garamond', serif;
  font-weight:400;
  margin:0;
  color: var(--foreground);
  line-height:1.2;
  font-size: clamp(28px, 3vw, 40px);
}
.consult-h2.big{ font-weight:300; font-size: clamp(34px, 3.4vw, 48px); }

.consult-p{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.80);
  line-height:1.7;
  margin:0;
  font-size: 16px;
}
@media(min-width:1024px){ .consult-p{ font-size:18px; } }

.consult-meta{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 10px 0;
  color: rgba(61,53,48,.70);
}
.consult-meta-icon{ color: rgba(61,53,48,.70); display:inline-flex; }
.consult-meta-text{
  font-family:'Inter', sans-serif;
  font-weight:400;
  font-size: 13px;
}

.consult-center{ text-align:center; margin-bottom: 32px; }

/* Benefits */
.consult-benefits{ background: var(--card); padding: 90px 0; }
@media(min-width:1024px){ .consult-benefits{ padding: 128px 0; } }

.benefits-grid{
  max-width: 1100px;
  margin: 0 auto;
  display:grid;
  gap: 18px;
}
@media(min-width:768px){ .benefits-grid{ grid-template-columns: 1fr 1fr; gap: 22px; } }

.benefit-card{
  display:flex;
  gap: 18px;
  padding: 26px;
  background: var(--background);
  transition: box-shadow .25s ease;
}
.benefit-card:hover{ box-shadow: 0 18px 60px rgba(0,0,0,.08); }

.benefit-icon{ color: var(--primary); flex: 0 0 auto; margin-top: 2px; }
.benefit-title{
  font-family:'Cormorant Garamond', serif;
  font-weight:400;
  font-size: 26px;
  margin:0 0 8px;
}
.benefit-desc{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.70);
  line-height:1.7;
  margin:0;
}

/* Process */
.consult-process{ padding: 90px 0; background: var(--background); }
@media(min-width:1024px){ .consult-process{ padding: 128px 0; } }

.process-steps{ max-width: 880px; margin: 0 auto; display:flex; flex-direction:column; gap: 26px; }

.step{ display:flex; gap: 18px; align-items:flex-start; }
.step-num{
  width: 48px; height: 48px;
  border-radius: 999px;
  background: rgba(139,111,71,.10);
  color: var(--primary);
  display:flex; align-items:center; justify-content:center;
  font-family:'Cormorant Garamond', serif;
  font-weight:400;
  font-size: 22px;
  flex: 0 0 auto;
}
.step-title{
  font-family:'Cormorant Garamond', serif;
  font-weight:400;
  font-size: 26px;
  margin:0 0 8px;
}
.step-desc{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.70);
  line-height:1.7;
  margin:0;
}

/* CTA dark */
.consult-cta-dark{ background: var(--dark); color: var(--background); padding: 90px 0; }
@media(min-width:1024px){ .consult-cta-dark{ padding: 128px 0; } }

.consult-cta-box{ max-width: 860px; margin: 0 auto; text-align:center; }
.cta-icon{ color: rgba(250,248,245,.60); margin-bottom: 18px; }

.consult-cta-title{
  font-family:'Cormorant Garamond', serif;
  font-weight:300;
  font-size: clamp(34px, 3.8vw, 52px);
  margin: 0 0 14px;
}
.consult-cta-lead{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(250,248,245,.80);
  font-size: 20px;
  line-height:1.7;
  margin: 0 auto 26px;
  max-width: 620px;
}

.consult-quote{
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(250,248,245,.20);
}
.quote-text{
  font-family:'Inter', sans-serif;
  font-weight:300;
  font-style: italic;
  color: rgba(250,248,245,.60);
  line-height:1.7;
  margin:0;
  font-size: 13px;
}
.quote-author{
  font-family:'Cormorant Garamond', serif;
  font-weight:400;
  color: rgba(250,248,245,.80);
  margin: 10px 0 0;
  font-size: 14px;
}

/* Buttons used here */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  text-decoration:none;
  border-radius: 999px;
  padding: 12px 22px;
  font-family:'Inter', sans-serif;
  font-weight:500;
  letter-spacing: 1px;
  border: 1px solid transparent;
  cursor:pointer;
}
.btn-gold{
  background: var(--gold);
  color: #2C2420;
  border-color: var(--gold);
}
.btn-light{
  background: var(--background);
  color: var(--foreground);
  padding: 16px 28px;
  border-radius: 0; /* en figma se ve más “editorial”, sin pill */
}
.btn-arrow{ display:inline-flex; }

/* ===== Regenerative Aesthetics ===== */
:root{
  --gold:#E8D291;
  --dark:#2C2520;
  --sand:#D9CDB8;
}

/* hero */
.regen-hero{
  background: var(--dark);
  color: var(--background);
  padding: 72px 0;
}
@media(min-width:1024px){ .regen-hero{ padding: 96px 0; } }
.regen-hero-inner{ max-width: 980px; margin: 0 auto; text-align:center; }
.regen-hero-title{
  font-family:'Cormorant Garamond', serif;
  font-weight:300;
  font-size: clamp(40px, 5vw, 72px);
  margin:0 0 18px;
  letter-spacing:-0.02em;
  line-height:1.1;
}
.regen-hero-lead{
  font-family:'Inter', sans-serif;
  font-weight:300;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height:1.7;
  color: rgba(250,248,245,.80);
  max-width: 820px;
  margin:0 auto;
}

/* what */
.regen-what{ background: var(--sand); padding: 72px 0; }
@media(min-width:1024px){ .regen-what{ padding: 96px 0; } }

.regen-what-grid{
  max-width: 1200px;
  margin: 0 auto;
  display:grid;
  gap: 40px;
  align-items:center;
}
@media(min-width:1024px){
  .regen-what-grid{ grid-template-columns: 1fr 1fr; gap: 80px; }
}

.regen-polaroids{ position:relative; height: 350px; }
@media(min-width:1024px){ .regen-polaroids{ height: 450px; } }

.regen-polaroid{ position:absolute; }
.regen-polaroid-frame{
  background:#fff;
  padding: 10px;
  box-shadow: 0 16px 50px rgba(0,0,0,.18);
}
.regen-square{ aspect-ratio: 1/1; width:100%; overflow:hidden; background:#eee; }
.regen-square img{ width:100%; height:100%; object-fit:cover; display:block; }

.regen-polaroid-1{
  top: 48px; left: 16px;
  width: 200px;
  transform: rotate(8deg);
  z-index: 1;
}
@media(min-width:1024px){ .regen-polaroid-1{ width: 230px; } }

.regen-polaroid-2{
  bottom: 32px; left: 64px;
  width: 220px;
  transform: rotate(-6deg);
  z-index: 2;
}
@media(min-width:1024px){
  .regen-polaroid-2{ left: 96px; width: 260px; }
}

.regen-what-content{ display:flex; flex-direction:column; gap: 16px; }

.regen-h2{
  font-family:'Cormorant Garamond', serif;
  font-weight:400;
  margin:0;
  color: var(--foreground);
  line-height:1.2;
  font-size: clamp(28px, 3vw, 40px);
}
.regen-h2.big{ font-weight:300; font-size: clamp(34px, 3.4vw, 48px); }

.regen-p{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.80);
  line-height:1.7;
  margin:0;
  font-size: 16px;
}
@media(min-width:1024px){ .regen-p{ font-size:18px; } }

.regen-bullets{
  list-style:none;
  margin: 0;
  padding: 0;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.regen-bullets li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.70);
  font-size: 13px;
  line-height:1.7;
}
.regen-bullets .dot{
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--primary);
  margin-top: 8px;
  flex: 0 0 auto;
}

/* principles */
.regen-principles{ background: var(--card); padding: 90px 0; }
@media(min-width:1024px){ .regen-principles{ padding: 128px 0; } }

.regen-center{ text-align:center; margin-bottom: 34px; }
.regen-lead{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.70);
  line-height:1.7;
  margin: 10px auto 0;
  max-width: 720px;
  font-size: 18px;
}

.principles-grid{
  max-width: 1100px;
  margin: 0 auto;
  display:grid;
  gap: 18px;
}
@media(min-width:768px){ .principles-grid{ grid-template-columns: repeat(3, 1fr); gap: 22px; } }

.principle-card{
  text-align:center;
  background: var(--background);
  padding: 28px;
  transition: box-shadow .25s ease;
}
.principle-card:hover{ box-shadow: 0 18px 60px rgba(0,0,0,.10); }

.principle-icon{
  width: 64px; height: 64px;
  border-radius: 999px;
  margin: 0 auto 18px;
  background: rgba(139,111,71,.10);
  display:flex; align-items:center; justify-content:center;
  color: var(--primary);
}
.principle-title{
  font-family:'Cormorant Garamond', serif;
  font-weight:400;
  font-size: 26px;
  margin: 0 0 12px;
}
.principle-desc{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.70);
  line-height:1.7;
  margin:0;
}

/* approach */
.regen-approach{ padding: 90px 0; background: var(--background); }
@media(min-width:1024px){ .regen-approach{ padding: 128px 0; } }

.regen-approach-grid{
  display:grid;
  gap: 40px;
  align-items:center;
}
@media(min-width:1024px){
  .regen-approach-grid{ grid-template-columns: 1fr 1fr; gap: 90px; }
}

.approach-photo{
  aspect-ratio: 4/3;
  overflow:hidden;
  border-radius: 2px;
  background:#eee;
}
.approach-photo img{ width:100%; height:100%; object-fit:cover; display:block; }

.approach-content{ display:flex; flex-direction:column; gap: 22px; }
.approach-steps{ display:flex; flex-direction:column; gap: 22px; margin-top: 6px; }

.approach-step{ display:flex; gap: 18px; align-items:flex-start; }
.approach-num{
  font-family:'Cormorant Garamond', serif;
  font-weight:300;
  font-size: 56px;
  line-height:1;
  color: rgba(139,111,71,.20);
  flex: 0 0 auto;
}
.approach-title{
  font-family:'Cormorant Garamond', serif;
  font-weight:400;
  font-size: 26px;
  margin: 0 0 10px;
}
.approach-desc{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.70);
  line-height:1.7;
  margin:0;
}

/* benefits list */
.regen-benefits{ background: var(--card); padding: 90px 0; }
@media(min-width:1024px){ .regen-benefits{ padding: 128px 0; } }

.regen-benefits-grid{
  max-width: 860px;
  margin: 0 auto;
  display:grid;
  gap: 14px;
}
@media(min-width:768px){ .regen-benefits-grid{ grid-template-columns: 1fr 1fr; gap: 16px; } }

.benefit-row{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  padding: 18px;
  background: var(--background);
}
.benefit-bullet{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--primary);
  margin-top: 8px;
  flex: 0 0 auto;
}
.benefit-text{
  font-family:'Inter', sans-serif;
  font-weight:300;
  line-height:1.7;
  margin:0;
  font-size: 18px;
  color: rgba(61,53,48,.90);
}

/* quote */
.regen-quote{ padding: 90px 0; background: var(--background); }
@media(min-width:1024px){ .regen-quote{ padding: 128px 0; } }

.quote-grid{
  max-width: 1100px;
  margin: 0 auto;
  display:grid;
  gap: 40px;
  align-items:center;
}
@media(min-width:1024px){
  .quote-grid{ grid-template-columns: 1fr 1fr; gap: 70px; }
}

.quote-photo{
  aspect-ratio: 1/1;
  overflow:hidden;
  border-radius: 2px;
  background:#eee;
}
.quote-photo img{ width:100%; height:100%; object-fit:cover; display:block; }

.quote-block{ margin:0; }
.quote-big{
  font-family:'Cormorant Garamond', serif;
  font-weight:300;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height:1.5;
  margin:0 0 18px;
}
.quote-author{
  font-family:'Cormorant Garamond', serif;
  font-weight:400;
  margin:0;
  font-size: 18px;
}
.quote-role{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.60);
  margin: 6px 0 0;
  font-size: 13px;
}

/* CTA dark */
.regen-cta{ background: var(--dark); color: var(--background); padding: 90px 0; }
@media(min-width:1024px){ .regen-cta{ padding: 128px 0; } }

.regen-cta-box{ max-width: 860px; margin: 0 auto; text-align:center; }
.regen-cta-title{
  font-family:'Cormorant Garamond', serif;
  font-weight:300;
  font-size: clamp(34px, 3.8vw, 52px);
  margin: 0 0 14px;
}
.regen-cta-lead{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(250,248,245,.80);
  font-size: 20px;
  line-height:1.7;
  margin: 0 auto 26px;
  max-width: 650px;
}
.regen-cta-note{
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(250,248,245,.20);
}
.regen-cta-note p{
  margin:0;
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(250,248,245,.60);
  font-size: 13px;
  line-height:1.7;
}

/* ===== Consultoría de Marca (protocols.php) ===== */
:root{
  --proto-hero:#4A4035;
  --proto-sand:#D9CDB8;
  --proto-ink:#2C2420;
  --gold:#E8D291;
}

/* hero */
.proto-hero{
  background: var(--proto-hero);
  color: #fff;
  padding: 110px 0 80px;
}
@media(min-width:1024px){ .proto-hero{ padding: 130px 0 110px; } }

.proto-hero-inner{ max-width: 960px; margin: 0 auto; text-align:center; }

.proto-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.95);
  font-family:'Inter', sans-serif;
  font-weight:400;
  font-size: 13px;
  margin-bottom: 26px;
}
.proto-pill-icon{ display:inline-flex; opacity: .95; }

.proto-hero-title{
  font-family:'Cormorant Garamond', serif;
  font-weight:300;
  font-size: clamp(42px, 5vw, 76px);
  margin: 0 0 14px;
  letter-spacing:-0.02em;
}
.proto-hero-lead{
  font-family:'Inter', sans-serif;
  font-weight:300;
  font-size: clamp(16px, 2vw, 20px);
  line-height:1.8;
  color: rgba(255,255,255,.90);
  margin: 0 auto 28px;
  max-width: 780px;
}

/* featured */
.proto-featured{
  background: var(--proto-sand);
  padding: 72px 0;
}
@media(min-width:1024px){ .proto-featured{ padding: 96px 0; } }

.proto-featured-grid{
  max-width: 1200px;
  margin: 0 auto;
  display:grid;
  gap: 40px;
  align-items:center;
}
@media(min-width:1024px){
  .proto-featured-grid{ grid-template-columns: 1fr 1fr; gap: 80px; }
}

.proto-polaroids{ position:relative; height: 350px; }
@media(min-width:1024px){ .proto-polaroids{ height: 450px; } }

.proto-polaroid{ position:absolute; }
.proto-polaroid-frame{
  background:#fff;
  padding: 10px;
  box-shadow: 0 16px 50px rgba(0,0,0,.18);
}
.proto-square{ aspect-ratio: 1/1; width:100%; overflow:hidden; background:#eee; }
.proto-square img{ width:100%; height:100%; object-fit:cover; display:block; }

.proto-polaroid-1{
  top: 32px; right: 16px;
  width: 200px;
  transform: rotate(10deg);
  z-index: 1;
}
@media(min-width:1024px){ .proto-polaroid-1{ width: 230px; } }

.proto-polaroid-2{
  bottom: 48px; left: 32px;
  width: 220px;
  transform: rotate(-8deg);
  z-index: 2;
}
@media(min-width:1024px){ .proto-polaroid-2{ left: 48px; width: 260px; } }

.proto-featured-content{ display:flex; flex-direction:column; gap: 14px; }

.proto-h2{
  font-family:'Cormorant Garamond', serif;
  font-weight:400;
  margin:0;
  color: var(--foreground);
  line-height:1.2;
  font-size: clamp(28px, 3vw, 40px);
}
.proto-h2.big{ font-weight:400; font-size: clamp(34px, 3.4vw, 52px); }

.proto-p{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.80);
  line-height:1.7;
  margin:0;
  font-size: 16px;
}
@media(min-width:1024px){ .proto-p{ font-size:18px; } }

.proto-bullets{
  list-style:none;
  margin: 6px 0 10px;
  padding: 0;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.proto-bullets li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.70);
  font-size: 13px;
  line-height:1.7;
}
.proto-bullets .dot{
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--primary);
  margin-top: 8px;
  flex: 0 0 auto;
}

/* section heads */
.proto-section-head{ max-width: 760px; margin-bottom: 40px; }
.proto-lead{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.70);
  line-height:1.7;
  margin: 10px 0 0;
  font-size: 18px;
}

/* services */
.proto-services{ padding: 90px 0; background: var(--background); }
@media(min-width:1024px){ .proto-services{ padding: 112px 0; } }

.proto-services-grid{
  display:grid;
  gap: 18px;
}
@media(min-width:768px){ .proto-services-grid{ grid-template-columns: 1fr 1fr; gap: 22px; } }

.service-card{
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px;
  transition: box-shadow .25s ease, transform .25s ease;
}
@media(min-width:1024px){ .service-card{ padding: 34px; } }
.service-card:hover{
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
  transform: translateY(-2px);
}

.service-icon{
  width: 56px; height: 56px;
  border-radius: 999px;
  background: rgba(139,111,71,.10);
  color: var(--primary);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 18px;
}
.service-title{
  font-family:'Cormorant Garamond', serif;
  font-weight:500;
  font-size: 28px;
  margin: 0 0 10px;
}
.service-desc{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.70);
  line-height:1.7;
  margin:0 0 16px;
}
.service-features{
  list-style:none;
  padding:0; margin:0;
  display:flex; flex-direction:column; gap: 10px;
}
.service-features li{
  display:flex; align-items:center; gap: 10px;
  font-family:'Inter', sans-serif;
  font-weight:400;
  color: rgba(61,53,48,.85);
}
.service-features .dot{
  width: 6px; height: 6px; border-radius:999px;
  background: var(--primary);
}

/* process */
.proto-process{ padding: 90px 0; background: #F5F3F0; }
@media(min-width:1024px){ .proto-process{ padding: 112px 0; } }

.process-grid{
  display:grid;
  gap: 18px;
}
@media(min-width:768px){ .process-grid{ grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px){ .process-grid{ grid-template-columns: repeat(4, 1fr); } }

.process-card{ position:relative; padding: 10px 0; }
.process-num{
  font-family:'Cormorant Garamond', serif;
  font-weight:300;
  font-size: 64px;
  opacity: .18;
  line-height:1;
  margin-bottom: 12px;
}
.process-title{
  font-family:'Cormorant Garamond', serif;
  font-weight:500;
  font-size: 22px;
  margin: 0 0 8px;
}
.process-desc{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.70);
  line-height:1.7;
  margin:0;
}

/* portfolio */
.proto-portfolio{ padding: 90px 0; background: var(--background); }
@media(min-width:1024px){ .proto-portfolio{ padding: 112px 0; } }

.portfolio-grid{
  display:grid;
  gap: 18px;
}
@media(min-width:768px){ .portfolio-grid{ grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.portfolio-item{ text-decoration:none; color: inherit; display:block; }
.portfolio-media{
  aspect-ratio: 4/3;
  overflow:hidden;
  background:#eee;
  margin-bottom: 12px;
}
.portfolio-media img{
  width:100%; height:100%;
  object-fit:cover;
  transition: transform .5s ease;
  display:block;
}
.portfolio-item:hover .portfolio-media img{ transform: scale(1.05); }

.portfolio-cat{
  font-family:'Inter', sans-serif;
  font-weight:500;
  letter-spacing: 1px;
  font-size: 12px;
  color: var(--primary);
  margin: 0 0 6px;
}
.portfolio-title{
  font-family:'Cormorant Garamond', serif;
  font-weight:500;
  font-size: 22px;
  margin:0;
}

/* CTA */
.proto-cta{
  background: var(--proto-hero);
  color:#fff;
  padding: 90px 0;
}
@media(min-width:1024px){ .proto-cta{ padding: 112px 0; } }

.proto-cta-inner{ max-width: 860px; margin: 0 auto; text-align:center; }
.proto-cta-icon{ color: rgba(255,255,255,.80); margin-bottom: 14px; }

.proto-cta-title{
  font-family:'Cormorant Garamond', serif;
  font-weight:400;
  font-size: clamp(34px, 3.6vw, 52px);
  margin: 0 0 12px;
}
.proto-cta-lead{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(255,255,255,.90);
  line-height:1.8;
  font-size: 18px;
  margin: 0 auto 22px;
  max-width: 720px;
}
.proto-cta-actions{
  display:flex;
  flex-direction:column;
  gap: 12px;
  justify-content:center;
}
@media(min-width:640px){
  .proto-cta-actions{ flex-direction:row; align-items:center; gap: 14px; }
}

/* buttons used here */
.btn-white{
  display:inline-block;
  padding: 14px 22px;
  background:#fff;
  color: var(--proto-ink);
  text-decoration:none;
  font-family:'Inter', sans-serif;
  font-weight:500;
  letter-spacing: 1px;
  transition: opacity .2s ease;
}
.btn-white:hover{ opacity: .92; }

.btn-outline-white{
  display:inline-block;
  padding: 14px 22px;
  border: 2px solid rgba(255,255,255,1);
  color:#fff;
  text-decoration:none;
  font-family:'Inter', sans-serif;
  font-weight:500;
  letter-spacing: 1px;
  transition: background .2s ease;
}
.btn-outline-white:hover{ background: rgba(255,255,255,.10); }


/* ===== Coworking / Contact (contact.php) ===== */
:root{
  --cw-hero:#4A4035;
  --cw-gold:#E8D291;
  --cw-ink:#2C2420;
  --cw-soft:#F5F3F0;
}

/* HERO */
.cw-hero{
  position:relative;
  padding: 120px 0 110px;
  background:
    linear-gradient(rgba(74,64,53,.75), rgba(74,64,53,.75)),
    url('https://images.unsplash.com/photo-1622579521534-8252f7da47fd?auto=format&fit=crop&w=1800&q=80');
  background-size:cover;
  background-position:center;
  overflow:hidden;
}
@media(min-width:1024px){
  .cw-hero{ padding: 140px 0 140px; }
}
.cw-hero-overlay{ display:none; } /* reservado por si quieres overlays extra */
.cw-hero-inner{ position:relative; z-index:2; text-align:center; max-width: 980px; margin:0 auto; }
.cw-hero-kicker{
  font-family:'Inter', sans-serif;
  font-weight:400;
  letter-spacing:3px;
  text-transform:uppercase;
  font-size: 12px;
  color: rgba(232,210,145,.85);
  margin: 0 0 10px;
}
.cw-hero-title{
  font-family:'Cormorant Garamond', serif;
  font-weight:300;
  font-size: clamp(44px, 5.5vw, 86px);
  line-height:1.08;
  color:#fff;
  margin: 0 0 14px;
}
.cw-hero-lead{
  font-family:'Inter', sans-serif;
  font-weight:300;
  font-size: clamp(16px, 2.1vw, 24px);
  line-height:1.85;
  color: rgba(255,255,255,.92);
  max-width: 820px;
  margin: 0 auto 26px;
}
.cw-hero-actions{
  display:flex;
  flex-direction:column;
  gap: 12px;
  justify-content:center;
}
@media(min-width:640px){
  .cw-hero-actions{ flex-direction:row; }
}
.cw-hero-fade{
  position:absolute;
  left:0; right:0; bottom:0;
  height: 90px;
  background: linear-gradient(to top, var(--background), transparent);
  z-index:1;
}

/* SECTION BASE */
.cw-section{ padding: 84px 0; background: var(--background); }
@media(min-width:1024px){ .cw-section{ padding: 110px 0; } }
.cw-soft{ background: var(--cw-soft); }

.cw-head{ max-width: 820px; margin: 0 0 46px; }
.cw-head.center{ text-align:center; margin: 0 auto 46px; }
.cw-h2{
  font-family:'Cormorant Garamond', serif;
  font-weight:400;
  font-size: clamp(34px, 3.5vw, 54px);
  margin:0 0 10px;
}
.cw-sub{
  font-family:'Inter', sans-serif;
  font-weight:300;
  font-size: 18px;
  line-height:1.8;
  color: rgba(61,53,48,.70);
  margin:0;
}

/* OFFICE */
.cw-office{ margin: 0 0 110px; }
.cw-office:last-child{ margin-bottom: 0; }

.cw-office-head{ text-align:center; margin: 0 0 26px; }
.cw-badge{
  display:inline-block;
  padding: 12px 22px;
  font-family:'Inter', sans-serif;
  font-weight:500;
  letter-spacing:3px;
  text-transform:uppercase;
  font-size: 12px;
  background: var(--badge);
  color:#fff;
  margin-bottom: 18px;
}
.cw-office-title{
  font-family:'Cormorant Garamond', serif;
  font-weight:300;
  font-size: clamp(44px, 5vw, 78px);
  line-height:1;
  color: var(--accent);
  margin:0 0 14px;
}
.cw-office-desc{
  font-family:'Inter', sans-serif;
  font-weight:300;
  font-size: clamp(16px, 2vw, 22px);
  line-height:1.8;
  color: rgba(61,53,48,.70);
  max-width: 920px;
  margin: 0 auto;
}

/* gallery */
.cw-gallery{
  display:grid;
  gap: 14px;
  margin: 26px 0 18px;
}
@media(min-width:768px){
  .cw-gallery{ grid-template-columns: 1fr 1fr; }
}
.cw-photo{
  aspect-ratio: 4/3;
  overflow:hidden;
  background:#e9e6e1;
}
.cw-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition: transform .5s ease;
}
.cw-photo:hover img{ transform: scale(1.05); }

/* amenities */
.cw-amenities{
  background: var(--card);
  border-left: 4px solid var(--accent);
  padding: 22px;
}
@media(min-width:1024px){ .cw-amenities{ padding: 28px; } }

.cw-h4{
  font-family:'Cormorant Garamond', serif;
  font-weight:500;
  font-size: 26px;
  margin: 0 0 14px;
}
.cw-amenities-grid{
  display:grid;
  gap: 10px 18px;
}
@media(min-width:768px){
  .cw-amenities-grid{ grid-template-columns: repeat(3, 1fr); }
}
.cw-amenity{
  display:flex;
  align-items:center;
  gap: 10px;
  font-family:'Inter', sans-serif;
  font-weight:400;
  color: rgba(61,53,48,.85);
}
.cw-check{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 25%, #fff);
  position:relative;
  flex: 0 0 auto;
}
.cw-check::after{
  content:"";
  position:absolute;
  left: 5px;
  top: 4px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* 360 embed */
.cw-embed{ max-width: 980px; margin: 0 auto; }
.cw-embed-placeholder{
  aspect-ratio: 16/9;
  background: var(--card);
  border: 1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap: 10px;
  overflow:hidden;
  text-align:center;
  padding: 18px;
}
.cw-play{
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: rgba(139,111,71,.10);
  position:relative;
}
.cw-play::after{
  content:"";
  position:absolute;
  left: 32px;
  top: 26px;
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent var(--primary);
}
.cw-embed-title{
  font-family:'Inter', sans-serif;
  font-weight:400;
  color: rgba(61,53,48,.70);
  margin:0;
}
.cw-embed-sub{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.55);
  font-size: 13px;
  margin:0;
}
.cw-note{
  text-align:center;
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.60);
  font-size: 13px;
  margin: 12px 0 0;
}

/* features */
.cw-features{
  display:grid;
  gap: 18px;
}
@media(min-width:768px){ .cw-features{ grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px){ .cw-features{ grid-template-columns: repeat(4, 1fr); } }

.cw-feature{
  text-align:center;
  padding: 12px 8px;
}
.cw-feature-ic{
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(139,111,71,.10);
  color: var(--primary);
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 0 auto 14px;
  font-family:'Inter', sans-serif;
  font-weight:600;
  font-size: 12px;
  letter-spacing:.3px;
}
.cw-feature h3{
  font-family:'Cormorant Garamond', serif;
  font-weight:500;
  font-size: 22px;
  margin: 0 0 8px;
}
.cw-feature p{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.70);
  line-height:1.7;
  margin:0;
}

/* booking */
.cw-calendar-ic{
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(74,64,53,.10);
  margin: 0 auto 14px;
  position:relative;
}
.cw-calendar-ic::after{
  content:"";
  position:absolute;
  left: 20px;
  top: 18px;
  width: 24px;
  height: 18px;
  border: 2px solid rgba(74,64,53,.55);
  border-radius: 4px;
}
.cw-book-actions{
  display:flex;
  flex-direction:column;
  gap: 12px;
  justify-content:center;
  margin: 0 0 22px;
}
@media(min-width:640px){ .cw-book-actions{ flex-direction:row; } }

.cw-calendar-box{
  max-width: 860px;
  margin: 0 auto;
  background: var(--background);
  padding: 22px;
  border: 1px solid var(--border);
}
@media(min-width:1024px){ .cw-calendar-box{ padding: 34px; } }
.cw-calendar-placeholder{
  border: 1px dashed color-mix(in srgb, var(--border) 80%, #0000);
  padding: 22px;
  text-align:center;
}
.cw-cal-title{
  font-family:'Inter', sans-serif;
  font-weight:500;
  margin:0 0 6px;
}
.cw-cal-sub{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.65);
  margin:0;
}

/* info grid */
.cw-info-grid{
  display:grid;
  gap: 22px;
}
@media(min-width:1024px){ .cw-info-grid{ grid-template-columns: repeat(3, 1fr); gap: 30px; } }
.cw-info{ text-align:center; }
@media(min-width:1024px){ .cw-info{ text-align:left; } }

.cw-info-ic{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(139,111,71,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 0 auto 14px;
  font-size: 18px;
}
@media(min-width:1024px){ .cw-info-ic{ margin: 0 0 14px; } }
.cw-info h3{
  font-family:'Cormorant Garamond', serif;
  font-weight:500;
  font-size: 26px;
  margin: 0 0 8px;
}
.cw-info p{
  font-family:'Inter', sans-serif;
  font-weight:300;
  color: rgba(61,53,48,.70);
  line-height:1.8;
  margin:0;
}

