:root {
    --sage: #89a894;
    --sage-dark: #6d8f82;
    --sage-deep: #4a6b5e;
    --sage-light: #b5cfc4;
    --sage-wash: rgba(168, 196, 184, 0.35);
    --sage-wash-soft: rgba(168, 196, 184, 0.18);
    --cream: #f7f4ee;
    --card-bg: #ffffff;
    --white: #fafaf8;
    --text: #000000;
    --text-muted: #000000;
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Jost", system-ui, sans-serif;
    --max-width: 1100px;
    --header-h: 72px;
    --radius-card: 16px;
    --shadow-card: 0 4px 24px rgba(61, 74, 68, 0.06);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* Watercolor washes */
.wash {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    filter: blur(60px);
}

.wash--tr {
    top: -8%;
    right: -5%;
    width: min(55vw, 420px);
    height: min(55vw, 420px);
    background: radial-gradient(circle, var(--sage-wash) 0%, transparent 70%);
}

.wash--bl {
    bottom: -10%;
    left: -8%;
    width: min(50vw, 380px);
    height: min(50vw, 380px);
    background: radial-gradient(
        circle,
        var(--sage-wash-soft) 0%,
        transparent 70%
    );
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: var(--header-h);
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(109, 143, 130, 0.12);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--sage-dark);
}

.logo__mark {
    flex-shrink: 0;
    color: var(--sage);
}

.logo__text {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--sage-dark);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    background: var(--sage);
    border: 1px solid var(--sage);
    border-radius: 2px;
    transition:
        background 0.2s,
        color 0.2s,
        border-color 0.2s;
}

.btn:hover {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
}

.btn--ghost {
    color: var(--sage-dark);
    background: transparent;
}

.btn--ghost:hover {
    background: rgba(109, 143, 130, 0.1);
}

.btn--header {
    padding: 0.55rem 1.1rem;
    font-size: 0.72rem;
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 0.85rem;
}

main {
    position: relative;
    z-index: 1;
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    max-width: var(--max-width);
    margin: calc(var(--header-h) + 1.5rem) auto 0;
    padding: 2rem clamp(1.5rem, 5vw, 3rem) 2.5rem;
    background-color: var(--card-bg);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}

.hero__illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__figure {
    width: 100%;
    max-width: min(380px, 38vw);
    height: auto;
    display: block;
}

.hero__content {
    max-width: 28rem;
}

.hero__eyebrow {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.75rem;
}

.hero__title {
    font-family: var(--serif);
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--sage-dark);
    margin-bottom: 1.25rem;
}

.hero__services {
    list-style: none;
    margin-bottom: 1.25rem;
}

.hero__services li {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--sage);
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(109, 143, 130, 0.2);
}

.hero__services li:last-child {
    border-bottom: none;
}

.hero__lead {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 4rem auto 4rem;
    color: var(--sage-light);
}

.divider__line {
    flex: 1;
    height: 1px;
    background: currentColor;
    opacity: 0.6;
}

.divider__diamond {
    width: 6px;
    height: 6px;
    background: var(--sage);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* Section head */
.section-head {
    text-align: center;
    max-width: 32rem;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.section-head h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 1000;
    color: var(--sage-dark);
    margin-bottom: 0.75rem;
}

.section-head p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Services */
.services {
    max-width: var(--max-width);
    margin: 0 auto 5rem;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.service-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 0;
    margin-bottom: 2rem;
    background: var(--card-bg);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.service-feature__media {
    position: relative;
    min-height: 280px;
    background: linear-gradient(
        145deg,
        var(--sage-light) 0%,
        var(--cream) 100%
    );
}

.service-feature__media img:first-child {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    object-position: center;
}

.service-feature__branch {
    position: absolute;
    right: -0.5rem;
    bottom: 1.5rem;
    width: min(120px, 28%);
    height: auto;
    color: var(--sage-deep);
    opacity: 0.85;
    pointer-events: none;
}

.service-feature__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.75rem, 4vw, 3rem);
}

.service-feature__eyebrow {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.5rem;
}

