/* ============================================================
   HERO SECTION
   ============================================================ */
.hero_section {
    position: relative;
    min-height: min(88vh, 760px);
    display: grid;
    align-items: end;
    padding: clamp(40px, 8vw, 90px) clamp(16px, 4vw, 48px) clamp(36px, 6vw, 64px);
    overflow: hidden;
    scroll-margin-top: var(--header-height);
}

.hero_section .hero_bg {
    position: absolute;
    inset: 0;
}

.hero_section .hero_slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero_section .hero_slide.is_active {
    opacity: 1;
}

.hero_section .hero_bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
}

.hero_section .hero_dots {
    display: flex;
    gap: 8px;
    align-items: center;
    padding-top: 4px;
}

.hero_section .hero_dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(244, 241, 236, 0.30);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero_section .hero_dot.is_active {
    background: var(--detalle);
    transform: scale(1.5);
}

.hero_section .hero_overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 11, 0.72) 0%,
        rgba(10, 10, 11, 0.45) 40%,
        rgba(10, 10, 11, 0.94) 100%
    );
}

.hero_section .hero_content {
    position: relative;
    display: grid;
    gap: 24px;
    max-width: 900px;
}

.hero_section .hero_badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--detalle);
}

.hero_section .hero_badge_line {
    width: 34px;
    height: 1px;
    background: var(--detalle);
    flex-shrink: 0;
}

.hero_section .hero_title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(44px, 7.5vw, 88px);
    line-height: 0.88;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    text-wrap: balance;
    color: var(--text-primary);
}

.hero_section .hero_title .accent {
    color: var(--acento);
}

.hero_section .hero_subtitle {
    max-width: 520px;
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.55;
    color: var(--text-secondary);
    text-wrap: pretty;
}

.hero_section .hero_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding-top: 4px;
}

.hero_section .hero_cta_primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--acento);
    color: #0A0A0B;
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(15px, 1.8vw, 18px);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 19px 30px;
    border-radius: var(--radius-pill);
    min-height: 56px;
    transition: background 0.15s ease;
}

.hero_section .hero_cta_primary:hover {
    background: #FFFFFF;
    color: #0A0A0B;
}

.hero_section .hero_cta_secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid rgba(244, 241, 236, 0.35);
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 18px 26px;
    border-radius: var(--radius-pill);
    min-height: 56px;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.hero_section .hero_cta_secondary:hover {
    border-color: var(--text-primary);
    background: rgba(244, 241, 236, 0.08);
    color: var(--text-primary);
}

.hero_section .hero_hours {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
    padding-top: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* ============================================================
   MARQUEE SECTION
   ============================================================ */
.marquee_section {
    display: flex;
    overflow: hidden;
    background: var(--franja);
    color: #0A0A0B;
    padding: 14px 0;
    border-top: 2px solid #0A0A0B;
    border-bottom: 2px solid #0A0A0B;
}

.marquee_section .marquee_track {
    display: flex;
    flex: none;
    animation: goatmarquee 26s linear infinite;
    will-change: transform;
}

.marquee_section .marquee_items {
    display: flex;
    gap: 38px;
    padding-right: 38px;
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(15px, 2vw, 20px);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services_section {
    scroll-margin-top: var(--header-height);
    padding: clamp(64px, 9vw, 120px) clamp(16px, 4vw, 48px);
    max-width: 1240px;
    margin: 0 auto;
}

.services_section .services_header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: clamp(32px, 5vw, 56px);
}

.services_section .services_heading {
    display: grid;
    gap: 14px;
    max-width: 620px;
}

.services_section .services_label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--detalle);
}

.services_section .services_title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(34px, 6vw, 68px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.services_section .services_desc {
    max-width: 340px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dim);
    text-wrap: pretty;
}

.services_section .services_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.services_section .service_card {
    display: grid;
    gap: 12px;
    align-content: start;
    padding: clamp(24px, 3vw, 34px);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    transition: border-color 0.15s ease;
}

.services_section .service_card:hover {
    border-color: var(--acento);
}

.services_section .service_card_featured {
    background: var(--acento);
    color: #0A0A0B;
    border-color: var(--acento);
}

.services_section .service_card_featured:hover {
    border-color: var(--acento);
}

.services_section .service_number {
    font-family: 'Archivo Black', sans-serif;
    font-size: 13px;
    letter-spacing: 0.14em;
    color: var(--detalle);
}

.services_section .service_card_featured .service_number {
    color: #0A0A0B;
}

.services_section .service_name {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(20px, 2.4vw, 25px);
    line-height: 1.1;
    text-transform: uppercase;
}

.services_section .service_name--compact {
    font-size: clamp(19px, 2.2vw, 23px);
    line-height: 1.15;
}

