@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,600&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --c-primary: #5f2a2a;
    --color-primary: #5f2a2a;
    --c-brown-2: #746A64;
    --c-brown-3: #5C504A;
    --c-bg-1: #fff5ee;
    --c-bg-2: #f3e4e4;
    --c-text: #2F2623;

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;

    --space-1: 8px;
    --space-2: 12px;
    --space-3: 16px;
    --space-4: 24px;
    --space-5: 32px;
    --space-6: 48px;
    --space-7: 72px;
    --space-8: 96px;

    --shadow-soft: 0 10px 30px rgba(47, 38, 35, 0.10);
    --shadow-mid: 0 18px 48px rgba(47, 38, 35, 0.14);
    --shadow-deep: 0 30px 80px rgba(47, 38, 35, 0.18);

    --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-float: cubic-bezier(0.19, 1, 0.22, 1);
}

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

html,
body {
    min-height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(1200px 700px at 90% 12%, rgba(95, 42, 42, 0.10), transparent 60%),
        radial-gradient(900px 580px at 8% 86%, rgba(116, 106, 100, 0.14), transparent 62%),
        linear-gradient(165deg, var(--c-bg-1), var(--c-bg-2));
    color: var(--c-text);
    line-height: 1.72;
    letter-spacing: 0.01em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(120% 85% at 50% 38%, transparent 48%, rgba(47, 38, 35, 0.10));
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(47, 38, 35, 0.045) 0.8px, transparent 0.8px);
    background-size: 2px 2px;
    opacity: 0.04;
    z-index: -1;
}

a {
    color: inherit;
}

p,
li,
label,
input,
select,
textarea,
button {
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
.brand,
.hero-title,
.section-title {
    font-family: 'Playfair Display', serif;
    color: var(--c-primary);
    letter-spacing: -0.015em;
}

img {
    max-width: 100%;
    display: block;
}

.container,
.hero-content {
    width: min(1160px, calc(100% - 3rem));
    margin-inline: auto;
}

.section,
main > section {
    margin-block: clamp(4rem, 8vw, 7rem);
}

.brand {
    position: fixed;
    top: 24px;
    left: 40px;
    z-index: 1000;
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1;
    color: var(--c-primary);
    text-shadow: 0 2px 10px rgba(95, 42, 42, 0.1);
    pointer-events: none;
    animation: fadeInDown 0.8s var(--ease-lux) forwards;
    opacity: 0;
}

.brand--stacked {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    line-height: 0.95;
    text-align: center;
}

.brand--stacked .brand-line-1 {
    letter-spacing: 0.13em;
}

.brand--stacked .brand-line-2 {
    font-size: 0.58em;
    font-style: normal;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.navbar {
    position: fixed;
    top: 20px;
    right: 40px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 36px;
    padding: 14px 26px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(95, 42, 42, 0.16);
    background: linear-gradient(180deg, rgba(255, 245, 238, 0.55), rgba(243, 228, 228, 0.30));
    box-shadow:
        0 1px 0 rgba(255, 245, 238, 0.65) inset,
        0 14px 36px rgba(47, 38, 35, 0.14);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    transition: transform 0.5s var(--ease-lux), box-shadow 0.5s var(--ease-lux);
}

.navbar:hover {
    transform: translateY(-1px);
    box-shadow:
        0 1px 0 rgba(255, 245, 238, 0.72) inset,
        0 18px 40px rgba(47, 38, 35, 0.18);
}

.nav-top,
.nav-bottom {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

.nav-top a,
.nav-bottom a {
    display: inline-flex;
    align-items: center;
    padding: 10px 2px;
    text-decoration: none;
    color: var(--c-primary);
    font-size: 0.79rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 500;
    position: relative;
    transition: color 0.4s var(--ease-lux), transform 0.4s var(--ease-lux);
}

.nav-top a::after,
.nav-bottom a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background: var(--c-primary);
    opacity: 0.88;
    transition: width 0.45s var(--ease-lux), opacity 0.45s var(--ease-lux);
}

.nav-top a.is-active::after,
.nav-bottom a.is-active::after {
    width: 100%;
    height: 2.5px;
    opacity: 1;
}

.nav-top a.is-active,
.nav-bottom a.is-active {
    font-weight: 600;
}

.nav-top a:hover,
.nav-bottom a:hover {
    transform: translateY(-1px);
}

.nav-top a:hover::after,
.nav-bottom a:hover::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 40px 140px;
    position: relative;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    top: 6%;
    right: -10%;
    width: min(42vw, 620px);
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(95, 42, 42, 0.15), rgba(95, 42, 42, 0) 70%);
    filter: blur(30px);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 8%;
    left: -8%;
    width: min(36vw, 520px);
    aspect-ratio: 1.1;
    background: radial-gradient(circle, rgba(116, 106, 100, 0.18), rgba(116, 106, 100, 0) 72%);
    filter: blur(34px);
    z-index: -1;
}

