* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.anda-home {
    margin: 0;
    color: #171513;
    background: #f9f7f3;
    font-family: "Inter", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

.anda-home a {
    color: inherit;
    text-decoration: none;
}

.anda-home .ad-header-cta,
.anda-home .ad-btn--gold,
.anda-home .ad-btn--dark,
.anda-home .ad-project-card,
.anda-home .ad-project-card a {
    color: #fff;
}

.anda-home .ad-btn--outline {
    color: #9c743f;
}

.anda-home img {
    display: block;
    width: 100%;
}

.ad-container {
    width: min(1260px, calc(100% - 56px));
    margin: 0 auto;
}

.ad-topbar {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #f4eadc;
    background: #11100f;
    font-size: 12px;
    letter-spacing: .01em;
}

.ad-topbar strong,
.ad-star,
.ad-section__intro span,
.ad-process__intro span,
.ad-about__content span,
.ad-centered-title span,
.ad-contact span {
    color: #b88b54;
}

.ad-header {
    position: sticky;
    top: 0;
    z-index: 30;
    min-height: 104px;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 270px 1fr auto;
    align-items: center;
    gap: 26px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 1px 0 rgba(26, 22, 17, .08);
    backdrop-filter: blur(14px);
}

.ad-logo {
    display: inline-flex;
    flex-direction: column;
    width: fit-content;
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1;
}

.ad-logo > span {
    color: #b88b54;
    font-size: 35px;
    letter-spacing: .02em;
    white-space: nowrap;
}

.ad-logo > span span {
    color: #191715;
}

.ad-logo small {
    margin-top: 7px;
    color: #5d5348;
    font-family: "Inter", Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .27em;
    text-transform: uppercase;
    text-align: center;
}

.ad-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    font-weight: 600;
    font-size: 14px;
}

.ad-nav a {
    position: relative;
    padding: 40px 0 37px;
}

.ad-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 26px;
    height: 2px;
    background: #caa36d;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s ease;
}

.ad-nav a:hover::after,
.ad-nav a.is-active::after {
    transform: scaleX(1);
}

.ad-header-cta,
.ad-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 52px;
    border: 1px solid transparent;
    border-radius: 0;
    padding: 0 28px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.ad-header-cta,
.ad-btn--dark {
    color: #fff;
    background: #11100f;
}

.ad-header-cta:hover,
.ad-btn:hover {
    transform: translateY(-2px);
}

.ad-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(30, 25, 20, .12);
    background: #fff;
    color: #111;
    font-size: 20px;
}

.ad-hero {
    position: relative;
    min-height: 640px;
    color: #fff;
    overflow: hidden;
}

.ad-hero__bg,
.ad-hero__shade {
    position: absolute;
    inset: 0;
}

.ad-hero__bg {
    background: url("../andadecor/hero-interior.jpg") center / cover no-repeat;
    transform: scale(1.02);
}

.ad-hero__shade {
    background: linear-gradient(90deg, rgba(15, 13, 12, .74) 0%, rgba(15, 13, 12, .38) 48%, rgba(15, 13, 12, .62) 100%);
}

.ad-hero__content {
    position: relative;
    z-index: 1;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 58px 0 72px;
}

.ad-hero h1,
.ad-section h2,
.ad-process h2,
.ad-centered-title h2,
.ad-contact h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 500;
    line-height: 1.16;
    letter-spacing: 0;
}

.ad-hero h1 {
    max-width: 660px;
    font-size: 58px;
}

.ad-hero p {
    max-width: 600px;
    margin: 24px 0 34px;
    font-size: 19px;
    color: rgba(255, 255, 255, .92);
}

.ad-btn--gold {
    color: #fff;
    background: #caa36d;
}

.ad-btn--outline {
    color: #9c743f;
    background: #fff;
    border-color: rgba(184, 139, 84, .42);
}

.ad-hero__pager {
    position: absolute;
    left: 0;
    bottom: 48px;
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, .76);
}

.ad-hero__pager i {
    width: 36px;
    height: 1px;
    background: rgba(255, 255, 255, .44);
}

.ad-values {
    background: #fff;
    border-bottom: 1px solid #eee8de;
}

.ad-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 54px 0;
}

.ad-values article {
    min-height: 126px;
    padding: 0 48px;
    text-align: center;
    border-right: 1px solid #e7dfd4;
}

.ad-values article:last-child {
    border-right: 0;
}

.ad-values i,
.ad-process article > i,
.ad-commit > i {
    color: #c69b64;
    font-size: 36px;
}

