/* ─── RESET & BASE ───────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Outfit', sans-serif;
    background: #fafaf8;
    color: #1a1a2e;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
    --teal: #00a8b5;
    --teal-deep: #008c99;
    --magenta: #c2185b;
    --magenta-soft: #d81b60;
    --dark: #0f172a;
    --dark-deep: #020617;
    --text: #1a1a2e;
    --text-muted: #5a6578;
    --text-light: #8892a4;
    --bg: #fafaf8;
    --bg-warm: #f5f3ef;
    --white: #ffffff;
    --border: #e8e6e1;
    --max-w: 1200px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--teal), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    background: var(--magenta);
    color: var(--white);
    padding: 0.65rem 1.6rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: background 0.25s, transform 0.2s;
    text-transform: uppercase;
    text-decoration: none;
}
.btn-primary:hover {
    background: var(--magenta-soft);
    transform: translateY(-1px);
}

.btn-teal {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--teal);
    color: var(--white);
    padding: 0.9rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: background 0.25s, transform 0.2s;
    text-decoration: none;
}
.btn-teal:hover {
    background: var(--teal-deep);
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text);
    padding: 0.85rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.25s, background 0.25s;
    text-decoration: none;
}
.btn-outline:hover {
    border-color: var(--teal);
    background: rgba(0, 168, 181, 0.04);
}

/* ─── HOME: HERO ─────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 11rem 0 7rem;
    overflow: hidden;
    background: var(--bg);
}
.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.06;
    filter: grayscale(0.3);
}
.hero-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(250, 250, 248, 0.85) 0%,
        rgba(250, 250, 248, 0.4) 50%,
        rgba(240, 250, 251, 0.7) 100%
    );
}
.hero-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(180deg, #f0fafb 0%, #f8f7f5 100%);
    border-bottom-left-radius: 160px;
    z-index: 0;
}
.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.hero-content {
    max-width: 600px;
    animation: fadeUp 0.8s ease-out both;
}
.hero-badge {
    display: inline-block;
    margin-bottom: 1.2rem;
    padding: 0.4rem 1rem;
    background: rgba(0, 168, 181, 0.08);
    color: var(--teal);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(0, 168, 181, 0.15);
}
.hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text);
}
.hero p {
    font-size: 1.08rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 520px;
    font-weight: 300;
    line-height: 1.85;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    animation: fadeUp 0.8s 0.15s ease-out both;
}
.hero-image-frame {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3 / 4;
    border-radius: 200px 200px 8px 8px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    border: 6px solid var(--white);
    transform: rotate(2deg);
}
.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── HOME: PORTFOLIO ────────────────────────────────────────── */
.portfolio {
    padding: 6rem 0;
    background: var(--white);
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
}
.section-header a {
    color: var(--magenta);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.section-header a:hover {
    color: var(--magenta-soft);
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.02rem;
    margin-top: 0.5rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.25rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
.gallery-item:hover img {
    transform: scale(1.04);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85), transparent);
    color: var(--white);
}
.gallery-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.gallery-overlay p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
}
.gallery-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.gallery-col .gallery-item {
    flex: 1;
}

/* ─── HOME: ABOUT ────────────────────────────────────────────── */
.about {
    padding: 6rem 0;
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.about-glow-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--magenta);
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.1;
    pointer-events: none;
}
.about-glow-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--teal);
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.1;
    pointer-events: none;
}
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.about-label {
    color: var(--teal);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}
.about h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}
.about p {
    color: #b8c0d0;
    font-size: 1.02rem;
    font-weight: 300;
    line-height: 1.85;
    margin-bottom: 1rem;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}
.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 0.3rem;
}
.stat-label {
    color: var(--text-light);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}
.about-image-wrap {
    position: relative;
    padding-bottom: 2rem;
}
.about-image-wrap img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.about-badge {
    position: absolute;
    bottom: 0;
    left: -1.5rem;
    width: 11rem;
    height: 11rem;
    background: var(--magenta);
    padding: 1.5rem;
    display: flex;
    align-items: flex-end;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.35;
    font-family: 'Cormorant Garamond', serif;
}

