/* ==========================================================================
   ESTILOS - SITIO WEB LEE BUITRAGO
   Paleta: Negro carbón, Verde profundo, Marfil cálido, Dorado discreto
   Tipografía: Cormorant Garamond (Editorial Serif), Montserrat (Sans), Caveat (Script)
   ========================================================================== */

/* --- Variables de Diseño --- */
:root {
  --color-carbon-black: #07100D;
  --color-carbon-deep: #050B09;
  --color-carbon-card: #0c1814;
  --color-deep-green: #0D211A;
  --color-forest-rich: #102920;
  --color-forest-dark: #091712;

  --color-ivory: #F3EFE7;
  --color-ivory-light: #FAF8F5;
  --color-ivory-card: #FAF6EF;
  --color-ivory-border: #E5DFC0;

  --color-text-light: #F3EFE7;
  --color-text-muted-light: #B8C2BC;
  --color-text-dark: #0F1D18;
  --color-text-muted-dark: #45534E;

  --color-gold: #C9A35C;
  --color-gold-hover: #D9B570;
  --color-gold-light: #E7CCA0;
  --color-gold-border: rgba(201, 163, 92, 0.4);
  --color-gold-subtle: rgba(201, 163, 92, 0.15);
  --color-gold-shadow: rgba(201, 163, 92, 0.25);

  --font-serif: 'Cormorant Garamond', Garamond, Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-script: 'Caveat', cursive;

  --header-height: 84px;
  --header-height-mobile: 72px;
  --max-width: 1240px;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-editorial: 0 16px 36px rgba(0, 0, 0, 0.35);
  --shadow-card-light: 0 12px 30px rgba(13, 33, 26, 0.08);
}

/* --- Reseteo y Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-carbon-black);
  color: var(--color-text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Scroll margin para compensar header fijo */
section {
  scroll-margin-top: calc(var(--header-height) - 4px);
}

/* Contenedor estándar */
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Enfoque accesible */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

/* --- Tipografía Editorial y Utilidades --- */
.eyebrow-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.eyebrow-tag.dark {
  color: #8C6F2D;
  text-shadow: none;
}

.eyebrow-tag.gold {
  color: var(--color-gold);
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-heading.dark {
  color: #07100D;
  font-weight: 600;
  font-size: clamp(2.1rem, 3.2vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
  margin-top: 0.5rem;
}

.section-heading.light {
  color: var(--color-text-light);
}

.section-lead-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--color-text-muted-dark);
  font-weight: 400;
}

.section-lead-text.light {
  color: var(--color-text-muted-light);
}

.header-divider-gold {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  margin-bottom: 1rem;
}

.header-divider-gold.light {
  background: linear-gradient(to bottom, var(--color-gold), rgba(201, 163, 92, 0.1));
}

/* --- Botones --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.05rem 2.4rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn .arrow-icon {
  font-size: 1.1em;
  line-height: 1;
  transition: transform 0.25s ease;
}

.btn:hover .arrow-icon {
  transform: translateX(4px);
}

.btn-gold {
  background: linear-gradient(135deg, #E6CB93 0%, #D4AF67 45%, #BD9246 100%);
  color: #1A160F;
  border: 1px solid rgba(255, 235, 185, 0.4);
  box-shadow: 0 4px 18px rgba(189, 146, 70, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #EED59E 0%, #DCB76F 45%, #C69A4C 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(189, 146, 70, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

.btn-outline-gold {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn-outline-gold:hover {
  background: var(--color-gold);
  color: #07100D;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201, 163, 92, 0.2);
}

.btn-lg {
  padding: 1.15rem 2.6rem;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   HEADER & NAVEGACIÓN
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(7, 16, 13, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 163, 92, 0.18);
  z-index: 1000;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header-container {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.brand-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  text-decoration: none;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: #FFFFFF;
  line-height: 1.1;
  padding-bottom: 0.35rem;
  border-bottom: 1.5px solid var(--color-gold);
  text-transform: uppercase;
}

.brand-tagline {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: #B5C0BA;
  margin-top: 0.35rem;
  text-transform: uppercase;
}

/* Navegación Desktop */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.6rem;
}

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

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text-light);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-gold);
  transition: width 0.3s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.65rem 1.45rem;
  font-size: 0.76rem;
}

/* Botón Hamburguesa Móvil */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: transparent;
  color: var(--color-gold);
  z-index: 1002;
}

.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-gold);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Drawer Móvil */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 360px;
  height: 100vh;
  background-color: var(--color-carbon-black);
  border-left: 1px solid var(--color-gold-border);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  visibility: hidden;
}

.mobile-nav-drawer.open {
  right: 0;
  visibility: visible;
}

.mobile-drawer-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem 1.8rem;
  overflow-y: auto;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201, 163, 92, 0.15);
}

