:root {
    --bg: #faf9f7;
    --text: #2B2B2B;
    --muted: #6F6A64;
    --accent-dark: #C05621;
    --accent-light: #F4A261;
    --white: #FFFFFF;
    --border: rgba(43,43,43,0.12);
    --shadow: 0 18px 45px rgba(43,43,43,0.08);
    --radius: 24px;
}
header {
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 6%;
    background: rgba(250, 249, 247, 0.95);
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid var(--border);
}
.logo {
    height: 50px;
    width: auto;
}
nav {
    margin-left: auto;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 16px;
    margin: 0;
    padding: 0;
}
nav a {
    color: var(--text);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 4px 6px;
    opacity: 0.8;
}
nav a:hover {
    color: var(--accent-dark);
    opacity: 1;
}
.hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    width: 85%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}
.title-block {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
}
.title-block h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin: 0;
    line-height: 0.9;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
}
.title-block h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
    color: #faf9f7;
    margin: 0;
    line-height: 1;
    margin-top: 1px;
    align-self: flex-end;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}
.hero-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    max-width: 500px;
    margin: 0;
    color: white;
    line-height: 1.5;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}
h1, h2, h3, p {
    margin-top: 0;
} 
p {
    font-family: 'Montserrat, san-serif';
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
}
main {
    width: 100%;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    background-color: #faf9f7;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
}
img {
    max-width: 100%;
    display: block;
}
.page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 32px 40px;
}
.intro-section {
    max-width: 900px;
    margin: 0 auto 100px;
    text-align: center;
}

.intro-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    color: var(--text);
}

.intro-section p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.12rem;
    line-height: 1.8;
    color: var(--muted);
}
.section-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.14rem;
    text-transform: uppercase;
    color: #8F3F17;
}
.services-section {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center;
    margin-bottom: 100px;
}
.services-copy h2, .cta-section h2 {
    margin: 0 0 18px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 4vw, 4.4rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--text);
}
.mission {
    max-width: 540px;
    margin: 0 0 32px;
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--muted);
}
.service-list {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    display: grid;
    gap: 20px;
}
.service-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.service-list li {
    margin-bottom: 6px;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.service-list li:last-child {
    border-bottom: 0;
}
.service-list h3 {
    margin-bottom: 6px;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}
.service-list p {
    margin: 0;
    line-height: 1.6;
    color: var(--muted);
}
.services-visual {
    display: flex;
    justify-content: center;
}
.image-frame {
    position: relative;
    width: 100%;
    max-width: 560px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow);
    background: #eee;
}
.image-frame img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}
.image-frame:hover img {
    transform: scale(1.04);
}
.image-overlay-text {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(
    to right, 
    rgba(250,249,247,0),
    rgba(250,249,247,0.9),
    rgba(250,249,247,0)
    );
    z-index: 2;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 800;
}
.cta-section {
    text-align: center;
    padding: 80px 20p 90px;
}
.cta-section p {
    max-width: 760px;
    margin: 0 auto 28px;
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--muted);
}
.cta-button {
    display: inline-block;
    padding: 16px 34px;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--accent-dark), var(--accent-light));
    box-shadow: 0 14px 30px rgba(192,86,33,0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(192,86,33,0.3);
}
.footer {
    padding: 30px 0 10px;
    text-align: center;
}
.contact-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.contact-item {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
}
.contact-item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;

    background: linear-gradient(135deg, var(--accent-dark), var(--accent-light));
    color: white;

    font-size: 1.2rem;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent-light));
    color: var(--white);
    font-size: 0.9rem;
}
.location {
    margin: 8px 0 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: var(--text);
}
.copyright {
    margin: 0;
    font-size: 0.92rem;
    color: var(--muted);
}

.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 6%;
}

.about-hero {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 90px;
}

.about-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    color: var(--text);
}

.about-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--muted);
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 100px;
}

.about-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.about-copy h2,
.values-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
    margin-bottom: 24px;
    color: var(--text);
}

.about-copy p {
    margin-bottom: 22px;
    line-height: 1.8;
    color: var(--muted);
}

.values-section {
    text-align: center;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-top: 40px;
}

.values-list div {
    padding: 30px;
    border-radius: 24px;
    background: rgba(255,255,255,0.65);
    border: 1px solid var(--border);
}

.values-list h3 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 12px;
    color: var(--accent-dark);
}

.values-list p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}


.services-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 6%;
}

.services-hero {
    max-width: 900px;
    margin-bottom: 90px;
}

.services-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.7rem, 6vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    margin-bottom: 26px;
    color: var(--text);
}

.services-hero p {
    max-width: 720px;
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--muted);
}

.services-table-section {
    margin-bottom: 110px;
}

.services-table {
    width: 100%;
    border-collapse: collapse;
}

.services-table thead {
    display: none;
}