/* ─── HOME: SERVICES ─────────────────────────────────────────── */
.services {
    padding: 6rem 0;
    background: var(--bg);
}
.services-heading {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 4rem;
}
.services-heading h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.services-heading p {
    color: var(--text-muted);
    font-size: 1.02rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: box-shadow 0.35s, border-color 0.35s;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
    border-color: transparent;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, var(--teal), var(--magenta));
    transition: height 0.4s ease;
}
.service-card:hover::before {
    height: 100%;
}
.service-icon {
    width: 3rem;
    height: 3rem;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.service-card p {
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.service-card a {
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.service-card a:hover {
    color: var(--teal);
}

/* ─── HOME: TESTIMONIALS ─────────────────────────────────────── */
.testimonials {
    padding: 6rem 0;
    background: #f0fafb;
}
.testimonials h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3.5rem;
}
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.review-card {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid rgba(0, 168, 181, 0.1);
    position: relative;
}
.review-card .quote-mark {
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    font-size: 6rem;
    line-height: 1;
    color: rgba(0, 168, 181, 0.06);
    font-family: Georgia, serif;
    pointer-events: none;
}
.stars {
    color: var(--magenta);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
}
.review-text {
    font-size: 1rem;
    color: #3a4255;
    font-style: italic;
    font-weight: 300;
    line-height: 1.8;
    margin: 1.25rem 0 2rem;
    position: relative;
    z-index: 1;
}
.reviewer {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.reviewer-avatar {
    width: 2.8rem;
    height: 2.8rem;
    background: #e8e6e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.8rem;
}
.reviewer-name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}
.reviewer-loc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ─── HOME: CTA ──────────────────────────────────────────────── */
.cta {
    padding: 7rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    filter: grayscale(1);
    pointer-events: none;
}
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 650px;
}
.cta h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.cta p {
    font-size: 1.08rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE PAGES
   ═══════════════════════════════════════════════════════════════ */

/* ─── SERVICE: HERO ──────────────────────────────────────────── */
.svc-hero {
    position: relative;
    padding: 12rem 0 5rem;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
}
.svc-hero--short {
    padding: 10rem 0 4rem;
}
.svc-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.svc-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}
.svc-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.7) 0%,
        rgba(15, 23, 42, 0.85) 100%
    );
    pointer-events: none;
}
.svc-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.svc-hero h1 {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.svc-hero__subtitle {
    font-size: 1.1rem;
    color: #b8c0d0;
    font-weight: 300;
    line-height: 1.75;
    max-width: 560px;
}
.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.82rem;
    font-family: 'Outfit', sans-serif;
    color: #8892a4;
}
.breadcrumb a {
    color: var(--teal);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb a:hover {
    color: var(--white);
}
.breadcrumb span[aria-current] {
    color: rgba(255, 255, 255, 0.6);
}
.breadcrumb span[aria-hidden] {
    margin: 0 0.5rem;
    color: #94a3b8;
}

/* ─── SERVICE: CONTENT ───────────────────────────────────────── */
.svc-content {
    padding: 5rem 0;
    background: var(--white);
}
.svc-content__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.svc-content__intro {
    font-size: 1.15rem;
    color: var(--text);
    font-weight: 400;
    line-height: 1.85;
    margin-bottom: 1.5rem;
}
.svc-content__body {
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.85;
    margin-bottom: 2rem;
}
.svc-content__body p {
    margin-bottom: 1rem;
}
.svc-content__image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    border: 1px solid var(--border);
}
.svc-content__thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
}
a.svc-content__thumb {
    display: block;
    overflow: hidden;
    aspect-ratio: 1;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: border-color 0.3s ease;
}
a.svc-content__thumb:hover {
    border-color: var(--teal);
}
.svc-content__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, opacity 0.3s ease;
    opacity: 0.75;
}
.svc-content__thumb:hover img {
    transform: scale(1.08);
    opacity: 1;
}

