:root {
    --bg: #f7f5f2;
    --text: #151515;
    --muted: #66615a;
    --primary: #c5a065;
    --card: #fcfaf7;
    --dark: #101010;
    --font-heading: 'Tenor Sans', sans-serif;
    --font-body: 'Manrope', sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100%;
    color: var(--text);
    font-family: var(--font-body);
    background: radial-gradient(circle at 20% 8%, rgba(197, 160, 101, 0.12), transparent 40%), var(--bg);
    line-height: 1.5;
}

.skip-link {
    position: fixed;
    top: 0.8rem;
    left: 0.8rem;
    z-index: 30;
    padding: 0.55rem 0.8rem;
    border-radius: 6px;
    background: #111;
    color: #fff;
    transform: translateY(-140%);
    transition: transform 0.25s ease;
}

.skip-link:focus-visible {
    transform: translateY(0);
}

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

:focus-visible {
    outline: 2px solid #0f62fe;
    outline-offset: 3px;
}

.service-page {
    max-width: 1160px;
    margin: 0 auto;
    padding: 1.2rem 1.2rem 4rem;
}

.service-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 -1.2rem;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(21, 21, 21, 0.08);
    background: rgba(247, 245, 242, 0.9);
    backdrop-filter: blur(10px);
}

.service-logo {
    font-family: var(--font-heading);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.service-nav {
    border: 1px solid rgba(21, 21, 21, 0.26);
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.3rem;
    padding-top: 2.2rem;
    align-items: stretch;
}

.hero-copy {
    padding: clamp(1rem, 2vw, 1.7rem);
    background: linear-gradient(150deg, #fdfcf9, #f1e9de);
    border: 1px solid rgba(21, 21, 21, 0.08);
}

.kicker {
    margin: 0 0 0.8rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    color: var(--muted);
}

h1 {
    margin: 0 0 1rem;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.6vw, 4.2rem);
    font-weight: 400;
    line-height: 0.96;
}

.lead {
    margin: 0;
    max-width: 56ch;
    color: #3f3b35;
}

.hero-media {
    border: 1px solid rgba(21, 21, 21, 0.08);
    min-height: 330px;
}

.section {
    margin-top: 1.2rem;
    padding: clamp(1rem, 2vw, 1.4rem);
    border: 1px solid rgba(21, 21, 21, 0.08);
    background: var(--card);
}

.section h2 {
    margin: 0 0 0.8rem;
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.6vw, 2rem);
    font-weight: 400;
}

.list {
    margin: 0;
    padding-left: 1rem;
    display: grid;
    gap: 0.45rem;
}

.meta {
    margin-top: 0.8rem;
    color: var(--muted);
    font-size: 0.88rem;
}

.actions {
    margin-top: 1.2rem;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    padding: 0.62rem 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
}

.action.primary {
    border: 1px solid var(--dark);
    background: var(--dark);
    color: #fff;
}

.action.secondary {
    border: 1px solid rgba(21, 21, 21, 0.22);
    background: transparent;
}

small {
    color: var(--muted);
}

.service-footer {
    margin-top: 1.2rem;
    padding: 1rem;
    border: 1px solid rgba(21, 21, 21, 0.08);
    background: rgba(252, 250, 247, 0.92);
}

.service-footer p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--muted);
}

.service-footer p + p {
    margin-top: 0.2rem;
}

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

    .service-header {
        position: relative;
    }
}
