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

html {
    scroll-behavior: smooth;
}

h1, h2 {
    font-family: 'nasalization';
}

h3 {
    font-family: Montserrat;
}

p {
    font-family: Montserrat;
}

body {
    overflow-y: scroll;
    color: #111;
    font-family: Montserrat, sans-serif;
    line-height: 1.5;
    background-color: #FBF9F5;
}

/* ---- SECTION HEADING ACCENT ---- */
.services h2::after,
.gallery h2::after,
.about-values h2::after {
    content: '';
    display: block;
    width: 64px;
    height: 3px;
    background-color: #C9A84C;
    border-radius: 2px;
    margin: 18px auto 0;
}

.services-grid-section h2::after,
.about-story-text h2::after {
    content: '';
    display: block;
    width: 64px;
    height: 3px;
    background-color: #C9A84C;
    border-radius: 2px;
    margin: 16px 0 0;
}

.page-header h1::after {
    content: '';
    display: block;
    width: 64px;
    height: 3px;
    background-color: #C9A84C;
    border-radius: 2px;
    margin: 20px auto 0;
}

/* ---- HEADER / NAV ---- */
header {
    display: flex;
    align-items: center;
    padding: 8px 30px;
    position: sticky;
    top: 0;
    z-index: 100;
    justify-content: space-between;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.logo img {
    height: 50px;
    width: 50px;
    display: block;
}

nav ul {
    display: flex;
    list-style-type: none;
    align-items: center;
    gap: 40px;
    font-family: Montserrat;
    font-weight: 600;
}

nav ul li a {
    color: black;
    text-decoration: none;
}

nav ul li a.btn {
    position: relative;
    transition: color 0.2s;
}

nav ul li a.btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #C9A84C;
    transition: width 0.25s ease;
}

nav a:hover {
    color: #C9A84C;
}

nav ul li a.btn:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 22px !important;
    font-size: 13px;
}

/* ---- BUTTONS ---- */
.btn {
    color: #0D1B2A;
    text-decoration: none;
}

.btn:visited {
    color: #0D1B2A;
}

.btn-primary {
    display: inline-block;
    background-color: #C9A84C;
    color: white;
    padding: 13px 30px;
    border-radius: 3px;
    font-family: Montserrat;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    background-color: #b6923f;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(201,168,76,0.35);
}

.btn-primary:visited {
    color: white;
}

.btn-outline {
    display: inline-block;
    border: 2px solid #C9A84C;
    color: #C9A84C;
    padding: 11px 28px;
    border-radius: 3px;
    font-family: Montserrat;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-outline:hover {
    background-color: #C9A84C;
    color: white;
    transform: translateY(-2px);
}

.btn-outline:visited {
    color: #C9A84C;
}

/* ---- HERO ---- */
.hero {
    text-align: center;
    background-image: linear-gradient(180deg, rgba(13,27,42,0.55) 0%, rgba(13,27,42,0.72) 100%), url('seattle.jpg');
    background-size: cover;
    background-position: center;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
    padding: 60px 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C9A84C;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 72px;
    font-weight: 800;
    color: #EFEEE8;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
    letter-spacing: -0.02em;
}

.hero p {
    color: #EFEEE8;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    font-size: 18px;
    font-weight: 400;
    max-width: 560px;
    line-height: 1.65;
}

/* ---- TRUST STRIP ---- */
.trust-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 44px;
    padding: 22px 20px;
    background-color: #f8f5f1;
    border-bottom: 1px solid #ede8e0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.03em;
    color: #0D1B2A;
}

.trust-item i {
    color: #C9A84C;
    font-size: 15px;
}

