@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Manrope:wght@200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 226, 208, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: #222;
    transition: 0.3s;
}

nav a:hover {
    color: #9f7a60;
}

.header-actions a {
    text-decoration: none;
    color: white;
    background-color: #1f1f1f;
    padding: 12px 24px;
    border-radius: 10px;
    transition: 0.3s;
}

.header-actions a:hover {
    background: #333;
    transform: translateY(-3px);
}

.logo h1 {
    font-size: 44px;
}

.logo p {
    font-size: 14px;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 100px;
}

.hero-content {
    flex: 0.9;
    max-width: 500px;
}

.hero-image {
    flex: 1.1;
    height: 550px;
}

.hero {
    padding: 30px 0 20px;
}

.hero-content h2 {
    font-size: 52px;
    line-height: 1.3;
    margin: 25px 0 30px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
}

.hero-subtitle {
    letter-spacing: 4px;
    font-size: 14px;
}

.hero-content a {
    display: inline-block;
    margin-top: 50px;
    padding: 18px 36px;
    background: #111;
    color: white;
    text-decoration: none;
    border-radius: 14px;
    transition: 0.3s;
}

.hero-content a:hover {
    background: #333;
    transform: translateY(-3px);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 60px;
    display: block;
}

body {
    font-family: "Manrope", sans-serif;
    background-image: url("../images/background.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

h1,
h2 {
    font-family: "Cormorant Garamond", serif;
}
.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f5ece6;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.service-link {
    text-decoration: none;
    color: #9f7a60;
    font-weight: 700;
    margin-top: 35px;
}

.section-title p {
    font-size: 40px;
    letter-spacing: 4px;
}

.section-title h2 {
    font-size: 38px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 18px;
    line-height: 1.4;
}

.service-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.service-icon i {
    font-size: 28px;
    color: #9f7a60;
}

.gallery {
    padding: 140px 0;
}

.gallery-wrapper {
    overflow: hidden;
    margin-top: 80px;
    padding: 0 40px;
}

.gallery-track {
    display: flex;
    gap: 30px;
    animation: slideLeft 25s linear infinite;
}

.gallery-item {
    flex: 0 0 280px;
    height: 220px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes slideLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.gallery-track:last-child {
    animation-direction: reverse;
    margin-top: 30px;
}

.gallery-item:hover {
    transform: translateY(-8px);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.review-card {
    background: #fcfaf7;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.review-stars {
    color: #d4af37;
    font-size: 19px;
}

.review-text {
    color: #556;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
    font-size: 19px;
}

.review-author {
    margin-top: auto;
    color: #191818;
    font-size: 16px;
    font-weight: bold;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 16px;
}

.services {
    padding: 140px 0;
}

.reviews {
    padding: 140px 0;
}

.review-source i {
    color: #4285F4;
}

.review-source span {
    font-weight: 800;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 60px;
    max-height: 500px;
    align-items: start;
}

.contact-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #f5ece6;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #9f7a60;
}

.contact-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-text p {
    color: #666;
    line-height: 1.8;
}
.contact-text a {
    color: #666;
    text-decoration: none;
    line-height: 1.8;
}

.contact-text a:hover {
    color: #9f7a60;
}

.contact-map {
    background: #ddd;
    border-radius: 24px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.cta p {
    font-size: 42px;
    letter-spacing: 4px;
    line-height: 1.15;
}

.cta h2 {
    font-size: 30px;
    line-height: 1.5;
    margin-top: 20px;
}

.cta-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    background: #fcfaf7;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.cta {
    padding: 120px 0;
}

.cta-button {
    display: inline-block;
    margin-top: 35px;
    padding: 16px 34px;
    text-decoration: none;
    color: white;
    background: #1f1f1f;
    border-radius: 12px;
    transition: 0.3s;
}

.cta-button:hover {
    background: #9f7a60;
    transform: translateY(-3px);
}

.cta-image {
    height: 100%;
    min-height: 500px;
}

.cta-text {
    padding: 70px 60px;
}

.cta-eyebrow {
    display: block;
    font-size: 16px;
    letter-spacing: 4px;
    color: #9f7a60;
    margin-bottom: 20px;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer {
    background: #1f1f1f;
    color: #fff;
    padding: 80px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand h2 {
    font-size: 32px;
    margin-bottom: 5px;
}

.footer-brand p {
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer-brand span {
    color: #cfcfcf;
    font-size: 15px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-column a {
    color: #cfcfcf;
    text-decoration: none;
    transition: 0.3s;
}

.footer-column a:hover {
    color: #fff;
}

.footer-column p {
    color: #cfcfcf;
    margin: 0;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 13px;
}
.header-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}
.menu-toggle {
    display: none;
}
/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 600px) {
    /* GLOBAL */
    .container {
        width: 100%;
        padding: 0 20px;
    }
    /* HEADER */
    header {
        padding: 10px 0;
    }
    .header-container {
        position: relative;
        flex-wrap: nowrap;
        gap: 0;
    }
    .logo h1 {
        font-size: 28px;
    }
    .logo p {
        font-size: 9px;
    }
    .header-menu {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        width: 100%;
        padding: 25px 20px;
        background: rgba(250, 226, 208, 0.98);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        border-radius: 0 0 20px 20px;
    }
    .header-menu.active {
        display: block;
    }
    .header-menu nav ul {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
    .header-menu nav a {
        font-size: 16px;
    }
    .header-actions {
        display: block;
        margin-top: 25px;
    }
    .header-actions a {
        display: inline-block;
        padding: 12px 22px;
        font-size: 14px;
    }
    .menu-toggle {
        display: block;
        margin-left: auto;
        border: none;
        background: transparent;
        font-size: 24px;
        color: #1f1f1f;
        cursor: pointer;
    }
    /* HERO */
    .hero {
        padding: 40px 0 45px;
    }
    .hero-container {
        flex-direction: column;
        gap: 25px;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-content h2 {
        font-size: 42px;
        line-height: 1.15;
        margin: 20px 0 25px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .hero-content a {
        margin-top: 35px;
        padding: 15px 28px;
    }
    .hero-image {
        width: 100%;
        height: 320px;
    }
    .hero-image img {
        border-radius: 35px;
    }
    /* SECTION TITLES */
    .section-title {
        margin-bottom: 40px;
    }
    .section-title p {
        font-size: 25px;
        letter-spacing: 3px;
    }
    .section-title h2 {
        font-size: 28px;
    }
    /* SERVICES */
    .services {
        padding: 45px 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 18px;
    }
    .service-card {
        min-height: 0;
        padding: 24px;
        max-width: 300px;
        margin: 0 auto;
    }
    .service-link {
        margin-top: 25px;
    }
    /* GALLERY */
    .gallery {
        padding: 45px 0;
    }
    .gallery-wrapper {
        margin-top: 40px;
        padding: 0;
    }
    .gallery-track {
        gap: 12px;
        animation-duration: 18s;
    }
    .gallery-item {
        flex: 0 0 220px;
        height: 165px;
        border-radius: 16px;
    }
    /* REVIEWS */
    .reviews {
        padding: 55px 0;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
        padding: 0 18px;
    }
    .review-card {
        padding: 24px;
    }
    .review-text {
        font-size: 16px;
    }
    /* CONTACT */
    .contact {
         padding: 45px 0 80px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-height: none;
    }
    .contact-card {
        padding: 30px;
    }
    .contact-map {
        height: 350px;
    }
    /* CTA */
    .cta {
        padding: 80px 0;
    }
    .cta-content {
        grid-template-columns: 1fr;
        border-radius: 25px;
    }
    .cta-text {
        padding: 45px 30px;
    }
    .cta p {
        font-size: 30px;
    }
    .cta h2 {
        font-size: 25px;
        line-height: 1.4;
    }
    .cta-image {
        min-height: 350px;
    }
    /* FOOTER */
    .footer {
        padding: 60px 0 25px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

html {
    scroll-behavior: smooth;
}
/* =========================
   OKNO UMÓW WIZYTĘ
   ========================= */

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.booking-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.booking-box {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 500px;
    padding: 50px;
    background: #fcfaf7;
    border-radius: 28px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.booking-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #f1e8e2;
    color: #222;
    font-size: 20px;
    cursor: pointer;
}

.booking-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #9f7a60;
    font-size: 13px;
    letter-spacing: 4px;
}

.booking-box h2 {
    margin-bottom: 15px;
    font-size: 42px;
}

.booking-intro {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.7;
}

.booking-phone,
.booking-form-link {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    margin-top: 15px;
    border-radius: 16px;
    background: white;
    color: #222;
    text-decoration: none;
    transition: 0.3s;
}

.booking-phone:hover,
.booking-form-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.booking-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5ece6;
    color: #9f7a60;
    font-size: 20px;
}

.booking-phone strong,
.booking-form-link strong {
    display: block;
    margin-bottom: 4px;
}

.booking-phone small,
.booking-form-link small {
    color: #777;
}

.booking-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    color: #999;
}

.booking-divider::before,
.booking-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd;
}

.booking-divider span {
    font-size: 13px;
}
@media (max-width: 600px) {
    .booking-box {
        width: calc(100% - 30px);
        padding: 40px 25px;
    }
    .booking-box h2 {
        font-size: 34px;
    }
}
/* =========================================
   OKNO - DOWIEDZ SIĘ WIĘCEJ
   ========================================= */

.service-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: none;
}

.service-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.service-box {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 500px;
    padding: 50px;
    background: #fcfaf7;
    border-radius: 28px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.service-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #f1e8e2;
    color: #222;
    font-size: 20px;
    cursor: pointer;
    transition: 0.2s;
}

.service-close:hover {
    background: #e8d9cf;
    transform: rotate(90deg);
}

.service-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #9f7a60;
    font-size: 13px;
    letter-spacing: 4px;
}

.service-box h2 {
    margin-bottom: 18px;
    font-size: 42px;
    line-height: 1.15;
}

.service-box p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-modal-button {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 12px;
    background: #1f1f1f;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.service-modal-button:hover {
    background: #9f7a60;
    transform: translateY(-3px);
}

/* MOBILE */

@media (max-width: 600px) {
    .service-box {
        width: calc(100% - 30px);
        padding: 40px 25px;
        border-radius: 25px;
    }
    .service-box h2 {
        font-size: 34px;
    }
    .service-box p {
        font-size: 15px;
    }
    .service-modal-button {
        width: 100%;
        text-align: center;
    }
}
.section-ornament {
    width: min(700px, 75%);
    height: 70px;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
}
.section-ornament img {
    display: block;
    width: 100%;
    height: 70px;
    object-fit: cover;
    object-position: center;
    opacity: 0.72;
}
.gallery-ornament {
    width: min(700px, 75%);
    height: 70px;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
}

.gallery-ornament img {
    display: block;
    width: 100%;
    height: 70px;
    object-fit: cover;
    object-position: center;
    opacity: 0.72;
}

@media (max-width: 768px) {
    .section-ornament,
    .gallery-ornament {
        display: none;
    }
}
/* =========================
   ABOUT / O NAS
========================= */

.about {
    padding: 120px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-image {
    width: 100%;
    max-width: 560px;
    border-radius: 35px;
    overflow: hidden;
    clip-path: inset(0 round 35px);
}

.about-image img {
    height: 560px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 35px;
    display: block;
    margin: 0 auto;
}

.about-text {
    max-width: 500px;
    padding: 20px 0;
}

.about-eyebrow {
    font-size: 16px;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.about-text h2 {
    margin: 0 0 28px;
    font-family: "Cormorant Garamond", serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 1px;
}

.about-text p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.9;
    color: #666;
}

/* =========================
   ABOUT - SIGNATURE
========================= */

.about-signature {
    display: block;
    margin: 60px auto 0;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-style: italic;
    color: #9a7860;
}

/* MOBILE */

@media (max-width: 600px) {
    .about {
        padding: 70px 0 35px;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image {
        max-width: 100%;
    }
    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 25px;
    }
    .about-text {
        max-width: 100%;
        padding: 0 5px;
    }
    .about-text h2 {
        font-size: 38px;
    }
    .about-text p {
        font-size: 15px;
        line-height: 1.8;
    }
    .about-signature {
        font-size: 24px;
    }
}
/* =========================
   ABOUT - TEAM
========================= */

.about-team {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    max-width: 1100px;
    margin: 90px auto 0;
}

.team-person {
    max-width: 500px;
}

.team-person-role {
    display: block;
    margin-bottom: 18px;
    color: #9a7860;
    font-size: 18px;
    letter-spacing: 5px;
}

.team-person h3 {
    margin: 0 0 22px;
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 400;
}

.team-person p {
    margin: 0 0 18px;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

/* =========================
   ABOUT - VALUES
========================= */

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1100px;
    margin: 90px auto 0;
    padding-top: 50px;
    border-top: 1px solid rgba(154, 120, 96, 0.25);
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.about-value-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #f5e9df;
    color: #9a7860;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.about-value h3 {
    margin: 3px 0 10px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-value p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* =========================
   ABOUT - MOBILE
========================= */

@media (max-width: 600px) {
    .about-team {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 40px;
        padding: 0 5px;
    }
    .team-person {
        max-width: 100%;
    }
    .team-person h3 {
        font-size: 28px;
    }
    .team-person p {
        font-size: 15px;
        line-height: 1.8;
    }
     .team-person p:nth-of-type(2) {
        display: none;
    }
    .about-values {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 45px;
        padding: 35px 5px 0;
    }
    .about-value {
        gap: 16px;
    }
}
/* =========================
   ABOUT - ORNAMENTY DESKTOP
   ========================= */

.about-ornament {
    width: min(700px, 75%);
    height: 70px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.about-ornament img {
    display: block;
    width: 100%;
    height: 70px;
    object-fit: cover;
    object-position: center;
    opacity: 0.72;
}

.about-ornament-top {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.about-ornament-bottom {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
}

/* MOBILE */

@media (max-width: 768px) {
    .about-ornament {
        display: none;
    }
}
.services,
.gallery,
.reviews,
.contact,
.about {
    position: relative;
}
/* =========================
   SOCIAL MEDIA - HEADER
   ========================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-social-link {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    color: #222 !important;
    background: transparent !important;

    padding: 0 !important;
    border-radius: 0 !important;

    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.header-social-link:hover {
    color: #9f7a60 !important;
    transform: translateY(-2px);
}

.header-social-link i {
    font-size: 17px;
}
/* =========================
   SOCIAL MEDIA - FOOTER
   ========================= */

.footer-socials {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #cfcfcf;
    text-decoration: none;

    font-size: 14px;

    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.footer-socials i {
    font-size: 16px;
}
@media (max-width: 600px) {

    .header-actions {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-top: 25px;
    }

    .header-socials {
        gap: 18px;
    }

}
.services > .section-ornament {
    top: 35px;
}
.services > .section-ornament {
    top: 35px;
}

.contact {
    padding: 140px 0;
}