/* CASCADE-LAYER: intentionally-unlayered — page composition. See .planning/phases/01-foundation-activation/01-CONTEXT.md D-01. */
/* stylelint-disable media-feature-name-disallowed-list -- Phase 6: max-width media queries retained; mobile-first conversion deferred (D-08). Strict-value/!important/order cleaned. */

/* About Us Page Styles */

/* About Us Page Specific Styles - Font Standardized */
.about-us-page {
    position: relative;

    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%); */
    min-height: 100vh;
    padding: 0;

    /* D-07: !important dropped — no other rule sets font-family on .about-us-page,
       and the value (--font-family-base == --font-body) already matches the inherited
       body default, so the flag was redundant defensive cruft (zero-diff). */
    font-family: var(--font-family-base);
    overflow-x: hidden;
}

/* Hero Section Styles */
.about-hero-section {
    position: relative;
    padding: var(--space-16) 0 var(--space-12);
    color: var(--text-on-purple);
    background: linear-gradient(135deg, var(--purple-700) 0%, var(--purple-600) 25%, var(--purple-500) 50%, var(--purple-400) 75%, var(--purple-300) 100%);
    text-align: center;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="paw-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20,10 Q15,5 10,10 Q15,15 20,10 M30,15 Q25,10 20,15 Q25,20 30,15 M10,25 Q5,20 0,25 Q5,30 10,25 M30,30 Q25,25 20,30 Q25,35 30,30" fill="rgba(255,255,255,0.1)" stroke="none"/></pattern></defs><rect width="100" height="100" fill="url(%23paw-pattern)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

/* Animation moved to utilities.css for consistency */

.about-hero-section .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-section .hero-content h1 {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #FFF, #F8F9FA, #E9ECEF);
    animation: text-shimmer 3s ease-in-out infinite;
    margin-bottom: var(--space-6);
    text-shadow: 0 4px 8px rgb(0 0 0 / 30%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animation moved to utilities.css - use text-shimmer */

.about-hero-section .hero-description {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: var(--space-8);
    text-shadow: 0 2px 4px rgb(0 0 0 / 20%);
}

/* Hero decoration classes consolidated in utilities.css */


/* Animation moved to utilities.css for consistency */

.about-content-section {
    position: relative;
    padding: var(--space-16) 0;
    background: linear-gradient(180deg, var(--neutral-50) 0%, var(--neutral-200) 50%, var(--neutral-300) 100%);
}

.about-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 100px;
    background: linear-gradient(180deg, rgb(180 95 191 / 10%) 0%, transparent 100%);
}

.about-intro-card {
    position: relative;
    padding: var(--space-12);
    background: linear-gradient(135deg, rgb(255 255 255 / 95%) 0%, rgb(248 249 250 / 90%) 100%);
    border: 1px solid rgb(255 255 255 / 30%);
    border-radius: var(--radius-lg);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- compound bespoke shadow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow: 0 8px 32px rgb(92 31 113 / 15%), 0 16px 64px rgb(0 0 0 / 10%);
    text-align: center;
    margin-bottom: var(--space-16);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.about-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 6px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4, #FFEAA7, #DDA0DD);
    animation: rainbow-slide 4s ease-in-out infinite;
    background-size: 300% 100%;
}

/* Animation moved to utilities.css - use rainbow-slide */

.intro-icon {
    display: block;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 4rem;
    animation: pulse-star 2s ease-in-out infinite;
    margin-bottom: var(--space-4);
}

/* Animation moved to utilities.css - use pulse-star */

.about-intro-card h2 {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--purple-700);
    margin-bottom: var(--space-6);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-primary);
}

.about-us-page::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.about-us-article {
    position: relative;
    z-index: 2;
    background: rgb(255 255 255 / 95%);
    border: 1px solid rgb(255 255 255 / 30%);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-scale radius — no --radius-* token is byte-identical; literal preserves zero-diff */
    border-radius: 25px;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- compound bespoke shadow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow:
        0 20px 60px rgb(92 31 113 / 15%),
        0 8px 32px rgb(0 0 0 / 10%),
        inset 0 1px 0 rgb(255 255 255 / 80%);
    animation: fade-in-up 0.8s ease-out;
    backdrop-filter: blur(20px);
    overflow: hidden;
    margin-bottom: var(--space-12);
}