.hero-with-photo {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 56px;
    align-items: center;
    width: 100%;
}

.hero-text {
    grid-column: 1 / span 7;
    min-width: 360px;
    animation: fadeInUp 0.9s var(--ease-lux) 0.16s forwards;
    opacity: 0;
}

.tagline {
    color: var(--c-brown-3);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.36em;
    font-weight: 400;
    margin-bottom: 26px;
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
    animation: fadeInUp 0.9s var(--ease-lux) 0.08s forwards;
    opacity: 0;
}

.tagline--brand {
    color: var(--c-primary);
}

.tagline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 1px;
    background: rgba(95, 42, 42, 0.30);
}

.hero-title {
    font-size: clamp(3.2rem, 7.8vw, 6rem);
    line-height: 1.04;
    max-width: 12ch;
    text-wrap: balance;
    margin-bottom: 30px;
    font-weight: 600;
    animation: fadeInUp 1.05s var(--ease-lux) 0.18s forwards;
    opacity: 0;
}

.hero-title--wide {
    max-width: 24ch;
}

.hero-title-strong {
    font-weight: 700;
}

.hero-description {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.85;
    max-width: 46ch;
    color: var(--c-text);
    margin-bottom: 38px;
    animation: fadeInUp 0.9s var(--ease-lux) 0.36s forwards;
    opacity: 0;
}

.cta-button,
button.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    text-decoration: none;
    background: var(--c-primary);
    color: var(--c-bg-1);
    border: 1px solid rgba(255, 245, 238, 0.36);
    border-radius: var(--radius-sm);
    box-shadow:
        0 1px 0 rgba(255, 245, 238, 0.35) inset,
        0 10px 24px rgba(95, 42, 42, 0.18);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
    transition:
        transform 0.45s var(--ease-lux),
        box-shadow 0.45s var(--ease-lux),
        background 0.45s var(--ease-lux);
    animation: fadeInUp 0.9s var(--ease-lux) 0.54s forwards;
    opacity: 0;
}

.cta-button::before,
button.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 18%, rgba(255, 245, 238, 0.22) 50%, transparent 82%);
    transform: translateX(-140%);
    transition: transform 0.9s var(--ease-float);
}

.cta-button:hover,
button.cta-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 1px 0 rgba(255, 245, 238, 0.45) inset,
        0 18px 36px rgba(95, 42, 42, 0.24);
}

.cta-button:hover::before,
button.cta-button:hover::before {
    transform: translateX(140%);
}

.cta-button:active,
button.cta-button:active {
    transform: translateY(-1px) scale(0.995);
}

.cta-button .arrow {
    transform: translateX(0);
    transition: transform 0.45s var(--ease-lux);
}

.cta-button:hover .arrow {
    transform: translateX(8px);
}

.hero-photo {
    grid-column: 9 / -1;
    justify-self: end;
    position: relative;
    width: 100%;
    max-width: 540px;
    animation: fadeInRight 1.05s var(--ease-lux) 0.42s forwards, heroFloat 7s ease-in-out 1.2s infinite;
    opacity: 0;
}

.hero-photo::before {
    content: '';
    position: absolute;
    right: -6%;
    bottom: -10%;
    width: 640px;
    height: 640px;
    background: radial-gradient(closest-side, rgba(95, 42, 42, 0.12), rgba(95, 42, 42, 0.04) 45%, transparent 72%);
    filter: blur(56px);
    z-index: -1;
    pointer-events: none;
}

.hero-photo::after {
    content: '';
    position: absolute;
    right: 4%;
    bottom: -8%;
    width: 380px;
    height: 54px;
    background: radial-gradient(ellipse, rgba(47, 38, 35, 0.28), rgba(47, 38, 35, 0) 70%);
    filter: blur(14px);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.photo-container {
    position: relative;
    display: block;
    width: 100%;
}

.photo-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(47, 38, 35, 0.24));
    transition: transform 0.9s var(--ease-lux), filter 0.9s var(--ease-lux);
    transform: translateY(0);
}

