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

:root {
    --brand-orange-strong: #cd8102;
    --brand-orange: #de9544;
    --brand-orange-light: #d9a66e;
    --brand-seashell: #fff8f3;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --font-title: 'Juana Regular', serif;
    --font-text: 'Codec Pro Regular', sans-serif;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--slate-800);
}

::-webkit-scrollbar-thumb {
    background-color: var(--brand-orange-light);
    border-radius: 10px;
    border: 2px solid var(--slate-800);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--brand-orange);
}

html {
    scrollbar-width: thin;
    scrollbar-color: var(--brand-orange-light) var(--slate-800);
}

body {
    font-family: var(--font-text);
    background: linear-gradient(to bottom right, var(--brand-seashell), #f5f5f4);
    color: var(--slate-800);
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
    font-style: italic;
    font-weight: 400;
}

section {
    padding: 2rem;
    scroll-margin-top: 5rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: var(--brand-orange-strong);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo-image {
    height: 3rem;
    cursor: pointer;
    margin-top: 10px;
}

.nav-menu {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    background: none;
    border: none;
    font-family: var(--font-text);
    color: var(--brand-seashell);
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--brand-orange-strong);
    transform: scale(1.05);
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background 0.2s;
}

.menu-toggle:hover {
    background: var(--brand-orange-light);
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.menu-icon {
    color: var(--brand-seashell);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--brand-orange-strong);
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    padding: 1rem;
    animation: slideDown 0.3s ease;
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-link-mobile {
    background: none;
    border: none;
    color: var(--brand-seashell);
    font-weight: 400;
    cursor: pointer;
    padding: 0.5rem;
    text-align: left;
    transition: all 0.2s;
    border-radius: 0.25rem;
}

.nav-link-mobile:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--brand-seashell);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--brand-seashell);
}

@media (min-width: 1024px) {
    .hero {
        min-height: 85vh;
    }

    .hero-image {
        object-position: 50% 60%;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
}

.hero-image.active {
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--brand-orange-strong), transparent);
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 1rem 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 400;
    color: var(--brand-seashell);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    color: var(--brand-seashell);
    max-width: 48rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding-top: 2rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-primary {
    background: transparent;
    color: var(--brand-seashell);
    border: 2px solid var(--brand-seashell);
    padding: 0.50rem 1.5rem;
    border-radius: 50px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--brand-orange-strong);
    border: none;
    color: var(--brand-seashell);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--brand-seashell);
    border: 2px solid var(--brand-seashell);
    padding: 0.50rem 1.5rem;
    border-radius: 50px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--brand-orange-strong);
    border: none;
    color: var(--brand-seashell);
    transform: translateY(-2px);
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-category {
    margin-bottom: 5rem;
}

.category-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.category-title {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 400;
    color: var(--brand-orange-strong);
    margin-bottom: 0.5rem;
}

.category-divider {
    height: 2px;
    width: 2rem;
    background: var(--brand-orange-strong);
    margin: 0 auto;
    border-radius: 9999px;
}