/* fade-in-up animation available in faq.css */

/* Note: Header styles moved to unified page-header.css */

.about-us-content {
    position: relative;
    padding: var(--space-16) var(--space-12);
}

.intro-section {
    text-align: center;
    margin-bottom: var(--space-20);
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    animation: fade-in-up 0.8s ease-out 0.6s both;
}

.intro-section p {
    position: relative;
    padding: var(--space-8);

    /* D-07: !important dropped — .intro-section p (0,1,1) is the most specific
       font-family rule on this <p>; no competing rule, value already == body default
       (zero-diff). */
    font-family: var(--font-family-base);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-relaxed);
    color: var(--text-primary);
    background: linear-gradient(135deg, rgb(92 31 113 / 3%), rgb(123 43 133 / 5%)); /* page-specific purple wash — `background` is not strict-value-audited */
    border-radius: var(--radius-lg);
    margin-bottom: 0;
    text-shadow: 0 1px 3px rgb(0 0 0 / 10%);
    border-left: 5px solid #007bff;
    letter-spacing: var(--letter-spacing-normal);
}

/* Updated Team Sections Styles */
.team-sections {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
    margin-bottom: var(--space-16);
}

.team-section {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: var(--space-12);
    padding: var(--space-10);
    background: linear-gradient(135deg, rgb(255 255 255 / 95%) 0%, rgb(248 249 250 / 90%) 100%);
    border: 1px solid rgb(255 255 255 / 30%);
    border-radius: var(--radius-lg);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- compound bespoke shadow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow: 0 8px 32px rgb(92 31 113 / 10%), 0 16px 64px rgb(0 0 0 / 5%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.team-section:hover {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- compound bespoke shadow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow: 0 16px 48px rgb(92 31 113 / 20%), 0 32px 96px rgb(0 0 0 / 10%);
    transform: translateY(-5px);
}

.team-section:nth-child(even) {
    grid-template-columns: 2fr 1fr;
}

.team-section:nth-child(even) .team-image {
    order: 2;
}

.team-section:nth-child(even) .team-description {
    order: 1;
}

.store-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #FF6B6B, #FF8E8E);
}

.mairi-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #4ECDC4, #7EDDD4);
}

.hector-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #45B7D1, #7BC8DD);
}

.image-frame {
    position: relative;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-scale radius — no --radius-* token is byte-identical; literal preserves zero-diff */
    border-radius: 16px;
    overflow: hidden;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke shadow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow: 0 8px 32px rgb(0 0 0 / 15%);
    transition: all 0.4s ease;
}

.image-frame:hover {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke shadow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow: 0 16px 48px rgb(0 0 0 / 20%);
    transform: scale(1.05);
}

.image-frame img {
    display: block;
    width: 100%;
    height: auto;
    transition: all 0.4s ease;
}

.image-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 1.8rem;
    background: rgb(255 255 255 / 90%);
    border-radius: var(--radius-circle);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke shadow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow: 0 4px 20px rgb(0 0 0 / 10%);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.image-frame:hover .image-overlay {
    opacity: 1;
    transform: scale(1);
}

.description-card {
    padding: var(--space-4);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
}

.card-header h3 {
    margin: 0;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--purple-700);
}

.card-icon {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 2rem;
    opacity: 0.7;
}

.card-badge {
    padding: var(--space-2) var(--space-4);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-on-purple);
    background: linear-gradient(135deg, var(--purple-700), var(--purple-600));
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-scale radius — no --radius-* token is byte-identical; literal preserves zero-diff */
    border-radius: 15px;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke shadow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow: 0 2px 10px rgb(92 31 113 / 30%);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.description-card p {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
}

.card-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    background: linear-gradient(135deg, rgb(150 206 180 / 20%), rgb(150 206 180 / 10%));
    border: 1px solid rgb(150 206 180 / 30%);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-scale radius — no --radius-* token is byte-identical; literal preserves zero-diff */
    border-radius: 25px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: linear-gradient(135deg, rgb(150 206 180 / 30%), rgb(150 206 180 / 20%));
    transform: translateY(-2px);
}

