/* Page */

.page-hero {
    position: relative;
    background: var(--ink);
    padding: calc(var(--nav-h) + var(--space-16)) 0 var(--space-16);
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-container {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.page-hero-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-6);
}

.page-hero-heading em {
    font-style: italic;
    color: var(--gold);
}

.page-hero-sub {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(247, 243, 238, 0.65);
    line-height: 1.75;
    max-width: 52ch;
}

/* Utilities */

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

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

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

/* Grid */

.two-col-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: start;
}

@media (min-width: 900px) {
    .two-col-layout {
        grid-template-columns: 1.2fr 1fr;
        gap: var(--space-16);
    }
}

.two-col-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.stat-block {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 8px;
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.stat-block-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
}

.stat-block-label {
    font-size: 0.8125rem;
    color: var(--grey-4);
    line-height: 1.4;
}

/* Method */

.method-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
}

@media (min-width: 640px) {
    .method-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.method-card {
    background: rgba(26, 51, 82, 0.5);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 8px;
    padding: var(--space-6);
    transition: border-color var(--dur-med);
}

.method-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
}

.method-icon {
    width: 52px;
    height: 52px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: var(--space-5);
}

.method-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: var(--space-3);
}

.method-card-body {
    font-size: 0.9375rem;
    color: rgba(247, 243, 238, 0.6);
    line-height: 1.7;
}

/* Team */

.team-full-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.team-full-card {
    display: flex;
    gap: var(--space-8);
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 10px;
    padding: var(--space-8);
    transition: border-color var(--dur-med), box-shadow var(--dur-med);
}

.team-full-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    box-shadow: var(--shadow-md);
}

@media (max-width: 600px) {
    .team-full-card {
        flex-direction: column;
        gap: var(--space-5);
        padding: var(--space-6);
    }
}

.team-full-avatar {
    width: 160px;
    height: 160px;
    min-width: 160px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--ink);
    border: 3px solid var(--gold);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.2);
}

.team-full-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}

.team-full-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--space-2);
}

.team-full-bio {
    font-size: 0.9375rem;
    color: var(--grey-4);
    line-height: 1.75;
    margin-top: var(--space-4);
}

/* Pricing */

.pricing-intro {
    max-width: 640px;
    margin-bottom: var(--space-12);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    margin-bottom: var(--space-8);
}

@media (min-width: 640px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color var(--dur-med), box-shadow var(--dur-med), transform var(--dur-med);
}

.pricing-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.pricing-card--featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.pricing-card-header {
    background: var(--ink);
    padding: var(--space-6);
}

.pricing-card--featured .pricing-card-header {
    background: var(--gold);
}

.pricing-card-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: var(--space-2);
}

.pricing-card--featured .pricing-card-title {
    color: var(--ink);
}

.pricing-card-sub {
    font-size: 0.875rem;
    color: rgba(247, 243, 238, 0.6);
    line-height: 1.5;
}

.pricing-card--featured .pricing-card-sub {
    color: rgba(15, 33, 55, 0.7);
}

.pricing-card-body {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--grey-1);
}

.price-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.price-label {
    font-size: 0.875rem;
    color: var(--grey-4);
    flex: 1;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--ink);
    white-space: nowrap;
}

.price-currency {
    font-size: 1rem;
    font-weight: 400;
    color: var(--grey-3);
}

.pricing-note {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--gold-pale);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 8px;
    padding: var(--space-4) var(--space-5);
    color: var(--grey-5);
    font-size: 0.9375rem;
}

.pricing-note svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* Translation */

.translation-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
}

@media (min-width: 640px) {
    .translation-types {
        grid-template-columns: repeat(3, 1fr);
    }
}

.translation-type {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: 10px;
    padding: var(--space-6);
    transition: border-color var(--dur-med), box-shadow var(--dur-med);
}

.translation-type:hover {
    border-color: rgba(201, 168, 76, 0.25);
    box-shadow: var(--shadow-sm);
}

.translation-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: var(--space-4);
}

.translation-type-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--space-3);
}

.translation-type-body {
    font-size: 0.9rem;
    color: var(--grey-4);
    line-height: 1.7;
}

/* Reviews */

.testimonials-full {
    background: var(--ink);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
}