.photo-container:hover img {
    transform: translateY(-10px) scale(1.012);
    filter: drop-shadow(0 38px 68px rgba(47, 38, 35, 0.30));
}

.page-abstract-1,
.page-abstract-2,
.page-vignette {
    position: fixed;
    pointer-events: none;
}

.page-abstract-1 {
    top: 10%;
    left: -14%;
    width: min(38vw, 560px);
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(95, 42, 42, 0.10), transparent 72%);
    filter: blur(36px);
    z-index: -2;
}

.page-abstract-2 {
    bottom: -8%;
    right: -10%;
    width: min(36vw, 520px);
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(116, 106, 100, 0.14), transparent 72%);
    filter: blur(34px);
    z-index: -2;
}

.page-vignette {
    inset: 0;
    background: radial-gradient(120% 90% at 50% 34%, transparent 46%, rgba(47, 38, 35, 0.12) 100%);
    mix-blend-mode: multiply;
    z-index: -2;
}

/* Pages */
.content {
    margin-block: var(--space-7);
}

.section-title {
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.14;
    margin-bottom: 30px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--c-brown-3);
    margin: -10px auto 36px;
    max-width: 720px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.process-list,
.service-list,
.testimonials-grid,
.why-choose-list {
    display: grid;
    gap: 22px;
}

.service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
    border: 1px solid rgba(95, 42, 42, 0.14);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 245, 238, 0.72), rgba(243, 228, 228, 0.42));
    box-shadow: var(--shadow-soft);
    padding: 24px;
}

.testimonial-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: var(--c-primary);
}

.testimonial-quote {
    margin-bottom: 14px;
    color: var(--c-text);
}

.testimonial-meta {
    color: var(--c-brown-3);
    font-weight: 500;
}

.why-choose-list p {
    margin-bottom: 16px;
}

.why-choose-list p:last-child {
    margin-bottom: 0;
}

.founder-figure {
    margin: 0;
    display: grid;
    gap: 12px;
    text-align: center;
}

.founder-figure img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.founder-figure figcaption {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--c-brown-3);
}

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

.project-item {
    grid-column: span 4;
    position: relative;
    min-height: 340px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: linear-gradient(160deg, rgba(255, 245, 238, 0.66), rgba(243, 228, 228, 0.40));
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(95, 42, 42, 0.12);
    transition: transform 0.6s var(--ease-lux), box-shadow 0.6s var(--ease-lux);
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease-lux), filter 1.1s var(--ease-lux);
}

.project-item .overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 22px;
    background: linear-gradient(180deg, rgba(47, 38, 35, 0), rgba(47, 38, 35, 0.78));
    color: var(--c-bg-1);
    transform: translateY(8px);
    opacity: 0.94;
    transition: transform 0.55s var(--ease-lux), opacity 0.55s var(--ease-lux);
}

.project-item .overlay h3 {
    color: var(--c-bg-1);
    margin-bottom: 8px;
    font-size: 1.35rem;
}

.project-item .overlay p {
    color: rgba(255, 245, 238, 0.9);
    margin-bottom: 10px;
    line-height: 1.72;
}

.project-item .overlay a {
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 245, 238, 0.75);
}

.project-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-mid);
}

.project-item:hover img {
    transform: scale(1.05);
    filter: saturate(1.04) contrast(1.03);
}

.project-item:hover .overlay {
    transform: translateY(0);
    opacity: 1;
}

.service-section,
.card,
.contact-form,
.contact-details,
.image-placeholder {
    border: 1px solid rgba(95, 42, 42, 0.14);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 245, 238, 0.72), rgba(243, 228, 228, 0.42));
    box-shadow: var(--shadow-soft);
}

.service-section {
    padding: clamp(1.4rem, 2.2vw, 2rem);
    margin-bottom: 24px;
}

.service-section h2,
.service-section h3 {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    line-height: 1.2;
    margin-bottom: 14px;
}

.service-section p {
    margin-bottom: 12px;
    color: var(--c-text);
}

.service-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-section li {
    margin-bottom: 8px;
}

.pricing-cards {
    margin-top: 44px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.card {
    padding: 22px;
    transition: transform 0.55s var(--ease-lux), box-shadow 0.55s var(--ease-lux);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-mid);
}

