/* =========================================================
   OLGD COIFFURE
   Mobile First
   ========================================================= */

:root {
    --blue: #0B1F3A;
    --blue-light: #163A68;
    --red: #C7354A;
    --red-dark: #9E2437;

    --white: #FFFFFF;
    --off-white: #F7F8FA;
    --soft: #EEF1F5;

    --text: #142033;
    --muted: #697386;

    --line: rgba(11, 31, 58, 0.11);

    --radius: 18px;
    --shadow: 0 20px 50px rgba(11, 31, 58, 0.10);

    --font-body: "DM Sans", sans-serif;
    --font-display: "Playfair Display", serif;
}


/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

::selection {
    background: var(--red);
    color: white;
}


/* ================= HEADER ================= */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 20px;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);

    border-bottom: 1px solid var(--line);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    background: var(--blue);
    color: white;

    font-family: var(--font-display);
    font-size: 21px;

    border-radius: 50%;
}

.logo strong {
    display: block;

    font-size: 16px;
    letter-spacing: 2px;

    color: var(--blue);
}

.logo small {
    display: block;

    margin-top: -2px;

    font-size: 7px;
    font-weight: 700;
    letter-spacing: 3px;

    color: var(--red);
}

.nav {
    position: fixed;

    top: 72px;
    left: 0;

    width: 100%;

    padding: 25px 20px 30px;

    display: flex;
    flex-direction: column;
    gap: 20px;

    background: white;

    transform: translateY(-120%);
    transition: transform .4s ease;

    box-shadow: var(--shadow);
}

.nav.active {
    transform: translateY(0);
}

.nav a {
    font-size: 15px;
    font-weight: 600;
}

.nav-button {
    display: flex;
    justify-content: center;

    padding: 14px;

    color: white !important;
    background: var(--red);

    border-radius: 10px;
}

.menu-toggle {
    width: 43px;
    height: 43px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    border: 0;
    background: var(--soft);

    border-radius: 10px;
}

