/* ===========================================
   0. CSS CUSTOM PROPERTIES
   =========================================== */
:root {
    --color-bg: #FFFFFF;
    --color-text: #1A1A1A;
    --color-accent: #96532A;
    --color-accent-light: #B8704A;
    --color-dark-bg: #111111;
    --color-dark-text: #F0F0F0;
    --color-line: #96532A;

    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Cormorant Garamond', 'Georgia', serif;
    --font-mono: 'Space Mono', 'Courier New', monospace;

    --max-width: 1100px;
    --side-padding: 80px;
}

/* ===========================================
   1. RESET & BASE
   =========================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: var(--side-padding);
    padding-right: var(--side-padding);
}

.accent {
    color: var(--color-accent);
}

/* ===========================================
   2. HEADER / NAVIGATION
   =========================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-bg);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px var(--side-padding);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 28px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.main-nav a {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--color-accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-text);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ===========================================
   3. HERO SECTION
   =========================================== */
.hero {
    width: 100%;
    overflow: hidden;
    /* text area = 12.8vw tall, 24px top + 40px bottom breathing room */
    height: calc(12.8vw + 64px);
}

.hero-title {
    width: 100%;
    height: auto;
    display: block;
    /* leave 24px above text */
    margin-top: calc(-24.4vw + 24px);
}

/* ===========================================
   4. TAGLINE SECTION
   =========================================== */
.tagline {
    padding: 20px 0 60px;
    text-align: center;
}

.tagline-heading {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 1.8vw, 1.8rem);
    font-weight: 400;
    line-height: 1.4;
    white-space: nowrap;
    margin: 0 auto 24px;
}

.tagline-body {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    font-weight: 400;
    line-height: 1.7;
    white-space: nowrap;
    margin: 0 auto;
    color: #444;
}

/* ===========================================
   5. IMAGE CAROUSEL
   =========================================== */
.carousel {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 40px 0;
}

.carousel-track {
    display: flex;
    gap: 16px;
    will-change: transform;
}

.carousel-item {
    flex: 0 0 auto;
    width: 280px;
    height: 370px;
    overflow: hidden;
    border-radius: 2px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===========================================
   6. CTA - DISCOVER OUR WORK
   =========================================== */
.cta-work {
    text-align: center;
    padding: 60px 0 80px;
}

.cta-link {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--color-text);
    transition: color 0.2s ease;
}

.cta-link:hover {
    color: var(--color-accent);
}

/* ===========================================
   7. SERVICES SECTION
   =========================================== */
.services {
    padding: 80px 0;
}

.services-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}

.services-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-accent);
    letter-spacing: 0.05em;
}

.services-divider {
    height: 2px;
    box-sizing: border-box;
    border-top: 1px solid #a7705f;
    background: #752f1f;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    padding: 50px 0;
}

.service-name h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
}

.service-detail h4 {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 1.4vw, 1.25rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
}

.service-detail p {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.7;
    color: #444;
}

/* ===========================================
   8. THE GAP SECTION
   =========================================== */
.gap-section {
    padding: 20px 0 100px;
}

.gap-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
    margin-bottom: 40px;
    max-width: 500px;
}

.gap-body {
    max-width: 800px;
}

.gap-body p {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
}

.gap-cta {
    font-weight: 600;
    color: var(--color-text) !important;
}

/* ===========================================
   9. FULL-WIDTH BANNER
   =========================================== */
.banner {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.banner-bg {
    min-height: 50vh;
    background-color: #2A2A2A;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.banner-text {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3.15vw, 3.5rem);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    line-height: 1.3;
}

/* ===========================================
   10. PHILOSOPHY SECTION
   =========================================== */
.philosophy {
    padding: 100px 0 8px;
}

.philosophy-text {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.8;
    color: #333;
    max-width: 800px;
    margin-bottom: 16px;
}

.underline-accent {
    text-decoration: underline;
    text-decoration-color: var(--color-accent);
    text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
}

.underline-accent:hover {
    color: var(--color-accent);
}

/* ===========================================
   11. LATEST WORK SECTION
   =========================================== */
.latest-work {
    background: var(--color-bg);
    color: var(--color-text);
    padding: 50px 0 120px;
}

.latest-work-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 400;
    margin-bottom: 60px;
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.work-item {
    overflow: hidden;
    border-radius: 2px;
}

.work-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.work-item:hover img {
    transform: scale(1.03);
}

/* ===========================================
   12. SEE MORE PROJECTS LINK
   =========================================== */
.see-more-wrap {
    text-align: center;
    margin-top: 60px;
}

.see-more-link {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--color-dark-text);
    transition: color 0.2s ease;
}