.mobile-close-btn {
  color: var(--color-gold);
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  margin: 2.5rem 0 auto;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text-light);
  display: inline-block;
  transition: var(--transition-smooth);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--color-gold);
  transform: translateX(6px);
}

.mobile-drawer-footer {
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 163, 92, 0.15);
}

.mobile-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-height);
  background: url('04_HERO_LEE_SIN_TEXTO.png') right center / cover no-repeat var(--color-carbon-black);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-container {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 3.5rem 2rem 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
}

.hero-content .eyebrow-tag {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}

.hero-title .highlight-gold {
  color: #E2C078;
}

.hero-lead {
  font-size: 1.12rem;
  line-height: 1.65;
  color: #FFFFFF;
  margin-bottom: 1.3rem;
  max-width: 600px;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.hero-action {
  margin-bottom: 1.3rem;
}

.hero-authority {
  margin-bottom: 1.5rem;
  padding-top: 0.2rem;
  max-width: 600px;
}

.hero-authority::before {
  content: '';
  display: block;
  width: 65px;
  height: 1px;
  background-color: rgba(201, 163, 92, 0.6);
  margin-bottom: 0.6rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.authority-text {
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #D6DDD9;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-signature-wrap {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.hero-signature-script {
  font-family: var(--font-script);
  font-size: 3.2rem;
  color: #D4AF67;
  line-height: 1;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.signature-divider {
  width: 1.5px;
  height: 52px;
  background-color: #C9A35C;
  opacity: 0.85;
}

.signature-caption-stacked {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: #D4AF67;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

/* Columna Visual del Hero (oculta: imagen ahora es fondo) */
.hero-visual {
  display: none;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-editorial);
}

.hero-chef-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: 70% center;
  display: block;
  transform: scale(1.01);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 45%, transparent 45%, rgba(7, 16, 13, 0.4) 80%, rgba(7, 16, 13, 0.85) 100%);
  pointer-events: none;
}

/* Notas flotantes del Hero */
.hero-note-top {
  position: absolute;
  top: 6%;
  right: -1%;
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: #D4B26F;
  line-height: 1.35;
  display: flex;
  flex-direction: column;
  transform: rotate(3.5deg);
  pointer-events: none;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  z-index: 4;
}

.hero-note-top .script-line-result {
  font-size: 1.45rem;
  color: var(--color-gold-light);
  margin-top: 0.25rem;
}

.hero-vertical-badge {
  position: absolute;
  right: -24px;
  bottom: 12%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--color-gold);
  opacity: 0.85;
  pointer-events: none;
}

/* ==========================================================================
   SERVICIOS / CONSULTORÍA
   ========================================================================== */
.services-section {
  background-color: var(--color-ivory);
  padding: 3.5rem 0 6rem;
  position: relative;
}

.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4.5rem;
}

.header-left {
  flex: 1 1 auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 0 0 auto;
  max-width: 310px;
  margin-top: 5rem;
}

.header-divider-vertical-gold {
  width: 1.5px;
  height: 85px;
  background: linear-gradient(to bottom, var(--color-gold), rgba(201, 163, 92, 0.2));
  flex-shrink: 0;
}

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

.service-card {
  background-color: var(--color-ivory-card);
  border: 1px solid rgba(201, 163, 92, 0.35);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 25px rgba(13, 33, 26, 0.05);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-gold);
  box-shadow: 0 20px 40px rgba(13, 33, 26, 0.14);
}

.service-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  background-color: var(--color-carbon-black);
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-badge-stacked {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-family: var(--font-sans);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.95);
  pointer-events: none;
}

.service-card-body {
  padding: 1.8rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #07100D;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.service-description {
  font-size: 0.88rem;
  color: #52605B;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-description strong {
  font-weight: 600;
  color: #2D3935;
}

.service-card-footer {
  padding-top: 0;
  border-top: none;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #A68038;
  text-transform: uppercase;
}

.service-link .arrow-icon {
  transition: transform 0.25s ease;
}

.service-link:hover {
  color: #5C4310;
}

.service-link:hover .arrow-icon {
  transform: translateX(4px);
}

/* ==========================================================================
   FRASE DE TRANSICIÓN
   ========================================================================== */
.transition-quote-section {
  background-color: var(--color-carbon-black);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201, 163, 92, 0.2);
  border-bottom: 1px solid rgba(201, 163, 92, 0.2);
}

.transition-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.transition-card {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr;
  align-items: center;
  gap: 3.5rem;
  background: linear-gradient(135deg, rgba(13, 33, 26, 0.6) 0%, rgba(7, 16, 13, 0.9) 100%);
  border: 1px solid rgba(201, 163, 92, 0.25);
  border-radius: 3px;
  overflow: hidden;
  padding: 2.5rem;
}