/* ─── SERVICE: FEATURES ──────────────────────────────────────── */
.svc-features {
    padding: 5rem 0;
    background: var(--bg);
}
.svc-features h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3.5rem;
}
.svc-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.svc-feature-card {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: box-shadow 0.35s, border-color 0.35s;
}
.svc-feature-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}
.svc-feature-card__icon {
    width: 3rem;
    height: 3rem;
    background: rgba(0, 168, 181, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.svc-feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.svc-feature-card p {
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.75;
    font-size: 0.95rem;
}

/* ─── SERVICE: GALLERY ───────────────────────────────────────── */
.svc-gallery {
    padding: 5rem 0;
    background: var(--white);
}
.svc-gallery h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}
.svc-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.svc-gallery__item {
    overflow: hidden;
    aspect-ratio: 4/3;
}
.svc-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.svc-gallery__item:hover img {
    transform: scale(1.05);
}

/* ─── SERVICE: OTHER SERVICES ────────────────────────────────── */
.svc-other {
    padding: 5rem 0;
    background: #f0fafb;
}
.svc-other h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}
.svc-other__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.svc-other__card {
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.35s, border-color 0.35s;
}
.svc-other__card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}
.svc-other__card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.svc-other__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.svc-other__card:hover .svc-other__card-image img {
    transform: scale(1.05);
}
.svc-other__card-body {
    padding: 1.5rem;
}
.svc-other__card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.svc-other__link {
    color: var(--magenta);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    transition: color 0.2s;
}
.svc-other__card:hover .svc-other__link {
    color: var(--magenta-soft);
}

/* ─── SERVICE: CTA ───────────────────────────────────────────── */
.svc-cta {
    padding: 6rem 0;
    background: var(--dark);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.svc-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}
.svc-cta p {
    color: #b8c0d0;
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}
.svc-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.svc-cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}
.svc-cta .btn-outline:hover {
    border-color: var(--teal);
    background: rgba(0, 168, 181, 0.1);
}

/* ─── SERVICE: PROCESS ───────────────────────────────────────── */
.svc-process {
    padding: 5rem 0;
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.svc-process__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}
.svc-process__header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.svc-process__header p {
    color: #8892a4;
    font-weight: 300;
    font-size: 1.02rem;
    line-height: 1.7;
}
.svc-process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}
.svc-process__grid::before {
    content: '';
    position: absolute;
    top: 2.2rem;
    left: 3rem;
    right: 3rem;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 168, 181, 0.3), rgba(194, 24, 91, 0.3), transparent);
}
.svc-process__step {
    position: relative;
    padding-top: 0.5rem;
}
.svc-process__number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--teal);
    opacity: 0.25;
    margin-bottom: 0.75rem;
    line-height: 1;
}
.svc-process__step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}
.svc-process__step p {
    color: #8892a4;
    font-weight: 300;
    font-size: 0.92rem;
    line-height: 1.75;
}