.services-table,
.services-table tbody,
.services-table tr,
.services-table td {
    display: block;
}

.services-table tr {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
}

.services-table tr:last-child {
    border-bottom: 1px solid var(--border);
}

.services-table td {
    padding: 0;
    border: none;
    color: var(--muted);
    line-height: 1.5;
}

.services-table td:first-child {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    color: var(--accent-dark);
    grid-row: 1 / span 3;
}

.services-table td:nth-child(2) {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
    line-height: 1;
}

.services-table td:nth-child(3) {
    max-width: 760px;
    margin: 0;
    line-height: 1.8;
    color: var(--muted);
}

.services-table td:nth-child(4) {
    grid-column: 2;
}

.services-table ul {
    margin: 12px 0 0;
    padding-left: 20px;
    color: var(--muted);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
}

.services-table li {
    margin-bottom: 4px;
}


.process-section {
    text-align: center;
    margin-bottom: 90px;
}

.process-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    margin-bottom: 40px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.process-grid div {
    padding: 30px;
    border-radius: 24px;
    background: rgba(255,255,255,0.65);
    border: 1px solid var(--border);
}

.process-grid h3 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 12px;
    color: var(--accent-dark);
}

.process-grid p {
    margin: 0;
    line-height: 1.7;
    color: var(--muted);
}


.portfolio-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 6%;
}

.portfolio-hero {
    max-width: 850px;
    margin-bottom: 80px;
}

.portfolio-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.7rem, 6vw, 5.2rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    margin-bottom: 24px;
    color: var(--text);
}

.portfolio-hero p {
    max-width: 700px;
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--muted);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
    margin-bottom: 100px;
}

.portfolio-card {
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.portfolio-card img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-card div {
    padding: 28px;
}

.portfolio-card span {
    display: inline-block;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-dark);
}

.portfolio-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--text);
}

.portfolio-card p {
    margin: 0;
    line-height: 1.7;
    color: var(--muted);
}


.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 6%;
}

.contact-hero {
    max-width: 850px;
    margin-bottom: 70px;
}

.contact-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    margin-bottom: 24px;
    color: var(--text);
}

.contact-hero p {
    max-width: 700px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--muted);
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 18px;
    color: var(--text);
}

.contact-info p {
    color: var(--muted);
    line-height: 1.8;
}

.booking-form {
    display: grid;
    gap: 16px;
    padding: 36px;
    border-radius: 28px;
    background: #FFFFFFB3;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.booking-form label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--text);
    background-color: #FAF9F7;
}

.booking-form textarea {
    resize: vertical;
}

.booking-form button {
    border: none;
    cursor: pointer;
    margin-top: 12px;
}

.video-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
    margin-bottom: 100px;
}

.video-card {
    overflow: hidden;
    border-radius: 28px;
    background: #FFFFFFB3;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-6px);
}

.video-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.video-card div {
    padding: 28px;
}

.video-card span {
    display: inline-block;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-dark);
}

.video-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--text);
}

.video-card p {
    color: var(--muted);
}

.video-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: #000000CC;
    z-index: 999;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.video-box {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.video-box video {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 50px #00000080;
}

.close-video {
    position: absolute;
    top: -48px;
    right: 0;
    border: none;
    background: none;
    color: #FFFFFF;
    font-size: 2.5rem;
    cursor: pointer;
}

@media (max-width: 760px) {
    .video-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .video-card img {
        height: 340px;
    }
}

@media (max-width: 800px) {
    .contact-section {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 28px;
    }
}
@media (max-width: 760px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card img {
        height: 340px;
    }
}

@media (max-width: 760px) {
    .service-detail {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 800px) {
    .about-section,
    .values-list {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 420px;
    }
}
@media (max-width: 980px) {
    .services-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .services-copy {
        order: 2;
    }
    .services-visual {
        order: 1;
    }
    .image-frame img {
        height:  500px;
    }
    .services-copy, .mission, .service-card {
        max-width: 100%;
    }
}
@media (max-width: 640px) {
    .page {
        padding: 40px 20px 28px;
    }
    .image-frame img {
        height: 380px;
    }
    .image-overlay-text {
        font-size: 2rem;
        padding: 10px 16px;
    }
    .contact-grid {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 6px;
    }
    .contact-item {
        width: 100%;
        justify-content: center;
    }
     .contact-item a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .hero {
        height: 75px;
    }
    .hero-text {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .title-block {
        align-items: center;
    }
    .title-block h1 {
        font-size: 3.5rem;
    }
    .title-block h2 {
        font-size: 2rem;
        align-self: center;
    }
    .hero-text p {
        font-size: 1rem;
    }
}
@media (max-width: 760px) {
    .services-table tr {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .services-table td:first-child,
    .services-table td:nth-child(4) {
        grid-column: 1;
    }
}
