/* =========================================================
   THE BEW EDIT
   Style. Beauty. Confidence.
   COMPLETE MULTI-PAGE STYLESHEET
   FRESH VERSION
   ========================================================= */


/* =========================================================
   1. BRAND COLORS / VARIABLES
   ========================================================= */

:root {

    /* MAIN BACKGROUNDS */
    --ivory: #F8F3EE;
    --ivory-light: #FFFDFC;

    --blush: #E8D2CE;
    --blush-light: #F4E6E3;

    /* DARK NEUTRALS */
    --espresso: #312826;
    --soft-black: #292526;
    --soft-charcoal: #514847;

    /* PRIMARY BRAND COLORS */
    --plum: #7A5368;
    --plum-dark: #604052;
    --plum-light: #DCC6D1;

    --teal: #47706D;
    --teal-dark: #345754;
    --teal-light: #C9D9D7;

    /* ACCENTS */
    --gold: #C39A5B;
    --gold-dark: #A97D3F;
    --gold-light: #E7D4AF;

    --rose-clay: #B9786D;
    --rose-clay-dark: #975D54;
    --rose-clay-light: #E3C0B9;

    --taupe: #B8A79C;
    --taupe-light: #DDD2CA;

    /* BASICS */
    --white: #FFFFFF;
    --border: #DED2CB;

    /* SHADOWS */
    --shadow-light:
        0 4px 18px rgba(49, 40, 38, 0.08);

    --shadow-medium:
        0 10px 30px rgba(49, 40, 38, 0.14);

    --shadow-dark:
        0 14px 38px rgba(49, 40, 38, 0.20);

    /* OTHER */
    --transition: all 0.3s ease;
    --max-width: 1200px;
}


/* =========================================================
   2. RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--ivory);
    color: var(--soft-black);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================================
   3. TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--espresso);
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.7rem, 6vw, 5rem);
    letter-spacing: -1px;
}

h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
}

h4 {
    font-size: 1.15rem;
}

p {
    margin-bottom: 1rem;
}

strong {
    color: var(--espresso);
}


/* =========================================================
   4. SECTION HEADINGS
   ========================================================= */

.section-kicker {
    display: inline-block;
    margin-bottom: 0.75rem;

    color: var(--teal-dark);

    font-size: 0.78rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    max-width: 720px;
    margin: 0 auto 2.5rem;

    color: var(--soft-charcoal);

    font-size: 1.05rem;
}


/* =========================================================
   5. GLOBAL LAYOUT
   ========================================================= */

.container {
    width: min(90%, var(--max-width));
    margin: 0 auto;
}

section {
    padding: 90px 0;
}

.text-center {
    text-align: center;
}

.bg-ivory {
    background-color: var(--ivory);
}

.bg-light {
    background-color: var(--ivory-light);
}

.bg-blush {
    background:
        linear-gradient(
            135deg,
            var(--blush-light),
            var(--ivory)
        );
}

.bg-teal {
    background:
        linear-gradient(
            135deg,
            var(--teal-light),
            #E7EFED
        );
}

.bg-plum {
    background-color: var(--plum);
    color: var(--white);
}


/* =========================================================
   6. HEADER / NAVIGATION
   ========================================================= */

header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background-color:
        rgba(248, 243, 238, 0.97);

    border-bottom:
        1px solid var(--border);

    backdrop-filter: blur(10px);

    transition: var(--transition);
}

.navbar {
    width: min(92%, var(--max-width));
    min-height: 78px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;
}


/* LOGO */

.logo {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color: var(--espresso);

    font-size: 1.7rem;
    font-weight: 600;

    letter-spacing: 1px;
}

.logo span {
    color: var(--plum);
}


/* NAVIGATION */

.nav-links {
    display: flex;
    align-items: center;

    gap: 2rem;
}

.nav-links a {
    position: relative;

    color: var(--espresso);

    font-size: 0.95rem;
    font-weight: 600;

    transition: var(--transition);
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background-color: var(--gold);

    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--plum);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}


/* =========================================================
   7. MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
    display: none;

    background: none;
    border: none;

    color: var(--espresso);

    font-size: 1.7rem;

    cursor: pointer;
}


/* =========================================================
   8. BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 28px;

    border-radius: 999px;
    border: 2px solid transparent;

    font-size: 0.95rem;
    font-weight: 700;

    line-height: 1.2;

    cursor: pointer;

    text-decoration: none !important;

    transition: var(--transition);
}


/* PRIMARY BUTTON */

