/* MSH Services page — shared tokens, nav, hero, premium grid, CTA */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #fafafa;
    --bg-secondary: #ffffff;
    --bg-dark: #0a0a0a;
    --text-primary: #111111;
    --text-secondary: #666666;
    --text-light: #999999;
    --accent: #c9a962;
    --accent-dark: #b8984d;
    --border: #e8e8e8;
    --border-light: #f2f2f2;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
}

.cursor.hover {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 1px solid var(--accent);
}

.cursor-dot {
    width: 4px;
    height: 4px;
    background: var(--text-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
}

/* Grain Overlay */
.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    mix-blend-mode: difference;
}

nav.scrolled {
    background: rgba(250, 250, 250, 0.9);
    backdrop-filter: blur(20px);
    mix-blend-mode: normal;
    padding: 1.25rem 4rem;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

nav.scrolled .logo {
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
}

nav.scrolled .nav-links a {
    color: var(--text-secondary);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    padding: 0.875rem 2rem;
    background: transparent;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

nav.scrolled .nav-cta {
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-cta:hover::before {
    left: 0;
}

.nav-cta:hover {
    color: white;
    border-color: var(--accent);
}

.hero {
    min-height: 80vh;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    padding-top: 8rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 4rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-badge::before {
    content: '◆';
    font-size: 1rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -3px;
    color: white;
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: italic;
    color: var(--accent);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   REDESIGNED SERVICES SECTION - PREMIUM GRID
   ============================================ */

.services {
    background: linear-gradient(180deg, var(--bg-primary) 0%, #f5f5f5 100%);
    padding: 12rem 4rem;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-header {
    text-align: center;
    margin-bottom: 6rem;
}

.services-header .section-label {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.services-header .section-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-header .section-subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* Premium Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

/* Service Cards */
.service-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: none;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.service-card:nth-child(1) { grid-column: span 1; }
.service-card:nth-child(2) { grid-column: span 1; }
.service-card:nth-child(3) { grid-column: span 1; }
.service-card:nth-child(4) { grid-column: span 2; }
.service-card:nth-child(5) { grid-column: span 1; }

/* Card Background Effects */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.service-card:hover::before { opacity: 1; }
.service-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
}

/* Card Content */
.service-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Icon Container */
.service-icon-wrap {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.12) 0%, rgba(250, 250, 250, 0.9) 100%);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-icon-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon-wrap {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(-5deg);
}

.service-card:hover .service-icon-wrap::before { opacity: 1; }

.service-icon {
    width: 34px;
    height: 34px;
    stroke: var(--text-primary);
    stroke-width: 1.65;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    stroke: white;
    transform: scale(1.08);
}

/* Service Number */
.service-number {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-number::before {
    content: '';
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: width 0.4s ease;
}

.service-card:hover .service-number { color: rgba(255, 255, 255, 0.9); }
.service-card:hover .service-number::before { width: 40px; }

/* Service Title */
.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: #c9a962;
    transition: color 0.4s ease;
}

.service-card:hover .service-title { color: white; }

/* Service Description */
.service-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    transition: color 0.4s ease;
    flex: 1;
}

.service-card:hover .service-description { color: rgba(255, 255, 255, 0.85); }

/* Service Tags */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.service-tag {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.service-card:hover .service-tag {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

/* Arrow Link */
.service-link {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 50px;
    height: 50px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    background: var(--bg-secondary);
}

.service-link svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-primary);
    stroke-width: 2;
    fill: none;
    transition: all 0.3s ease;
}

.service-card:hover .service-link {
    background: white;
    border-color: white;
    transform: translateX(5px);
}

.service-card:hover .service-link svg {
    stroke: var(--accent);
    transform: translateX(2px);
}

/* Featured Card (Wide) */
.service-card.featured {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #f8f8f8 100%);
}

.service-card.featured::before {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
}

.service-card.featured .service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-card.featured .service-main {
    display: flex;
    flex-direction: column;
}

.service-card.featured .service-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.service-visual-inner {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.05) 100%);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card.featured:hover .service-visual-inner {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05) rotate(3deg);
}

.service-visual-inner .service-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card.featured:hover .service-visual-inner .service-visual-img {
    transform: scale(1.06);
}

/* Decorative Elements */
.services-decoration {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    border: 1px solid var(--border);
    border-radius: 50%;
    opacity: 0.5;
    pointer-events: none;
    animation: slowRotate 30s linear infinite;
}

.services-decoration-2 {
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    border: 1px solid var(--border);
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
    animation: slowRotate 25s linear infinite reverse;
}

@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Services Grid */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card:nth-child(4) { grid-column: span 2; }

    .service-card.featured .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-visual-inner {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 6rem 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .service-card:nth-child(4) {
        grid-column: span 1;
        min-height: auto;
    }

    .service-card.featured .service-content {
        grid-template-columns: 1fr;
    }

    .service-title {
        font-size: 1.75rem;
    }
}

/* CTA Section */
.cta {
    padding: 12rem 4rem;
    background: var(--bg-dark);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.cta-title em {
    font-style: italic;
    color: var(--accent);
}

.cta-description {
    color: rgba(255,255,255,0.6);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 4rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: left 0.4s ease;
    z-index: 0;
}

.cta-btn:hover::before {
    left: 0;
}

.cta-btn span {
    position: relative;
    z-index: 1;
}

.cta-btn:hover {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor, .cursor-dot {
        display: none;
    }

    nav {
        padding: 1.5rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 6rem 2rem;
        min-height: auto;
    }

    .hero-content {
        padding: 0;
    }

    .services {
        padding: 6rem 2rem;
    }

    .cta {
        padding: 6rem 2rem;
    }
}

/* ============================================
   SERVICES PAGE — editorial catalogue (unique)
   ============================================ */

.services-catalog {
    position: relative;
    padding: 10rem 4rem 12rem;
    background: linear-gradient(180deg, #0f0f0f 0%, #141414 18%, var(--bg-primary) 42%, #f3f3f3 100%);
    overflow: hidden;
}

.catalog-ambient {
    position: absolute;
    width: min(480px, 90vw);
    height: min(480px, 90vw);
    border: 1px solid rgba(201, 169, 98, 0.12);
    border-radius: 50%;
    top: 8%;
    right: -8%;
    pointer-events: none;
    animation: catalogFloat 22s ease-in-out infinite;
}

.catalog-ambient--2 {
    width: min(320px, 70vw);
    height: min(320px, 70vw);
    top: auto;
    bottom: 12%;
    left: -6%;
    right: auto;
    animation-duration: 18s;
    animation-direction: reverse;
    opacity: 0.6;
}

@keyframes catalogFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-12px, 16px) rotate(4deg); }
}

.catalog-inner {
    position: relative;
    z-index: 2;
    max-width: 1120px;
    margin: 0 auto;
}

.catalog-header {
    margin-bottom: 5rem;
    max-width: 38rem;
}

.catalog-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.75rem;
}

.catalog-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.75rem, 6vw, 4.25rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -2px;
    color: #fafafa;
    margin-bottom: 1.75rem;
}