/* ---- PAGE HEADER (inner pages) ---- */
.page-header {
    text-align: center;
    padding: 80px 20px 60px;
    background: linear-gradient(180deg, #f0ece4 0%, #FBF9F5 100%);
    border-bottom: 1px solid #ede8e0;
}

.page-header h1 {
    font-size: 54px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 16px;
    color: #666;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- SERVICES SECTION (homepage) ---- */
.services {
    text-align: center;
    padding: 80px 20px;
}

.services h2 {
    font-size: 42px;
    margin-bottom: 48px;
    letter-spacing: -0.01em;
    color: #0D1B2A;
}

.serviceholder {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.typeservices {
    background: #f8f5f1;
    border-radius: 4px;
    overflow: hidden;
    text-align: left;
    padding-bottom: 24px;
    border-top: 3px solid #C9A84C;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.typeservices:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(13,27,42,0.1);
}

.typeservices h3 {
    padding: 20px 20px 12px;
    font-size: 20px;
}

.typeservices img {
    width: 100%;
    height: auto;
    display: block;
}

.typeservices p {
    padding: 12px 20px 0;
    color: #555;
    line-height: 1.65;
    font-size: 15px;
}

/* ---- SERVICES PAGE ---- */
.services-grid-section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.services-grid-section h2 {
    font-size: 38px;
    margin-bottom: 36px;
    text-align: left;
    letter-spacing: -0.01em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.service-card {
    background: #f8f5f1;
    border-radius: 4px;
    padding: 28px 24px;
    text-align: left;
    border-left: 3px solid #C9A84C;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(13,27,42,0.1);
}

.service-card i {
    font-size: 22px;
    color: #C9A84C;
    margin-bottom: 16px;
    display: block;
}

.service-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.why-card {
    padding: 32px 28px;
    border-top: 1.5px solid #ede8e0;
}

.why-card:nth-child(odd) {
    border-right: 1.5px solid #ede8e0;
}

.why-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: #C9A84C;
    font-family: Montserrat;
}

.why-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* ---- CTA BANNER ---- */
.cta-banner {
    text-align: center;
    padding: 90px 20px;
    background-color: #0D1B2A;
}

.cta-banner h2 {
    font-size: 38px;
    color: #EFEEE8;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

.cta-banner a {
    display: inline-block;
    background-color: #C9A84C;
    color: white;
    padding: 14px 32px;
    border-radius: 3px;
    font-family: Montserrat;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.cta-banner a:hover {
    background-color: #b6923f;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(201,168,76,0.35);
}

.cta-banner a:visited {
    color: white;
}

/* ---- GALLERY SECTION (homepage) ---- */
.gallery {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(180deg, #f3ebdb 0%, #ebe1cd 100%);
}

.gallery h2 {
    font-size: 42px;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.slideshow {
    position: relative;
    max-width: 900px;
    margin: 0 auto 36px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 16px 44px rgba(201,168,76,0.22);
}

.slides {
    position: relative;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    background: #f8f5f1;
    display: block;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: white;
    border: none;
    font-size: 42px;
    line-height: 1;
    padding: 8px 18px;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.2s;
    z-index: 10;
}

.slide-btn:hover {
    background: rgba(0,0,0,0.7);
}

.slide-btn.prev { left: 12px; }
.slide-btn.next { right: 12px; }

.slide-dots {
    position: absolute;
    bottom: 14px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.2s;
}

.dot.active {
    background: #C9A84C;
}

/* ---- GALLERY PAGE ---- */
.gallery-page {
    padding: 70px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-page-grid {
    columns: 3;
    column-gap: 16px;
}

.gallery-page-grid img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 16px;
    border-radius: 4px;
    break-inside: avoid;
    transition: transform 0.35s;
}

.gallery-page-grid img:hover {
    transform: scale(1.02);
}

/* ---- ABOUT PAGE ---- */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 90px 20px;
}

.about-story-text h2 {
    font-size: 42px;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.about-story-text p {
    font-size: 16px;
    color: #444;
    line-height: 1.85;
    margin-bottom: 18px;
}

.about-story img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 4px;
}

.about-values {
    background-color: #f8f5f1;
    padding: 80px 20px;
    text-align: center;
}

.about-values h2 {
    font-size: 38px;
    margin-bottom: 48px;
    letter-spacing: -0.01em;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    background: white;
    border-radius: 4px;
    padding: 36px 28px;
    text-align: left;
    border-left: 3px solid #C9A84C;
    box-shadow: 0 2px 10px rgba(13,27,42,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(13,27,42,0.1);
}

.value-card i {
    font-size: 22px;
    color: #C9A84C;
    margin-bottom: 18px;
    display: block;
}

.value-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* ---- CONTACT PAGE ---- */
.contact-wrapper {
    max-width: 620px;
    margin: 80px auto;
    padding: 0 20px 80px;
}

.contact-wrapper h1 {
    font-size: 44px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.contact-wrapper > p {
    color: #666;
    margin-bottom: 44px;
    line-height: 1.65;
}

form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-wrapper form {
    background-color: #f8f5f1;
    border-top: 3px solid #C9A84C;
    border-radius: 6px;
    padding: 36px;
    box-shadow: 0 6px 24px rgba(13,27,42,0.06);
}

form label {
    display: flex;
    flex-direction: column;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #555;
    gap: 8px;
}

form input,
form textarea {
    padding: 12px 16px;
    border: 1.5px solid #e2dcd2;
    border-radius: 3px;
    background-color: #fff;
    font-family: Roboto;
    font-size: 15px;
    width: 100%;
    transition: border-color 0.2s;
    text-transform: none;
    letter-spacing: 0;
    color: #111;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: #C9A84C;
}

form textarea {
    height: 140px;
    resize: vertical;
}

form button[type="submit"] {
    background-color: #C9A84C;
    color: white;
    border: none;
    padding: 14px 32px;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    align-self: flex-start;
}

form button[type="submit"]:hover {
    background-color: #b6923f;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(201,168,76,0.35);
}

/* ---- FOOTER ---- */
footer {
    background-color: #0D1B2A;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px 32px;
    padding: 28px 40px;
}

footer a {
    color: white;
    text-decoration: none;
    font-family: Montserrat;
    font-weight: 600;
    transition: color 0.2s;
}

footer a:hover {
    color: #C9A84C;
}

footer a:visited {
    color: white;
}

footer .fa-instagram {
    font-size: 26px;
}
footer .fa-envelope{
    font-size: 26px;
}

.footer-brand p {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
}

.footer-links {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    list-style: none;
}

.footer-links a {
    font-size: 13px;
    font-weight: 500;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* ---- MOBILE ---- */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 5px 16px;
    }

    nav ul {
        gap: 20px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero p {
        font-size: 16px;
    }

    .serviceholder {
        grid-template-columns: 1fr;
    }


    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-card:nth-child(odd) {
        border-right: none;
    }

    .about-story {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-story img {
        height: 300px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .gallery-page-grid {
        columns: 2;
    }

    footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 24px 20px;
    }

    .footer-links {
        justify-content: center;
    }

    .page-header h1 {
        font-size: 38px;
    }

    .services-grid-section h2 {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    nav ul {
        gap: 10px 14px;
        font-size: 13px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nav-cta {
        padding: 8px 16px !important;
    }

    .logo img {
        height: 52px;
        width: 52px;
    }

    .trust-strip {
        gap: 10px 22px;
    }

    .trust-item {
        font-size: 12px;
    }

    .gallery-page-grid {
        columns: 1;
    }
}
