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

:root {
  --saffron: #E8832A;
  --gold: #F4A851;
  --cream: #FDF6EE;
  --blush: #F2C4B0;
  --deep: #5C2D0A;
  --warm: #8B4A1A;
  --text: #3D1F0A;
  --muted: #9B7A5E;
  --white: #FFFAF4;
  --border: rgba(232,131,42,0.2);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
}

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

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(45, 16, 2, 0.97);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.nav-logo-img {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(247,146,30,0.5);
  box-shadow: 0 0 0 3px rgba(247,146,30,0.15);
  transition: box-shadow 0.3s;
}

.nav-logo:hover .nav-logo-img {
  box-shadow: 0 0 0 3px rgba(247,146,30,0.4);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: rgba(253,246,238,0.85);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
  white-space: nowrap;
}

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

.has-dropdown { position: relative; }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(45,16,2,0.97);
  border: 1px solid rgba(244,168,81,0.15);
  list-style: none;
  min-width: 220px;
  padding: 16px 0 8px;
  z-index: 200;
}

/* invisible bridge so mouse can travel from link to dropdown without gap */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 16px;
}

.has-dropdown:hover .dropdown { display: block; }

.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(253,246,238,0.8);
  transition: background 0.2s, color 0.2s;
}

.dropdown li a:hover { background: rgba(244,168,81,0.1); color: var(--gold); }

.nav-cta {
  display: inline-block;
  padding: 10px 22px;
  background: var(--saffron);
  color: white;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover { background: var(--warm); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active { opacity: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(42,15,0,0.75) 0%, rgba(92,45,10,0.5) 60%, rgba(139,74,26,0.3) 100%);
}

.hero-fallback {
  display: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #2A0F00 0%, #5C2D0A 40%, #8B4A1A 75%, #E8832A 100%);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-fallback .slide-overlay { background: rgba(0,0,0,0.1); }

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 700px;
  z-index: 2;
}

.hero-fallback .slide-content { position: relative; top: auto; left: auto; transform: none; }


/* ── HERO LOGO ── */
.hero-logo {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 3px solid rgba(244,168,81,0.6);
  box-shadow: 0 0 0 6px rgba(244,168,81,0.12), 0 8px 32px rgba(0,0,0,0.4);
}

.slide-tag {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 400;
}

.slide-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 36px;
}

.slide-cta {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.slide-cta:hover { background: var(--saffron); border-color: var(--saffron); }

.hero-controls {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.hero-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 40px; height: 40px;
  font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}

.hero-btn:hover { background: rgba(244,168,81,0.4); }

.hero-dots { display: flex; gap: 8px; }

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.dot.active { background: var(--gold); transform: scale(1.3); }

/* ── SECTION BASE ── */
.section-label {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
  font-weight: 400;
}

.section-label.light { color: var(--gold); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 300;
  color: var(--deep);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title.light { color: var(--cream); }

.section-header { margin-bottom: 48px; }

.divider {
  width: 60px; height: 1px;
  background: linear-gradient(to right, var(--saffron), transparent);
  margin-bottom: 40px;
}

.divider.gold { background: linear-gradient(to right, var(--gold), transparent); }

/* ── ABOUT ── */
.about { padding: 100px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--saffron);
  color: white;
  padding: 20px;
  text-align: center;
  min-width: 100px;
}

.badge-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.badge-text {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-text p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--warm);
  font-weight: 300;
  margin-bottom: 16px;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill {
  padding: 8px 16px;
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
  background: rgba(232,131,42,0.05);
}

/* ── SERVICES ── */
.services-wrapper {
  background: var(--deep);
  padding: 80px 0;
}

.service-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-bottom: 32px;
}

.cat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(244,168,81,0.08);
  padding: 36px 28px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cat-card:hover {
  background: rgba(244,168,81,0.1);
  transform: translateY(-2px);
}

.cat-icon { font-size: 32px; }

.cat-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
}

.cat-card p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(253,246,238,0.6);
  line-height: 1.6;
  flex: 1;
}

.cat-desde {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--cream);
}

.cat-arrow {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--saffron);
  text-transform: uppercase;
  margin-top: 4px;
}

.depilacion-note {
  text-align: center;
  color: rgba(253,246,238,0.45);
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  padding: 20px;
  border: 1px solid rgba(244,168,81,0.1);
}

/* ── SERVICE CARDS (new 3-card layout) ── */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.svc-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid rgba(244,168,81,0.12);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255,255,255,0.03);
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.svc-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: rgba(92,45,10,0.5);
}

.svc-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  z-index: 1;
}

.svc-img-wrap.no-img img { display: none; }

.svc-card:hover .svc-img-wrap img { transform: scale(1.06); }

.svc-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  z-index: 0;
  background: linear-gradient(160deg, rgba(92,45,10,0.8), rgba(42,15,0,0.95));
}

.svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,8,0,0.75) 0%, transparent 55%);
  z-index: 2;
  transition: background 0.3s;
}

.svc-card:hover .svc-overlay {
  background: linear-gradient(to top, rgba(20,8,0,0.85) 0%, rgba(232,131,42,0.1) 100%);
}

.svc-body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1.1;
}

.svc-body p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(253,246,238,0.55);
  line-height: 1.6;
}

.svc-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron);
  transition: color 0.2s;
}

.svc-card:hover .svc-link { color: var(--gold); }