.see-more-link:hover {
    color: var(--color-accent-light);
}

/* ===========================================
   12b. FOOTER
   =========================================== */
.site-footer {
    background: #8a412b;
    color: #fff;
    padding: 60px 0 40px;
    overflow: hidden;
}

.footer-wordmark {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(4.5rem, 21vw, 22rem);
    letter-spacing: 0.12em;
    line-height: 0.9;
    text-align: center;
    color: #752f1f;
    text-transform: uppercase;
    margin-bottom: 60px;
    user-select: none;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    gap: 40px;
    padding: 0 var(--side-padding);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #fff;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-center {
    text-align: center;
}

.footer-horse {
    width: 208px;
    height: auto;
    margin: 0 auto 10px;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-copy {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    color: #fff;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    color: #fff;
    display: inline-flex;
    transition: opacity 0.2s ease;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-email {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: #fff;
    transition: opacity 0.2s ease;
}

.footer-email:hover {
    opacity: 0.7;
}

/* ===========================================
   14. SERVICES PAGE — HERO
   =========================================== */
.svc-hero {
    overflow: hidden;
}

.svc-hero-bg {
    min-height: 50vh;
    background-color: #2A3A2A;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.svc-hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(5rem, 14vw, 16rem);
    letter-spacing: 0.12em;
    line-height: 0.9;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    mix-blend-mode: difference;
}

/* ===========================================
   15. SERVICES PAGE — INTRO
   =========================================== */
.svc-intro {
    padding-bottom: 80px;
}

.svc-intro-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    margin-bottom: 60px;
}

.svc-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svc-intro-quote {
    margin-bottom: 40px;
}

.svc-intro-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
    max-width: 700px;
}

.svc-intro-body p {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.8;
    color: #444;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

/* ===========================================
   16. SERVICES PAGE — SERVICE SECTIONS
   =========================================== */
.svc-section {
    padding: 80px 0;
    border-top: 1px solid #e0e0e0;
}

.svc-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

.svc-number {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}

.svc-arrow {
    font-size: 0.8rem;
}

.svc-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    max-width: 700px;
}

.svc-description {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.8;
    color: #444;
    max-width: 700px;
    margin-bottom: 40px;
}

/* Title with price on the right */
.svc-title-with-price {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.svc-standalone-price {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    padding-top: 12px;
}

/* ===========================================
   17. SERVICES PAGE — PRICING CARDS
   =========================================== */
.svc-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 40px 0;
}

.svc-pricing-card {
    border-top: 1px solid #ddd;
    padding-top: 24px;
}

.svc-pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

.svc-pricing-name {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 1.6vw, 1.5rem);
    font-weight: 700;
}

.svc-pricing-price {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.svc-pricing-desc {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

/* ===========================================
   18. SERVICES PAGE — TOGGLE / INCLUDES
   =========================================== */
.svc-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0;
    color: var(--color-text);
    transition: color 0.2s ease;
}

.svc-toggle-btn:hover {
    color: var(--color-accent);
}

.svc-toggle-arrow {
    transition: transform 0.3s ease;
    font-size: 0.75rem;
}

.svc-toggle-btn.active .svc-toggle-arrow {
    transform: rotate(180deg);
}

.svc-toggle-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.svc-toggle-content.open {
    max-height: 500px;
}

.svc-toggle-content ul {
    list-style: none;
    padding: 12px 0 20px;
}

.svc-toggle-content ul li {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    line-height: 1.8;
    color: #444;
    padding-left: 16px;
    position: relative;
}

.svc-toggle-content ul li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: #999;
}

/* ===========================================
   19. SERVICES PAGE — LISTS
   =========================================== */
.svc-list-columns {
    margin: 32px 0;
}

.svc-list-columns--two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.svc-list-heading {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.svc-arrow-small {
    font-size: 0.7rem;
}

.svc-list {
    list-style: none;
}

.svc-list li {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    line-height: 1.8;
    color: #444;
    padding-left: 16px;
    position: relative;
}

.svc-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: #999;
}

.svc-note {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    font-style: italic;
    color: #666;
    margin-top: 24px;
}

.svc-footnote {
    font-family: var(--font-body);
    font-size: clamp(0.8rem, 0.9vw, 0.85rem);
    color: #777;
    line-height: 1.7;
    margin: 24px 0 40px;
    max-width: 700px;
}

/* ===========================================
   20. SERVICES PAGE — CAROUSEL
   =========================================== */