.menu-toggle span {
    width: 19px;
    height: 2px;

    background: var(--blue);

    transition: .3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ================= HERO ================= */

.hero {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    color: white;
}

.hero-image,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-image img {
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(11,31,58,.20) 0%,
            rgba(11,31,58,.45) 40%,
            rgba(11,31,58,.94) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;

    padding: 0 22px 90px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 18px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.eyebrow span {
    width: 24px;
    height: 2px;
    background: var(--red);
}

.hero h1 {
    max-width: 600px;

    font-family: var(--font-display);
    font-size: clamp(48px, 13vw, 85px);
    font-weight: 600;
    line-height: .95;

    margin-bottom: 23px;
}

.hero h1 em {
    display: block;

    color: #F7C9D0;
    font-style: italic;
}

.hero p {
    max-width: 470px;

    color: rgba(255,255,255,.82);

    font-size: 15px;
    line-height: 1.7;

    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    padding: 0 20px;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 700;

    transition: .3s;
}

.btn-primary {
    background: var(--red);
    color: white;
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.btn-light {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.35);

    backdrop-filter: blur(8px);
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 28px;

    font-size: 11px;
    color: rgba(255,255,255,.75);
}

.stars {
    color: #FFD46A;
    letter-spacing: 2px;
}

.hero-scroll {
    display: none;
}


/* ================= QUICK INFO ================= */

.quick-info {
    display: grid;
    grid-template-columns: 1fr;

    background: var(--blue);
    color: white;
}

.quick-item {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 18px 22px;

    border-bottom: 1px solid rgba(255,255,255,.1);
}

.quick-icon {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    color: #F3A9B4;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
}

.quick-item strong,
.quick-item small {
    display: block;
}

.quick-item strong {
    font-size: 13px;
}

.quick-item small {
    margin-top: 2px;

    color: rgba(255,255,255,.55);

    font-size: 11px;
}


/* ================= GLOBAL ================= */

.section {
    padding: 80px 20px;
}

.section-label {
    margin-bottom: 18px;

    color: var(--red);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.section h2 {
    font-family: var(--font-display);

    font-size: clamp(38px, 10vw, 64px);
    line-height: 1.02;

    color: var(--blue);
}

.section h2 span {
    color: var(--red);
    font-style: italic;
}

.small-title {
    margin-bottom: 12px;

    color: var(--muted);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ================= INTRO ================= */

.intro {
    background: var(--off-white);
}

.intro-grid {
    display: grid;
    gap: 35px;
}

.intro-text {
    max-width: 570px;
}

.intro-text p {
    margin-bottom: 17px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.8;
}

.text-link {
    display: inline-flex;
    gap: 15px;

    margin-top: 10px;

    color: var(--blue);

    font-size: 13px;
    font-weight: 800;
}

.text-link span {
    color: var(--red);
}


/* ================= SERVICES ================= */

.services {
    background: white;
}

.section-heading {
    display: grid;
    gap: 18px;

    margin-bottom: 38px;
}

.section-heading > p {
    max-width: 440px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    gap: 15px;
}

.service-card {
    position: relative;

    overflow: hidden;

    padding: 28px;

    min-height: 280px;

    background: var(--off-white);

    border: 1px solid var(--line);
    border-radius: var(--radius);

    transition: .4s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.service-card.featured {
    padding: 0;

    color: white;
    background: var(--blue);
}

.service-number {
    position: absolute;

    top: 22px;
    right: 24px;

    color: var(--muted);

    font-size: 11px;
    font-weight: 800;
}

.featured .service-number {
    z-index: 3;
    color: rgba(255,255,255,.7);
}

.service-image {
    height: 190px;
}

.service-image img {
    height: 100%;
    object-fit: cover;
}

.featured .service-content {
    padding: 24px;
}

.service-icon {
    width: 47px;
    height: 47px;

    display: grid;
    place-items: center;

    margin-bottom: 35px;

    color: var(--red);

    background: white;

    border-radius: 50%;

    font-size: 20px;
}

.service-card h3 {
    margin-bottom: 10px;

    color: var(--blue);

    font-family: var(--font-display);
    font-size: 25px;
}

.featured h3 {
    color: white;
}

.service-card p {
    max-width: 340px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.65;
}

.featured p {
    color: rgba(255,255,255,.67);
}

.service-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 22px;

    font-size: 11px;
    font-weight: 700;
}

.arrow {
    color: var(--red);
    font-size: 18px;
}


/* ================= PRICES ================= */

.prices {
    background: var(--off-white);
}

.centered {
    text-align: center;
}

.centered > p {
    margin: 15px auto 0;
}

.price-grid {
    display: grid;
    gap: 15px;
}

.price-card {
    position: relative;

    padding: 28px 24px;

    background: white;

    border: 1px solid var(--line);
    border-radius: var(--radius);

    box-shadow: 0 10px 30px rgba(11,31,58,.04);
}

.price-card.popular {
    border: 2px solid var(--red);
}

.popular-tag {
    position: absolute;

    top: 0;
    right: 0;

    padding: 8px 12px;

    background: var(--red);
    color: white;

    border-radius: 0 16px 0 10px;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.price-top {
    display: flex;
    justify-content: space-between;

    margin-bottom: 22px;

    color: var(--red);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.price-top small {
    color: var(--muted);
}

.price-card h3 {
    margin-bottom: 16px;

    color: var(--blue);

    font-family: var(--font-display);
    font-size: 25px;
}

.price-card strong {
    display: block;

    color: var(--blue);

    font-size: 28px;
}

.price-card strong small {
    font-size: 10px;
    color: var(--muted);
}

.price-card ul {
    list-style: none;

    margin: 22px 0;
}

.price-card li {
    padding: 8px 0;

    border-bottom: 1px solid var(--line);

    color: var(--muted);

    font-size: 12px;
}

.price-card li::before {
    content: "✓";

    margin-right: 8px;

    color: var(--red);
    font-weight: 800;
}

.price-card a {
    display: block;

    padding-top: 16px;

    color: var(--blue);

    font-size: 12px;
    font-weight: 800;
}


/* ================= GALLERY ================= */

.gallery {
    background: white;
}

.filters {
    display: flex;
    gap: 8px;

    overflow-x: auto;

    margin-bottom: 25px;
    padding-bottom: 5px;

    scrollbar-width: none;
}

.filters::-webkit-scrollbar {
    display: none;
}

.filter {
    flex: 0 0 auto;

    padding: 10px 16px;

    background: var(--soft);
    color: var(--muted);

    border: 0;
    border-radius: 100px;

    font-size: 11px;
    font-weight: 700;
}

.filter.active {
    background: var(--blue);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.gallery-item {
    position: relative;

    height: 230px;

    overflow: hidden;

    border-radius: 12px;
}

.gallery-item.large {
    grid-column: span 2;
    height: 350px;
}

.gallery-item img {
    height: 100%;
    object-fit: cover;

    transition: transform .6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: auto 0 0;

    padding: 25px 18px 17px;

    color: white;

    background: linear-gradient(
        transparent,
        rgba(11,31,58,.85)
    );
}

.gallery-overlay span,
.gallery-overlay strong {
    display: block;
}

.gallery-overlay span {
    margin-bottom: 4px;

    color: #F3A9B4;

    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.gallery-overlay strong {
    font-family: var(--font-display);
    font-size: 18px;
}

.gallery-item.hidden {
    display: none;
}


/* ================= TESTIMONIAL ================= */

.testimonial {
    position: relative;

    padding: 90px 25px;

    overflow: hidden;

    text-align: center;

    color: white;
    background: var(--blue);
}

.quote-mark {
    position: absolute;

    top: 10px;
    left: 50%;

    transform: translateX(-50%);

    color: rgba(255,255,255,.06);

    font-family: var(--font-display);
    font-size: 180px;
}

.testimonial blockquote {
    position: relative;

    max-width: 800px;

    margin: auto;

    font-family: var(--font-display);
    font-size: clamp(27px, 6vw, 43px);
    line-height: 1.3;
}

.testimonial-author {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-top: 30px;
}

.author-avatar {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    background: var(--red);

    border-radius: 50%;

    font-weight: 700;
}

.testimonial-author strong,
.testimonial-author span {
    display: block;
    text-align: left;
}

.testimonial-author strong {
    font-size: 12px;
}

.testimonial-author span {
    margin-top: 2px;

    color: rgba(255,255,255,.5);

    font-size: 10px;
}


/* ================= PROCESS ================= */

.process {
    background: var(--off-white);
}

.process-grid {
    display: grid;
    gap: 15px;
}

.process-step {
    padding: 25px;

    background: white;

    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.process-step > span {
    color: var(--red);

    font-size: 11px;
    font-weight: 800;
}

.process-step h3 {
    margin: 20px 0 8px;

    color: var(--blue);

    font-family: var(--font-display);
    font-size: 23px;
}

.process-step p {
    color: var(--muted);

    font-size: 13px;
    line-height: 1.6;
}

.process-line {
    display: none;
}


/* ================= CONTACT ================= */

.contact {
    background: white;
}

.contact-card {
    display: grid;

    overflow: hidden;

    background: var(--blue);

    border-radius: 24px;

    box-shadow: var(--shadow);
}

.contact-info {
    padding: 40px 25px;

    color: white;
}

.contact-info h2 {
    color: white;
}

.contact-info h2 span {
    display: block;

    color: #F3A9B4;
    font-style: italic;
}

.contact-info > p {
    margin: 20px 0 25px;

    color: rgba(255,255,255,.65);

    font-size: 14px;
    line-height: 1.7;
}

.contact-whatsapp {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;

    color: white;
}

.contact-whatsapp span {
    color: #F3A9B4;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-whatsapp strong {
    font-size: 15px;
}

.booking-form {
    padding: 30px 25px;

    background: white;
}

.form-row {
    display: grid;
    gap: 15px;
}

.booking-form label {
    display: block;

    margin-bottom: 17px;

    color: var(--blue);

    font-size: 11px;
    font-weight: 800;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
    width: 100%;

    margin-top: 8px;
    padding: 14px 13px;

    color: var(--text);
    background: var(--off-white);

    border: 1px solid var(--line);
    border-radius: 9px;

    outline: none;

    font-size: 13px;
}

.booking-form textarea {
    resize: vertical;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
    border-color: var(--red);
}

.form-button {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 16px 18px;

    color: white;
    background: var(--red);

    border: 0;
    border-radius: 10px;

    font-size: 12px;
    font-weight: 800;

    transition: .3s;
}

.form-button:hover {
    background: var(--red-dark);
}

.form-note {
    display: block;

    margin-top: 12px;

    color: var(--muted);

    font-size: 9px;
}


/* ================= FOOTER ================= */

.footer {
    padding: 55px 20px 100px;

    color: white;
    background: #071629;
}

.footer-main {
    display: grid;
    gap: 35px;
}

.footer .logo strong {
    color: white;
}

.footer-brand p {
    margin-top: 18px;

    color: rgba(255,255,255,.5);

    font-size: 12px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h4 {
    margin-bottom: 5px;

    color: #F3A9B4;

    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-column a,
.footer-column span {
    color: rgba(255,255,255,.65);

    font-size: 12px;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;

    margin-top: 45px;
    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.1);

    color: rgba(255,255,255,.4);

    font-size: 9px;
}


/* ================= MOBILE CTA ================= */

.mobile-booking {
    position: fixed;

    bottom: 12px;
    left: 12px;
    right: 12px;

    z-index: 900;
}

.mobile-booking a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 15px;

    color: white;
    background: var(--red);

    border-radius: 12px;

    box-shadow: 0 10px 35px rgba(199,53,74,.35);

    font-size: 12px;
    font-weight: 800;
}


/* ================= ANIMATIONS ================= */

.reveal {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ================= TABLET ================= */

@media (min-width: 700px) {

    .header {
        padding: 0 35px;
    }

    .hero-content {
        padding: 0 50px 100px;
    }

    .hero-actions {
        flex-direction: row;
    }

    .quick-info {
        grid-template-columns: repeat(3, 1fr);
    }

    .quick-item {
        justify-content: center;
        border-right: 1px solid rgba(255,255,255,.1);
        border-bottom: 0;
    }

    .section {
        padding: 100px 50px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card.featured {
        grid-column: span 2;
    }

    .price-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
    }

    .contact-card {
        grid-template-columns: 1fr 1fr;
    }

    .contact-info {
        padding: 55px 45px;
    }

    .booking-form {
        padding: 45px;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer {
        padding-left: 50px;
        padding-right: 50px;
    }

    .footer-main {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .mobile-booking {
        display: none;
    }
}


/* ================= DESKTOP ================= */

@media (min-width: 1050px) {

    .header {
        height: 82px;
        padding: 0 65px;
    }

    .nav {
        position: static;

        width: auto;

        padding: 0;

        flex-direction: row;
        align-items: center;
        gap: 28px;

        background: transparent;

        transform: none;

        box-shadow: none;
    }

    .nav a {
        font-size: 12px;
    }

    .nav-button {
        padding: 12px 20px;
    }

    .menu-toggle {
        display: none;
    }

    .hero {
        min-height: 850px;
    }

    .hero-content {
        padding: 0 8vw 115px;
    }

    .hero h1 {
        font-size: clamp(70px, 8vw, 110px);
    }

    .hero-scroll {
        position: absolute;

        bottom: 40px;
        right: 7vw;

        display: flex;
        align-items: center;
        gap: 12px;

        color: rgba(255,255,255,.6);

        font-size: 8px;
        letter-spacing: 2px;

        z-index: 3;
    }

    .hero-scroll i {
        width: 40px;
        height: 1px;

        background: rgba(255,255,255,.5);
    }

    .section {
        padding: 130px max(60px, 8vw);
    }

    .intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 100px;
        align-items: end;
    }

    .section-heading {
        grid-template-columns: 1fr 1fr;
        align-items: end;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-card.featured {
        grid-column: span 2;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
        height: 470px;
    }

    .gallery-item {
        height: 229px;
    }

    .process-grid {
        grid-template-columns: 1fr auto 1fr auto 1fr;
        align-items: center;
    }

    .process-line {
        display: block;

        width: 60px;
        height: 1px;

        background: var(--line);
    }

    .process-step {
        min-height: 190px;
    }

    .contact-info {
        padding: 70px;
    }

    .booking-form {
        padding: 70px;
    }

    .footer {
        padding: 70px 8vw 35px;
    }
}


/* ================= REDUCED MOTION ================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}