:root {
    --ink: #18201d;
    --paper: #f7f5ef;
    --surface: #ffffff;
    --accent: #1f8f70;
    --accent-dark: #125c49;
    --accent-soft: #d9f3e9;
    --line: rgba(24, 32, 29, 0.14);
    --radius: 28px;
}

.theme-ocean {
    --accent: #277da1;
    --accent-dark: #164e63;
    --accent-soft: #dff3f8;
}
.theme-sunset {
    --accent: #e76f51;
    --accent-dark: #9f3d2e;
    --accent-soft: #ffebe4;
}
.theme-plum {
    --accent: #8064a2;
    --accent-dark: #513d6a;
    --accent-soft: #eee8f5;
}
.theme-gold {
    --accent: #c58b2a;
    --accent-dark: #674611;
    --accent-soft: #f9efd7;
}
.theme-rose {
    --accent: #c85c7a;
    --accent-dark: #6d2d43;
    --accent-soft: #fae7ec;
}
.theme-navy {
    --accent: #355070;
    --accent-dark: #1e3046;
    --accent-soft: #e4eaf1;
}
.tone-elegant {
    --ink: #24201f;
    --paper: #f5f1eb;
}
.tone-energetic {
    --radius: 18px;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        sans-serif;
    line-height: 1.6;
}
a {
    color: inherit;
}
.site-header,
main,
footer {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}
.site-header {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand {
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
}
nav {
    display: flex;
    gap: 28px;
}
nav a {
    padding-block: 10px;
    color: #4e5753;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
}
nav a:hover,
nav a:focus-visible {
    color: var(--accent-dark);
}
.hero {
    min-height: 640px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 72px;
    padding: 84px 72px;
    overflow: hidden;
    border-radius: 44px;
    background: var(--surface);
}
.eyebrow {
    margin: 0 0 18px;
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
h1,
h2,
h3 {
    margin: 0;
    font-family: 'Arial Narrow', 'Helvetica Neue', sans-serif;
    letter-spacing: -0.045em;
    line-height: 1.02;
}
h1 {
    max-width: 760px;
    font-size: clamp(3.4rem, 7vw, 6.5rem);
}
h2 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
}
h3 {
    font-size: 1.5rem;
}
.hero-description {
    max-width: 590px;
    margin: 28px 0 34px;
    color: #59615e;
    font-size: 1.15rem;
}
.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 14px;
    background: var(--accent-dark);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.18s ease,
        background-color 0.18s ease;
}
.button:hover {
    transform: translateY(-2px);
    background: var(--accent);
}
.button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}
.hero-art {
    position: relative;
    min-height: 420px;
}
.hero-photo {
    min-height: 420px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--accent-soft);
}
.hero-photo img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    object-fit: cover;
}
.shape {
    position: absolute;
    display: block;
    border-radius: 50%;
}
.shape-one {
    inset: 5% 4% 12% 8%;
    background: var(--accent-soft);
}
.shape-two {
    width: 48%;
    aspect-ratio: 1;
    right: 0;
    bottom: 0;
    background: var(--accent);
    opacity: 0.88;
}
.shape-three {
    width: 34%;
    aspect-ratio: 1;
    left: 0;
    top: 2%;
    border: 18px solid var(--accent-dark);
}
.monogram {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--accent-dark);
    font-family: 'Arial Narrow', 'Helvetica Neue', sans-serif;
    font-size: 9rem;
    font-weight: 800;
}
.highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 26px 0 0;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 20px;
    list-style: none;
}
.highlights li {
    padding: 22px 28px;
    text-align: center;
    font-weight: 700;
}
.highlights li + li {
    border-left: 1px solid var(--line);
}
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}
.photo-gallery figure {
    aspect-ratio: 4 / 3;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--accent-soft);
}
.photo-gallery img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.about {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    padding: 150px 8%;
}
.about > div {
    max-width: 760px;
}
.about > div > p:not(.eyebrow, .location) {
    margin: 30px 0 0;
    color: #59615e;
    font-size: 1.18rem;
}
.section-number {
    margin: 8px 0;
    color: var(--accent);
    font-weight: 800;
}
.location {
    margin-top: 24px;
    font-weight: 700;
}
.services {
    padding: 110px 72px;
    border-radius: 40px;
    background: var(--ink);
    color: #fff;
}
.services .eyebrow {
    color: var(--accent-soft);
}
.section-heading {
    max-width: 760px;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 64px;
}
.service-grid article {
    min-height: 280px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
}
.service-grid span {
    color: var(--accent-soft);
    font-size: 0.78rem;
    font-weight: 800;
}
.service-grid h3 {
    margin-top: 72px;
}
.service-grid p {
    color: rgba(255, 255, 255, 0.7);
}
.contact {
    margin-top: 30px;
    padding: 120px 10%;
    border-radius: 40px;
    background: var(--accent-soft);
    text-align: center;
}
.contact h2,
.contact > p {
    max-width: 760px;
    margin-inline: auto;
}
.contact > p:not(.eyebrow) {
    margin-top: 26px;
    color: #4f5a56;
    font-size: 1.1rem;
}
.contact .button {
    margin-top: 28px;
}
footer {
    display: flex;
    justify-content: space-between;
    padding-block: 46px;
    color: #59615e;
}