.service-feature__title {
    font-family: var(--serif);
    font-size: clamp(1.65rem, 3.5vw, 2.1rem);
    font-weight: 500;
    color: var(--sage-deep);
    line-height: 1.15;
    margin-bottom: 0.25rem;
}

.service-feature__text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-feature__text strong {
    font-weight: 500;
    color: var(--text);
}

.service-feature__benefits-wrap {
    display: flex;
}

.service-feature__benefits {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem 1.75rem;
    margin-bottom: 1.75rem;
}

.service-feature__benefits li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.service-feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(74, 107, 94, 0.25);
    color: var(--sage-deep);
    flex-shrink: 0;
}

.btn--feature {
    align-self: flex-start;
    background: var(--sage-deep);
    border-color: var(--sage-deep);
    border-radius: 8px;
    padding: 0.85rem 1.75rem;
}

.btn--feature:hover {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
}

.feature__more {
    align-self: flex-end;
    display: inline-block;
    margin-top: 0.5rem;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--sage-deep);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.feature__more:hover {
    color: var(--sage-dark);
    text-decoration: underline;
}

.card-separator {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0.85rem 0 1rem;
}

.card-separator__line {
    flex: 1;
    width: 100%;
    height: 1px;
    background: rgba(109, 143, 130, 0.35);
}

.service-feature .card-separator {
    justify-content: flex-start;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.card,
a.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem 2.25rem;
    background: var(--card-bg);
    border: none;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    text-decoration: none;
    color: inherit;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}

.card:hover,
a.card:hover {
    box-shadow: 0 10px 36px rgba(61, 74, 68, 0.1);
    transform: translateY(-3px);
}

.card_img {
    margin-bottom: 20px;
}

.card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: var(--cream);
    color: var(--sage-deep);
}

.card h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--sage-deep);
    margin-bottom: 0;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.card .card-separator {
    justify-content: center;
    width: 100%;
    margin: 0.75rem 0 1rem;
}

.card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.card__more {
    display: inline-block;
    margin-top: auto;
    padding-top: 1rem;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--sage-deep);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.card:hover .card__more {
    color: var(--sage-dark);
    text-decoration: underline;
}

.services__note {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 2rem;
}

.services__note-icon {
    flex-shrink: 0;
    color: var(--sage);
    opacity: 0.7;
    transform: scaleX(-1);
}

.services__note p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    text-align: center;
    flex: 1;
}

/* About */
.about {
    max-width: var(--max-width);
    margin: 0 auto 5rem;
    padding: 3rem clamp(1.5rem, 5vw, 3rem);
}

.about__inner {
    display: grid;
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    background-color: var(--card-bg);
    align-items: center;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding: 30px;
}

.about__photo {
    margin: 0;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(137, 168, 148, 0.25);
    box-shadow: 0 12px 40px rgba(109, 143, 130, 0.12);
}

.about__photo img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 15%;
}

.about__body h2 {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--sage-dark);
    margin-bottom: 1rem;
}

.about__body p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.about__facts {
    list-style: none;
}

.about__facts li {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(109, 143, 130, 0.15);
}

.about__facts li:last-child {
    border-bottom: none;
}

.about__facts strong {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.35rem;
}

.about__facts span {
    font-size: 0.95rem;
    color: var(--text);
}

/* Wissenswertes */
.info {
    max-width: var(--max-width);
    margin: 0 auto 5rem;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.info__content {
    max-width: 42rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.75rem, 4vw, 2.5rem);
    background: var(--card-bg);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}

.info__block {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(109, 143, 130, 0.12);
}

.info__block:first-child {
    padding-top: 0;
}

.info__block:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.info__block h3 {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--sage-dark);
    margin-bottom: 0.75rem;
}

.info__block p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.info__block ul {
    margin: 0.75rem 0 0 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.info__block li {
    margin-bottom: 0.5rem;
}

.info__block li::marker {
    color: var(--sage);
}

.info__block li:last-child {
    margin-bottom: 0;
}

/* Contact */
.contact {
    max-width: var(--max-width);
    margin: 0 auto 5rem;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.contact-feature {
    margin-top: 2rem;
    text-align: left;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--sage-deep);
    flex-shrink: 0;
    border: 1px solid rgba(74, 107, 94, 0.15);
}

.contact-item__text {
    display: flex;
    flex-direction: column;
}

.contact-item__label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
}