@media (max-width: 768px) {
  .service-cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .svc-img-wrap { height: 200px; }
}

/* ── MODALS ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,8,0,0.85);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal-box {
  background: #2A0F00;
  border: 1px solid rgba(244,168,81,0.2);
  padding: 40px 36px;
  width: 100%;
  max-width: 520px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: 1px solid rgba(244,168,81,0.2);
  color: var(--gold);
  width: 32px; height: 32px;
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover { background: rgba(244,168,81,0.15); }

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 24px;
}

.modal-rows { margin-bottom: 24px; }

.modal-row {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  font-weight: 300;
  gap: 8px;
}

.modal-row:last-of-type { border-bottom: none; }

.modal-row.expandable { cursor: pointer; }
.modal-row.expandable:hover { background: rgba(244,168,81,0.05); }
.modal-row.active { background: rgba(244,168,81,0.08); }
.modal-row.active .name { color: var(--gold); }

.modal-row .duration { color: rgba(253,246,238,0.4); font-size: 12px; min-width: 70px; }
.modal-row .name { color: var(--cream); flex: 1; }
.modal-row .price { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 20px; }

.chevron {
  color: rgba(244,168,81,0.5);
  font-size: 18px;
  transition: transform 0.3s, color 0.2s;
  display: inline-block;
}

.modal-row.active .chevron { transform: rotate(90deg); color: var(--gold); }

.service-desc {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s, padding 0.3s;
  font-size: 13px;
  font-weight: 300;
  color: rgba(253,246,238,0.6);
  line-height: 1.7;
  padding: 0 8px;
  border-left: 2px solid rgba(244,168,81,0.3);
}

.service-desc.open { max-height: 120px; opacity: 1; padding: 10px 12px; }

.modal-cta {
  display: block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  transition: opacity 0.2s;
}

.modal-cta:hover { opacity: 0.85; }

/* ── TEAM ── */
.team { padding: 100px 0; }

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.team-photo-wrapper {
  width: 180px; height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--saffron);
  box-shadow: 0 0 0 6px rgba(232,131,42,0.12);
  background: var(--blush);
  flex-shrink: 0;
}

.team-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--deep);
}

.team-role {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 400;
}

/* ── TESTIMONIOS ── */
.testimonios-wrapper {
  background: var(--deep);
  padding: 80px 0;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
}

.testimonio-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(244,168,81,0.1);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }

.testimonio-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  color: rgba(253,246,238,0.8);
  line-height: 1.7;
  flex: 1;
}

.testimonio-autor {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── GALLERY ── */
.galeria { padding: 100px 0 60px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 40px;
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--blush);
}

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

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

/* ── CONTACT ── */
.contacto { padding: 100px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-icon {
  width: 40px; height: 40px;
  background: rgba(232,131,42,0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.contact-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 15px;
  color: var(--deep);
  font-weight: 300;
  line-height: 1.5;
}

.contact-value a { color: var(--saffron); text-decoration: none; }

.maps-btn {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(232,131,42,0.08);
  border: 1px solid var(--border);
  color: var(--saffron);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 10px;
  transition: all 0.25s;
}

.maps-btn:hover { background: var(--saffron); color: var(--white); border-color: var(--saffron); }

.accept-note {
  background: rgba(232,131,42,0.08);
  border: 1px solid var(--border);
  padding: 16px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--warm);
  text-align: center;
  margin-bottom: 0;
}

.whatsapp-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 12px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  transition: opacity 0.2s;
}

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

.social-block {
  margin-top: 20px;
  padding: 20px;
  background: rgba(232,131,42,0.06);
  border: 1px solid var(--border);
  text-align: center;
}

.social-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.social-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--warm);
  font-style: italic;
}

.tripadvisor {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

/* ── FOOTER ── */
footer {
  background: var(--deep);
  padding: 48px 24px;
  text-align: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.3em;
  margin-bottom: 8px;
}

.footer-sub {
  font-size: 13px;
  color: rgba(253,246,238,0.5);
  margin-bottom: 6px;
}

.footer-copy {
  font-size: 11px;
  color: rgba(253,246,238,0.3);
  letter-spacing: 0.1em;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(42,15,0,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 9999;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; }
  .dropdown { position: static; background: transparent; border: none; padding: 8px 0 0 16px; display: block; }
  .nav-toggle { display: flex; z-index: 99999; }
  .nav-cta { display: none; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-badge { bottom: 10px; right: 10px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-box { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── SOCIAL BUTTONS ── */
.social-links {
  display: flex;
  gap: 12px;
  margin: 10px 0;
  justify-content: center;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

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

.social-btn--fb {
  background: #1877F2;
  color: #fff;
}

.social-btn--ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

/* ── FOUNDER SECTION ── */
.founder-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 40px;
}

.founder-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.founder-photo {
  width: 260px;
  height: 260px;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 50%;
  border: 4px solid rgba(232,131,42,0.35);
  box-shadow: 0 0 0 8px rgba(232,131,42,0.08), 0 12px 40px rgba(92,45,10,0.15);
}

.founder-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.founder-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--warm);
  line-height: 1.85;
}

.founder-pillars {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  background: rgba(232,131,42,0.05);
  border-left: 3px solid var(--saffron);
}

.founder-pillars li {
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.6;
}

.founder-closing {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
}

.founder-signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--saffron);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .founder-photo-wrap {
    max-width: 260px;
    margin: 0 auto;
  }
}