.transition-crop-visual {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: 2px;
  overflow: hidden;
}

.transition-crop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 85% center;
  filter: brightness(0.92);
}

.transition-content {
  display: flex;
  flex-direction: column;
}

.transition-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 500;
  color: var(--color-ivory);
  line-height: 1.2;
  margin-bottom: 0.85rem;
  font-style: italic;
}

.transition-subtext {
  font-size: 1.05rem;
  color: var(--color-text-muted-light);
  font-weight: 300;
}

/* ==========================================================================
   EXPERIENCIA GASTRONÓMICA
   ========================================================================== */
.experience-section {
  background-color: var(--color-deep-green);
  padding: 6.5rem 0 7rem;
  position: relative;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 1rem;
}

.experience-card {
  background: rgba(16, 41, 32, 0.5);
  border: 1px solid rgba(201, 163, 92, 0.22);
  border-radius: 2px;
  padding: 3rem 2.2rem 2.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
}

.experience-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  background: rgba(16, 41, 32, 0.85);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.experience-icon-wrap {
  width: 64px;
  height: 64px;
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}

.gold-line-icon {
  width: 48px;
  height: 48px;
}

.experience-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-ivory);
  margin-bottom: 0.45rem;
}

.experience-subtitle {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.experience-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--color-text-muted-light);
}

.experience-desc strong {
  color: var(--color-ivory);
  font-weight: 600;
}

/* ==========================================================================
   SOBRE MÍ
   ========================================================================== */
.about-section {
  background-color: var(--color-ivory);
  padding: 6.5rem 0;
}

.about-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
  background-color: var(--color-ivory-card);
  border: 1px solid rgba(201, 163, 92, 0.35);
  border-radius: 3px;
  padding: 3.5rem;
  box-shadow: var(--shadow-card-light);
}

.about-portrait-col {
  display: flex;
  justify-content: center;
}

.about-portrait-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--color-gold-border);
  box-shadow: 0 16px 36px rgba(13, 33, 26, 0.2);
}

.about-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s ease;
}

.about-portrait-frame:hover .about-portrait-img {
  transform: scale(1.03);
}

.about-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.6vw, 3.1rem);
  font-weight: 500;
  line-height: 1.18;
  margin-bottom: 2.2rem;
}

.about-action {
  margin-bottom: 2.5rem;
}

.about-calligraphy {
  margin-top: 0.5rem;
}

.script-badge {
  font-family: var(--font-script);
  font-size: 2rem;
  color: #7D6128;
  display: inline-block;
  transform: rotate(-2deg);
}

/* ==========================================================================
   CIERRE Y CONTACTO
   ========================================================================== */
.contact-closing-section {
  position: relative;
  background-color: var(--color-carbon-black);
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6.5rem 0;
  border-top: 1px solid rgba(201, 163, 92, 0.2);
}

.closing-backdrop-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.closing-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% center;
}

.closing-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(7, 16, 13, 0.98) 0%,
      rgba(7, 16, 13, 0.92) 42%,
      rgba(7, 16, 13, 0.65) 68%,
      rgba(7, 16, 13, 0.25) 100%);
}

.closing-content-box {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.closing-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 500;
  color: var(--color-ivory);
  line-height: 1.15;
  margin-bottom: 2.2rem;
}

.closing-action {
  margin-bottom: 2.2rem;
}

.closing-script-accent {
  display: inline-block;
}

.script-large {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--color-gold);
  line-height: 1.2;
  display: inline-block;
  transform: rotate(-1.5deg);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   PIE DE PÁGINA
   ========================================================================== */
.site-footer {
  background-color: var(--color-carbon-deep);
  border-top: 1px solid rgba(201, 163, 92, 0.2);
  padding: 3.5rem 0 2.5rem;
  color: var(--color-text-muted-light);
  font-size: 0.85rem;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  text-align: center;
}

.footer-divider-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 0.5rem;
}

.line-segment {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 163, 92, 0.35), transparent);
}

.footer-center-brand {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: var(--color-ivory);
}

.footer-location {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--color-gold);
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  justify-content: center;
  margin: 0.4rem 0;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-ivory);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.55rem 1.25rem;
  border-radius: 30px;
  background: rgba(201, 163, 92, 0.1);
  border: 1px solid rgba(201, 163, 92, 0.3);
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  background: var(--color-gold);
  color: #07100D;
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.social-svg-icon {
  width: 18px;
  height: 18px;
}

.social-handle {
  letter-spacing: 0.05em;
}

.footer-legal {
  font-size: 0.76rem;
  color: #7D8E87;
}

/* ==========================================================================
   RESPONSIVIDAD Y REORGANIZACIÓN MÓVIL
   ========================================================================== */