/* ─── SERVICE: TESTIMONIAL ───────────────────────────────────── */
.svc-testimonial {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0fafb 0%, #faf5f8 100%);
}
.svc-testimonial__inner {
    max-width: 800px;
}
.svc-testimonial__card {
    background: var(--white);
    padding: 3.5rem;
    border: 1px solid var(--border);
    position: relative;
    text-align: center;
}
.svc-testimonial__quote {
    margin-bottom: 1.5rem;
}
.svc-testimonial__card blockquote {
    margin: 0;
}
.svc-testimonial__card blockquote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.svc-testimonial__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
}
.svc-testimonial__avatar {
    width: 3rem;
    height: 3rem;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 0.85rem;
    font-family: 'Outfit', sans-serif;
}
.svc-testimonial__name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}
.svc-testimonial__loc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ─── SERVICE: FAQ ───────────────────────────────────────────── */
.svc-faq {
    padding: 5rem 0;
    background: var(--bg);
}
.svc-faq h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}
.svc-faq__list {
    max-width: 800px;
    margin: 0 auto;
}
.svc-faq__item {
    border: 1px solid var(--border);
    background: var(--white);
    margin-bottom: -1px;
}
.svc-faq__item[open] {
    border-color: rgba(0, 168, 181, 0.3);
}
.svc-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    list-style: none;
    transition: color 0.2s;
}
.svc-faq__question::-webkit-details-marker {
    display: none;
}
.svc-faq__question::marker {
    display: none;
    content: '';
}
.svc-faq__question:hover {
    color: var(--teal);
}
.svc-faq__chevron {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}
.svc-faq__item[open] .svc-faq__chevron {
    transform: rotate(180deg);
    color: var(--teal);
}
.svc-faq__answer {
    padding: 0 2rem 1.5rem;
}
.svc-faq__answer p {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.85;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */
.contact-body {
    padding: 5rem 0;
    background: var(--white);
}
.contact-body__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-body__intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.85;
    margin-bottom: 2.5rem;
}
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg);
    border: 1px solid var(--border);
}
.contact-card strong {
    color: var(--text);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}
.contact-card a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.contact-card a:hover {
    color: var(--teal);
}
.contact-body__form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.contact-form-fallback {
    padding: 2rem;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text-muted);
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--dark-deep);
    color: #8892a4;
    padding: 5rem 0;
    border-top: 1px solid #1e293b;
}
.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo .logo-lady {
    font-size: 1.8rem;
}
.footer-logo .logo-landscapers {
    font-size: 0.85rem;
}
.site-footer p {
    color: var(--text-muted);
    max-width: 340px;
    font-weight: 300;
    line-height: 1.75;
    font-size: 0.92rem;
    margin-top: 1.2rem;
}
.footer-heading {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.06em;
    font-size: 0.82rem;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}
