/*
Theme Name: Marta Grazia
Theme URI: https://martagrazia.com
Author: Antigravity
Author URI: https://martagrazia.com
Description: Custom theme for Marta Grazia - Libera Tu Belleza
Version: 2.0.0
Text Domain: marta-grazia
*/

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Raleway:ital,wght@0,100..900;1,100..900&family=Inter:wght@300;400;500;600&display=swap');

/* WordPress admin bar fix */
.admin-bar .site-header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px !important;
    }
    .admin-bar body {
        padding-top: calc(64px + 46px) !important;
    }
}

/* En móvil, el header siempre pegado arriba — ignora la admin bar */
@media (max-width: 992px) {
    .admin-bar .site-header,
    .site-header {
        top: 0 !important;
    }
}

/* =====================
   DESIGN TOKENS
   ===================== */
:root {
    --fondo-beige: #f8f6f2;
    --fondo-beige-2: #f9f8f5;
    --fondo-crema: #f1eee9;
    --dorado: #917630;
    --dorado-claro: #cba84d;
    --negro-texto: #0a0a0a;
    --negro-oscuro: #201f1d;
    --negro-2: #171411;
    --blanco: #ffffff;
    --gris-suave: #545454;
    --gris-medio: #777777;
    --gris-calido: #9d927b;
    --gris-oscuro: #59544f;
    --borde-claro: #e1ddd8;
}

/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after {
    box-sizing: border-box;
}

.text-gold {
    color: var(--dorado);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    color: var(--negro-texto);
    background-color: var(--blanco);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

p {
    margin: 0;
}

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

/* =====================
   HEADER / MENU
   Figma: Frame "Menu" id 111:1492
   y:0, h:84, w:1440
   Fondo blanco, links en negro, logo izquierda
   ===================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 84px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background: #ffffff;
    border-bottom: 1px solid var(--borde-claro);
    /* Evita que el contenido pase a través del header */
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
}

.site-header .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-header .logo img,
.site-header .logo svg {
    height: 44px;
    width: auto;
}

.site-header .logo .logo-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    color: var(--negro-texto);
    letter-spacing: 0.02em;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.main-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Quitar bullets del ul generado por wp_nav_menu */
.main-menu ul,
.main-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu > ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

.main-menu a {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--negro-texto);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.main-menu a:hover {
    color: var(--dorado);
}

.header-search {
    display: flex;
    align-items: center;
}

.header-search svg {
    color: var(--negro-texto);
    cursor: pointer;
}

/* =====================
   HERO SECTION
   Figma: h:830, "Libera tu belleza" italic 90px
   Texto y botones alineados a la derecha (x:717-1331)
   ===================== */
.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: 50px;
}

.hero-section .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 15%;
    z-index: 0;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-right: 108px;
    padding-bottom: 50px;
    text-align: left;
}

.hero-content h1 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 90px;
    line-height: 1.1;
    color: var(--fondo-beige-2);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

/* Botón Esthepil: blanco con borde dorado, 266x57px aprox en figma */
.btn-main-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 57px;
    padding: 0 30px;
    background: rgba(255, 255, 255, 0.35);
    border: 2px solid #cba84d;
    border-radius: 100px;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #cba84d;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-main-gold:hover {
    background: #cba84d;
    color: #ffffff;
}

/* Botones héroe: borde blanco, redondeados, 193×45px */
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 193px;
    height: 45px;
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 100px;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--blanco);
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.btn-hero:hover {
    background: rgba(255, 255, 255, 0.5);
    color: var(--blanco);
}

/* =====================
   SECCIÓN QUOTE (FRASE DESTACADA)
   Figma: Frame 108:690, y:2527, h:286, bg:#f8f6f2
   Texto: "La estética devuelve..." 38px italic Libre Baskerville, color #0a0a0a
   Centrado horizontal y vertical
   ===================== */
.quote-section {
    background-color: var(--fondo-beige);
    height: 286px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.quote-section blockquote {
    margin: 0;
    text-align: center;
    max-width: 811px;
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 38px;
    line-height: 1.24;
    color: var(--negro-texto);
}

/* =====================
   ABOUT SECTION (BLUR)
   Figma: Frame 108:783, x:32, y:825, w:718, h:639
   Imagen derecha: frame 108:811, x:741, y:975, w:560, h:458
   Sección completa: h~700, bg blanco
   ===================== */
.about-section {
    position: relative;
    background: var(--blanco);
    min-height: 755px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-text-box {
    position: relative;
    z-index: 2;
    padding: 150px 0 150px 102px;
    max-width: 620px;
    flex-shrink: 0;
}

.about-text-box .antetitulo {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--dorado);
    letter-spacing: 0.08em;
    margin-bottom: 30px;
}

.about-text-box h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 40px;
    line-height: 1.35;
    font-weight: 400;
    color: var(--negro-texto);
    margin-bottom: 30px;
}

.about-text-box .subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--negro-texto);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
    line-height: 1.5;
}

.about-text-box .body-text {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    line-height: 1.78;
    color: var(--negro-texto);
}

.about-image-wrap {
    position: absolute;
    right: 8.3%;
    top: 50%;
    transform: translateY(-50%);
    width: 560px;
    height: 710px;
    overflow: hidden;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
}

/* =====================
   FEATURES BAR (Inclusión / Acompañamiento / Compromiso)
   Figma: Frame 108:788, y:1580, h:254, bg:#f8f6f2
   3 bloques en fila con separadores verticales
   ===================== */
.features-section {
    background-color: var(--fondo-beige);
    height: 254px;
    display: flex;
    align-items: center;
}

.feature-col {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 60px 40px;
    height: 100%;
    position: relative;
    gap: 20px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    margin-top: -4px; /* Pequeño ajuste para alinear con el texto */
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-col + .feature-col::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 120px;
    background-color: rgba(0,0,0,0.15);
}

.feature-col h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #917630; /* Dorado para el título según la imagen */
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    line-height: 1.2;
}

.feature-col p {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--gris-suave);
    line-height: 1.6;
    margin: 0;
    max-width: 260px;
}

/* =====================
   SHARED FULL-BLEED SECTION STYLES
   Para: Transgénica, Tarantismo, Estephil
   ===================== */
.transgenica-section,
.tarantismo-section,
.estephil-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.transgenica-section .bg-image,
.tarantismo-section .bg-image,
.estephil-section .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.transgenica-section .bg-overlay,
.tarantismo-section .bg-overlay,
.estephil-section .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.transgenica-section .bg-overlay {
    background: rgba(0,0,0,0.6);
}

.transgenica-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.transgenica-content h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 40px;
    font-weight: 400;
    color: var(--blanco);
    line-height: 1.3;
}

.transgenica-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--blanco);
    max-width: 469px;
    margin: 0 auto;
    line-height: 1.5;
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--blanco);
    margin-top: 10px;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.btn-arrow-gold {
    color: var(--dorado);
}

.btn-arrow svg,
.btn-arrow-gold svg {
    flex-shrink: 0;
}

/* =====================
   FRASE CENTRAL "La estética devuelve..."
   La primera quote está en y:2527 (ANTES del Tarantismo)
   ===================== */

/* Tarantismo bg overlay */
.tarantismo-section .bg-overlay {
    background: rgba(0,0,0,0.6);
}

.tarantismo-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.tarantismo-content h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 40px;
    font-weight: 400;
    color: var(--blanco);
    line-height: 1.3;
}

.tarantismo-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--blanco);
    max-width: 533px;
    margin: 0 auto;
    line-height: 1.5;
}

/* =====================
   MI CAUSA / PURPOSE SECTION
   Figma: Frame 108:779, y:3504, h:286, bg:#f8f6f2
   ===================== */
