:root {
    --color-dark: #101315;
    --color-dark-soft: #171b1e;
    --color-gold: #c69b47;
    --color-gold-dark: #a77e31;
    --color-cream: #f7f5f0;
    --color-white: #ffffff;
    --color-text: #1d2226;
    --color-muted: #6d7479;
    --color-border: #e7e3dc;
    --shadow-small: 0 10px 30px rgba(16, 19, 21, 0.07);
    --shadow-card: 0 18px 45px rgba(16, 19, 21, 0.09);
    --radius: 14px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-white);
    color: var(--color-text);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

.section {
    padding: 88px 0;
}

.section-soft {
    background: var(--color-cream);
}

.section-dark {
    background: var(--color-dark);
    color: var(--color-white);
}

.center {
    text-align: center;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--color-gold-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.section-title,
.inner-hero h1,
.hero-copy h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -0.025em;
}

.section-title {
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.08;
}

.section-subtitle {
    max-width: 680px;
    margin: 0;
    color: var(--color-muted);
    font-size: 1.04rem;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 36px;
}

.section-header.centered {
    display: block;
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(16, 19, 21, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    flex: 0 0 auto;
}

.brand img,
.footer-logo {
    width: 186px;
    height: auto;
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-gold);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
}

/* Buttons */
.btn {
    min-height: 46px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1;
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary,
.btn-gold {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #17140f;
}

.btn-primary:hover,
.btn-gold:hover {
    background: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    color: #fff;
}

.btn-outline,
.btn-glass,
.btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.34);
    color: #fff;
}

.btn-outline:hover,
.btn-glass:hover,
.btn-ghost:hover {
    background: #fff;
    border-color: #fff;
    color: var(--color-dark);
}

.btn-light-outline {
    background: transparent;
    border-color: #cfc8bc;
    color: var(--color-text);
}

.btn-light-outline:hover {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: #fff;
}

.btn-arrow {
    font-size: 1rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 700;
}

.text-link:hover {
    color: var(--color-gold-dark);
}

/* Homepage hero */
.home-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-dark);
    color: #fff;
}

.hero-media {
    position: absolute;
    inset: 0;
    background: url('../images/hero-clean.jpg') 66% center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 12, 14, 0.95) 0%, rgba(10, 12, 14, 0.86) 38%, rgba(10, 12, 14, 0.34) 68%, rgba(10, 12, 14, 0.12) 100%);
}

.hero-shell {
    position: relative;
    z-index: 2;
    padding: 96px 0 116px;
}

.hero-copy {
    max-width: 650px;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: #e1bd75;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 0 0 22px;
    font-size: clamp(3.2rem, 6vw, 5.6rem);
    line-height: 0.98;
}

.hero-copy h1 span {
    color: #e4c17b;
}

.hero-lead {
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.04rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-highlights {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(13, 16, 18, 0.9);
}

.hero-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hero-highlight {
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-highlight:last-child {
    border-right: 0;
}

.hero-highlight strong {
    color: #e2bd72;
    font-family: Georgia, serif;
    font-size: 1.45rem;
    font-weight: 400;
}

.hero-highlight span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
}

/* Intro */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.intro-photo {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-small);
}

.intro-photo img {
    height: 430px;
    object-fit: cover;
}

.intro-copy p {
    margin: 0 0 18px;
    color: var(--color-muted);
}

.intro-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 28px 0;
}

.intro-point {
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: #fff;
    font-size: 0.9rem;
    font-weight: 650;
}

.intro-point::before {
    content: "✓";
    margin-right: 9px;
    color: var(--color-gold-dark);
}

/* Services */
.services-grid-home,
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 4px 18px rgba(16, 19, 21, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.service-card img {
    height: 220px;
    object-fit: cover;
}

.service-body {
    padding: 23px;
}

.service-body h3 {
    margin: 0 0 9px;
    font-family: Georgia, serif;
    font-size: 1.38rem;
    font-weight: 400;
    line-height: 1.2;
}

.service-body p {
    margin: 0 0 17px;
    color: var(--color-muted);
    font-size: 0.92rem;
}

.service-meta-link {
    color: var(--color-gold-dark);
    font-size: 0.86rem;
    font-weight: 700;
}

/* Highlight */
.highlight-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--color-dark);
    color: #fff;
}

.highlight-split img {
    height: 100%;
    min-height: 460px;
    object-fit: cover;
}

.highlight-copy {
    padding: 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-copy .section-title {
    color: #fff;
}

.highlight-copy p {
    color: rgba(255, 255, 255, 0.72);
}

.check-list {
    margin: 20px 0 28px;
    padding: 0;
    list-style: none;
}

.check-list li {
    padding: 8px 0;
    color: rgba(2, 2, 2, 0.84);
}

.check-list li::before {
    content: "✓";
    margin-right: 10px;
    color: #dfba70;
}

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    padding: 26px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: #fff;
}