/* Tablets y pantallas intermedias */
@media (max-width: 1024px) {
  .section-header-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .header-divider-gold {
    display: none;
  }

  /* Hero maintains single column layout */

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid article:last-child {
    grid-column: span 2;
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .about-card {
    grid-template-columns: 1fr;
    padding: 2.5rem;
    gap: 2.5rem;
  }

  .about-portrait-frame {
    max-width: 320px;
  }
}

/* Teléfonos móviles */
@media (max-width: 768px) {
  :root {
    --header-height: var(--header-height-mobile);
  }

  .section-container {
    padding: 0 1.25rem;
  }

  /* Header */
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .brand-name {
    font-size: 1.18rem;
    letter-spacing: 0.18em;
  }

  .brand-tagline {
    font-size: 0.46rem;
    letter-spacing: 0.2em;
  }

  /* Hero Mobile Reorganization */
  .hero-section {
    min-height: auto;
    padding-top: calc(var(--header-height-mobile) + 1.2rem);
    padding-bottom: 3.5rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    padding: 1.2rem 1.25rem 2rem;
    gap: 2.5rem;
  }

  .hero-content {
    order: 1;
  }

  .hero-title {
    font-size: 2.25rem;
    margin-bottom: 1.2rem;
  }

  .hero-lead {
    font-size: 1rem;
    margin-bottom: 1.8rem;
  }

  .hero-action {
    margin-bottom: 2rem;
  }

  .hero-action .btn {
    width: 100%;
  }

  .hero-authority {
    margin-bottom: 1.8rem;
    padding-top: 1.2rem;
  }

  .authority-text {
    font-size: 0.8rem;
  }

  .hero-signature-wrap {
    gap: 1rem;
  }

  .hero-signature-script {
    font-size: 2.2rem;
  }

  .signature-caption {
    font-size: 0.58rem;
  }

  /* Visual de Lee en Móvil: perfectamente encuadrado sin taparle el rostro */
  .hero-visual {
    order: 2;
    width: 100%;
  }

  .hero-image-wrapper {
    max-width: 100%;
    aspect-ratio: 4 / 3.4;
    border-radius: 4px;
    border: 1px solid rgba(201, 163, 92, 0.3);
  }

  .hero-chef-img {
    height: 100%;
    object-position: 72% 20%;
  }

  .hero-note-top {
    display: none;
    /* En móvil se retira para no obstaculizar la vista del chef */
  }

  /* Servicios Mobile */
  .services-section {
    padding: 4.5rem 0;
  }

  .section-header-split {
    margin-bottom: 2.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid article:last-child {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }

  .service-card-body {
    padding: 1.8rem 1.4rem;
  }

  .hide-mobile {
    display: none;
  }

  /* Transición Mobile */
  .transition-quote-section {
    padding: 2.8rem 0;
  }

  .transition-container {
    padding: 0 1.25rem;
  }

  .transition-card {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding: 1.8rem 1.4rem;
  }

  .transition-crop-visual {
    height: 140px;
  }

  .transition-quote {
    font-size: 1.7rem;
  }

  .transition-subtext {
    font-size: 0.95rem;
  }

  /* Experiencia Mobile */
  .experience-section {
    padding: 4.5rem 0;
  }

  .experience-card {
    padding: 2.2rem 1.5rem;
  }

  /* Sobre Mí Mobile */
  .about-section {
    padding: 4.5rem 0;
  }

  .about-card {
    padding: 2rem 1.4rem;
    gap: 2rem;
  }

  .about-portrait-frame {
    max-width: 260px;
    aspect-ratio: 3 / 3.8;
  }

  .about-heading {
    font-size: 1.95rem;
    margin-bottom: 1.8rem;
  }

  .about-action .btn {
    width: 100%;
  }

  .script-badge {
    font-size: 1.75rem;
  }

  /* Cierre y Contacto Mobile */
  .contact-closing-section {
    padding: 4.5rem 0;
    min-height: auto;
  }

  .closing-bg-img {
    object-position: 75% center;
  }

  .closing-gradient-overlay {
    background: linear-gradient(180deg,
        rgba(7, 16, 13, 0.94) 0%,
        rgba(7, 16, 13, 0.88) 55%,
        rgba(7, 16, 13, 0.5) 100%);
  }

  .closing-heading {
    font-size: 2.1rem;
    margin-bottom: 1.8rem;
  }

  .closing-action .btn {
    width: 100%;
  }

  .script-large {
    font-size: 1.8rem;
  }

  /* Footer Mobile */
  .footer-container {
    padding: 0 1.25rem;
    gap: 1.4rem;
  }

  .footer-location {
    font-size: 0.74rem;
  }
}

/* Soporte para preferencias de movimiento reducido */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}