.svc-carousel {
    margin: 40px 0;
    overflow: hidden;
    position: relative;
}

.svc-carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
}

.svc-carousel-item {
    flex: 0 0 calc(50% - 8px);
    border-radius: 2px;
    overflow: hidden;
}

.svc-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}

.svc-carousel-item--phone {
    flex: 0 0 220px;
}

.svc-carousel-item--phone img {
    aspect-ratio: auto;
}

.svc-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.svc-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease;
}

.svc-carousel-dot.active {
    background: var(--color-text);
}

/* ===========================================
   21. SERVICES PAGE — BEST FOR
   =========================================== */
.svc-bestfor {
    margin-top: 32px;
    padding-top: 20px;
}

.svc-bestfor-heading {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
}

.svc-bestfor p {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    line-height: 1.7;
    color: #555;
    font-style: italic;
    max-width: 600px;
}

/* ===========================================
   22. SERVICES PAGE — BOTTOM
   =========================================== */
.svc-bottom {
    padding: 100px 0;
    text-align: center;
}

.svc-bottom-text {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.8;
    color: #333;
    max-width: 700px;
    margin: 0 auto 16px;
}

.svc-bottom-text--strong {
    font-weight: 600;
    color: var(--color-text);
}

/* ===========================================
   23. NAV ACTIVE STATE
   =========================================== */
.nav-active {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
}

/* ===========================================
   13. RESPONSIVE
   =========================================== */
@media (max-width: 768px) {
    :root {
        --side-padding: 24px;
    }

    /* Header */
    .header-inner {
        padding: 18px var(--side-padding);
    }

    .nav-toggle {
        display: flex;
        z-index: 110;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        z-index: 105;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .main-nav a {
        font-size: 1rem;
    }

    /* Nav toggle X state */
    .nav-toggle.active .nav-toggle-line:first-child {
        transform: translateY(3.75px) rotate(45deg);
    }

    .nav-toggle.active .nav-toggle-line:last-child {
        transform: translateY(-3.75px) rotate(-45deg);
    }

    /* Hero */
    .hero {
        padding: 30px var(--side-padding) 40px;
    }

    .hero-title {
        letter-spacing: 0.06em;
    }

    /* Tagline */
    .tagline {
        padding: 10px 0 40px;
    }

    /* Carousel */
    .carousel-item {
        width: 200px;
        height: 260px;
    }

    /* Services */
    .services {
        padding: 50px 0;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 0;
    }

    .services-header {
        padding-bottom: 14px;
    }

    /* Gap section */
    .gap-section {
        padding: 60px 0;
    }

    /* Banner */
    .banner-bg {
        min-height: 50vh;
    }

    .banner-text {
        font-size: clamp(1.3rem, 5vw, 2rem);
    }

    /* Philosophy */
    .philosophy {
        padding: 60px 0;
    }

    /* Latest work */
    .latest-work {
        padding: 60px 0 80px;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .see-more-wrap {
        margin-top: 40px;
    }

    /* Footer */
    .site-footer {
        padding: 40px 0 24px;
    }

    .footer-wordmark {
        margin-bottom: 40px;
        letter-spacing: 0.06em;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-right {
        align-items: center;
    }

    /* Services page */
    .svc-hero-bg {
        min-height: 35vh;
    }

    .svc-hero-title {
        letter-spacing: 0.06em;
    }

    .svc-section {
        padding: 50px 0;
    }

    .svc-pricing {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .svc-list-columns--two {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .svc-title-with-price {
        flex-direction: column;
        gap: 8px;
    }

    .svc-carousel-item {
        flex: 0 0 80%;
    }

    .svc-bottom {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(3rem, 16vw, 5rem);
    }

    .carousel-item {
        width: 160px;
        height: 210px;
    }
}

/* ===========================================
   24. SERVICES PAGE REBUILD
   =========================================== */
body.services-page {
    font-family: 'Inter', Arial, sans-serif;
    background: #fff;
    color: #171717;
}

.services-page .site-header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
}

.services-page .header-inner {
    max-width: 1500px;
    padding: 18px 38px 14px;
}

.services-page .logo {
    gap: 8px;
}

.services-page .logo-text,
.services-page .main-nav a {
    font-family: 'Inter', Arial, sans-serif;
}

.services-page .logo-text {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.24em;
}

.services-page .main-nav {
    gap: 38px;
}

.services-page .main-nav a {
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0;
}

.services-layout {
    padding-bottom: 56px;
}

.services-shell {
    width: min(1500px, calc(100% - 76px));
    margin: 0 auto;
}

.services-hero {
    padding: 8px 0 48px;
}

.services-hero__wordmark {
    margin: 8px 0 12px;
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-size: clamp(6.5rem, 17.5vw, 13.5rem);
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: 0.12em;
    text-align: center;
    color: #1a1a1a;
    transform: translateX(0.07em);
}

.services-hero__visual img {
    width: 100%;
    display: block;
}

.svc-panel {
    width: min(1360px, calc(100% - 110px));
    margin: 0 auto 42px;
}

.svc-panel__inner {
    border: 2px solid #2b2b2b;
    padding: 36px 40px 30px;
}

.svc-panel__eyebrow {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.svc-panel__title {
    max-width: 760px;
    margin-top: 28px;
    font-size: clamp(1.45rem, 1.8vw, 1.95rem);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.03em;
}

.svc-panel__body {
    max-width: 820px;
    margin-top: 18px;
    font-size: 0.87rem;
    line-height: 1.42;
    font-weight: 400;
}

.svc-panel__body--wide {
    max-width: 1080px;
}

.svc-panel__split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 44px;
    align-items: start;
}

.svc-panel__split--social {
    grid-template-columns: minmax(0, 1fr) 230px;
}

.svc-panel__split--narrow {
    grid-template-columns: minmax(0, 1fr) 240px;
}

.svc-panel__aside {
    justify-self: end;
}

.svc-panel__aside img,
.svc-panel__media img {
    display: block;
    max-width: 100%;
    height: auto;
}

.svc-panel__media--full {
    margin-top: 40px;
}

.svc-panel__title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: start;
}

.svc-panel__title-row .svc-panel__title {
    margin-top: 0;
}

.svc-panel__price-tag {
    padding-top: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}

.svc-offers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 44px;
}

.svc-offers--compact {
    margin-top: 28px;
}

.svc-offer {
    min-width: 0;
}

.svc-offer:first-child {
    padding-right: 36px;
}

.svc-offer + .svc-offer {
    padding-left: 36px;
    border-left: 1px solid #5d5d5d;
}

.svc-offer__header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: baseline;
}

.svc-offer__title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.svc-offer__price {
    font-size: 0.87rem;
    font-weight: 500;
    white-space: nowrap;
}

.svc-offer__body {
    max-width: 330px;
    margin-top: 18px;
    font-size: 0.86rem;
    line-height: 1.38;
}

.svc-accordion-toggle {
    margin-top: 14px;
    border: 0;
    background: none;
    padding: 0;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    cursor: pointer;
}

.svc-accordion-content {
    margin-top: 14px;
}

.svc-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-top: 28px;
}