.btn-primary,
a.btn-primary,
button.btn-primary {
    background-color: var(--plum);
    color: var(--white) !important;
    border-color: var(--plum);
}

.btn-primary:hover,
a.btn-primary:hover,
button.btn-primary:hover {
    background-color: var(--plum-dark);
    color: var(--white) !important;
    border-color: var(--plum-dark);

    text-decoration: none !important;

    transform: translateY(-2px);

    box-shadow: var(--shadow-light);
}


/* SECONDARY BUTTON */

.btn-secondary,
a.btn-secondary,
button.btn-secondary {
    background-color: var(--teal);
    color: var(--white) !important;
    border-color: var(--teal);

    text-decoration: none !important;
}

.btn-secondary:link,
.btn-secondary:visited,
a.btn-secondary:link,
a.btn-secondary:visited {
    color: var(--white) !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
a.btn-secondary:hover,
a.btn-secondary:focus,
button.btn-secondary:hover,
button.btn-secondary:focus {
    background-color: var(--teal-dark);
    color: var(--white) !important;
    border-color: var(--teal-dark);

    text-decoration: none !important;

    transform: translateY(-2px);

    box-shadow: var(--shadow-light);
}


/* OUTLINE BUTTON */

.btn-outline {
    background-color: transparent;

    color: var(--espresso) !important;

    border-color: var(--espresso);
}

.btn-outline:hover {
    background-color: var(--espresso);

    color: var(--white) !important;

    transform: translateY(-2px);
}


/* GOLD BUTTON */

.btn-gold {
    background-color: var(--gold);

    color: var(--espresso) !important;

    border-color: var(--gold);
}

.btn-gold:hover {
    background-color: var(--gold-dark);

    color: var(--white) !important;

    border-color: var(--gold-dark);

    transform: translateY(-2px);
}


/* =========================================================
   9. HOMEPAGE HERO
   ========================================================= */

.hero {
    min-height: 78vh;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            120deg,
            rgba(248, 243, 238, 0.98) 0%,
            rgba(232, 210, 206, 0.85) 55%,
            rgba(201, 217, 215, 0.65) 100%
        );
}

.hero-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 4rem;
}

.hero-content {
    max-width: 650px;
}

.hero h1 {
    margin-bottom: 1.25rem;
}

.hero h1 span {
    color: var(--plum);
}

.hero-tagline {
    margin-bottom: 1rem;

    color: var(--teal-dark);

    font-size: 0.9rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 4px;
}

.hero-text {
    max-width: 580px;

    margin-bottom: 2rem;

    color: var(--soft-charcoal);

    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 1rem;
}


/* HERO IMAGE */

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;

    border-radius: 24px;

    box-shadow: var(--shadow-medium);

    object-fit: contain;
}

.hero-image::before {
    content: "";

    position: absolute;

    width: 82%;
    height: 90%;

    left: -25px;
    bottom: -25px;

    background-color:
        rgba(220, 198, 209, 0.45);

    border-radius: 28px;

    z-index: -1;
}

.hero-image::after {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    right: -20px;
    top: 25px;

    border-radius: 50%;

    background-color:
        rgba(231, 212, 175, 0.55);

    z-index: -1;
}


/* =========================================================
   10. INNER PAGE HEADER
   ========================================================= */

.page-header {
    padding: 100px 0 80px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            var(--blush-light) 0%,
            var(--plum-light) 48%,
            var(--teal-light) 100%
        );
}

.page-header h1 {
    max-width: 900px;

    margin: 0 auto 1rem;
}

.page-header p {
    max-width: 700px;

    margin: 0 auto;

    color: var(--soft-charcoal);

    font-size: 1.05rem;
}


/* =========================================================
   11. ABOUT SECTION
   ========================================================= */

.about {
    background-color: var(--ivory-light);
}

.about-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 4rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;

    border-radius: 22px;

    box-shadow: var(--shadow-medium);
}

.about-image::before {
    content: "";

    position: absolute;

    width: 75%;
    height: 75%;

    left: -20px;
    bottom: -20px;

    background-color: var(--teal-light);

    border-radius: 22px;

    z-index: -1;
}