.ad-values h3,
.ad-project-card h3,
.ad-process h3,
.ad-commit h3,
.ad-footer h3 {
    margin: 18px 0 10px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.ad-values p {
    max-width: 230px;
    margin: 0 auto;
    color: #5e554c;
    font-size: 13px;
}

.ad-section {
    padding: 76px 0;
}

.ad-showcase {
    background: #fbfaf7;
}

.ad-collections {
    padding-top: 20px;
    background: #fbfaf7;
}

.ad-split {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 56px;
    align-items: start;
}

.ad-section__intro span,
.ad-process__intro span,
.ad-about__content span,
.ad-centered-title span,
.ad-contact span {
    display: block;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ad-section__intro h2,
.ad-about h2,
.ad-contact h2 {
    font-size: 36px;
}

.ad-section__intro a,
.ad-process__intro a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
    color: #9f7641;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ad-projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.ad-project-card {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    color: #fff;
    background: #171513;
}

.ad-project-card img {
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    opacity: .86;
    transition: transform .35s ease;
}

.ad-project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .06) 22%, rgba(0, 0, 0, .76) 100%);
}

.ad-project-card:hover img {
    transform: scale(1.05);
}

.ad-project-card div {
    position: absolute;
    z-index: 1;
    left: 22px;
    right: 72px;
    bottom: 22px;
}

.ad-project-card h3 {
    margin: 0 0 6px;
    font-size: 15px;
}

.ad-project-card p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
}

.ad-project-card > a {
    position: absolute;
    z-index: 1;
    right: 20px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .42);
}

.ad-collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.ad-collection-grid a {
    display: block;
}

.ad-collection-grid img {
    height: 200px;
    object-fit: cover;
}

.ad-collection-grid span {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    color: #171513;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
}

.ad-collection-grid i {
    color: #b88b54;
    font-size: 15px;
}

.ad-process {
    color: #f7efe4;
    background: radial-gradient(circle at 20% 0%, rgba(116, 86, 50, .26), transparent 32%), #11100f;
    padding: 58px 0;
}

.ad-process__grid {
    display: grid;
    grid-template-columns: 290px repeat(5, 1fr);
    gap: 26px;
}

.ad-process h2 {
    font-size: 35px;
}

.ad-process article {
    position: relative;
    padding: 0 16px;
    text-align: center;
}

.ad-process article + article {
    border-left: 1px dashed rgba(202, 163, 109, .38);
}

.ad-process article > i {
    display: block;
    min-height: 38px;
    margin-bottom: 18px;
    font-size: 30px;
}

.ad-process strong {
    display: block;
    color: #caa36d;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
    font-weight: 500;
}

.ad-process h3 {
    color: #fff;
    font-size: 13px;
    text-transform: none;
}

.ad-process p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
}

.ad-about {
    background: #fff;
}

.ad-about__grid {
    display: grid;
    grid-template-columns: 420px 1fr 300px;
    gap: 40px;
    align-items: center;
}

.ad-about__image {
    height: 360px;
    object-fit: cover;
}

.ad-about__content p,
.ad-contact p {
    max-width: 650px;
    color: #544d46;
}

.ad-stats {
    display: flex;
    gap: 46px;
    margin: 28px 0;
}

.ad-stats strong {
    color: #bd8c52;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 34px;
    font-weight: 500;
}

.ad-stats small {
    display: block;
    margin-top: 2px;
    color: #302b27;
    font-family: "Inter", Arial, sans-serif;
    font-size: 12px;
}

.ad-commit {
    color: #fff;
    background: #141312;
    padding: 40px 36px;
}

.ad-commit h3 {
    margin-bottom: 26px;
}

.ad-commit p {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 14px;
    margin: 18px 0;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
}

.ad-commit p i {
    color: #caa36d;
    margin-top: 4px;
}

.ad-testimonials {
    background: #fbfaf7;
}

.ad-centered-title {
    max-width: 860px;
    margin: 0 auto 48px;
    text-align: center;
}

.ad-centered-title h2 {
    font-size: 36px;
}

.ad-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.ad-testimonial-grid article {
    min-height: 180px;
    padding: 34px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(42, 36, 30, .05);
}

.ad-testimonial-grid p {
    position: relative;
    margin: 0 0 26px;
    color: #47413c;
    font-size: 14px;
}

.ad-testimonial-grid p::before {
    content: "“";
    color: #caa36d;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 34px;
    line-height: 0;
}

.ad-testimonial-grid div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ad-testimonial-grid span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #1b1917;
    font-weight: 800;
    font-size: 12px;
}

.ad-testimonial-grid strong {
    font-size: 14px;
}

.ad-testimonial-grid small {
    display: block;
    margin-top: 2px;
    color: #77706a;
    font-weight: 500;
    font-size: 12px;
}

.ad-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.ad-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d8c6ad;
}

.ad-dots span:first-child {
    background: #b88b54;
}

.ad-contact {
    background: #fff;
    border-top: 1px solid #eee8de;
}