.svc-columns--single {
    grid-template-columns: minmax(0, 560px);
}

.svc-columns--tight {
    margin-top: 20px;
}

.svc-list-heading {
    margin-bottom: 10px;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.29em;
    text-transform: uppercase;
}

.svc-list {
    list-style: none;
}

.svc-list li {
    position: relative;
    padding-left: 14px;
    font-size: 0.84rem;
    line-height: 1.36;
}

.svc-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
}

.svc-note,
.svc-footnote,
.svc-best-fit__body {
    font-size: 0.82rem;
    line-height: 1.42;
}

.svc-note {
    margin-top: 18px;
}

.svc-footnote {
    max-width: 860px;
    margin-top: 18px;
    font-style: italic;
}

.svc-best-fit {
    margin-top: 18px;
}

.svc-best-fit__label {
    margin-bottom: 4px;
    font-size: 0.84rem;
    font-weight: 400;
}

.services-closing {
    max-width: 980px;
    margin: 68px auto 0;
    padding: 0 40px 40px;
    text-align: center;
}

.services-closing p {
    margin-bottom: 16px;
    font-size: 0.85rem;
    line-height: 1.7;
}

.services-closing__strong {
    font-weight: 600;
}

@media (max-width: 1100px) {
    .svc-panel {
        width: min(1360px, calc(100% - 48px));
    }

    .svc-panel__split,
    .svc-panel__split--social,
    .svc-panel__split--narrow {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .svc-panel__aside {
        justify-self: start;
    }

    .svc-panel__title-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .services-page .header-inner {
        padding: 18px 24px 14px;
    }

    .services-shell {
        width: calc(100% - 32px);
    }

    .services-hero {
        padding-bottom: 28px;
    }

    .services-hero__wordmark {
        margin-top: 18px;
        font-size: clamp(4.7rem, 20vw, 7rem);
        letter-spacing: 0.08em;
    }

    .svc-panel {
        width: calc(100% - 24px);
        margin-bottom: 18px;
    }

    .svc-panel__inner {
        padding: 22px 18px 20px;
    }

    .svc-panel__eyebrow {
        font-size: 0.82rem;
    }

    .svc-panel__title {
        margin-top: 18px;
        font-size: 1.3rem;
    }

    .svc-panel__body,
    .svc-offer__body,
    .svc-list li,
    .svc-note,
    .svc-footnote,
    .svc-best-fit__body,
    .services-closing p {
        font-size: 0.84rem;
    }

    .svc-offers,
    .svc-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .svc-offer:first-child,
    .svc-offer + .svc-offer {
        padding: 0;
    }

    .svc-offer + .svc-offer {
        margin-top: 20px;
        border-left: 0;
        border-top: 1px solid #5d5d5d;
        padding-top: 20px;
    }

    .svc-offer__header {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }

    .svc-offer__title {
        font-size: 1.2rem;
    }

    .svc-panel__price-tag {
        padding-top: 0;
    }

    .svc-panel__aside img {
        width: 100%;
    }

    .services-closing {
        padding: 18px 24px 32px;
    }
}

/* ===========================================
   15. ABOUT PAGE
   =========================================== */

.main-nav a.nav-active {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ---- About visual (hero image + "About —— us") ---- */
.about-visual {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-visual__img {
    display: block;
    width: 100%;
    height: clamp(420px, 62vh, 720px);
    object-fit: cover;
    filter: blur(28px);
    transform: scale(1.9, 1.15); /* horizontal stretch + slight vertical — smear effect */
    transform-origin: center;
}

.about-visual__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 var(--side-padding);
}

.about-visual__title {
    display: flex;
    align-items: center;
    width: 100%;
    gap: clamp(20px, 3vw, 48px);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 4.2vw, 4.5rem);
    line-height: 1;
    letter-spacing: 0.01em;
}

.about-visual__rule {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.85);
}