.services_section .service_text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    text-wrap: pretty;
}

.services_section .service_card_featured .service_text {
    color: #3B2B33;
}

@media (max-width: 620px) {
    .services_section .services_grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (min-width: 1080px) {
    .services_section .services_grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* ============================================================
   BOOKING SECTION
   ============================================================ */
.booking_section {
    scroll-margin-top: var(--header-height);
    background: var(--bg-section);
    border-top: 1px solid rgba(244, 241, 236, 0.08);
    border-bottom: 1px solid rgba(244, 241, 236, 0.08);
}

.booking_section .booking_inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: clamp(56px, 8vw, 110px) clamp(16px, 4vw, 48px);
    display: grid;
    gap: clamp(24px, 4vw, 40px);
}

.booking_section .booking_header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.booking_section .booking_heading {
    display: grid;
    gap: 14px;
    max-width: 640px;
}

.booking_section .booking_label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--detalle);
}

.booking_section .booking_title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(34px, 6vw, 68px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.booking_section .booking_subtitle {
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.6;
    color: var(--text-muted);
    text-wrap: pretty;
}

.booking_section .booking_steps {
    display: flex;
    gap: 10px 22px;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dimmer);
}

.booking_section .booking_frame_wrapper {
    position: relative;
    border: 1px solid rgba(244, 241, 236, 0.1);
    border-radius: var(--radius-card);
    overflow: hidden;
    background: #FFFFFF;
}

.booking_section .booking_frame {
    border: 0;
    display: block;
    width: 100%;
    height: 900px;
}

.booking_section .booking_fallback {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    background: var(--bg-card-alt);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
}

.booking_section .booking_fallback_text {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 520px;
    text-wrap: pretty;
}

.booking_section .booking_fallback_actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.booking_section .booking_fallback_cta {
    display: inline-flex;
    align-items: center;
    background: var(--acento);
    color: #0A0A0B;
    font-family: 'Archivo Black', sans-serif;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 14px 20px;
    border-radius: var(--radius-pill);
    min-height: 46px;
    transition: background 0.15s ease;
}

.booking_section .booking_fallback_cta:hover {
    background: #FFFFFF;
    color: #0A0A0B;
}

.booking_section .booking_fallback_wa {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid rgba(244, 241, 236, 0.3);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 20px;
    border-radius: var(--radius-pill);
    min-height: 46px;
    transition: border-color 0.15s ease;
}

.booking_section .booking_fallback_wa:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

/* ============================================================
   GALLERY SECTION (#trabajo)
   ============================================================ */
.gallery_section {
    scroll-margin-top: var(--header-height);
    padding: clamp(64px, 9vw, 120px) clamp(16px, 4vw, 48px);
    max-width: 1240px;
    margin: 0 auto;
}

.gallery_section .gallery_header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: clamp(28px, 4vw, 44px);
}

.gallery_section .gallery_heading {
    display: grid;
    gap: 14px;
}

.gallery_section .gallery_label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--detalle);
}

.gallery_section .gallery_title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(34px, 6vw, 68px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.gallery_section .gallery_ig_link {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--acento);
    border-bottom: 1px solid rgba(242, 168, 196, 0.5);
    padding-bottom: 4px;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.gallery_section .gallery_ig_link:hover {
    color: #FFFFFF;
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

.gallery_section .gallery_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.gallery_section .gallery_item {
    position: relative;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
}

.gallery_section .gallery_item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 620px) {
    .gallery_section .gallery_grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (min-width: 1080px) {
    .gallery_section .gallery_grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* ============================================================
   STUDIO SECTION
   ============================================================ */
.studio_section {
    background: var(--bg-section);
    border-top: 1px solid rgba(244, 241, 236, 0.08);
    border-bottom: 1px solid rgba(244, 241, 236, 0.08);
}

.studio_section .studio_inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: clamp(64px, 9vw, 120px) clamp(16px, 4vw, 48px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.studio_section .studio_text {
    display: grid;
    gap: 22px;
    align-content: start;
}

.studio_section .studio_label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--detalle);
}

.studio_section .studio_title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-wrap: balance;
}

.studio_section .studio_desc {
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.6;
    color: #B5B0A8;
    text-wrap: pretty;
}

.studio_section .studio_features {
    display: grid;
    gap: 12px;
}

.studio_section .studio_feature {
    display: flex;
    gap: 12px;
    align-items: baseline;
    font-size: 16px;
    color: var(--text-secondary);
}

.studio_section .studio_feature_icon {
    color: var(--detalle);
    font-family: 'Archivo Black', sans-serif;
    flex-shrink: 0;
}

.studio_section .studio_photos {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px;
}

.studio_section .studio_photo_wide {
    grid-column: span 2;
    position: relative;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    border-radius: 18px;
}

.studio_section .studio_photo {
    position: relative;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 18px;
}

.studio_section .studio_photo_wide img,
.studio_section .studio_photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products_section {
    max-width: 1240px;
    margin: 0 auto;
    padding: clamp(64px, 9vw, 120px) clamp(16px, 4vw, 48px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}

.products_section .products_image_wrapper {
    position: relative;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    order: 2;
}

.products_section .products_image_wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products_section .products_text {
    display: grid;
    gap: 20px;
    align-content: start;
}

.products_section .products_label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--detalle);
}