/* The chosen composition changes hierarchy and rhythm, not only color. */
.layout-showcase .hero {
    grid-template-columns: 0.85fr 1.15fr;
    background: var(--ink);
    color: #fff;
}
.layout-showcase .hero-copy {
    order: 2;
}
.layout-showcase .hero-photo,
.layout-showcase .hero-art {
    order: 1;
}
.layout-showcase .hero-description {
    color: rgba(255, 255, 255, 0.7);
}
.layout-showcase .hero h1 {
    font-size: clamp(3rem, 6vw, 5.6rem);
}
.layout-showcase .about {
    grid-template-columns: 1fr 120px;
}
.layout-showcase .about .section-number {
    order: 2;
    text-align: right;
}
.layout-showcase .services {
    background: var(--accent-dark);
}
.layout-showcase .contact {
    padding-inline: 8%;
    text-align: left;
}
.layout-showcase .contact h2,
.layout-showcase .contact > p {
    margin-inline: 0;
}

.layout-classic {
    --radius: 0;
    background: #fff;
}
.layout-classic .site-header {
    min-height: 112px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    text-align: center;
}
.layout-classic .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 52px;
    border-block: 1px solid var(--line);
    border-radius: 0;
    text-align: center;
}
.layout-classic .hero-copy,
.layout-classic .hero-description {
    max-width: 820px;
    margin-inline: auto;
}
.layout-classic h1,
.layout-classic h2,
.layout-classic h3 {
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: -0.035em;
}
.layout-classic .hero-photo {
    width: min(900px, 100%);
    min-height: 340px;
    margin-inline: auto;
    aspect-ratio: 16 / 7;
}
.layout-classic .hero-photo img {
    min-height: 340px;
}
.layout-classic .hero-art {
    width: min(320px, 100%);
    min-height: 280px;
    margin-inline: auto;
}
.layout-classic .highlights {
    border-inline: 0;
    border-radius: 0;
    background: var(--surface);
}
.layout-classic .about {
    max-width: 900px;
    grid-template-columns: 1fr;
    text-align: center;
}
.layout-classic .about .section-number {
    display: none;
}
.layout-classic .about > div {
    margin-inline: auto;
}
.layout-classic .services {
    border-block: 1px solid var(--line);
    border-radius: 0;
    background: #fff;
    color: var(--ink);
    text-align: center;
}
.layout-classic .section-heading {
    margin-inline: auto;
}
.layout-classic .services .eyebrow,
.layout-classic .service-grid span {
    color: var(--accent-dark);
}
.layout-classic .service-grid article {
    border-color: var(--line);
    border-radius: 0;
    background: transparent;
}
.layout-classic .service-grid p {
    color: #59615e;
}
.layout-classic .contact {
    border-radius: 0;
}

.layout-bold .site-header {
    border-bottom: 4px solid var(--ink);
}
.layout-bold .hero {
    border: 3px solid var(--ink);
    border-radius: 10px;
    background: var(--accent-soft);
    box-shadow: 14px 14px 0 var(--ink);
}
.layout-bold .hero-photo,
.layout-bold .hero-art {
    transform: rotate(-2deg);
}
.layout-bold .hero-photo {
    border: 3px solid var(--ink);
    border-radius: 8px;
}
.layout-bold .highlights {
    margin-top: 38px;
    border: 3px solid var(--ink);
    border-radius: 8px;
    background: #fff;
}
.layout-bold .about {
    grid-template-columns: 80px 1fr;
}
.layout-bold .services,
.layout-bold .contact {
    border: 3px solid var(--ink);
    border-radius: 10px;
}
.layout-bold .service-grid article {
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 6px;
}
.layout-bold .contact {
    box-shadow: 12px 12px 0 var(--ink);
}

@media (max-width: 820px) {
    nav {
        display: none;
    }
    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 64px 28px 36px;
        border-radius: 28px;
    }
    .hero-art {
        min-height: 300px;
    }
    .hero-photo,
    .hero-photo img {
        min-height: 300px;
    }
    .monogram {
        font-size: 7rem;
    }
    .highlights {
        grid-template-columns: 1fr;
    }
    .highlights li + li {
        border-top: 1px solid var(--line);
        border-left: 0;
    }
    .photo-gallery {
        grid-template-columns: 1fr;
    }
    .about {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 96px 6px;
    }
    .services {
        padding: 76px 26px;
        border-radius: 28px;
    }
    .service-grid {
        grid-template-columns: 1fr;
        margin-top: 44px;
    }
    .service-grid article {
        min-height: 220px;
    }
    .service-grid h3 {
        margin-top: 44px;
    }
    .contact {
        padding: 86px 24px;
        border-radius: 28px;
    }
    .layout-showcase .hero,
    .layout-showcase .about {
        grid-template-columns: 1fr;
    }
    .layout-showcase .hero-copy,
    .layout-showcase .hero-photo,
    .layout-showcase .hero-art,
    .layout-showcase .about .section-number {
        order: initial;
    }
    .layout-showcase .about .section-number {
        text-align: left;
    }
    .layout-classic .hero,
    .layout-classic .services,
    .layout-classic .contact {
        border-radius: 0;
    }
    .layout-bold .hero {
        box-shadow: 7px 7px 0 var(--ink);
    }
    .layout-bold .about {
        grid-template-columns: 1fr;
    }
    .layout-bold .contact {
        border-radius: 10px;
        box-shadow: 7px 7px 0 var(--ink);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .button {
        transition: none;
    }
}

.theme-custom {
    --accent: #E60022;
    --accent-dark: #580812;
    --accent-soft: #FCDBE0;
}