.mi-causa-section {
    background-color: var(--fondo-beige);
    height: 286px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.mi-causa-section .label {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--dorado);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.mi-causa-section blockquote {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 38px;
    line-height: 1.24;
    color: var(--negro-oscuro);
    max-width: 617px;
    margin: 0;
}

/* Estephil bg overlay */
.estephil-section .bg-overlay {
    background: rgba(0,0,0,0.2);
}

.estephil-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.estephil-content h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 40px;
    font-weight: 400;
    color: var(--blanco);
    line-height: 1.3;
}

.estephil-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--blanco);
    max-width: 531px;
    margin: 0 auto;
    line-height: 1.5;
}

/* =====================
   BLOG / COMMUNITY SECTION
   Figma: Frame 111:1359 "blog", y:4491, h:718
   ===================== */
.blog-section {
    background-color: var(--fondo-beige);
    padding: 80px 102px;
    min-height: 718px;
    display: flex;
    flex-direction: column;
}

.blog-section .section-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 40px;
    font-weight: 400;
    color: var(--negro-oscuro);
    margin-bottom: 8px;
    text-align: center;
}

.blog-section .section-label {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--dorado);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    flex: 1;
}

.blog-section .blog-grid {
    gap: 54.5px;
}

.blog-card {
    display: flex;
    flex-direction: column;
}

.blog-card .card-image-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 24px;
    background-color: var(--borde-claro);
}

.blog-card .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.blog-card:hover .card-image {
    transform: scale(1.05);
}

.card-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e8e3dc;
}

.blog-card .card-category {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--negro-oscuro);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.blog-card .card-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--negro-texto);
    line-height: 1.3;
    margin-bottom: 16px;
}

.blog-card .card-excerpt {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--gris-oscuro);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card .card-link {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dorado);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.2s ease;
}

.blog-card .card-link:hover {
    opacity: 0.8;
}

/* =====================
   BEAUTY PAGE
   ===================== */

/* Hero Beauty */
.beauty-hero {
    height: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--blanco);
    text-align: center;
    overflow: hidden;
}

.beauty-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.beauty-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.beauty-hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 0;
    text-align: center;
}

.beauty-hero .logo-esthepil {
    height: 60px;
    margin: 0 auto 24px;
    display: block;
}

.beauty-hero .hero-label {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 30px 0;
}

/* Manifiesto Section */
.manifiesto-section {
    display: flex;
    min-height: 433px;
}

.manifiesto-left {
    flex: 1;
    background-color: #171411;
    padding: 80px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.manifiesto-left .label {
    color: var(--dorado);
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

.manifiesto-left h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 40px;
    font-style: italic;
    color: #f5f3ef;
    line-height: 1.4;
}

.manifiesto-right {
    flex: 1;
    background-color: var(--fondo-beige);
    padding: 80px 100px;
    display: flex;
    align-items: center;
}

.manifiesto-right p {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--negro-texto);
}

.cabina-section {
    padding: 100px 0;
    background-color: var(--blanco);
}

.cabina-section .section-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 40px;
    text-align: center;
    margin-bottom: 80px;
    color: #201f1d;
}

.treatment-row {
    display: flex;
    align-items: center;
    gap: 75px;
    margin-bottom: 120px;
    padding: 0 100px;
}

.treatment-row.reverse {
    flex-direction: row-reverse;
}

.treatment-image {
    flex: 1;
}

.treatment-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.treatment-content {
    flex: 1;
}

.treatment-content.text-right {
    text-align: right;
}

.treatment-content.text-right .treatment-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.treatment-content.text-right .btn-arrow-gold {
    justify-content: flex-end;
    width: 100%;
}

.treatment-label {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #212529;
    margin-bottom: 12px;
}

.treatment-content h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 38px;
    font-style: italic;
    color: var(--dorado);
    margin-bottom: 24px;
}

.treatment-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.treatment-list {
    margin-top: 30px;
}

.treatment-item {
    margin-bottom: 24px;
}

.treatment-item h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--negro-texto);
    margin-bottom: 4px;
}

.treatment-item p {
    font-size: 14px;
    color: var(--gris-suave);
    margin: 0;
}

/* Mi Causa Beauty (Bottom CTA) */
.mi-causa-beauty {
    padding: 120px 0;
    background-color: var(--fondo-beige);
    text-align: center;
}

.mi-causa-beauty .label {
    color: var(--dorado);
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.mi-causa-beauty h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 38px;
    font-style: italic;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto;
    color: #201f1d;
}

/* =====================
   CULTURE PAGE
   ===================== */

/* Hero Culture */
.culture-hero {
    height: 676px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--blanco);
    text-align: center;
    overflow: hidden;
}

.culture-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.culture-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.culture-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0;
    text-align: center;
}

.culture-hero .hero-label {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    color: var(--blanco);
}

.culture-hero h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 64px;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 40px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* Ritual Section */
.ritual-section {
    padding: 100px 0;
    background-color: #f8f6f2;
    text-align: center;
}

.ritual-section .label {
    color: var(--dorado);
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

.ritual-section h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 38px;
    font-style: italic;
    color: #201f1d;
    /* max-width: 600px; */
    margin: 0 auto 30px;
    line-height: 1.3;
}

.ritual-section p {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #78736d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Culture Manifiesto */
.culture-manifiesto {
    display: flex;
    min-height: 433px;
}

.culture-manifiesto .manifiesto-left {
    flex: 1;
    background-color: #171411;
    padding: 80px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.culture-manifiesto .manifiesto-right {
    flex: 1;
    background-color: #f8f6f2;
    padding: 80px 100px;
    display: flex;
    align-items: center;
}

.culture-manifiesto .manifiesto-right p {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--negro-texto);
}

/* Culture Gallery Grid */
.culture-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: #171411; /* Cambiado a negro para evitar bordes blancos por fondo claro */
    gap: 0;
    line-height: 0;
}

.culture-gallery img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

/* Purificación Section */
.purificacion-section {
    background-color: #171411;
    color: var(--blanco);
    padding: 0; /* Eliminado padding general */
    overflow: hidden;
}

.purificacion-container {
    display: flex;
    align-items: stretch; /* Asegura que ambos lados tengan el mismo alto */
    min-height: 742px; /* Altura según Figma */
}

.purificacion-image {
    flex: 1;
    line-height: 0;
}

.purificacion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.purificacion-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 100px; /* Padding solo para el texto */
}

.purificacion-label {
    color: #cba84d;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.purificacion-content h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 38px;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.3;
}

.purificacion-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Culture Bottom Quote */
.culture-quote {
    padding: 120px 0;
    background-color: #f8f6f2;
    text-align: center;
}

.culture-quote .label {
    color: var(--dorado);
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.culture-quote h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 38px;
    font-style: italic;
    line-height: 1.3;
    /* max-width: 800px; */
    margin: 0 auto;
    color: #201f1d;
}

/* =====================
   FOOTER
   Figma: Frame 108:731, y:5209, h:284, bg negro
   ===================== */