.process-step .number {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #f3ead8;
    color: #8f6725;
    font-size: 0.78rem;
    font-weight: 800;
}

.process-step h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.process-step p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.9rem;
}

/* Why */
.why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.why-copy p {
    color: var(--color-muted);
}

.why-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.why-item {
    padding: 24px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: #fff;
}

.why-item h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.why-item p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.why-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 10px;
    background: #f3ead8;
    color: #8f6725;
    font-weight: 800;
}

/* Contact CTA */
.contact-section {
    background: var(--color-cream);
}

.contact-grid,
.two-col {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
    align-items: start;
}

.contact-info,
.contact-box,
.info-card,
.legal-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 4px 18px rgba(16, 19, 21, 0.03);
}

.contact-info,
.contact-box,
.info-card,
.legal-card {
    padding: 30px;
}

.contact-info h3,
.info-card h3 {
    margin: 20px 0 5px;
    font-size: 1rem;
}

.contact-info p,
.info-card p,
.legal-card p {
    margin: 0;
    color: var(--color-muted);
}

.contact-form,
.modern-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.contact-form label,
.modern-form label {
    display: grid;
    gap: 7px;
    color: #4f565a;
    font-size: 0.82rem;
    font-weight: 650;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.modern-form input,
.modern-form select,
.modern-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #dcd7ce;
    border-radius: 8px;
    outline: 0;
    background: #fff;
    color: var(--color-text);
}

.contact-form textarea,
.modern-form textarea {
    min-height: 125px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(198, 155, 71, 0.12);
}

.full {
    grid-column: 1 / -1;
}

.check-line {
    display: flex !important;
    grid-column: 1 / -1;
    align-items: flex-start;
    gap: 9px !important;
    font-weight: 400 !important;
}

.check-line input {
    width: auto !important;
    min-height: 0 !important;
    margin-top: 4px;
}

.notice {
    margin: 18px 0;
    padding: 12px 14px;
    border-radius: 8px;
}

.notice.success {
    background: #edf7ef;
    color: #286437;
}

.notice.error {
    background: #fff0f0;
    color: #8d2e2e;
}

/* Inner pages */
.inner-hero {
    padding: 100px 0 72px;
    background: linear-gradient(90deg, rgba(12, 15, 17, 0.98), rgba(12, 15, 17, 0.82)), url('../images/hero-home.jpg') center / cover no-repeat;
    color: #fff;
}

.inner-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 1;
}

.inner-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
}

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

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

.feature-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature {
    padding: 26px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: #fff;
    text-align: center;
}

.ico {
    margin-bottom: 12px;
    color: var(--color-gold-dark);
    font-size: 1.7rem;
}

/* Prefooter */
.prefooter-cta {
    padding: 50px 0;
    background: var(--color-dark-soft);
    color: #fff;
}

.prefooter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.prefooter-inner h2 {
    margin: 0 0 6px;
    font-family: Georgia, serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;
}

.prefooter-inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
}

/* Footer */
.site-footer {
    padding: 58px 0 20px;
    background: #0c0f11;
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.8fr 1fr 0.8fr;
    gap: 42px;
}

.footer-logo {
    margin-bottom: 16px;
}

.site-footer h4 {
    margin: 0 0 14px;
    color: #d8b15f;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-footer a,
.site-footer p {
    display: block;
    margin: 0 0 9px;
    font-size: 0.88rem;
}

.site-footer a:hover {
    color: #fff;
}

.footer-badges {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.footer-badges span {
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    font-size: 0.7rem;
}

.footer-bottom {
    margin-top: 42px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.76rem;
}

/* Cookies */
.cookie-panel {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    width: min(380px, calc(100% - 32px));
    padding: 24px;
    border: 1px solid #2a3033;
    border-radius: 14px;
    background: #111517;
    color: #fff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    transform: translateX(calc(100% + 50px));
    transition: transform 0.35s ease;
}

.cookie-panel.show {
    transform: translateX(0);
}

.cookie-panel h3 {
    margin: 4px 0 8px;
}

.cookie-panel p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.cookie-link {
    color: #d8b15f;
    font-size: 0.8rem;
}

.cookie-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
}

.cookie-icon {
    display: none;
}

.mobile-offer,
.back-top {
    display: none;
}

/* Animation: content is visible by default. JS only adds a subtle motion class. */
.reveal {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.reveal.in-view {
    animation: fadeUp 0.55s ease both;
}

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

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


/* Google reviews */
.reviews-section {
    background: #fff;
}

.reviews-slider {
    position: relative;
}

.reviews-viewport {
    overflow: hidden;
    width: 100%;
}

.reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.48s cubic-bezier(.22,.61,.36,1);
    will-change: transform;
}

.review-card {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
    padding: 28px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-white);
    box-shadow: 0 4px 18px rgba(16, 19, 21, 0.04);
}