.highlight-icon {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 1.2rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.expertise-tag {
    padding: var(--space-2) var(--space-4);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    cursor: default;
}

/* Per-expertise decorative tag text colors — bespoke per-animal accents, no palette
   token is byte-identical (zero-diff). */
/* stylelint-disable scale-unlimited/declaration-strict-value -- decorative expertise-tag accent colors; no palette token is byte-identical; literal preserves zero-diff */
.expertise-tag.dogs {
    color: #c92a2a;
    background: linear-gradient(135deg, rgb(255 107 107 / 20%), rgb(255 107 107 / 10%));
    border: 1px solid rgb(255 107 107 / 30%);
}

.expertise-tag.cats {
    color: #0c7b7b;
    background: linear-gradient(135deg, rgb(78 205 196 / 20%), rgb(78 205 196 / 10%));
    border: 1px solid rgb(78 205 196 / 30%);
}

.expertise-tag.fish {
    color: #1864ab;
    background: linear-gradient(135deg, rgb(69 183 209 / 20%), rgb(69 183 209 / 10%));
    border: 1px solid rgb(69 183 209 / 30%);
}

.expertise-tag.horses {
    color: #e67e22;
    background: linear-gradient(135deg, rgb(255 234 167 / 20%), rgb(255 234 167 / 10%));
    border: 1px solid rgb(255 234 167 / 30%);
}

.expertise-tag.therapy {
    color: #8e44ad;
    background: linear-gradient(135deg, rgb(221 160 221 / 20%), rgb(221 160 221 / 10%));
    border: 1px solid rgb(221 160 221 / 30%);
}
/* stylelint-enable scale-unlimited/declaration-strict-value */

.expertise-tag:hover {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke shadow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow: 0 4px 15px rgb(0 0 0 / 10%);
    transform: translateY(-2px) scale(1.05);
}

/* Values Section Styles */
.values-section {
    margin-top: var(--space-16);
    text-align: center;
}

.values-title {
    position: relative;
    display: inline-block;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--purple-700);
    margin-bottom: var(--space-12);
}

.values-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--purple-700), var(--purple-600), var(--purple-500));
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-scale radius — no --radius-* token is byte-identical; literal preserves zero-diff */
    border-radius: 2px;
    transform: translateX(-50%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    position: relative;
    padding: var(--space-10) var(--space-8);
    background: linear-gradient(135deg, rgb(255 255 255 / 95%) 0%, rgb(248 249 250 / 90%) 100%);
    border: 1px solid rgb(255 255 255 / 30%);
    border-radius: var(--radius-lg);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- compound bespoke shadow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow: 0 8px 32px rgb(92 31 113 / 10%), 0 16px 64px rgb(0 0 0 / 5%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    text-align: center;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4);
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 100%;
}

.value-card:hover {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- compound bespoke shadow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow: 0 16px 48px rgb(92 31 113 / 20%), 0 32px 96px rgb(0 0 0 / 10%);
    transform: translateY(-8px) scale(1.02);
}

.value-icon {
    display: block;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 3.5rem;
    animation: float-icon 3s ease-in-out infinite;
    margin-bottom: var(--space-6);
}

.value-card:nth-child(2) .value-icon {
    animation-delay: 0.5s;
}

.value-card:nth-child(3) .value-icon {
    animation-delay: 1s;
}

.value-card:nth-child(4) .value-icon {
    animation-delay: 1.5s;
}

/* Animation moved to utilities.css - use float-icon */

.value-card h3 {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--purple-700);
    margin-bottom: var(--space-4);
}

.value-card p {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--neutral-600);
}

/* Animation moved to utilities.css for consistency */

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgb(92 31 113 / 5%), /* token-exempt: compound rgba tint — no token covers this alpha variant */
        transparent);
    transition: left 0.6s ease;
}

.team-section:hover::before {
    left: 100%;
}

/* stylelint-disable-next-line no-duplicate-selectors -- intentional same-selector cascade split: this hover lift/shadow is authored after the ::before shine sweep (separate concern); the earlier .team-section:hover (line ~221) sets the base-card lift. Merging would reorder the cascade. */
.team-section:hover {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke shadow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow: 0 20px 50px rgb(92 31 113 / 15%);
    transform: translateY(-8px);
}

.team-section:nth-child(1) { animation-delay: 0.8s; }
.team-section:nth-child(2) { animation-delay: 1.0s; }
.team-section:nth-child(3) { animation-delay: 1.2s; }

/* Animation moved to utilities.css for consistency */

.team-section:last-child {
    margin-bottom: 0;
}