.site-footer {
    background-color: #0a0a0a;
    color: var(--blanco);
    padding: 45px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.footer-tagline {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #9d927b;
    letter-spacing: 0.15em;
}

.footer-tagline a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-tagline a:hover {
    color: #fff;
}

.footer-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.footer-social {
    display: flex;
    gap: 20px;
    color: #9d927b;
}

.footer-social a {
    color: inherit;
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: var(--blanco);
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-nav a {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #9d927b;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.2s ease;
}

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

.footer-divider {
    height: 1px;
    background-color: rgba(255,255,255,0.15);
    margin-bottom: 25px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom .copyright {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: #9d927b;
    margin: 0;
}

/* =====================
   ARROW ICON HELPER
   ===================== */
.arrow-icon {
    display: inline-flex;
    align-items: center;
}

/* =====================
   PROTOCOLO PAGE
   Figma: Frame 115:1682 | h:5287
   ===================== */

/* 1. HERO */
.protocolo-hero {
    height: 738px;
    background-color: #171411;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.protocolo-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.protocolo-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.protocolo-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.protocolo-hero-label {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 24px;
    color: #fff;
}

.protocolo-hero-content h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 64px;
    font-style: italic;
    line-height: 1.05;
    margin-bottom: 40px;
    color: #fff;
}

.btn-protocolo {
    display: inline-block;
    padding: 18px 40px;
    border: 2px solid #cba84d;
    border-radius: 100px;
    background: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #cba84d;
    text-decoration: none;
    letter-spacing: 0.12em;
    transition: all 0.3s ease;
}

.btn-protocolo:hover {
    background: #cba84d;
    color: #fff;
}

/* 2. CITA CENTRAL */
.protocolo-cita {
    background-color: #f8f6f2;
    padding: 90px 0;
    text-align: center;
}

.protocolo-cita-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.protocolo-cita-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 38px;
    font-style: italic;
    line-height: 1.25;
    color: #000;
}

/* 3. COMPROMISO SOCIAL */
.compromiso-section {
    position: relative;
    height: 670px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compromiso-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.compromiso-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.65);
    z-index: 1;
}

.compromiso-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 100px;
    width: 100%;
}

.compromiso-label {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #cba84d;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.compromiso-header h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 38px;
    font-style: italic;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 50px;
}

.compromiso-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.compromiso-card {
    padding: 35px 30px;
    background: rgba(224,224,224,0.3);
    border-right: 1px solid rgba(255,255,255,0.15);
    text-align: center;
}

.compromiso-card:last-child {
    border-right: none;
}

.compromiso-card h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 12px;
}

.compromiso-card p {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.1em;
}

/* 4. CERTIFICACIÓN MÉDICA */
.certificacion-section {
    background-color: #171411;
    display: flex;
    align-items: stretch;
    min-height: 726px;
}

.certificacion-img {
    width: 50%;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin: 30px;
}

.certificacion-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.certificacion-content {
    width: 50%;
    padding: 80px 80px 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.certificacion-label {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #cba84d;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.certificacion-content h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 40px;
    color: #efece7;
    line-height: 1.35;
    margin-bottom: 30px;
}

.certificacion-text {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #beb6a7;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

.certificacion-pilares {
    display: flex;
    gap: 20px;
}

.pilar-card {
    flex: 1;
    background: rgba(239,236,231,0.03);
    border: 1px solid #cba84d;
    border-radius: 16px;
    padding: 25px 20px;
}

.pilar-icon {
    margin-bottom: 16px;
}

.pilar-card h4 {
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    color: #efece7;
    margin-bottom: 10px;
    line-height: 1.4;
}

.pilar-card p {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: #beb6a7;
    line-height: 1.6;
}

/* 5. ELIGE TU CAMINO */
.caminos-section {
    background-color: #f9f8f6;
    padding: 100px 0;
}

.caminos-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.caminos-intro {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #78736d;
    letter-spacing: 0.1em;
}

.caminos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.camino-card {
    background: #f8f6f2;
    border: 1px solid #dedad3;
    border-radius: 18px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.camino-badge {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    color: #917630;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.camino-badge--pro {
    color: #fff;
    background: #cba84d;
    padding: 4px 14px;
    border-radius: 100px;
}

.camino-card--pro {
    background: #171411;
    border-color: #333;
}

.camino-card--pro h3 {
    color: #efece7;
}

.camino-card--pro .camino-desc {
    color: #beb6a7;
}

.camino-card--pro .camino-list li {
    color: #efece7;
}

.camino-card--pro .camino-badge {
    color: #fff;
}

.camino-card h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 27px;
    line-height: 1.2;
    color: #444;
}

/* Tarjeta oscura: más específico para ganar a .camino-card h3 */
.camino-card.camino-card--pro h3 {
    color: #efece7;
}

.camino-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #78736d;
    letter-spacing: 0.1em;
}

.camino-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.camino-list li {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: #444;
    padding-left: 18px;
    position: relative;
    letter-spacing: 0.08em;
}

.camino-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #cba84d;
    border-radius: 50%;
}

.btn-camino {
    display: inline-block;
    margin-top: auto;
    padding: 15px 30px;
    border: 1px solid #cba84d;
    border-radius: 100px;
    background: transparent;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #cba84d;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-camino:hover {
    background: #cba84d;
    color: #fff;
}

.btn-camino--pro:hover {
    background: #fff;
    color: #171411;
    border-color: #fff;
}

/* 6. VOCES / TESTIMONIOS */
.voices-section {
    padding: 120px 0 0;
    background-color: #f3f2f0;
}

.voices-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 40px;
}

.voices-label {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #917630;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
    display: block;
}

.voices-header h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 40px;
    color: #201f1d;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 250px;
    margin-bottom: 60px;
}

.testimonial-card {
    background-color: rgba(255,255,255,0.8);
    padding: 35px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.testimonial-quote-icon {
    font-family: 'Libre Baskerville', serif;
    font-size: 36px;
    color: #cba84d;
    line-height: 1;
    margin-bottom: 16px;
    display: block;
}

.testimonial-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    font-style: italic;
    line-height: 1.6;
    color: #201f1d;
    flex: 1;
    margin-bottom: 24px;
}

.testimonial-footer {
    border-top: 1px solid #dedad3;
    padding-top: 16px;
}

.testimonial-name {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #201f1d;
    margin-bottom: 4px;
}