.review-stars {
    margin-bottom: 16px;
    color: var(--color-gold);
    font-size: 1.08rem;
    letter-spacing: 0.08em;
}

.review-card > p {
    margin: 0 0 22px;
    color: var(--color-muted);
}

.review-author {
    display: grid;
    gap: 2px;
}

.review-author strong {
    font-size: 0.92rem;
}

.review-author span {
    color: var(--color-muted);
    font-size: 0.78rem;
}

.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 28px;
}

.reviews-arrow {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: #fff;
    color: var(--color-dark);
    font-size: 1.15rem;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.reviews-arrow:hover:not(:disabled) {
    background: var(--color-dark);
    color: #fff;
    border-color: var(--color-dark);
    transform: translateY(-1px);
}

.reviews-arrow:disabled {
    opacity: .35;
    cursor: default;
}

.reviews-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 40px;
}

.reviews-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d7d2c8;
}

.reviews-dot.active {
    width: 22px;
    border-radius: 999px;
    background: var(--color-gold);
}

/* Contact map */
.map-section {
    background: var(--color-white);
}

.map-head {
    max-width: 780px;
    margin-bottom: 30px;
}

.map-frame {
    overflow: hidden;
    height: 430px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-cream);
    box-shadow: var(--shadow-small);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 950;
    min-height: 50px;
    padding: 0 18px 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    box-shadow: 0 12px 30px rgba(16, 19, 21, 0.22);
    font-size: 0.86rem;
    font-weight: 750;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(16, 19, 21, 0.28);
}

.whatsapp-float svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}


/* =========================================================
   DETALJNE STRANICE USLUGA
   ========================================================= */
.service-detail-hero {
    padding: 72px 0 82px;
    background: #f7f5f1;
    border-bottom: 1px solid #e8e3da;
}

.service-detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    gap: 72px;
    align-items: center;
}

.service-detail-hero-copy h1 {
    max-width: 760px;
    margin: 12px 0 22px;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.service-detail-hero-copy > p {
    max-width: 700px;
    margin: 0;
    font-size: 18px;
    line-height: 1.75;
    color: #555b5e;
}

.service-back-link {
    display: inline-flex;
    margin-bottom: 26px;
    color: #5f6264;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.service-back-link:hover {
    color: #b8923f;
}

.service-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.service-detail-hero-image {
    min-height: 520px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(17, 17, 17, 0.12);
}

.service-detail-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    object-fit: cover;
}

.service-detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 72px;
    align-items: start;
}

.service-detail-main .section-title {
    max-width: 760px;
}

.service-lead {
    max-width: 780px;
    margin: 20px 0 0;
    color: #555b5e;
    font-size: 17px;
    line-height: 1.8;
}

.service-includes {
    margin-top: 42px;
    padding-top: 34px;
    border-top: 1px solid #e9e5de;
}

.service-includes h3 {
    margin: 0 0 22px;
    font-size: 24px;
}

.service-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
    margin: 0;
}

.service-detail-aside {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 110px;
}

.service-info-card {
    padding: 30px;
    border: 1px solid #e6e1d8;
    border-radius: 16px;
    background: #fff;
}

.service-info-card h3 {
    margin: 8px 0 12px;
    font-size: 25px;
}

.service-info-card p {
    margin: 0;
    color: #5b5f61;
    line-height: 1.7;
}

.service-info-kicker,
.service-small-note {
    display: block;
    color: #a98234;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-info-card-dark {
    background: #111517;
    border-color: #111517;
    color: #fff;
}

.service-info-card-dark p {
    color: #c7cbcd;
}

.service-info-card-dark .service-small-note {
    margin-top: 16px;
    color: #d1ad59;
}

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

.service-detail-cta {
    padding: 70px 0;
    background: #111517;
    color: #fff;
}

.service-detail-cta-inner {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
}

.service-detail-cta h2 {
    margin: 8px 0 12px;
    font-size: clamp(32px, 4vw, 48px);
}

.service-detail-cta p {
    max-width: 680px;
    margin: 0;
    color: #c7cbcd;
    line-height: 1.7;
}

.btn-dark-outline {
    color: #fff;
    border-color: rgba(255,255,255,.32);
    background: transparent;
}

.btn-dark-outline:hover {
    color: #111;
    background: #fff;
    border-color: #fff;
}