.products_section .products_title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.products_section .products_desc {
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.6;
    color: #B5B0A8;
    text-wrap: pretty;
}

.products_section .products_desc strong {
    color: var(--text-primary);
}

.products_section .products_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.products_section .products_tag {
    border: 1px solid var(--border-muted);
    border-radius: var(--radius-pill);
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.products_section .products_note {
    font-size: 14px;
    color: var(--text-dimmer);
}

/* ============================================================
   VISIT SECTION
   ============================================================ */
.visit_section {
    scroll-margin-top: var(--header-height);
    background: var(--bg-section);
    border-top: 1px solid rgba(244, 241, 236, 0.08);
}

.visit_section .visit_inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: clamp(64px, 9vw, 120px) clamp(16px, 4vw, 48px);
    display: grid;
    gap: clamp(32px, 5vw, 56px);
}

.visit_section .visit_heading_wrapper {
    display: grid;
    gap: 14px;
}

.visit_section .visit_label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--detalle);
}

.visit_section .visit_title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(34px, 6vw, 68px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.visit_section .visit_cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 14px;
}

.visit_section .visit_card {
    display: grid;
    gap: 10px;
    align-content: start;
    padding: clamp(24px, 3vw, 32px);
    background: var(--bg-card-alt);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
}

.visit_section .visit_card_label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dimmer);
}

.visit_section .visit_address_title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 20px;
    line-height: 1.25;
    color: var(--text-primary);
}

.visit_section .visit_address_sub {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

.visit_section .visit_maps_link {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding-top: 4px;
    color: var(--acento);
}

.visit_section .visit_schedule_row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 16px;
}

.visit_section .visit_schedule_row:first-of-type {
    padding-top: 2px;
}

.visit_section .visit_schedule_day {
    color: var(--text-primary);
    font-weight: 600;
}

.visit_section .visit_schedule_hours {
    color: var(--text-muted);
}

.visit_section .visit_schedule_closed {
    color: var(--acento);
}

.visit_section .visit_schedule_note {
    font-size: 14px;
    color: var(--text-dimmer);
    line-height: 1.5;
    padding-top: 6px;
}

.visit_section .visit_contact_wa {
    font-family: 'Archivo Black', sans-serif;
    font-size: 20px;
    color: var(--text-primary);
    transition: color 0.15s ease;
}

.visit_section .visit_contact_wa:hover {
    color: var(--acento);
}

.visit_section .visit_contact_ig {
    font-size: 15px;
    color: var(--acento);
}

.visit_section .visit_map_wrapper {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background: var(--bg-card-alt);
}

.visit_section .visit_map_iframe {
    width: 100%;
    height: clamp(220px, 26vw, 340px);
    border: 0;
    display: block;
    filter: grayscale(0.25);
}

.visit_section .visit_map_label {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: var(--bg-dark);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 18px;
    border-radius: var(--radius-pill);
    pointer-events: none;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta_section {
    position: relative;
    overflow: hidden;
    padding: clamp(64px, 10vw, 130px) clamp(16px, 4vw, 48px);
    text-align: center;
}

.cta_section .cta_bg {
    position: absolute;
    inset: 0;
    opacity: 0.55;
}

.cta_section .cta_bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta_section .cta_overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at 50% 60%,
        rgba(10, 10, 11, 0.35) 0%,
        rgba(10, 10, 11, 0.80) 72%
    );
}

.cta_section .cta_content {
    position: relative;
    display: grid;
    gap: 26px;
    justify-items: center;
    max-width: 760px;
    margin: 0 auto;
}

.cta_section .cta_title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(36px, 7vw, 84px);
    line-height: 0.92;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    text-wrap: balance;
}

.cta_section .cta_subtitle {
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.55;
    color: #C9C4BC;
    max-width: 520px;
    text-wrap: pretty;
}

.cta_section .cta_button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--acento);
    color: #0A0A0B;
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(16px, 2vw, 19px);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 21px 34px;
    border-radius: var(--radius-pill);
    min-height: 58px;
    transition: background 0.15s ease;
}

.cta_section .cta_button:hover {
    background: #FFFFFF;
    color: #0A0A0B;
}