.testimonial-city {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    color: #78736d;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Blockquote con foto */
.blockquote-section {
    display: flex;
    align-items: center;
    padding: 0 250px 100px;
    gap: 60px;
    background: #f3f2f0;
}

.blockquote-img {
    width: 280px;
    flex-shrink: 0;
    height: 320px;
    overflow: hidden;
    border-radius: 8px;
}

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

.blockquote-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.blockquote-content blockquote {
    margin: 0;
    border: none;
    padding: 0;
}

.blockquote-content blockquote p {
    font-family: 'Libre Baskerville', serif;
    font-size: 22px;
    font-style: italic;
    line-height: 1.5;
    color: #201f1d;
    margin-bottom: 12px;
}

.blockquote-content blockquote footer {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    color: #917630;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    background: none;
    padding: 0;
    display: block;
}

.btn-outline-black {
    display: inline-block;
    padding: 16px 40px;
    border: 1px solid #000;
    border-radius: 50px;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-outline-black:hover {
    background-color: #000;
    color: #fff;
}

/* =====================
   RESPONSIVE MENU
   ===================== */

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 20px;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #0a0a0a;
    transition: all 0.3s ease;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -320px; /* Hidden by default */
    width: 320px;
    height: 100vh;
    background-color: var(--blanco);
    z-index: 1002;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.mobile-menu-panel.is-active {
    transform: translateX(-320px);
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
}

.menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 25px;
}

.mobile-nav a {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #0a0a0a;
    text-decoration: none;
    letter-spacing: 0.1em;
}

.mobile-socials {
    margin-top: auto;
    display: flex;
    gap: 20px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.mobile-socials a {
    color: #9d927b;
    transition: color 0.3s ease;
}

.mobile-socials a:hover {
    color: var(--dorado);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* ── MOBILE HEADER — Top:0 siempre, 30% más alto ── */
@media (max-width: 992px) {

    .site-header {
        position: fixed !important;
        top: 0 !important;       /* Siempre pegado al borde superior */
        left: 0;
        right: 0;
        height: 84px;            /* 64px × 1.30 ≈ 84px */
        padding: 0 20px;
        z-index: 1000;
        background: #fff;
    }

    /* Admin bar: la movemos por encima del header, no empuja el header */
    .admin-bar #wpadminbar {
        position: fixed;
        top: 0;
    }

    /* Compensar el header fijo */
    body {
        padding-top: 84px;
    }

    .admin-bar body {
        padding-top: 84px;       /* Sin sumar admin bar en móvil */
    }

    .site-header .logo svg,
    .site-header .logo img {
        height: 62px;            /* 47px * 1.30 ≈ 62px */
    }

    .main-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
        margin-left: 0;
    }

    /* Footer Mobile Adjustments */
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-actions {
        align-items: center;
    }

    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 25px;
    }

    .footer-bottom {
        text-align: center;
    }

    /* Culture Page Mobile */
    .culture-hero {
        height: auto;
        min-height: 500px;
        padding: 120px 24px 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .culture-hero h1 {
        font-size: 44px;
        margin-bottom: 30px;
    }

    .culture-manifiesto {
        flex-direction: column;
        min-height: auto;
    }

    .culture-manifiesto .manifiesto-left,
    .culture-manifiesto .manifiesto-right {
        padding: 60px 24px;
        width: 100%;
        text-align: center;
    }

    .culture-manifiesto .manifiesto-left h2 {
        font-size: 32px;
        br { display: none; }
    }

    .culture-gallery {
        grid-template-columns: 1fr;
    }

    .culture-gallery img {
        height: 600px;
    }

    .culture-gallery img:nth-child(2) {
        object-position: center 10%;
    }

    .ritual-section {
        padding: 60px 24px;
    }

    .ritual-section h2 {
        font-size: 30px;
        br { display: none; }
    }

    .purificacion-container {
        flex-direction: column;
        min-height: auto;
        display: flex;
    }

    .purificacion-image,
    .purificacion-content {
        width: 100%;
        flex: none;
    }

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

    .purificacion-content {
        padding: 60px 24px;
        text-align: center;
    }

    .purificacion-content h2 {
        font-size: 32px;
        br { display: none; }
    }

    .culture-quote {
        padding: 80px 24px;
        text-align: center;
    }

    .culture-quote h2 {
        font-size: 28px;
        line-height: 1.4;
    }

    /* ── ABOUT SECTION — imagen en móvil ── */
    .about-section {
        flex-direction: column;
        min-height: auto;
        padding: 60px 24px;
        overflow: visible;
    }

    .about-text-box {
        padding: 0;
        max-width: 100%;
    }

    .about-image-wrap {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: 380px;
        margin-top: 36px;
    }

    /* ── HERO — sin desbordamiento lateral ── */
    .hero-section {
        height: 480px;
        align-items: flex-end;
    }

    .hero-content {
        padding-right: 24px;
        padding-left: 24px;
        padding-bottom: 50px;
        text-align: left;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 56px;
    }

    /* ── FEATURES — apiladas verticalmente ── */
    .features-section {
        height: auto;
        flex-direction: column;
        padding: 0;
    }

    .feature-col {
        border-right: none;
        border-bottom: 1px solid rgba(145,118,48,0.15);
        padding: 28px 24px;
        width: 100%;
    }

    .feature-col + .feature-col::before {
        display: none;
    }

    .feature-col:last-child {
        border-bottom: none;
    }

    /* ── SECCIONES IMAGEN FONDO (Transgénica, Tarantismo, Estephil) ── */
    .transgenica-section,
    .tarantismo-section,
    .estephil-section {
        height: 300px;
    }

    .transgenica-content,
    .tarantismo-content,
    .estephil-content {
        padding: 40px 24px;
        max-width: 100%;
        width: 100%;
    }

    /* ── QUOTE / MI CAUSA ── */
    .quote-section {
        height: auto;
        padding: 50px 24px;
    }

    .quote-section blockquote {
        font-size: 26px;
    }

    .mi-causa-section blockquote {
        font-size: 26px;
    }

    /* ── BLOG HOMEPAGE ── */
    .blog-section {
        padding: 60px 24px 80px;
    }

    /* Elimina overflow horizontal global en móvil */
    html, body {
        overflow-x: clip;
        max-width: 100%;
    }

    /* ── BEAUTY PAGE ── */
    .beauty-hero {
        height: auto;
        min-height: 500px;
        padding: 100px 24px 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .beauty-hero .logo-esthepil {
        height: 60px;
        margin-bottom: 24px;
    }

    .manifiesto-section {
        flex-direction: column;
        min-height: auto;
    }

    .manifiesto-left, .manifiesto-right {
        padding: 60px 24px;
        width: 100%;
        text-align: center;
    }

    .manifiesto-left h2 {
        font-size: 32px;
        br { display: none; } /* Quitamos los saltos de línea forzados en móvil */
    }

    .cabina-section {
        padding: 60px 0;
    }

    .cabina-section .section-title {
        font-size: 32px;
        margin-bottom: 48px;
    }

    .treatment-row {
        flex-direction: column !important;
        padding: 0 24px;
        gap: 32px;
        margin-bottom: 80px;
    }

    .treatment-row.reverse {
        flex-direction: column !important;
    }

    .treatment-content {
        order: 2;
        text-align: center !important;
    }

    .treatment-image {
        order: 1;
        width: 100%;
    }

    .treatment-content h3 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .treatment-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .treatment-item {
        display: flex;
        flex-direction: column;
        align-items: center !important;
        text-align: center;
    }

    .treatment-content.text-right .btn-arrow-gold {
        justify-content: center;
    }

    .mi-causa-beauty {
        padding: 80px 24px;
    }

    .mi-causa-beauty h2 {
        font-size: 28px;
        line-height: 1.4;
    }
}

/* =====================
   UTILITY
   ===================== */
body.no-scroll {
    overflow: hidden;
}

.site-main {
    overflow-x: clip;
}

/* =====================
   COMMUNITY / BLOG PAGE
   Figma: Frame 116:1918 | h:2879
   ===================== */

/* HERO */
.community-hero {
    height: 450px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.community-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.community-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.57);
    z-index: 1;
}

.community-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 40px;
}

.community-hero-label {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #cba84d;
    margin-bottom: 20px;
}

.community-hero-content h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 68px;
    font-style: italic;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 20px;
}