.ad-contact__grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 70px;
    align-items: start;
}

.ad-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.ad-form textarea,
.ad-form select,
.ad-form input,
.ad-newsletter input {
    width: 100%;
    border: 1px solid #e4dbcf;
    background: #fbfaf7;
    color: #171513;
    outline: 0;
    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
}

.ad-form textarea,
.ad-form select,
.ad-form input {
    min-height: 52px;
    padding: 0 16px;
}

.ad-form textarea {
    grid-column: 1 / -1;
    padding: 14px 16px;
    resize: vertical;
}

.ad-form button,
.ad-form__message {
    grid-column: 1 / -1;
}

.ad-form__message {
    margin: 0;
    color: #9b713b;
    font-weight: 700;
}

.ad-footer {
    color: rgba(255, 255, 255, .76);
    background: #11100f;
}

.ad-footer__grid {
    display: grid;
    grid-template-columns: 1.35fr .8fr .8fr 1.2fr 1.1fr;
    gap: 44px;
    padding: 52px 0;
}

.ad-logo--footer > span span {
    color: #fff;
}

.ad-footer p,
.ad-footer a {
    display: block;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, .67);
    font-size: 13px;
}

.ad-footer h3 {
    margin-top: 0;
    color: #caa36d;
    font-size: 12px;
}

.ad-footer__brand p {
    margin-top: 22px;
    max-width: 300px;
}

.ad-social {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.ad-social a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
}

.ad-newsletter {
    position: relative;
    margin-top: 20px;
}

.ad-newsletter input {
    height: 52px;
    padding: 0 58px 0 16px;
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, .22);
}

.ad-newsletter button {
    position: absolute;
    top: 0;
    right: 0;
    width: 52px;
    height: 52px;
    border: 0;
    color: #caa36d;
    background: transparent;
}

.ad-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.ad-footer__bottom .ad-container {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ad-footer__bottom p {
    margin: 0;
}

.ad-footer__bottom p:last-child {
    display: flex;
    gap: 34px;
}

@media (max-width: 1180px) {
    .ad-header {
        grid-template-columns: 230px auto auto;
        gap: 18px;
    }

    .ad-nav {
        gap: 20px;
        font-size: 13px;
    }

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

    .ad-process__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ad-process__intro {
        grid-column: 1 / -1;
    }
}

@media (max-width: 960px) {
    .ad-container {
        width: min(100% - 36px, 760px);
    }

    .ad-header {
        min-height: 78px;
        grid-template-columns: 1fr auto;
        padding: 0 18px;
    }

    .ad-logo > span {
        font-size: 28px;
    }

    .ad-menu-toggle {
        display: block;
    }

    .ad-header-cta {
        display: none;
    }

    .ad-nav {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        display: none;
        padding: 12px 20px 22px;
        background: #fff;
        border-top: 1px solid #eee8de;
        box-shadow: 0 18px 34px rgba(25, 21, 17, .08);
    }

    .ad-nav.is-open {
        display: grid;
        gap: 0;
    }

    .ad-nav a {
        padding: 14px 0;
        border-bottom: 1px solid #f0ebe4;
    }

    .ad-nav a::after {
        display: none;
    }

    .ad-hero,
    .ad-hero__content {
        min-height: 570px;
    }

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

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

    .ad-values__grid,
    .ad-split,
    .ad-contact__grid {
        grid-template-columns: 1fr;
    }

    .ad-values__grid {
        padding: 34px 0;
    }

    .ad-values article {
        padding: 28px 18px;
        border-right: 0;
        border-bottom: 1px solid #eee8de;
    }

    .ad-projects,
    .ad-collection-grid,
    .ad-testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ad-topbar {
        height: auto;
        min-height: 38px;
        padding: 8px 18px;
        text-align: center;
        flex-wrap: wrap;
    }

    .ad-hero,
    .ad-hero__content {
        min-height: 520px;
    }

    .ad-hero h1,
    .ad-section__intro h2,
    .ad-about h2,
    .ad-centered-title h2,
    .ad-contact h2,
    .ad-process h2 {
        font-size: 32px;
    }

    .ad-section {
        padding: 54px 0;
    }

    .ad-hero__pager {
        bottom: 28px;
    }

    .ad-process__grid,
    .ad-about__grid,
    .ad-footer__grid {
        grid-template-columns: 1fr;
    }

    .ad-process article {
        padding: 22px 0;
        border-left: 0 !important;
        border-top: 1px dashed rgba(202, 163, 109, .38);
    }

    .ad-stats {
        gap: 18px;
        flex-wrap: wrap;
    }

    .ad-form {
        grid-template-columns: 1fr;
    }

    .ad-footer__bottom .ad-container {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 0;
    }
}