.about-content p {
    color: var(--soft-charcoal);
}

.signature {
    margin-top: 1.5rem;

    color: var(--plum);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.7rem;

    font-style: italic;
}


/* =========================================================
   12. SERVICES SECTION
   ========================================================= */

.services {
    background:
        linear-gradient(
            135deg,
            var(--blush-light),
            var(--ivory)
        );
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1.5rem;
}


/* =========================================================
   13. SERVICE CARDS
   ========================================================= */

.service-card {
    position: relative;

    background-color:
        rgba(255, 255, 255, 0.92);

    padding: 2.25rem;

    border:
        1px solid var(--border);

    border-radius: 20px;

    box-shadow: var(--shadow-light);

    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-medium);

    border-color: var(--plum-light);
}


/* DIFFERENT SOFT CARD BACKGROUNDS */

.service-card:nth-child(2),
.service-card:nth-child(5) {
    background-color:
        rgba(201, 217, 215, 0.56);
}

.service-card:nth-child(3),
.service-card:nth-child(6) {
    background-color:
        rgba(244, 230, 227, 0.82);
}

.service-card h3 {
    margin-bottom: 0.9rem;

    color: var(--espresso);
}

.service-card p {
    color: var(--soft-charcoal);
}


/* SERVICE LIST */

.service-card ul {
    margin: 1.3rem 0;
}

.service-card li {
    position: relative;

    margin-bottom: 0.55rem;

    padding-left: 1.5rem;

    color: var(--soft-charcoal);
}

.service-card li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: var(--teal);

    font-weight: 700;
}


/* =========================================================
   14. SERVICE CARD MONOGRAM
   ========================================================= */

.service-icon {
    width: 82px;
    height: 82px;

    margin: 0 0 1.4rem;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(248, 243, 238, 0.72);

    border:
        1px solid rgba(184, 167, 156, 0.38);

    border-radius: 50%;

    overflow: hidden;

    transition: var(--transition);
}

.service-monogram {
    width: 58px;
    height: 58px;

    object-fit: contain;

    opacity: 0.55;

    transition: var(--transition);
}

.service-card:hover
.service-monogram {
    opacity: 0.72;

    transform: scale(1.05);
}

.service-card:hover
.service-icon {
    background-color:
        rgba(255, 255, 255, 0.85);

    border-color:
        rgba(195, 154, 91, 0.55);
}


/* =========================================================
   15. SERVICE PRICE
   ========================================================= */

.service-price {
    display: block;

    margin-top: 1.25rem;

    color: var(--plum);

    font-weight: 700;

    font-size: 1.05rem;
}


/* =========================================================
   16. SERVICE DETAIL SECTIONS
   ========================================================= */

.service-detail {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 3rem;

    align-items: center;

    padding: 3.5rem 0;

    border-bottom:
        1px solid var(--border);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail:nth-child(even)
.service-detail-image {
    order: 2;
}

.service-detail-image img {
    width: 100%;

    border-radius: 20px;

    box-shadow: var(--shadow-light);
}

.service-detail-content ul {
    margin: 1.5rem 0;
}

.service-detail-content li {
    position: relative;

    margin-bottom: 0.65rem;

    padding-left: 1.7rem;
}

.service-detail-content li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: var(--teal);

    font-weight: 700;
}


/* =========================================================
   17. GENERIC CARDS
   ========================================================= */

.card {
    background-color: var(--white);

    padding: 2rem;

    border-radius: 18px;

    border:
        1px solid var(--border);

    box-shadow: var(--shadow-light);

    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-medium);
}

.card h3 {
    margin-bottom: 0.75rem;
}

.card p {
    color: var(--soft-charcoal);
}

.card-plum {
    background-color: var(--plum-light);
}

.card-teal {
    background-color: var(--teal-light);
}

.card-blush {
    background-color: var(--blush-light);
}


/* =========================================================
   18. BENEFITS
   ========================================================= */

.benefits {
    background-color: var(--ivory-light);
}

.benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 2rem;
}

.benefit {
    padding: 2rem;

    text-align: center;
}

.benefit-number {
    width: 58px;
    height: 58px;

    margin: 0 auto 1rem;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--plum);

    color: var(--white);

    border-radius: 50%;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.4rem;
    font-weight: 700;

    box-shadow:
        0 5px 15px
        rgba(122, 83, 104, 0.20);
}