.community-hero-sub {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.1em;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

/* FILTROS */
.community-filters {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 84px;
    z-index: 100;
}

.community-filters-inner {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 65px;
}

.filter-btn {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9d927b;
    text-decoration: none;
    padding: 22px 30px;
    display: inline-block;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-btn:hover,
.filter-btn--active {
    color: #201f1d;
    border-bottom-color: #cba84d;
}

/* BLOG GRID */
.community-blog {
    background-color: #fff;
    padding: 80px 65px 100px;
    max-width: 1440px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 28px;
    margin-bottom: 80px;
}

/* CARD */
.blog-card {
    display: flex;
    flex-direction: column;
}

.blog-card-img-link {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 20px;
}

.blog-card-img {
    width: 100%;
    height: 271px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-card-img-link:hover .blog-card-img {
    transform: scale(1.03);
}

/* Placeholder sin thumbnail */
.blog-card-img--placeholder {
    background: linear-gradient(135deg, #f3f2f0, #dedad3);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 271px;
}

.blog-card-img--placeholder span {
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    font-style: italic;
    color: #9d927b;
    letter-spacing: 0.1em;
}

.blog-card-content {
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.blog-card-cat {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #cba84d;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card-cat:hover {
    color: #917630;
}

.blog-card-dot {
    color: #beb6a7;
    font-size: 11px;
}

.blog-card-time {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    color: #9d927b;
    letter-spacing: 0.1em;
}

.blog-card-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 20px;
    line-height: 1.3;
    color: #201f1d;
    margin-bottom: 14px;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card-title a:hover {
    color: #917630;
}

.blog-card-excerpt {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #78736d;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.blog-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #201f1d;
    text-decoration: none;
    letter-spacing: 0.08em;
    margin-top: auto;
    transition: gap 0.2s ease, color 0.2s ease;
}

.blog-card-readmore:hover {
    color: #cba84d;
    gap: 10px;
}

/* ESTADO VACÍO */
.blog-empty {
    text-align: center;
    padding: 100px 40px;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #9d927b;
}

/* PAGINACIÓN */
.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.blog-pagination .page-numbers {
    display: flex;
    list-style: none;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.blog-pagination .page-numbers li a,
.blog-pagination .page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #dedad3;
    border-radius: 50%;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #201f1d;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-pagination .page-numbers li a:hover {
    border-color: #cba84d;
    color: #cba84d;
}

.blog-pagination .page-numbers li .current {
    background: #201f1d;
    border-color: #201f1d;
    color: #fff;
}

/* =====================
   RESPONSIVE COMMUNITY
   ===================== */
@media (max-width: 992px) {
    .community-hero-content h1 {
        font-size: 44px;
    }

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

    .community-blog {
        padding: 60px 30px 80px;
    }

    .community-filters-inner {
        padding: 0 20px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .community-filters-inner::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 600px) {
    .community-hero {
        height: 360px;
    }

    .community-hero-content h1 {
        font-size: 36px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .community-blog {
        padding: 50px 20px 60px;
    }
}

/* =====================
   SINGLE POST — Marta Grazia
   Figma: Frame 116:2182 | POST
   ===================== */

/* ── HERO ───────────────────────────────────────────────── */
.post-hero {
    height: 450px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px;
}

.post-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

.post-hero-bg--dark {
    background-color: #171411;
}

.post-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.57);
    z-index: 1;
}

.post-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    padding: 0 40px;
}

.post-hero-cat {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #cba84d;
    text-decoration: none;
    margin-bottom: 16px;
}

.post-hero-content h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 52px;
    font-style: italic;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.post-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.65);
}

.post-hero-dot {
    color: rgba(255,255,255,0.35);
}

/* ── BODY DEL POST ──────────────────────────────────────── */
.post-body {
    background-color: #fff;
    padding: 80px 0 60px;
}

.post-body-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 40px;
}

.post-text-block {
    color: rgba(32, 31, 29, 0.85);
}

.post-text-block p,
.post-body-inner > p {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.85;
    letter-spacing: 0.04em;
    color: rgba(32, 31, 29, 0.85);
    margin-bottom: 28px;
}

.post-text-block h2,
.post-body-inner > h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.3;
    color: #201f1d;
    margin-top: 52px;
    margin-bottom: 20px;
}

.post-text-block h3,
.post-body-inner > h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 21px;
    font-weight: 400;
    color: #201f1d;
    margin-top: 40px;
    margin-bottom: 16px;
}

.post-text-block blockquote {
    border-left: 3px solid #cba84d;
    margin: 40px 0;
    padding: 10px 30px;
    font-family: 'Libre Baskerville', serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    color: #444;
}

.post-text-block ul,
.post-text-block ol {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: rgba(32, 31, 29, 0.8);
    padding-left: 24px;
    margin-bottom: 28px;
}

/* ── IMAGEN DESTACADA EN EL CENTRO ─────────────────────── */
.post-featured-image {
    width: calc(100% + 160px);
    margin-left: -80px;
    margin-right: -80px;
    margin-top: 52px;
    margin-bottom: 52px;
}

.post-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

.post-featured-image figcaption {
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #78736d;
    letter-spacing: 0.08em;
    margin-top: 12px;
    line-height: 1.5;
}

/* ── BARRA PIE DEL POST ─────────────────────────────────── */
.post-footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #dedad3;
    padding-top: 28px;
    margin-top: 60px;
}

.post-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    letter-spacing: 0.12em;
    color: rgba(32, 31, 29, 0.7);
    text-decoration: none;
    transition: color 0.2s, gap 0.2s;
}

.post-back-link:hover {
    color: #201f1d;
    gap: 12px;
}

.post-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    color: #201f1d;
    background: none;
    border: 0.75px solid #201f1d;
    border-radius: 99px;
    padding: 9px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.post-share-btn:hover {
    background: #201f1d;
    color: #fff;
}

/* ── POSTS RELACIONADOS ─────────────────────────────────── */
.post-related {
    background-color: #f8f6f2;
    padding: 80px 0 100px;
}

.post-related-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 65px;
}

.post-related-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 28px;
    font-weight: 400;
    color: #201f1d;
    margin-bottom: 48px;
    text-align: center;
}

.post-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.related-card {
    display: flex;
    flex-direction: column;
}

.related-card-img-link {
    display: block;
    overflow: hidden;
    border-radius: 3px;
    margin-bottom: 18px;
}

.related-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.related-card-img-link:hover .related-card-img {
    transform: scale(1.04);
}

.related-card-img--placeholder {
    background: linear-gradient(135deg, #e8e4de, #d0ccc5);
}

.related-card-cat {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #cba84d;
    display: inline-block;
    margin-bottom: 10px;
}

.related-card-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    color: #201f1d;
}

.related-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.related-card-title a:hover {
    color: #917630;
}

/* ── RESPONSIVE SINGLE POST ─────────────────────────────── */
@media (max-width: 992px) {
    .post-hero-content h1 {
        font-size: 36px;
    }

    .post-body-inner {
        padding: 0 24px;
    }

    .post-featured-image {
        width: calc(100% + 48px);
        margin-left: -24px;
        margin-right: -24px;
    }

    .post-related-inner {
        padding: 0 30px;
    }

    .post-related-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .post-hero {
        height: 380px;
        padding-bottom: 40px;
    }

    .post-hero-content h1 {
        font-size: 28px;
    }

    .post-body {
        padding: 50px 0 40px;
    }

    .post-body-inner {
        padding: 0 20px;
    }

    .post-featured-image {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
    }

    .post-featured-image img {
        height: 240px;
    }

    .post-related-inner {
        padding: 0 20px;
    }

    .post-footer-bar {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

/* =====================
   FOOTER NEWSLETTER BANNER
   ===================== */
.footer-newsletter {
    background-color: #0a0a0a;
    padding: 52px 0;
}

.footer-newsletter-inner {
    max-width: 1380px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.footer-newsletter-text h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.footer-newsletter-text p {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.05em;
    margin: 0;
}

.footer-newsletter-form {
    flex-shrink: 0;
    min-width: 380px;
}

/* Fila input + botón */
.newsletter-input-row {
    display: flex;
    gap: 0;
    margin-bottom: 12px;
}

.newsletter-input-row input[type="email"] {
    flex: 1;
    background: #ffffff;
    border: 1px solid rgba(255,255,255,0.25);
    border-right: none;
    color: #333333;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    letter-spacing: 0.05em;
    padding: 12px 18px;
    border-radius: 4px 0 0 4px;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-input-row input[type="email"]::placeholder {
    color: rgba(255,255,255,0.35);
}

.newsletter-input-row input[type="email"]:focus {
    border-color: rgba(203,168,77,0.6);
}

.newsletter-input-row button {
    background: #ffffff;
    color: #363636;
    border: 0px;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 12px 24px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.newsletter-input-row button:hover {
    background: #f0f0f0;
}

.newsletter-input-row button:disabled {
    opacity: 0.6;
    cursor: default;
}

/* Checkbox privacidad */
.newsletter-privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 10px;
}

.newsletter-privacy-check input[type="checkbox"] {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #cba84d;
    cursor: pointer;
}

.newsletter-privacy-check span {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
    line-height: 1.5;
}

.newsletter-privacy-check a {
    color: #fffefd !important;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.newsletter-privacy-check a:hover {
    color: #e0c070;
}

/* Mensajes de feedback */
.newsletter-msg {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    letter-spacing: 0.05em;
    min-height: 18px;
    margin-top: 4px;
}

.newsletter-msg--success {
    color: #7ecba3;
}

.newsletter-msg--error {
    color: #e87d7d;
}

/* Responsive newsletter */
@media (max-width: 992px) {
    .footer-newsletter-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        padding: 0 30px;
    }

    .footer-newsletter-form {
        min-width: 0;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .footer-newsletter {
        padding: 40px 0;
    }

    .footer-newsletter-inner {
        padding: 0 20px;
    }

    .footer-newsletter-text h2 {
        font-size: 22px;
    }

    .newsletter-input-row {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-input-row input[type="email"] {
        border-right: 1px solid rgba(255,255,255,0.25);
        border-radius: 4px;
    }

    .newsletter-input-row button {
        border-radius: 4px;
        width: 100%;
        padding: 14px;
    }
}

/* =====================
   PÁGINA DE CONTACTO
   ===================== */

/* ── HERO ── */
.contact-hero {
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: bottom center;
    z-index: 0;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
}

.contact-hero-label {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #cba84d;
    margin-bottom: 14px;
}

.contact-hero-content h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 58px;
    font-style: italic;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 16px;
}

.contact-hero-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.05em;
}

/* ── SECCIÓN PRINCIPAL 2 COLUMNAS ── */
.contact-main {
    background: #f8f6f2;
    padding: 90px 0 100px;
}

.contact-main-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 65px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Etiqueta de sección */
.contact-section-label {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #cba84d;
    margin-bottom: 10px;
}

.contact-form-col h2,
.contact-map-col h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 36px;
    font-weight: 400;
    color: #201f1d;
    margin-bottom: 10px;
    line-height: 1.2;
}

.contact-intro {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: rgba(32,31,29,0.65);
    letter-spacing: 0.04em;
    line-height: 1.7;
    margin-bottom: 36px;
}

/* ── FORMULARIO ── */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.contact-field label {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #444;
}

.contact-field .req {
    color: #cba84d;
}

.contact-field input,
.contact-field textarea {
    background: #fff;
    border: 1px solid #dedad3;
    border-radius: 3px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #333;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #aaa;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #cba84d;
    box-shadow: 0 0 0 3px rgba(203,168,77,0.1);
}

.contact-field textarea {
    resize: vertical;
    min-height: 140px;
}

/* Checkbox privacidad */
.contact-privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin-top: -4px;
}

.contact-privacy-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #cba84d;
    cursor: pointer;
}