/* ---- Who we are / How we work rows ---- */
.about-content {
    padding: clamp(80px, 10vw, 140px) var(--side-padding) 0;
    max-width: 1280px;
    margin: 0 auto;
}

.about-row {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
    gap: clamp(40px, 8vw, 120px);
    padding: clamp(30px, 6vw, 70px) 0;
    align-items: start;
}

.about-row__label {
    font-family: var(--font-mono);
    font-size: clamp(1.1rem, 1.4vw, 1.4rem);
    font-weight: 400;
    color: var(--color-accent);
    letter-spacing: 0.02em;
    margin: 0;
}

.about-row__body {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.05vw, 1.05rem);
    line-height: 1.6;
    color: var(--color-text);
}

.about-row__body p {
    margin: 0 0 14px;
}

.about-row__body p:last-child {
    margin-bottom: 0;
}

.about-row__body strong {
    font-weight: 700;
}

/* ---- Our process ---- */
.about-process {
    padding: 0 var(--side-padding) clamp(80px, 10vw, 140px);
    max-width: 1280px;
    margin: 0 auto;
}

.about-process__header {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
    gap: clamp(40px, 8vw, 120px);
    padding: clamp(30px, 6vw, 70px) 0 0;
}

.process-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.process-step {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
    gap: clamp(40px, 8vw, 120px);
    padding: clamp(24px, 4vw, 46px) 0;
    align-items: start;
}

.process-step__num {
    font-family: var(--font-mono);
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    color: #c9c9c9;
    letter-spacing: 0.04em;
    padding-left: clamp(20px, 4vw, 60px);
}

.process-step__body h3 {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--color-text);
}

.process-step__body p {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.05vw, 1.05rem);
    line-height: 1.55;
    color: var(--color-text);
    margin: 0;
}

/* ---- Quote section ---- */
.about-quote {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-quote__bg {
    display: block;
    width: 100%;
    height: clamp(360px, 52vh, 580px);
    object-fit: cover;
}

.about-quote__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px var(--side-padding);
    color: #fff;
}

.about-quote__text {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.1rem, 1.8vw, 1.9rem);
    line-height: 1.45;
    max-width: 900px;
    margin: 0 0 24px;
}

.about-quote__attr {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.05vw, 1.05rem);
    margin: 0;
}

/* ---- About responsive ---- */
@media (max-width: 820px) {
    .about-row,
    .about-process__header,
    .process-step {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .process-step__num {
        padding-left: 0;
    }

    .about-visual__title {
        gap: 16px;
    }
}