.team-image {
    position: relative;
    flex: 0 0 320px;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-grid spacing — no --space-* token is byte-identical; literal preserves zero-diff */
    padding: 20px;
    background: linear-gradient(135deg, var(--purple-700), var(--purple-600));
    border: none;
    border-radius: var(--radius-lg);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- compound bespoke shadow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow:
        0 15px 35px rgb(92 31 113 / 30%),
        inset 0 1px 0 rgb(255 255 255 / 20%);
    transition: all 0.4s ease;
    overflow: hidden;
}

.team-image::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 2px solid rgb(255 255 255 / 30%);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-scale radius — no --radius-* token is byte-identical; literal preserves zero-diff */
    border-radius: 15px;
    pointer-events: none;
}

.team-image:hover {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- compound bespoke shadow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow:
        0 25px 50px rgb(92 31 113 / 40%),
        inset 0 1px 0 rgb(255 255 255 / 30%);
    transform: scale(1.05) rotate(2deg);
}

.team-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    opacity: 0;
    transition: all 0.4s ease;
    animation: image-load 0.6s ease-out 0.3s forwards;
    filter: brightness(1.1) contrast(1.05);
}

/* Animation moved to utilities.css for consistency */

.team-image:hover img {
    transform: scale(1.02);
}

.team-description {
    position: relative;
    flex: 1;
    padding: var(--space-6) 0;
}

.team-description::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: Georgia, serif;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 6rem;
    line-height: 1;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- decorative low-alpha purple quote glyph; no palette token is byte-identical; literal preserves zero-diff */
    color: rgb(92 31 113 / 10%);
}

.team-description p {
    position: relative;
    z-index: 1;
    margin: 0;

    /* D-07: !important dropped — .team-description p (0,1,1) is the most specific
       font-family rule on this <p>; no competing rule, value already == body default
       (zero-diff). */
    font-family: var(--font-family-base);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-relaxed);
    color: var(--text-primary);
    text-align: justify;
    text-shadow: 0 1px 2px rgb(0 0 0 / 5%);
    letter-spacing: var(--letter-spacing-normal);
}

.team-section:hover .team-description p {
    color: var(--text-primary);
    transform: translateX(5px);
}

/* Enhanced Responsive Design */
@media (width <= 768px) {
    .about-hero-content h1 {
        /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
        font-size: 2.5rem;
    }

    .about-hero-description {
        /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
        font-size: 1.1rem;
    }

    .hero-decoration {
        flex-direction: column;
        gap: var(--space-2);
    }

    .about-us-content {
        padding: var(--space-12) var(--space-8);
    }

    .team-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-8);
        padding: var(--space-8);
    }

    .team-section:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .team-section:nth-child(even) .team-image,
    .team-section:nth-child(even) .team-description {
        order: initial;
    }

    .team-image {
        flex: none;
        max-width: 300px;
        margin: 0 auto;
    }

    .team-description p {
        text-align: left;
        /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
        font-size: 1.05rem;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }

    .card-highlights,
    .expertise-tags {
        justify-content: center;
    }

    .intro-section {
        margin-bottom: var(--space-16);
    }

    .intro-section p {
        padding: var(--space-6);
        /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
        font-size: 1.2rem;
        letter-spacing: 0.2px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

@media (width <= 480px) {
    .about-hero-section {
        padding: var(--space-12) 0 var(--space-8);
    }

    .about-hero-content h1 {
        /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
        font-size: 2rem;
    }

    .about-content-section {
        padding: var(--space-12) 0;
    }

    .about-intro-card {
        padding: var(--space-8);
        margin-bottom: var(--space-12);
    }

    .about-us-content {
        padding: var(--space-8) var(--space-6);
    }

    .team-section {
        gap: var(--space-6);
        padding: var(--space-8);
    }

    .team-image {
        flex: none;
        max-width: 280px;
        /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-grid spacing — no --space-* token is byte-identical; literal preserves zero-diff */
        padding: 15px;
    }

    .intro-section p {
        /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-grid spacing — no --space-* token is byte-identical; literal preserves zero-diff */
        padding: 1.2rem;
        font-size: var(--text-base);
    }

    .team-description p {
        /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
        font-size: 0.95rem;
    }

    .value-card {
        padding: var(--space-8) var(--space-6);
    }
}