.contact-privacy-check span {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    color: rgba(32,31,29,0.6);
    letter-spacing: 0.04em;
    line-height: 1.5;
}

.contact-privacy-check a {
    color: #cba84d;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Mensajes */
.contact-msg {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    letter-spacing: 0.04em;
    min-height: 20px;
}

.contact-msg--success { color: #3a8a5c; }
.contact-msg--error   { color: #c0392b; }

/* Botón enviar */
.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #201f1d;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 14px 36px;
    border: 1px solid #201f1d;
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.25s;
    align-self: flex-start;
}

.contact-submit-btn:hover {
    background: #201f1d;
    color: #fff;
}

.contact-submit-btn:disabled {
    opacity: 0.5;
    cursor: default;
}

/* ── COLUMNA MAPA ── */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: rgba(32,31,29,0.75);
    letter-spacing: 0.03em;
}

.contact-info-item svg {
    flex-shrink: 0;
    stroke: #cba84d;
}

.contact-info-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-item a:hover {
    color: #cba84d;
}

.contact-map-wrapper {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.contact-map-wrapper iframe {
    display: block;
}

/* ── SECCIÓN ÚLTIMOS POSTS ── */
.contact-posts {
    background: #fff;
    padding: 90px 0 100px;
}

.contact-posts-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 65px;
}

.contact-posts-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 52px;
}

.contact-posts-header h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 36px;
    font-weight: 400;
    color: #201f1d;
    margin-top: 8px;
}

.contact-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 52px;
}

.contact-post-card {
    display: flex;
    flex-direction: column;
}

.contact-post-img-link {
    display: block;
    overflow: hidden;
    border-radius: 3px;
    margin-bottom: 20px;
}

.contact-post-img-link img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.contact-post-img-link:hover img {
    transform: scale(1.04);
}

.contact-post-img-placeholder {
    width: 100%;
    height: 230px;
    background: linear-gradient(135deg, #e8e4de, #d0ccc5);
}

.contact-post-cat {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #cba84d;
    margin-bottom: 8px;
    display: inline-block;
}

.contact-post-body h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;
    color: #201f1d;
    margin-bottom: 10px;
}

.contact-post-body h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-post-body h3 a:hover { color: #917630; }

.contact-post-meta {
    display: flex;
    gap: 8px;
    align-items: center;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    color: rgba(32,31,29,0.5);
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}

.contact-post-link {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #201f1d;
    text-decoration: none;
    transition: color 0.2s, letter-spacing 0.2s;
}

.contact-post-link:hover {
    color: #cba84d;
    letter-spacing: 0.15em;
}

.contact-posts-cta {
    text-align: center;
}

.contact-all-posts-btn {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #201f1d;
    border: 1px solid #201f1d;
    padding: 14px 36px;
    border-radius: 99px;
    text-decoration: none;
    transition: all 0.25s;
}

.contact-all-posts-btn:hover {
    background: #201f1d;
    color: #fff;
}

/* ── RESPONSIVE CONTACTO ── */
@media (max-width: 1024px) {
    .contact-main-inner {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 40px;
    }

    .contact-posts-inner {
        padding: 0 40px;
    }

    .contact-posts-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 38px;
    }

    .contact-field-row {
        grid-template-columns: 1fr;
    }

    .contact-main-inner,
    .contact-posts-inner {
        padding: 0 24px;
    }

    .contact-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 380px;
    }

    .contact-hero-content h1 {
        font-size: 30px;
    }

    .contact-main,
    .contact-posts {
        padding: 60px 0 70px;
    }

    .contact-main-inner,
    .contact-posts-inner {
        padding: 0 20px;
    }

    .contact-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ====================================================
   RESPONSIVE GLOBAL — Todas las páginas
   Breakpoints: 992px (tablet) | 768px (móvil) | 480px (mobile S)
   ==================================================== */

/* ─── 992px — TABLET ─── */
@media (max-width: 992px) {

    /* ── HOMEPAGE ── */
    .hero-section {
        height: 480px;
    }

    .hero-content h1 {
        font-size: 64px;
    }

    /* About section */
    .about-section {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .about-text-box,
    .about-image-wrap {
        width: 100%;
        max-width: 100%;
    }

    .about-text-box h2 {
        font-size: 38px;
    }

    /* Features */
    .features-section {
        flex-direction: column;
        gap: 0;
        padding: 40px 30px;
    }

    .feature-col {
        border-right: none;
        border-bottom: 1px solid rgba(145,118,48,0.2);
        padding: 30px 0;
        width: 100%;
    }

    .feature-col + .feature-col::before {
        display: none;
    }

    .feature-col:last-child {
        border-bottom: none;
    }

    /* Secciones con imagen de fondo (Transgénica, Tarantismo, Estephil) */
    .transgenica-section,
    .tarantismo-section,
    .estephil-section {
        height: 300px;
    }

    .transgenica-content,
    .tarantismo-content,
    .estephil-content {
        padding: 40px 30px;
    }

    .transgenica-content h2,
    .tarantismo-content h2,
    .estephil-content h2 {
        font-size: 42px;
    }

    /* Quote / Mi Causa */
    .quote-section blockquote,
    .mi-causa-section blockquote {
        font-size: 28px;
        padding: 50px 30px;
    }

    /* Blog section homepage */
    .blog-section {
        padding: 60px 30px 80px;
    }

    .blog-section .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }

    /* ── BEAUTY PAGE ── */
    .beauty-hero h1 {
        font-size: 44px;
    }

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

    .beauty-about {
        flex-direction: column;
    }

    .beauty-about-img,
    .beauty-about-text {
        width: 100%;
    }

    /* ── PROTOCOLO PAGE ── */
    .protocolo-hero h1 {
        font-size: 44px;
    }

    .protocolo-steps {
        grid-template-columns: 1fr;
    }

    .protocolo-two-col {
        flex-direction: column;
        gap: 40px;
    }

    .protocolo-two-col > * {
        width: 100%;
    }

    /* ── SINGLE POST ── */
    .single-post-content {
        padding: 60px 30px;
    }

    .single-post-header {
        padding: 60px 30px;
    }
}