.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    margin: 0;
}
.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.92rem;
}
.contact-list a {
    color: #8892a4;
    text-decoration: none;
    transition: color 0.2s;
}
.contact-list a:hover {
    color: var(--white);
}
.social-btn {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: #1e293b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background 0.25s;
}
.social-btn:hover {
    background: var(--teal);
}
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
    color: #94a3b8;
}
.footer-bottom__right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.footer-credit {
    color: #64748b;
}
.footer-credit a {
    color: #94a3b8;
    transition: color 0.2s;
}
.footer-credit a:hover {
    color: var(--white);
}
.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-link:hover {
    color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
    .hero-image-wrap {
        display: none;
    }
    .hero-bg-shape {
        display: none;
    }
    .hero {
        padding: 9rem 0 5rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }
    .gallery-col {
        flex-direction: row;
    }
    .about-inner {
        grid-template-columns: 1fr;
    }
    .about-image-wrap {
        order: -1;
    }
    .about-badge {
        left: 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .svc-content__inner {
        grid-template-columns: 1fr;
    }
    .svc-content__image {
        order: -1;
    }
    .svc-features__grid {
        grid-template-columns: 1fr;
    }
    .svc-gallery__grid {
        grid-template-columns: 1fr 1fr;
    }
    .svc-other__grid {
        grid-template-columns: 1fr;
    }
    .contact-body__inner {
        grid-template-columns: 1fr;
    }
    .svc-process__grid {
        grid-template-columns: 1fr 1fr;
    }
    .svc-process__grid::before {
        display: none;
    }
    .svc-testimonial__card {
        padding: 2.5rem 2rem;
    }
    .svc-testimonial__card blockquote p {
        font-size: 1.2rem;
    }
    .svc-faq__question {
        padding: 1.25rem 1.5rem;
    }
    .svc-faq__answer {
        padding: 0 1.5rem 1.25rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1.2rem;
    }
    .gallery-col {
        flex-direction: column;
    }
    .svc-gallery__grid {
        grid-template-columns: 1fr;
    }
    .svc-hero {
        padding: 9rem 0 3rem;
    }
    .svc-process__grid {
        grid-template-columns: 1fr;
    }
}

/* ─── HOME: ASSOCIATES / SUPPLIERS ────────────────────────────── */
.associates {
    padding: 3.5rem 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.associates__title {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-family: 'Outfit', sans-serif;
}
.associates__track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.associates__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: filter 0.35s ease, opacity 0.35s ease;
    filter: grayscale(1);
    opacity: 0.5;
}
.associates__logo:hover {
    filter: grayscale(0);
    opacity: 1;
}
.associates__logo img {
    max-height: 50px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
}

@media (max-width: 600px) {
    .associates__track {
        gap: 2rem;
    }
    .associates__logo img {
        max-height: 36px;
        max-width: 120px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PORTFOLIO PAGE
   ═══════════════════════════════════════════════════════════════ */
.portfolio-page {
    padding: 4rem 0 6rem;
    background: var(--bg);
}

/* Filter Bar */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}
.portfolio-filter {
    padding: 0.55rem 1.3rem;
    border: 1px solid var(--border);
    background: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s;
    letter-spacing: 0.02em;
}
.portfolio-filter:hover {
    border-color: var(--teal);
    color: var(--teal);
}
.portfolio-filter.is-active {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

/* Masonry Grid — CSS columns handle any image ratio automatically */
.portfolio-masonry {
    columns: 3;
    column-gap: 1rem;
}
.portfolio-masonry__item {
    break-inside: avoid;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    line-height: 0;
}
.portfolio-masonry__item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}
.portfolio-masonry__item:hover img {
    transform: scale(1.04);
}
.portfolio-masonry__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.75) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.portfolio-masonry__item:hover .portfolio-masonry__overlay {
    opacity: 1;
}
.portfolio-masonry__title {
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}
.portfolio-masonry__cat {
    color: var(--teal);
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.3rem;
    line-height: 1;
}

@media (max-width: 900px) {
    .portfolio-masonry {
        columns: 2;
    }
}
@media (max-width: 600px) {
    .portfolio-masonry {
        columns: 1;
    }
    .portfolio-filters {
        gap: 0.4rem;
    }
    .portfolio-filter {
        font-size: 0.75rem;
        padding: 0.45rem 0.9rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   STANDARD TEMPLATES (page, single, archive, search, 404)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Standard Content Wrapper ───────────────────────────────── */
.standard-content {
    padding: 4rem 0 5rem;
    background: var(--white);
}
.standard-content__inner {
    max-width: 820px;
    margin: 0 auto;
}
.archive-listing .standard-content__inner {
    max-width: var(--max-w);
}

/* ─── Prose (WYSIWYG / the_content) ──────────────────────────── */
.prose {
    color: var(--text);
    font-weight: 300;
    line-height: 1.85;
    font-size: 1.02rem;
}
.prose h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: var(--text);
}
.prose h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2rem 0 0.75rem;
}
.prose h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 1.5rem 0 0.5rem;
}
.prose p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}
.prose a {
    color: var(--teal);
    text-decoration: underline;
    text-decoration-color: rgba(0, 168, 181, 0.3);
    text-underline-offset: 2px;
    transition: text-decoration-color 0.2s;
}
.prose a:hover {
    text-decoration-color: var(--teal);
}
.prose ul, .prose ol {
    margin: 0 0 1.25rem 1.5rem;
    color: var(--text-muted);
}
.prose li {
    margin-bottom: 0.5rem;
}
.prose blockquote {
    border-left: 3px solid var(--teal);
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    background: rgba(0, 168, 181, 0.03);
    font-style: italic;
}
.prose blockquote p {
    margin-bottom: 0;
}
.prose img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem 0;
}
.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}
.prose th, .prose td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    text-align: left;
}
.prose th {
    background: var(--bg);
    font-weight: 600;
    color: var(--text);
}
.prose hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2.5rem 0;
}