.benefit:nth-child(2)
.benefit-number {
    background-color: var(--teal);
}

.benefit:nth-child(3)
.benefit-number {
    background-color: var(--rose-clay);
}

.benefit h3 {
    margin-bottom: 0.75rem;
}

.benefit p {
    color: var(--soft-charcoal);
}


/* =========================================================
   19. PROCESS
   ========================================================= */

.process {
    background:
        linear-gradient(
            135deg,
            var(--teal-light),
            #E4ECEA
        );
}

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 1.5rem;
}

.process-step {
    position: relative;

    padding: 2rem;

    background-color:
        rgba(255, 255, 255, 0.78);

    border-radius: 18px;

    border:
        1px solid
        rgba(255, 255, 255, 0.85);

    text-align: center;

    box-shadow: var(--shadow-light);
}

.process-step-number {
    margin-bottom: 0.75rem;

    color: var(--plum);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 2.5rem;
}

.process-step:nth-child(even)
.process-step-number {
    color: var(--teal-dark);
}

.process-step p {
    color: var(--soft-charcoal);
}


/* =========================================================
   20. PORTFOLIO
   ========================================================= */

.portfolio {
    background-color: var(--ivory-light);
}

.portfolio-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1.5rem;
}

.portfolio-item {
    position: relative;

    overflow: hidden;

    background-color: var(--blush-light);

    border-radius: 20px;

    box-shadow: var(--shadow-light);

    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-medium);
}

.portfolio-item img {
    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 2rem;

    color: var(--white);

    background:
        linear-gradient(
            transparent 35%,
            rgba(49, 40, 38, 0.88)
        );

    opacity: 0;

    transition: var(--transition);
}

.portfolio-item:hover
.portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: var(--white);
}

.portfolio-overlay p {
    margin-bottom: 0;

    color: #F8EDEB;
}


/* =========================================================
   21. TESTIMONIALS
   ========================================================= */

.testimonials {
    background-color: var(--blush-light);
}

.testimonials-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1.5rem;
}

.testimonial-card {
    background-color: var(--white);

    padding: 2rem;

    border-radius: 20px;

    border:
        1px solid var(--border);

    box-shadow: var(--shadow-light);

    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-medium);
}