/* ─── 768px — MÓVIL ─── */
@media (max-width: 768px) {

    /* ── HOMEPAGE ── */
    .hero-section {
        height: 420px;
        align-items: center;
        text-align: center;
    }

    .hero-content {
        align-items: center;
        padding: 0 24px;
    }

    .hero-content h1 {
        font-size: 48px;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-hero {
        width: 220px;
        text-align: center;
    }

    .about-text-box h2 {
        font-size: 32px;
    }

    .transgenica-content h2,
    .tarantismo-content h2,
    .estephil-content h2 {
        font-size: 36px;
    }

    .quote-section blockquote,
    .mi-causa-section blockquote {
        font-size: 24px;
        padding: 40px 24px;
    }

    .blog-section .blog-grid {
        grid-template-columns: 1fr;
    }

    /* ── BEAUTY PAGE ── */
    .beauty-hero h1 {
        font-size: 36px;
    }

    .beauty-services-grid {
        grid-template-columns: 1fr;
    }

    /* ── CULTURE PAGE ── */
    .culture-hero h1 {
        font-size: 36px;
    }

    .culture-gallery {
        grid-template-columns: 1fr;
    }

    /* ── PROTOCOLO PAGE ── */
    .protocolo-hero h1 {
        font-size: 36px;
    }

    /* ── COMMUNITY / BLOG ── */
    .community-hero-content h1 {
        font-size: 36px;
    }

    .community-filters-inner {
        padding: 0 16px;
        gap: 0;
    }

    .filter-btn {
        padding: 18px 16px;
        font-size: 11px;
    }

    /* ── SINGLE POST ── */
    .single-post-title {
        font-size: 32px;
    }

    .single-post-content {
        padding: 50px 24px;
        font-size: 16px;
    }

    /* ── FOOTER ── */
    .footer-newsletter-inner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 0 24px;
    }

    .newsletter-input-row {
        flex-direction: column;
    }

    .newsletter-input-row input[type="email"] {
        border-right: 1px solid rgba(255,255,255,0.25);
        border-radius: 4px;
        border-bottom: none;
    }

    .newsletter-input-row button {
        border-radius: 4px;
    }

    .footer-top {
        padding: 60px 24px;
    }

    /* ── CONTACT PAGE ── */
    .contact-hero-content h1 {
        font-size: 38px;
    }

    .contact-main-inner {
        padding: 0 24px;
    }

    .contact-posts-inner {
        padding: 0 24px;
    }
}