.contact-item__value {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--sage-deep);
    line-height: 1.3;
}

.contact__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto 2.5rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem 1.5rem;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(109, 143, 130, 0.15);
    border-radius: 2px;
    transition:
        border-color 0.2s,
        transform 0.2s;
}

.contact-card:hover {
    border-color: var(--sage);
    transform: translateY(-2px);
}

.contact-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--sage);
    color: var(--white);
}

.contact-card__label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
}

.contact-card__value {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--sage-dark);
    line-height: 1.5;
}

/* Pricing */
.price-list {
    max-width: 32rem;
    margin: 0 auto 3rem;
    background: var(--card-bg);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding: 2.25rem clamp(1.5rem, 5vw, 2.5rem);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(109, 143, 130, 0.12);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row__label {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.price-row__name {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--sage-deep);
    line-height: 1.2;
}

.price-row__desc {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.price-row__amount {
    font-family: var(--serif);
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--sage-dark);
    margin-left: 1rem;
}

/* Service detail pages */
.page-hero {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: calc(var(--header-h) + 3rem) clamp(1.5rem, 5vw, 3rem) 2rem;
    text-align: center;
}

.page-hero__back {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--sage);
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

.page-hero__back:hover {
    color: var(--sage-dark);
}

.page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 500;
    color: var(--sage-dark);
    margin-bottom: 1rem;
}

.page-hero__lead {
    max-width: 36rem;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1rem;
}

.page-content {
    max-width: 42rem;
    margin: 0 auto 4rem;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.content-block {
    margin-bottom: 2.5rem;
}

.content-block h2 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--sage-dark);
    margin-bottom: 0.75rem;
}

.content-block h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--sage-dark);
    margin: 2rem 0 0.75rem;
}

.content-block p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.content-block ul {
    margin: 0 0 1rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.content-block li {
    margin-bottom: 0.4rem;
}

.content-block li::marker {
    color: var(--sage);
}

.page-cta {
    text-align: center;
    margin-bottom: 5rem;
}

/* Gallery */
.gallery {
    margin: 2.5rem 0;
}

.gallery__title {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--sage-dark);
    margin-bottom: 1rem;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery__item {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(137, 168, 148, 0.25);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.gallery__item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(61, 74, 68, 0.12);
}

.gallery__item img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
    z-index: 10;
}

.lightbox__close:hover {
    opacity: 1;
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2.5rem 1.5rem;
    border-top: 1px solid rgba(109, 143, 130, 0.12);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer__logo {
    color: var(--sage);
    opacity: 0.8;
}

.footer__links {
    display: flex;
    gap: 0.5rem;
    margin: 0;
}

.footer__links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer__links a:hover {
    color: var(--sage);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        margin-top: calc(var(--header-h) + 1rem);
        padding: 1.75rem clamp(1.5rem, 5vw, 3rem) 2rem;
    }

    .hero__illustration {
        order: -1;
    }

    .hero__figure {
        max-width: 260px;
        margin: 0 auto;
    }

    .hero__content {
        max-width: none;
    }

    .hero__actions {
        justify-content: center;
    }

    .service-feature {
        grid-template-columns: 1fr;
    }

    .service-feature__body {
        text-align: center;
    }

    .service-feature__body .btn--feature {
        align-self: center;
    }

    .service-feature__benefits-wrap {
        justify-content: center;
    }

    .service-feature__benefits {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-feature__media {
        min-height: 220px;
    }

    .service-feature__media img:first-child {
        min-height: 220px;
    }

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

    .services__note {
        flex-direction: column;
        text-align: center;
    }

    .about__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about__photo {
        max-width: 280px;
        margin: 0 auto;
    }

    .about__facts {
        text-align: left;
    }
    .contact-feature {
        text-align: center;
    }

    .contact-list {
        align-items: center;
    }

    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .contact-item:hover {
        transform: translateY(-2px);
    }
}

@media (max-width: 720px) {
    .services__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .btn--header {
        display: none;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }
}