.catalog-title-accent {
    display: inline-block;
    margin-top: 0.15em;
    font-style: italic;
    color: var(--accent);
}

.catalog-lead {
    font-size: 1.125rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
}

.catalog-list {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 0 3rem;
    box-shadow: 0 40px 80px -48px rgba(0, 0, 0, 0.35);
}

.catalog-list::before {
    content: '';
    position: absolute;
    left: 2.5rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--accent) 15%, var(--accent) 85%, transparent);
    opacity: 0.25;
    pointer-events: none;
}

.offering-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: background 0.45s ease, padding-left 0.35s ease;
    position: relative;
}

.offering-block:last-child {
    border-bottom: none;
}

.offering-block::before {
    content: '';
    position: absolute;
    left: calc(2.5rem - 5px);
    top: 50%;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    box-shadow: 0 0 0 6px rgba(201, 169, 98, 0.15);
}

.offering-block:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
}

.offering-block:hover {
    background: linear-gradient(90deg, rgba(201, 169, 98, 0.06) 0%, transparent 55%);
    padding-left: 0.75rem;
}

.offering-block--reverse {
    flex-direction: row-reverse;
}

.offering-block--reverse:hover {
    background: linear-gradient(270deg, rgba(201, 169, 98, 0.06) 0%, transparent 55%);
    padding-left: 0;
    padding-right: 0.75rem;
}

.offering-visual {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    flex-shrink: 0;
    width: min(280px, 32vw);
}

.offering-index {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 0.85;
    color: rgba(201, 169, 98, 0.22);
    letter-spacing: -3px;
    user-select: none;
}

.offering-frame {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1;
    border-radius: 22px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(201, 169, 98, 0.1) 0%, rgba(250, 250, 250, 0.5) 100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.offering-frame--featured {
    border-color: rgba(201, 169, 98, 0.35);
    box-shadow: 0 24px 48px -28px rgba(201, 169, 98, 0.35);
}

.offering-block:hover .offering-frame {
    transform: translateY(-8px) rotate(-2deg);
    border-color: var(--accent);
    box-shadow: 0 28px 56px -32px rgba(201, 169, 98, 0.25);
}

.offering-block--reverse:hover .offering-frame {
    transform: translateY(-8px) rotate(2deg);
}

.offering-icon {
    width: 44px;
    height: 44px;
    stroke: var(--text-primary);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.35s ease;
}

.offering-block:hover .offering-icon {
    stroke: var(--accent-dark);
}

.offering-copy {
    flex: 1;
    min-width: 0;
    padding: 0.25rem 0;
}

.offering-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.offering-block:hover .offering-name {
    color: var(--accent-dark);
}

.offering-blurb {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 36rem;
}

.offering-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.offering-tags span {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.45rem 0.9rem;
    border-radius: 100px;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    background: var(--bg-primary);
    transition: border-color 0.3s ease, color 0.3s ease;
}

.offering-block:hover .offering-tags span {
    border-color: rgba(201, 169, 98, 0.35);
    color: var(--text-primary);
}

.offering-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
}

.offering-cta-arrow {
    display: inline-block;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.offering-block:hover .offering-cta-arrow {
    transform: translate(4px, -4px);
}

@media (max-width: 900px) {
    .catalog-list {
        padding: 0 1.5rem;
        border-radius: 20px;
    }

    .catalog-list::before {
        left: 1.25rem;
    }

    .offering-block::before {
        left: calc(1.25rem - 5px);
    }
}

@media (max-width: 768px) {
    .services-catalog {
        padding: 6rem 1.5rem 8rem;
    }

    .catalog-header {
        margin-bottom: 3rem;
    }

    .catalog-list {
        padding: 0 1.25rem;
    }

    .catalog-list::before {
        display: none;
    }

    .offering-block::before {
        display: none;
    }

    .offering-block {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
        padding: 3rem 0;
    }

    .offering-block--reverse {
        flex-direction: column;
    }

    .offering-block:hover {
        padding-left: 0;
        padding-right: 0;
    }

    .offering-visual {
        flex-direction: row;
        align-items: center;
        width: 100%;
        gap: 1.5rem;
    }

    .offering-frame {
        max-width: 140px;
        aspect-ratio: 1;
    }

    .offering-index {
        font-size: 3.5rem;
    }
}