/* ─── 480px — MÓVIL PEQUEÑO ─── */
@media (max-width: 480px) {

    /* ── HEADER ── */
    .site-header {
        padding: 14px 20px;
    }

    .site-header .logo svg,
    .site-header .logo img {
        max-width: 130px;
    }

    /* ── HOMEPAGE ── */
    .hero-section {
        height: 380px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .about-section {
        padding: 50px 20px;
    }

    .about-text-box h2 {
        font-size: 28px;
    }

    .transgenica-content h2,
    .tarantismo-content h2,
    .estephil-content h2 {
        font-size: 30px;
    }

    .transgenica-content,
    .tarantismo-content,
    .estephil-content {
        padding: 30px 20px;
    }

    .quote-section blockquote,
    .mi-causa-section blockquote {
        font-size: 20px;
        padding: 36px 20px;
    }

    .blog-section {
        padding: 50px 20px 60px;
    }

    .blog-section .section-title {
        font-size: 28px;
    }

    /* ── BEAUTY PAGE ── */
    .beauty-hero {
        height: 360px;
    }

    .beauty-hero h1 {
        font-size: 30px;
    }

    /* ── CULTURE PAGE ── */
    .culture-hero {
        height: 360px;
    }

    .culture-hero h1 {
        font-size: 30px;
    }

    /* ── PROTOCOLO PAGE ── */
    .protocolo-hero {
        height: auto;
        min-height: 500px;
        padding: 120px 24px 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .protocolo-hero-content h1 {
        font-size: 40px;
        margin-bottom: 30px;
        br { display: none; }
    }

    .protocolo-cita {
        padding: 60px 24px;
    }

    .protocolo-cita-text {
        font-size: 26px;
    }

    .compromiso-section {
        height: auto;
        padding: 80px 24px;
    }

    .compromiso-content {
        padding: 0;
    }

    .compromiso-header h2 {
        font-size: 32px;
        margin-bottom: 40px;
        br { display: none; }
    }

    .compromiso-cards {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .compromiso-card {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        text-align: center;
        padding: 30px 24px;
    }

    .compromiso-card:last-child {
        border-bottom: none;
    }

    .certificacion-section {
        flex-direction: column;
        min-height: auto;
        padding: 40px 0;
    }

    .certificacion-img,
    .certificacion-content {
        width: 100%;
        margin: 0;
        padding: 40px 24px;
    }

    .certificacion-img {
        height: 350px;
        padding: 0 24px;
    }

    .certificacion-content h2 {
        font-size: 32px;
        text-align: center;
        br { display: none; }
    }

    .certificacion-text {
        text-align: center;
    }

    .certificacion-pilares {
        flex-direction: column;
    }

    .caminos-section {
        padding: 80px 24px;
    }

    .caminos-grid {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 24px;
    }

    .camino-card {
        padding: 30px;
    }

    .voices-section {
        padding: 80px 0 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }

    .blockquote-section {
        flex-direction: column;
        padding: 60px 24px;
        gap: 40px;
        text-align: center;
    }

    .blockquote-img {
        width: 100%;
        height: 350px;
        margin: 0 auto;
    }

    .blockquote-content {
        align-items: center;
    }

    .blockquote-content blockquote p {
        font-size: 18px;
        br { display: none; }
    }

    /* ── COMMUNITY PAGE ── */
    .community-hero {
        height: 320px;
    }

    .community-hero-content h1 {
        font-size: 30px;
    }

    .community-blog {
        padding: 40px 16px 60px;
    }

    /* ── CONTACT PAGE ── */
    .contact-hero {
        height: 340px;
    }

    .contact-hero-content h1 {
        font-size: 28px;
    }

    .contact-main,
    .contact-posts-section {
        padding: 50px 0 60px;
    }

    .contact-main-inner {
        padding: 0 16px;
        gap: 44px;
    }

    /* ── FOOTER ── */
    .footer-newsletter {
        padding: 40px 0;
    }

    .footer-newsletter-inner {
        padding: 0 16px;
    }

    .footer-top {
        padding: 50px 16px;
        gap: 32px;
    }

    .footer-bottom {
        padding: 20px 16px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* ── SINGLE POST ── */
    .single-post-content {
        padding: 40px 16px;
    }

    .single-post-title {
        font-size: 26px;
    }

    /* ── TAMBIÉN TE PUEDE INTERESAR ── */
    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    /* ── MISC ── */
    .section-title {
        font-size: 26px;
    }

    .contact-submit-btn,
    .contact-all-posts-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ─── 480px — MÓVIL PEQUEÑO ─── */
@media (max-width: 480px) {

    /* Header compacto en móvil pequeño (+30% sobre base) */
    .site-header {
        height: 76px;            /* 58px × 1.30 ≈ 76px */
    }

    body {
        padding-top: 0px;
    }

    .admin-bar body {
        padding-top: 0px;
    }

    .site-header .logo svg,
    .site-header .logo img {
        height: 52px;            /* 39px * 1.30 ≈ 52px */
    }

    /* Hero: Ajustado a 660px según petición */
    .hero-section {
        height: 660px;
        padding-bottom: 50px;
    }

    .hero-section .hero-bg {
        background-position: center top !important;
        background-size: 1000px auto !important;
    }

    .hero-content h1 {
        font-size: 38px;
        margin-bottom: 24px;
    }

    .btn-hero {
        width: 160px;
        height: 40px;
        font-size: 14px;
    }

    .btn-outline-black {
        display: inline-block;
        padding: 16px 40px;
        border: 1px solid #000;
        border-radius: 50px;
        font-family: 'Raleway', sans-serif;
        font-size: 12px;
        font-weight: 600;
        color: #000;
        text-decoration: none;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        transition: all 0.3s ease;
        align-self: flex-start;
        width: 100%;
        text-align: center;
    }

    /* About */
    .about-section {
        padding: 48px 20px;
    }

    .about-text-box h2 {
        font-size: 28px;
    }

    .about-image-wrap {
        height: 380px;
    }

    /* Quote */
    .quote-section blockquote,
    .mi-causa-section blockquote {
        font-size: 21px;
        line-height: 1.4;
    }

    /* Secciones imagen */
    .transgenica-section,
    .tarantismo-section,
    .estephil-section {
        height: 300px;
    }

    .transgenica-content h2,
    .tarantismo-content h2,
    .estephil-content h2 {
        font-size: 32px;
    }

    .transgenica-content,
    .tarantismo-content,
    .estephil-content {
        padding: 32px 20px;
    }

    /* Blog homepage */
    .blog-section {
        padding: 48px 16px 60px;
    }

    .blog-section .section-title {
        font-size: 26px;
    }

    /* Blog grid */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Heros de páginas interiores */
    .community-hero { height: 300px; }
    .community-hero-content h1 { font-size: 28px; }
    .culture-hero h1  { font-size: 28px; }
    .beauty-hero h1   { font-size: 28px; }
    .contact-hero-content h1 { font-size: 26px; }

    /* Community filters scroll horizontal compacto */
    .filter-btn {
        padding: 16px 12px;
        font-size: 10px;
        letter-spacing: 0.1em;
    }

    /* Contact */
    .contact-main-inner,
    .contact-posts-inner {
        padding: 0 16px;
    }

    .contact-field-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-newsletter-inner {
        padding: 0 16px;
        gap: 24px;
    }

    .newsletter-left h2 {
        font-size: 22px;
    }

    .footer-top {
        padding: 48px 16px;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 16px;
    }

    /* Posts relacionados */
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── 375px — IPHONE SE y similares ─── */
@media (max-width: 375px) {

    .hero-section {
        height: 660px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .about-text-box h2 {
        font-size: 24px;
    }

    .quote-section blockquote,
    .mi-causa-section blockquote {
        font-size: 18px;
    }

    .transgenica-content h2,
    .tarantismo-content h2,
    .estephil-content h2 {
        font-size: 26px;
    }

    .community-blog {
        padding: 36px 12px 50px;
    }

    .contact-main-inner {
        padding: 0 12px;
    }
}
/* Custom fix for Community Mobile Hero */
@media (max-width: 480px) {
    .community-hero {
        height: 300px;
        margin-top: 76px;
    }
    
    .community-filters {
        top: 76px;
    }
}

/* Fix sticky position when admin bar is present */
.admin-bar .community-filters {
    top: calc(84px + 32px);
}

@media screen and (max-width: 782px) {
    .admin-bar .community-filters {
        top: calc(84px + 46px);
    }
}

@media screen and (max-width: 480px) {
    .admin-bar .community-filters {
        top: calc(76px + 46px);
    }
}
.copyright a {
    color: inherit;
    text-decoration: underline;
}

/* ==========================================================
   FORM PAGES: RESERVA & CERTIFICACION
   ========================================================== */

/* Layout & Backgrounds */
.form-page-layout {
    background-color: #fcfbf9; /* Arena claro */
    min-height: 100vh;
    padding: 60px 20px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-page-layout--dark {
    background-color: #171411; /* Oscuro */
}

/* Header & Back Link */
.form-page-header {
    width: 100%;
    max-width: 800px;
    margin-bottom: 40px;
}

.back-link {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #9d927b;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #2b2824;
}

.back-link--dark:hover {
    color: #f5f3ef;
}

/* Form Card */
.form-section {
    width: 100%;
    max-width: 800px;
}

.form-card {
    background-color: #ffffff;
    border: 1px solid #eae6de;
    border-radius: 12px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.form-card--dark {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: none;
}

/* Card Header */
.form-card-header {
    margin-bottom: 50px;
}

.form-label {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #9d927b;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.form-card-header h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 36px;
    font-style: italic;
    color: #2b2824;
    margin: 0;
}

.form-card--dark .form-card-header h1 {
    color: #ffffff;
}

/* Custom Form Grid */
.custom-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

/* Inputs & Labels */
.custom-form label {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #9d927b;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.custom-form input[type="text"],
.custom-form input[type="email"],
.custom-form input[type="tel"],
.custom-form textarea {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #2b2824;
    background: transparent;
    border: none;
    border-bottom: 1px solid #eae6de;
    padding: 10px 0;
    width: 100%;
    outline: none;
    transition: border-color 0.3s ease;
}

.custom-form textarea {
    resize: vertical;
    min-height: 80px;
}

.custom-form input:focus,
.custom-form textarea:focus {
    border-bottom-color: #2b2824;
}

.custom-form input::placeholder,
.custom-form textarea::placeholder {
    color: #b5ad9e;
}

/* Dark Theme Inputs */
.custom-form--dark input[type="text"],
.custom-form--dark input[type="email"],
.custom-form--dark input[type="tel"],
.custom-form--dark textarea {
    color: #ffffff;
    border-bottom-color: rgba(255,255,255,0.1);
}

.custom-form--dark input:focus,
.custom-form--dark textarea:focus {
    border-bottom-color: #cba84d;
}

.custom-form--dark input::placeholder,
.custom-form--dark textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

/* Radio Pills */
.radio-pill-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.radio-pill {
    cursor: pointer;
    margin: 0;
}

.radio-pill input[type="radio"] {
    display: none;
}

.radio-pill span {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.radio-pill input[type="radio"]:checked + span {
    border-color: #cba84d;
    color: #cba84d;
}

.radio-pill:hover span {
    border-color: rgba(255,255,255,0.5);
    color: #ffffff;
}

/* Form Footer */
.form-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    padding-top: 40px;
    border-top: 1px solid #eae6de;
}

.form-card--dark .form-footer {
    border-top-color: rgba(255,255,255,0.1);
}

.form-disclaimer {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    color: #9d927b;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .form-card {
        padding: 40px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-card-header h1 {
        font-size: 28px;
    }
}

/* Privacy Checkbox */
.privacy-group {
    margin-top: -10px;
}
.privacy-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Raleway', sans-serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    color: #9d927b !important;
    letter-spacing: 0 !important;
    cursor: pointer;
}
.privacy-label input[type="checkbox"] {
    margin-top: 3px;
    width: auto;
    accent-color: #cba84d;
}
.privacy-label a {
    color: #cba84d;
    text-decoration: underline;
}
.privacy-label a:hover {
    color: #2b2824;
}
.form-card--dark .privacy-label a:hover {
    color: #ffffff;
}