.testimonial-card::before {
    content: "“";

    display: block;

    color: var(--gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 5rem;

    line-height: 0.6;
}

.testimonial-text {
    color: var(--soft-charcoal);

    font-style: italic;
}

.testimonial-name {
    margin-top: 1.25rem;

    color: var(--plum);

    font-weight: 700;
}

.testimonial-service {
    color: var(--teal-dark);

    font-size: 0.9rem;
}


/* =========================================================
   22. FEATURE QUOTE
   ========================================================= */

.feature-quote {
    max-width: 900px;

    margin: 0 auto;

    padding: 3rem;

    background:
        linear-gradient(
            135deg,
            var(--plum-light),
            var(--blush-light)
        );

    border-left:
        6px solid var(--gold);

    border-radius: 22px;

    text-align: center;

    box-shadow: var(--shadow-light);
}

.feature-quote p {
    margin: 0;

    color: var(--espresso);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(1.4rem, 3vw, 2rem);

    line-height: 1.5;
}


/* =========================================================
   23. CALL TO ACTION
   ========================================================= */

.cta {
    padding: 85px 0;

    background:
        linear-gradient(
            135deg,
            var(--plum-dark),
            var(--plum),
            var(--rose-clay-dark)
        );

    color: var(--white);

    text-align: center;
}

.cta h2 {
    margin-bottom: 1rem;

    color: var(--white);
}

.cta p {
    max-width: 650px;

    margin:
        0 auto 2rem;

    color: #F7EDEE;
}

.cta .section-kicker {
    color: var(--gold-light);
}

.cta .btn-primary {
    background-color: var(--gold);

    color: var(--espresso) !important;

    border-color: var(--gold);
}

.cta .btn-primary:hover {
    background-color: var(--gold-light);

    color: var(--espresso) !important;

    border-color: var(--gold-light);
}


/* =========================================================
   24. CONTACT
   ========================================================= */

.contact {
    background:
        linear-gradient(
            135deg,
            var(--ivory),
            var(--blush-light)
        );
}

.contact-grid {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 4rem;
}

.contact-info {
    padding: 2rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;

    margin-bottom: 0.25rem;

    color: var(--plum);
}


/* NORMAL CONTACT TEXT LINKS ONLY */

.contact-item a:not(.btn) {
    color: var(--teal-dark);

    font-weight: 600;
}

.contact-item a:not(.btn):hover {
    color: var(--plum);

    text-decoration: underline;
}


/* =========================================================
   CONTACT PAGE BUTTON PROTECTION
   Keeps buttons from inheriting contact text link colors
   ========================================================= */

.contact-item .btn,
.contact-item a.btn {
    text-decoration: none !important;
}

.contact-item .btn-secondary,
.contact-item a.btn-secondary {
    background-color: var(--teal) !important;

    color: #FFFFFF !important;

    border-color: var(--teal) !important;

    text-decoration: none !important;
}

.contact-item .btn-secondary:link,
.contact-item .btn-secondary:visited,
.contact-item a.btn-secondary:link,
.contact-item a.btn-secondary:visited {
    color: #FFFFFF !important;
}

.contact-item .btn-secondary:hover,
.contact-item .btn-secondary:focus,
.contact-item a.btn-secondary:hover,
.contact-item a.btn-secondary:focus {
    background-color: var(--teal-dark) !important;

    color: #FFFFFF !important;

    border-color: var(--teal-dark) !important;

    text-decoration: none !important;
}


/* =========================================================
   25. CONTACT FORM
   ========================================================= */

.contact-form {
    background-color: var(--white);

    padding: 2.5rem;

    border-radius: 22px;

    border-top:
        5px solid var(--plum);

    box-shadow: var(--shadow-medium);
}

.contact-form h2 {
    margin-bottom: 0.75rem;
}

.form-group {
    margin-bottom: 1.4rem;
}

.form-group label {
    display: block;

    margin-bottom: 0.45rem;

    color: var(--espresso);

    font-size: 0.9rem;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    padding: 13px 15px;

    background-color:
        var(--ivory-light);

    border:
        1px solid var(--border);

    border-radius: 10px;

    color: var(--soft-black);

    outline: none;

    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--plum);

    box-shadow:
        0 0 0 3px
        rgba(122, 83, 104, 0.13);
}

.form-group textarea {
    min-height: 160px;

    resize: vertical;
}

::placeholder {
    color: #9D8F89;
}


/* =========================================================
   26. FAQ
   ========================================================= */

.faq {
    background-color: var(--ivory-light);
}

.faq-container {
    max-width: 850px;

    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;

    padding: 1.5rem;

    background-color: var(--white);

    border:
        1px solid var(--border);

    border-left:
        5px solid var(--teal);

    border-radius: 14px;

    box-shadow: var(--shadow-light);
}

.faq-item:nth-child(even) {
    border-left-color: var(--plum);
}

.faq-item h3 {
    margin-bottom: 0.6rem;

    font-size: 1.1rem;
}

.faq-item p {
    margin-bottom: 0;

    color: var(--soft-charcoal);
}


/* =========================================================
   27. BADGES
   ========================================================= */

.badge {
    display: inline-block;

    padding: 6px 14px;

    border-radius: 999px;

    background-color: var(--plum-light);

    color: var(--plum-dark);

    font-size: 0.78rem;
    font-weight: 700;

    letter-spacing: 0.5px;
}

.badge-teal {
    background-color: var(--teal-light);

    color: var(--teal-dark);
}

.badge-gold {
    background-color: var(--gold-light);

    color: var(--espresso);
}


/* =========================================================
   28. DIVIDERS
   ========================================================= */

.divider {
    width: 70px;
    height: 3px;

    margin:
        1.2rem auto 2rem;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--plum),
            var(--gold),
            var(--teal)
        );
}


/* =========================================================
   29. TEXT LINKS
   ========================================================= */

.text-link {
    display: inline-block;

    margin-top: 0.5rem;

    color: var(--plum);

    font-weight: 700;

    border-bottom:
        1px solid var(--gold);

    transition: var(--transition);
}

.text-link:hover {
    color: var(--teal-dark);

    border-color: var(--teal);
}


/* =========================================================
   30. COLOR PALETTE DISPLAY
   ========================================================= */