@media (min-width: 640px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: rgba(26, 51, 82, 0.6);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 8px;
    padding: var(--space-8) var(--space-6) var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    transition: border-color var(--dur-med);
}

.review-card:hover {
    border-color: rgba(201, 168, 76, 0.22);
}

.review-card--large {
    background: rgba(201, 168, 76, 0.07);
    border-color: rgba(201, 168, 76, 0.2);
}

.review-body {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(247, 243, 238, 0.85);
    line-height: 1.75;
    flex: 1;
}

/* Services */

.services-full-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

@media (min-width: 640px) {
    .services-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-full-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-full-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    padding: var(--space-8) var(--space-6);
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: 8px;
    text-decoration: none;
    transition: border-color var(--dur-med), box-shadow var(--dur-med), transform var(--dur-med);
    position: relative;
    overflow: hidden;
}

.service-full-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur-med) var(--ease);
}

.service-full-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.service-full-card:hover::before {
    transform: scaleX(1);
}

.service-full-card--accent {
    background: var(--ink);
    border-color: var(--ink);
}

.service-full-card--accent .service-card-title {
    color: var(--cream);
}

.service-full-card--accent .service-card-body {
    color: rgba(247, 243, 238, 0.6);
}

.service-full-card--accent .service-card-link {
    color: var(--gold);
}

.service-full-card--accent .service-card-icon {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
}

/* Subpage */

.service-body-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: start;
}

@media (min-width: 900px) {
    .service-body-layout {
        grid-template-columns: 1.4fr 1fr;
        gap: var(--space-16);
    }
}

.service-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-8);
}

.service-bullets li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 0.9375rem;
    color: var(--grey-5);
}

.service-bullets li::before {
    content: '';
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.service-body-aside {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    position: sticky;
    top: calc(var(--nav-h) + var(--space-6));
}

@media (max-width: 899px) {
    .service-body-aside {
        position: static;
    }
}

.aside-card {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 10px;
    padding: var(--space-6);
}

.aside-card-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--cream-dark);
}

.aside-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--grey-1);
}

.aside-item:last-of-type {
    border-bottom: none;
}

.aside-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--grey-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.aside-value {
    font-size: 0.9rem;
    color: var(--ink);
    text-align: right;
}

.aside-value--gold {
    color: var(--gold);
    font-weight: 500;
}

.aside-cta {
    background: var(--ink);
    border-radius: 10px;
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.aside-cta p {
    font-size: 0.875rem;
    color: rgba(247, 243, 238, 0.6);
}

.aside-cta-link {
    font-size: 0.9375rem;
    color: var(--gold);
    transition: color var(--dur-fast);
}

.aside-cta-link:hover {
    color: var(--gold-light);
}

/* Breadcrumb */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.8125rem;
    color: rgba(247, 243, 238, 0.4);
    margin-bottom: var(--space-5);
}

.breadcrumb a {
    color: rgba(247, 243, 238, 0.4);
    transition: color var(--dur-fast);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: rgba(247, 243, 238, 0.2);
}

/* Document types grid */

.doc-types-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    margin-top: var(--space-8);
}

@media (min-width: 640px) {
    .doc-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.doc-type-card {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: 8px;
    padding: var(--space-6);
    transition: border-color var(--dur-med), box-shadow var(--dur-med);
}

.doc-type-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    box-shadow: var(--shadow-sm);
}

.doc-type-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: var(--space-4);
}

.doc-type-title {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--space-4);
}

.doc-type-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.doc-type-list li {
    font-size: 0.9rem;
    color: var(--grey-4);
    padding-left: var(--space-4);
    position: relative;
}

.doc-type-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.6;
}

/* Process steps */

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 680px;
    margin-top: var(--space-8);
}

.process-step {
    display: flex;
    gap: var(--space-6);
    padding-bottom: var(--space-8);
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 44px;
    bottom: 0;
    width: 2px;
    background: var(--cream-dark);
}

.process-step:last-child::before {
    display: none;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.process-step-title {
    font-family: var(--font-display);
    font-size: 1.1875rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--space-3);
}

.process-step-body {
    font-size: 0.9375rem;
    color: var(--grey-4);
    line-height: 1.75;
}