.category-divider.aesthetic {
    background: var(--brand-orange-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.services-grid .service-card {
    width: calc((100% - 1rem) / 2);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .services-grid {
        gap: 1.5rem;
    }

    .services-grid .service-card {
        width: calc((100% - 3rem) / 3);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        gap: 1.5rem;
    }

    .services-grid .service-card {
        width: calc((100% - 4.5rem) / 4);
    }
}

.services-grid.aesthetic-grid {
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .services-grid.aesthetic-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    position: relative;
    overflow: hidden;
    background: var(--brand-seashell);
    border: 1px solid hsl(32 30% 85% / 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: scaleIn 0.5s ease-out backwards;
}

.service-card:nth-child(1) {
    animation-delay: 0ms;
}

.service-card:nth-child(2) {
    animation-delay: 80ms;
}

.service-card:nth-child(3) {
    animation-delay: 160ms;
}

.service-card:nth-child(4) {
    animation-delay: 240ms;
}

.service-card:nth-child(5) {
    animation-delay: 320ms;
}

.service-card:nth-child(6) {
    animation-delay: 400ms;
}

.service-card:nth-child(7) {
    animation-delay: 480ms;
}

.service-card:nth-child(8) {
    animation-delay: 560ms;
}

.service-card:nth-child(9) {
    animation-delay: 640ms;
}

.service-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px -5px hsl(0 0% 0% / 0.1),
        0 8px 10px -6px hsl(0 0% 0% / 0.1);
    border-color: hsl(33 88% 42% / 0.5);
    background: hsl(0 0% 100%);
}

.service-card.aesthetic:hover {
    border-color: hsl(33 72% 50% / 0.5);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg,
            hsl(33 88% 42% / 0.1),
            transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card.aesthetic::before {
    background: linear-gradient(135deg,
            hsl(33 72% 50% / 0.1),
            transparent);
}

.service-icon {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    background: linear-gradient(135deg,
            hsl(33 88% 42% / 0.2),
            hsl(33 72% 50% / 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .service-icon {
        width: 4rem;
        height: 4rem;
    }
}

.service-icon.aesthetic {
    background: linear-gradient(135deg,
            hsl(33 72% 50% / 0.2),
            hsl(32 53% 65% / 0.2));
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: hsl(33 88% 42% / 0.2);
    filter: blur(24px);
    border-radius: 9999px;
    transition: background 0.3s ease;
}

.service-icon span.material-icons,
.service-icon span.material-symbols-outlined,
.service-icon svg {
    position: relative;
    font-size: 2rem;

    color: var(--brand-orange-strong);
    transition: color 0.3s ease;
}

@media (min-width: 768px) {

    .service-icon span.material-icons,
    .service-icon span.material-symbols-outlined {
        font-size: 2.25rem;
    }
}

.service-icon.aesthetic span.material-icons,
.service-icon.aesthetic span.material-symbols-outlined {
    color: var(--brand-orange-strong);
}

.service-name {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--brand-orange-strong);
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .service-name {
        font-size: 1rem;
    }
}

/* Section Divider */
.section-divider {
    position: relative;
    display: flex;
    align-items: center;
    margin: 4rem 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: hsl(32 30% 85%);
}

.divider-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    background: linear-gradient(to right,
            hsl(33 88% 42%),
            hsl(33 72% 50%));
    margin: 0 1rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(to bottom right, var(--brand-seashell), rgba(217, 166, 110, 0.1));
}

.gallery-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.gallery-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Professionals Section */
.professionals-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--brand-seashell) 0%, rgba(217, 166, 110, 0.1) 50%, var(--brand-seashell) 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-size: 3rem;
    font-weight: 400;
    color: var(--brand-orange-strong);
    margin-bottom: 1rem;
}

.title-divider {
    width: 6rem;
    height: 2px;
    background: linear-gradient(to right, var(--brand-orange-strong), var(--brand-orange), var(--brand-orange-light));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--slate-600);
    max-width: 42rem;
    margin: 0 auto;
}

/* Professionals Grid */
.professionals-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .professionals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .professionals-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Professional Card */
.professional-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.6s ease-out forwards;
}

.professional-card:nth-child(1) {
    animation-delay: 0s;
}

.professional-card:nth-child(2) {
    animation-delay: 0.15s;
}

.professional-card:nth-child(3) {
    animation-delay: 0.3s;
}

.professional-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(205, 129, 2, 0.15);
}

/* Professional Image */
.professional-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.professional-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.professional-card:hover .professional-image {
    transform: scale(1.1);
}

.professional-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(205, 129, 2, 0.9) 0%, rgba(205, 129, 2, 0.4) 40%, transparent 100%);
    opacity: 0.6;
    transition: opacity 0.5s;
}

.professional-card:hover .professional-overlay {
    opacity: 0.5;
}

/* Professional Info */
.professional-info {
    padding: 1.5rem;
}

.professional-name {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--brand-orange-strong);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

/* Professional Divider */
.professional-divider {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--brand-orange-strong), transparent);
}

.divider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(205, 129, 2, 0.6);
    transition: background 0.3s;
}

.professional-card:hover .divider-dot {
    background: var(--brand-orange-strong);
}

/* CTA Section */
.professionals-cta {
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.cta-text {
    color: var(--slate-600);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    background: var(--brand-orange-strong);
    color: var(--brand-seashell);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(205, 129, 2, 0.3);
}

.cta-button:hover {
    background: var(--brand-orange);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(205, 129, 2, 0.4);
}

.cta-button:active {
    transform: translateY(0) scale(1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }

    .professionals-section {
        padding: 4rem 0;
    }

    .professional-card {
        margin: 0 1rem;
    }

    .hero-subtitle br,
    .section-description br {
        display: none;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(to bottom right, var(--brand-seashell), rgba(217, 166, 110, 0.1));
}

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

@media (min-width: 768px) {
    .testimonials-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }

    .testimonial-card {
        width: calc((100% - 2rem) / 2);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }

    .testimonial-card {
        width: calc((100% - 4rem) / 3);
    }
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 0.8rem;
    border: 1px solid rgba(217, 166, 110, 0.2);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    position: absolute;
    top: -0.75rem;
    left: -0.75rem;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(to right, var(--brand-orange-strong), var(--brand-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    font-weight: 700;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.testimonial-comment {
    color: var(--slate-600);
    font-style: italic;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: var(--brand-orange-strong);
    color: var(--brand-seashell);
    padding: 4rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

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

.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-info {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-info svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-link {
    color: var(--brand-seashell);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--brand-orange-light);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--brand-seashell);
    transition: color 0.2s;
    text-decoration: none;
}

.footer-contact-item:hover {
    color: var(--brand-orange-light);
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid var(--slate-800);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-tymax-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.footer-tymax {
    font-weight: 500;
}

.footer-tymax-link:hover .footer-tymax {
    color: var(--brand-orange-light);
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
}