.color-palette {
    display: flex;
    flex-wrap: wrap;

    gap: 1rem;

    margin: 2rem 0;
}

.color-swatch {
    width: 85px;

    text-align: center;
}

.color-swatch-circle {
    width: 72px;
    height: 72px;

    margin:
        0 auto 0.5rem;

    border-radius: 50%;

    border:
        3px solid var(--white);

    box-shadow:
        0 0 0 1px var(--border);
}

.color-swatch span {
    display: block;

    color: var(--soft-charcoal);

    font-size: 0.75rem;
}


/* =========================================================
   31. FOOTER
   ========================================================= */

footer {
    padding:
        55px 0 25px;

    background-color: var(--espresso);

    color: #DDD3CF;

    border-top:
        5px solid var(--gold);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 3rem;

    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.8rem;
}

.footer-logo span {
    color: var(--gold);
}

footer h4 {
    margin-bottom: 1rem;

    color: var(--white);
}

footer p {
    color: #D6CCC7;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #D7CECA;

    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}


/* SOCIAL LINKS */

.social-links {
    display: flex;

    gap: 0.75rem;

    margin-top: 1.25rem;
}

.social-links a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid #766661;

    border-radius: 50%;

    color: var(--white);

    font-weight: 700;

    transition: var(--transition);
}

.social-links a:link,
.social-links a:visited {
    color: var(--white);
}

.social-links a:hover {
    background-color: var(--plum);

    border-color: var(--plum);

    color: var(--white);

    text-decoration: none;

    transform: translateY(-2px);
}


/* FOOTER BOTTOM */

.footer-bottom {
    padding-top: 1.5rem;

    border-top:
        1px solid #594B47;

    text-align: center;

    color: #ADA19C;

    font-size: 0.85rem;
}


/* =========================================================
   32. UTILITY CLASSES
   ========================================================= */

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.hidden {
    display: none;
}


/* =========================================================
   33. TABLET
   ========================================================= */

@media screen and (max-width: 900px) {

    section {
        padding: 70px 0;
    }

    .hero {
        min-height: auto;

        padding: 80px 0;
    }

    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        max-width: 650px;

        margin: 0 auto;
    }

    .services-grid,
    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-detail {
        grid-template-columns: 1fr;
    }

    .service-detail:nth-child(even)
    .service-detail-image {
        order: initial;
    }

    .footer-grid {
        grid-template-columns:
            1fr 1fr;
    }

}


/* =========================================================
   34. MOBILE
   ========================================================= */

@media screen and (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;

        top: 78px;
        left: 0;

        width: 100%;

        display: none;
        flex-direction: column;

        gap: 0;

        padding: 1rem 0;

        background-color:
            var(--ivory);

        border-bottom:
            1px solid var(--border);

        box-shadow:
            var(--shadow-light);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;

        width: 100%;

        padding:
            0.9rem 5%;
    }

    .nav-links a:hover {
        background-color:
            var(--blush-light);
    }

    .nav-links a::after {
        display: none;
    }

    .services-grid,
    .portfolio-grid,
    .testimonials-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .service-icon {
        width: 76px;
        height: 76px;
    }

    .service-monogram {
        width: 52px;
        height: 52px;
    }

}


/* =========================================================
   35. SMALL MOBILE
   ========================================================= */

@media screen and (max-width: 480px) {

    body {
        font-size: 15px;
    }

    section {
        padding: 55px 0;
    }

    .navbar {
        min-height: 68px;
    }

    .logo {
        font-size: 1.35rem;
    }

    .nav-links {
        top: 68px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-image::before {
        left: -10px;
        bottom: -10px;
    }

    .hero-image::after {
        width: 65px;
        height: 65px;

        right: -5px;
    }

    .service-card {
        padding: 1.6rem;
    }

    .feature-quote {
        padding:
            2rem 1.25rem;
    }

    .page-header {
        padding:
            70px 0 55px;
    }

}


/* =========================================================
   36. ACCESSIBILITY
   ========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline:
        3px solid var(--gold);

    outline-offset: 3px;
}


/* =========================================================
   37. REDUCED MOTION
   ========================================================= */

@media
(prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        scroll-behavior:
            auto !important;

        transition:
            none !important;

        animation:
            none !important;
    }

}