.entry-featured-image {
    margin-bottom: 2rem;
}
.entry-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ─── Post Meta ──────────────────────────────────────────────── */
.post-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
}
.post-meta__sep {
    color: var(--border);
}

/* ─── Post Tags ──────────────────────────────────────────────── */
.post-tags {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.tag-list a {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: var(--bg);
    border: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.2s, color 0.2s;
}
.tag-list a:hover {
    border-color: var(--teal);
    color: var(--teal);
}

/* ─── Post Navigation ────────────────────────────────────────── */
.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.post-nav__prev,
.post-nav__next {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.post-nav__next {
    text-align: right;
}
.post-nav__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
}
.post-nav a {
    color: var(--text);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.2s;
}
.post-nav a:hover {
    color: var(--teal);
}

/* ─── Post Grid (Archive / Search) ───────────────────────────── */
.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.post-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.35s, border-color 0.35s;
}
.post-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}
.post-card__image {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.post-card:hover .post-card__image img {
    transform: scale(1.04);
}
.post-card__body {
    padding: 1.5rem;
}
.post-card__cat {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}
.post-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.post-card__title a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}
.post-card__title a:hover {
    color: var(--teal);
}
.post-card__excerpt {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}
.post-card__meta {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ─── Pagination ─────────────────────────────────────────────── */
.pagination {
    text-align: center;
}
.pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.pagination a,
.pagination span {
    display: inline-block;
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    border: 1px solid var(--border);
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.pagination a:hover {
    border-color: var(--teal);
    color: var(--teal);
}
.pagination .current {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

/* ─── Search Form ────────────────────────────────────────────── */
.search-form-wrap {
    margin-bottom: 2.5rem;
}
.ll-search-form {
    display: flex;
    max-width: 500px;
}
.ll-search-form__input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: 1px solid var(--border);
    border-right: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s;
}
.ll-search-form__input:focus {
    border-color: var(--teal);
}
.ll-search-form__btn {
    padding: 0.85rem 1.25rem;
    border: 1px solid var(--border);
    background: var(--bg);
    cursor: pointer;
    color: var(--text-muted);
    transition: background 0.2s, color 0.2s;
}
.ll-search-form__btn:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}
.search-count {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ─── No Results / 404 ───────────────────────────────────────── */
.no-results,
.error-404 {
    text-align: center;
    padding: 4rem 0;
    max-width: 550px;
    margin: 0 auto;
}
.error-404__code {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--teal), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.no-results h2,
.error-404 h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.no-results p,
.error-404 p {
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 2rem;
}
.error-404__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ─── Comments ───────────────────────────────────────────────── */
.comments-area {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}
.comments-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem;
}
.comment-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}
.comment-list .comment-author {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}
.comment-list .comment-author img {
    border-radius: 50%;
    margin-right: 0.5rem;
    vertical-align: middle;
}
.comment-list .comment-metadata {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}
.comment-list .comment-metadata a {
    color: var(--text-light);
    text-decoration: none;
}
.comment-list .comment-content p {
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.75;
}
.comment-respond label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.4rem;
    font-family: 'Outfit', sans-serif;
}
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 1.25rem;
    outline: none;
    transition: border-color 0.2s;
}
.comment-respond input:focus,
.comment-respond textarea:focus {
    border-color: var(--teal);
}
.comment-respond textarea {
    min-height: 150px;
    resize: vertical;
}
.no-comments {
    color: var(--text-muted);
    font-style: italic;
}

/* ─── Page Links (multi-page posts) ──────────────────────────── */
.page-links {
    margin: 2rem 0;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.page-links a {
    color: var(--teal);
    text-decoration: none;
    margin: 0 0.3rem;
}

/* ─── Responsive: Standard Templates ────────────────────────── */
@media (max-width: 900px) {
    .post-grid {
        grid-template-columns: 1fr 1fr;
    }
    .post-nav {
        grid-template-columns: 1fr;
    }
    .post-nav__next {
        text-align: left;
    }
}
@media (max-width: 600px) {
    .post-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