.card h4 {
    font-size: 1.45rem;
    margin-bottom: 8px;
}

.card .price {
    color: var(--c-brown-3);
    margin-bottom: 12px;
}

.card ul {
    margin: 0 0 16px;
    padding-left: 18px;
}

.two-column {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 28px;
    align-items: center;
}

.col-image {
    grid-column: span 5;
}

.col-text {
    grid-column: span 7;
}

.col-text h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    margin-bottom: 8px;
}

.col-text h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--c-brown-3);
}

.muted {
    color: rgba(47, 38, 35, 0.85);
}

.signature {
    margin-top: 18px;
    padding-left: 16px;
    border-left: 1.5px solid rgba(95, 42, 42, 0.30);
    color: var(--c-brown-3);
}

.timeline h3 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 20px;
}

.timeline-list {
    display: grid;
    gap: 16px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 18px;
    padding: 18px;
    border: 1px solid rgba(95, 42, 42, 0.12);
    border-radius: 12px;
    background: rgba(255, 245, 238, 0.62);
    box-shadow: 0 8px 20px rgba(47, 38, 35, 0.08);
}

.timeline-item .year {
    color: var(--c-brown-3);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.timeline-item h4 {
    margin-bottom: 6px;
    font-size: 1.15rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 12px;
    padding: 24px;
}

.contact-form label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--c-brown-3);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border: 1px solid rgba(95, 42, 42, 0.24);
    background: rgba(255, 245, 238, 0.68);
    color: var(--c-text);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 0.98rem;
    transition: border-color 0.35s var(--ease-lux), box-shadow 0.35s var(--ease-lux), background 0.35s var(--ease-lux);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(95, 42, 42, 0.48);
    box-shadow: 0 0 0 4px rgba(95, 42, 42, 0.12);
}

.contact-form button.cta-button {
    justify-self: start;
    opacity: 1;
    animation: none;
}

.contact-form button.cta-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-status {
    min-height: 24px;
    font-size: 0.95rem;
}

.form-status.is-success {
    color: #2d5b3c;
}

.form-status.is-error {
    color: #7a2f2f;
}

.contact-details {
    padding: 22px;
}

.contact-details h3 {
    margin-bottom: 12px;
    font-size: 1.6rem;
}

.contact-details p,
.contact-details .socials {
    margin-bottom: 10px;
}

.contact-details a {
    text-decoration: none;
    border-bottom: 1px solid rgba(95, 42, 42, 0.45);
}

footer {
    color: rgba(47, 38, 35, 0.68);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(36px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 1100px) {
    .hero-with-photo {
        gap: 40px;
    }

    .hero-text {
        grid-column: 1 / span 8;
        min-width: 320px;
    }

    .hero-photo {
        grid-column: 9 / -1;
        max-width: 420px;
    }

    .projects-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .project-item {
        grid-column: span 3;
    }
}

@media (max-width: 900px) {
    .navbar {
        right: 20px;
        top: 16px;
        gap: 18px;
        padding: 12px 16px;
    }

    .brand {
        left: 20px;
        top: 18px;
    }

    .nav-top,
    .nav-bottom {
        gap: 14px;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .col-image,
    .col-text {
        grid-column: auto;
    }

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

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

    .service-list,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 118px 20px 84px;
        min-height: auto;
    }

    .hero-with-photo {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 28px;
    }

    .hero-text {
        min-width: auto;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2.4rem, 9vw, 3.6rem);
        margin-inline: auto;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-photo {
        max-width: 340px;
    }

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

    .project-item {
        grid-column: auto;
        min-height: 300px;
    }

    .section,
    main > section {
        margin-block: clamp(3.2rem, 7vw, 4.8rem);
    }
}

@media (max-width: 560px) {
    .navbar {
        position: static;
        width: calc(100% - 20px);
        margin: 10px auto 0;
        justify-content: center;
        flex-wrap: wrap;
    }

    .brand {
        position: static;
        text-align: center;
        margin-top: 10px;
    }

    .hero {
        padding-top: 56px;
    }

    .tagline {
        font-size: 0.73rem;
        letter-spacing: 0.24em;
    }

    .hero-title {
        font-size: clamp(2.1rem, 9.6vw, 3rem);
    }

    .hero-description {
        font-size: 0.97rem;
        line-height: 1.8;
    }

    .cta-button,
    button.cta-button {
        padding: 13px 20px;
        font-size: 0.92rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
