/* ============================================================
   Somota Healthcare — Main Stylesheet
   ============================================================ */

:root {
    --sh-bg: #000000;
    --sh-fg: #ffffff;
    --sh-card: #0d0d0d;
    --sh-card-fg: #ffffff;
    --sh-primary: #ffffff;
    --sh-primary-fg: #000000;
    --sh-secondary: #1a1a1a;
    --sh-secondary-fg: #e6e6e6;
    --sh-muted: #1f1f1f;
    --sh-muted-fg: #8c8c8c;
    --sh-accent: #262626;
    --sh-accent-fg: #ffffff;
    --sh-border: #262626;
    --sh-radius: 0.375rem;
    --sh-amber: #d97706;
    --sh-container: 1400px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--sh-fg);
    background-color: var(--sh-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ---- Container ---- */
.sh-container {
    width: 100%;
    max-width: var(--sh-container);
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 1024px) {
    .sh-container { padding: 0 3rem; }
}

/* ---- Header ---- */
.sh-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: var(--sh-bg);
}
.sh-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}
.sh-header-logo img { height: 2.5rem; width: auto; }

#sh-main { padding-top: 5rem; }

/* ---- Desktop Nav ---- */
.sh-nav { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .sh-nav { display: flex; } }
.sh-nav a, .sh-nav-dropdown-trigger {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sh-muted-fg);
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.sh-nav a:hover, .sh-nav a.active,
.sh-nav-dropdown-trigger:hover, .sh-nav-dropdown-trigger.active { color: var(--sh-fg); }

/* Dropdown */
.sh-nav-dropdown { position: relative; }
.sh-nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}
.sh-nav-dropdown:hover .sh-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.sh-nav-dropdown-menu-inner {
    background: var(--sh-bg);
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,.5);
    padding: 0.5rem 0;
    min-width: 220px;
}
.sh-nav-dropdown-menu a {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
}
.sh-nav-dropdown-menu a:hover { background: var(--sh-accent); color: var(--sh-fg); }
.sh-nav-dropdown .sh-chevron { transition: transform 0.2s; }
.sh-nav-dropdown:hover .sh-chevron { transform: rotate(180deg); }

/* ---- Mobile Nav ---- */
.sh-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--sh-fg);
    width: 2.5rem;
    height: 2.5rem;
}
@media (min-width: 1024px) { .sh-mobile-toggle { display: none; } }

.sh-mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 20rem;
    height: 100vh;
    background: var(--sh-bg);
    border-left: 1px solid var(--sh-border);
    z-index: 100;
    transition: right 0.3s ease;
    padding: 2rem 1.5rem;
    overflow-y: auto;
}
.sh-mobile-nav.is-open { right: 0; }
.sh-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 99;
    display: none;
}
.sh-mobile-overlay.is-open { display: block; }

.sh-mobile-nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--sh-fg);
}

.sh-mobile-nav-links { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.sh-mobile-nav-links > a, .sh-mobile-nav-links > button {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--sh-muted-fg);
    transition: color 0.2s;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}
.sh-mobile-nav-links > a:hover, .sh-mobile-nav-links > a.active,
.sh-mobile-nav-links > button:hover { color: var(--sh-fg); }
.sh-mobile-sub { display: none; flex-direction: column; gap: 1rem; margin-top: 1rem; padding-left: 1rem; }
.sh-mobile-sub.is-open { display: flex; }
.sh-mobile-sub a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--sh-muted-fg);
    transition: color 0.2s;
}
.sh-mobile-sub a:hover { color: var(--sh-fg); }

/* ---- Hero ---- */
.sh-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.sh-hero--tall { min-height: 100vh; }
.sh-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sh-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.8), rgba(0,0,0,.6), var(--sh-bg));
}
.sh-hero--centered .sh-hero-overlay {
    background: rgba(0,0,0,.4);
}
.sh-hero-content {
    position: relative;
    z-index: 10;
    padding: 8rem 0;
    max-width: 56rem;
}
.sh-hero--centered .sh-hero-content { text-align: center; max-width: 64rem; margin: 0 auto; }
.sh-hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: normal;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
@media (min-width: 768px) { .sh-hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .sh-hero h1 { font-size: 3.75rem; } }
@media (min-width: 1280px) { .sh-hero h1 { font-size: 4.5rem; } }
.sh-hero-sub {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #fff;
    max-width: 42rem;
}
.sh-hero--centered .sh-hero-sub { max-width: 48rem; margin: 0 auto; }
@media (min-width: 768px) { .sh-hero-sub { font-size: 1.25rem; } }
.sh-hero-buttons { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .sh-hero-buttons { flex-direction: row; } }
.sh-hero--centered .sh-hero-buttons { justify-content: center; }
.sh-hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 1.5rem 2rem;
}
@media (min-width: 1024px) { .sh-hero-bottom { padding: 0 3rem 2rem; } }
.sh-hero-bottom-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    font-size: 0.875rem;
    color: rgba(255,255,255,.7);
}
.sh-hero-bottom a { display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.sh-hero-bottom a:hover { color: #fff; }
.sh-hero-bottom-right {
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    text-transform: uppercase;
}

/* ---- Buttons ---- */
.sh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    letter-spacing: 0.025em;
    border-radius: var(--sh-radius);
    transition: all 0.2s;
    border: none;
}
.sh-btn--primary {
    background: var(--sh-primary);
    color: var(--sh-primary-fg);
}
.sh-btn--primary:hover { opacity: 0.9; }
.sh-btn--outline {
    background: var(--sh-bg);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
}
.sh-btn--outline:hover { background: rgba(255,255,255,.1); }
.sh-btn--outline-primary {
    background: transparent;
    border: 1px solid rgba(255,255,255,.3);
    color: var(--sh-primary);
}
.sh-btn--outline-primary:hover { background: rgba(255,255,255,.1); }
.sh-btn--lg { height: 2.75rem; padding: 0 2rem; }
.sh-btn svg { width: 1rem; height: 1rem; }

/* ---- Marquee / Why Choose Us Banner ---- */
.sh-marquee-section {
    padding: 2rem 0;
    background: var(--sh-primary);
    overflow: hidden;
}
.sh-marquee-title {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(0,0,0,.7);
    margin-bottom: 1.5rem;
}
.sh-marquee-track {
    display: flex;
    width: max-content;
    animation: sh-marquee 30s linear infinite;
}
.sh-marquee-track:hover { animation-play-state: paused; }
.sh-marquee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 2.5rem;
    flex-shrink: 0;
}
.sh-marquee-item svg { color: var(--sh-primary-fg); width: 1.5rem; height: 1.5rem; flex-shrink: 0; }
.sh-marquee-item h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--sh-primary-fg);
    white-space: nowrap;
    font-family: 'Playfair Display', serif;
}
.sh-marquee-item p {
    font-size: 0.75rem;
    color: rgba(0,0,0,.7);
    white-space: nowrap;
}
@keyframes sh-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- Sections ---- */
.sh-section { padding: 6rem 0; }
.sh-section--bg { background: var(--sh-card); }
.sh-section--dark { background: #1a1a1a; }
.sh-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sh-primary);
}
.sh-label--small {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
}
.sh-heading {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--sh-fg);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .sh-heading { font-size: 2.25rem; } }
.sh-heading--xl { font-size: 1.875rem; }
@media (min-width: 768px) { .sh-heading--xl { font-size: 2.25rem; } }
@media (min-width: 1024px) { .sh-heading--xl { font-size: 3rem; } }
.sh-text { color: var(--sh-muted-fg); line-height: 1.7; }
.sh-text + .sh-text { margin-top: 1.5rem; }

/* ---- Grid ---- */
.sh-grid { display: grid; gap: 2rem; }
.sh-grid--2 { grid-template-columns: 1fr; }
@media (min-width: 1024px) { .sh-grid--2 { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.sh-grid--3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .sh-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sh-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.sh-grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .sh-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sh-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.sh-grid--5 { grid-template-columns: 1fr; }
@media (min-width: 1024px) { .sh-grid--5 { grid-template-columns: repeat(5, 1fr); gap: 1rem; } }
.sh-align-center { align-items: center; }
.sh-text-center { text-align: center; }

/* ---- Service Cards (Home) ---- */
.sh-service-card {
    display: block;
    padding: 2rem;
    background: var(--sh-bg);
    border: 1px solid var(--sh-border);
    transition: all 0.3s;
    height: 100%;
}
.sh-service-card:hover { border-color: rgba(255,255,255,.3); }
.sh-service-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1rem;
    filter: invert(1);
    opacity: 0.8;
}
.sh-service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--sh-fg);
    margin-bottom: 0.5rem;
    transition: color 0.2s;
    font-family: 'Playfair Display', serif;
}
.sh-service-card:hover h3 { color: var(--sh-primary); }
.sh-service-card p { font-size: 0.875rem; color: var(--sh-muted-fg); line-height: 1.6; }
.sh-service-card .sh-arrow {
    color: var(--sh-primary);
    margin-top: 1rem;
    opacity: 0;
    transition: opacity 0.2s;
}
.sh-service-card:hover .sh-arrow { opacity: 1; }

/* ---- Why Items ---- */
.sh-why-item { display: flex; gap: 1rem; }
.sh-why-item svg { color: var(--sh-primary); flex-shrink: 0; margin-top: 0.25rem; }
.sh-why-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--sh-fg);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}
.sh-why-item p { font-size: 0.875rem; color: var(--sh-muted-fg); line-height: 1.6; }

/* ---- Process Timeline (Home) ---- */
.sh-timeline-desktop { display: none; }
@media (min-width: 1024px) { .sh-timeline-desktop { display: block; } }
.sh-timeline-mobile { display: block; }
@media (min-width: 1024px) { .sh-timeline-mobile { display: none; } }

.sh-timeline-dots {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
}
.sh-timeline-dot {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--sh-amber);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 16px rgba(217,119,6,.3);
    flex-shrink: 0;
}
.sh-timeline-line {
    flex: 1;
    border-top: 2px dashed rgba(217,119,6,.4);
    margin: 0 0.25rem;
}
.sh-timeline-card {
    border: 1px solid rgba(217,119,6,.3);
    border-radius: var(--sh-radius);
    padding: 1.25rem;
    background: rgba(0,0,0,.5);
}
.sh-timeline-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sh-fg);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}
.sh-timeline-card p { font-size: 0.875rem; color: var(--sh-muted-fg); line-height: 1.6; }

.sh-timeline-mobile-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.sh-timeline-mobile-item + .sh-timeline-mobile-item { margin-top: 1rem; }
.sh-timeline-mobile-dot {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--sh-amber);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(217,119,6,.3);
}

/* ---- Featured Work Grid ---- */
.sh-work-card {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.sh-work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.sh-work-card:hover img { transform: scale(1.05); }
.sh-work-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.9), transparent, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.sh-work-card:hover .sh-work-card-overlay { opacity: 1; }
.sh-work-card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    transform: translateY(1rem);
    opacity: 0;
    transition: all 0.3s;
}
.sh-work-card:hover .sh-work-card-title { transform: translateY(0); opacity: 1; }
.sh-work-card-title h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--sh-fg);
    font-family: 'Playfair Display', serif;
}

/* ---- Image with Decorative Border ---- */
.sh-img-decorated { position: relative; }
.sh-img-decorated img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2px;
}
.sh-img-decorated::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 12rem;
    height: 12rem;
    border: 2px solid rgba(255,255,255,.2);
    border-radius: 2px;
}

/* ---- CTA Section ---- */
.sh-cta {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}
.sh-cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.1), var(--sh-bg), rgba(255,255,255,.05));
}
.sh-cta-inner {
    position: relative;
    z-index: 10;
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}
.sh-cta h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--sh-fg);
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .sh-cta h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .sh-cta h2 { font-size: 3rem; } }
.sh-cta p { font-size: 1.125rem; color: var(--sh-muted-fg); margin-bottom: 2.5rem; line-height: 1.7; }
.sh-cta-buttons { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 640px) { .sh-cta-buttons { flex-direction: row; justify-content: center; } }
.sh-cta--dark .sh-cta-bg {
    background: linear-gradient(135deg, rgba(255,255,255,.1), #1a1a1a, rgba(255,255,255,.05));
}

/* ---- Footer ---- */
.sh-footer {
    background: var(--sh-card);
    border-top: 1px solid var(--sh-border);
}
.sh-footer-inner { padding: 4rem 0; }
.sh-footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .sh-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sh-footer-grid { grid-template-columns: repeat(3, 1fr); } }
.sh-footer-logo { height: 2.5rem; width: auto; margin-bottom: 1rem; }
.sh-footer-desc { font-size: 0.875rem; color: var(--sh-muted-fg); line-height: 1.7; margin-bottom: 1.5rem; }
.sh-footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.sh-footer-contact a, .sh-footer-contact span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--sh-muted-fg);
    transition: color 0.2s;
}
.sh-footer-contact a:hover { color: var(--sh-primary); }
.sh-footer-contact a.sh-phone-link { color: var(--sh-primary); }
.sh-footer-contact a.sh-phone-link:hover { opacity: 0.8; }
.sh-footer-contact svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.sh-footer-col h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sh-fg);
    margin-bottom: 1rem;
}
.sh-footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.sh-footer-links a {
    font-size: 0.875rem;
    color: var(--sh-muted-fg);
    transition: color 0.2s;
}
.sh-footer-links a:hover { color: var(--sh-primary); }
.sh-footer-links a.sh-phone-link { color: var(--sh-primary); }
.sh-footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--sh-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
@media (min-width: 768px) {
    .sh-footer-bottom { flex-direction: row; justify-content: space-between; }
}
.sh-footer-bottom p { font-size: 0.75rem; color: var(--sh-muted-fg); }

/* ---- About Page ---- */
.sh-leadership-section { background: #1a1a1a; }
.sh-leadership-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}
@media (min-width: 768px) { .sh-leadership-heading { font-size: 3rem; } }
.sh-leader-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .sh-leader-card { flex-direction: row; align-items: stretch; }
}
.sh-leader-text { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.sh-leader-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    font-style: italic;
    margin-bottom: 0.25rem;
    font-family: 'Playfair Display', serif;
}
@media (min-width: 768px) { .sh-leader-name { font-size: 1.875rem; } }
.sh-leader-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sh-primary);
    margin-bottom: 1.25rem;
}
.sh-leader-bio {
    color: rgba(255,255,255,.7);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-top: 1rem;
    display: none;
}
.sh-leader-bio.is-open { display: block; }
.sh-leader-bio p + p { margin-top: 1rem; }
.sh-leader-bio a { color: var(--sh-primary); }
.sh-leader-bio a:hover { text-decoration: underline; }
.sh-leader-photo {
    width: 12rem;
    height: 15rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
@media (min-width: 640px) { .sh-leader-photo { width: 14rem; height: 18rem; } }
.sh-leader-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.sh-leader-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, transparent, rgba(26,26,26,.3));
    pointer-events: none;
}
.sh-bio-toggle {
    width: fit-content;
    background: transparent;
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--sh-radius);
    cursor: pointer;
    transition: all 0.2s;
}
.sh-bio-toggle:hover { background: rgba(255,255,255,.1); }

/* ---- Services Page ---- */
.sh-service-page-card {
    display: block;
    overflow: hidden;
    border: 1px solid var(--sh-border);
    transition: all 0.3s;
}
.sh-service-page-card:hover { border-color: rgba(255,255,255,.3); }
.sh-service-page-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}
.sh-service-page-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.sh-service-page-card:hover .sh-service-page-card-img img { transform: scale(1.05); }
.sh-service-page-card-body { padding: 2rem; }
.sh-service-page-card-body svg { color: var(--sh-primary); margin-bottom: 1rem; }
.sh-service-page-card-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--sh-fg);
    margin-bottom: 0.75rem;
    transition: color 0.2s;
    font-family: 'Playfair Display', serif;
}
.sh-service-page-card:hover .sh-service-page-card-body h3 { color: var(--sh-primary); }
.sh-service-page-card-body p { color: var(--sh-muted-fg); line-height: 1.6; margin-bottom: 1rem; }
.sh-service-page-card-body .sh-learn-more {
    color: var(--sh-primary);
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.sh-service-page-card-body .sh-learn-more svg { transition: transform 0.2s; }
.sh-service-page-card:hover .sh-learn-more svg { transform: translateX(4px); }

/* Additional Services Grid */
.sh-additional-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--sh-bg);
    border: 1px solid var(--sh-border);
    text-align: left;
}
.sh-additional-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--sh-primary);
    flex-shrink: 0;
}
.sh-additional-item span { color: var(--sh-fg); font-weight: 500; }

/* ---- Service Sub-page ---- */
.sh-feature-list { display: flex; flex-direction: column; gap: 1rem; }
.sh-feature-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}
.sh-feature-item svg { color: var(--sh-primary); flex-shrink: 0; margin-top: 0.125rem; }
.sh-feature-item span { color: var(--sh-muted-fg); }

/* ---- Process Page ---- */
.sh-process-step { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .sh-process-step { grid-template-columns: 1fr 1fr; } }
.sh-process-step + .sh-process-step { margin-top: 6rem; }
.sh-process-step--reverse .sh-process-step-img { order: 0; }
@media (min-width: 1024px) { .sh-process-step--reverse .sh-process-step-img { order: 2; } }
@media (min-width: 1024px) { .sh-process-step--reverse .sh-process-step-text { order: 1; } }
.sh-process-step-img img {
    width: 100%;
    height: 340px;
    object-fit: contain;
    border-radius: 2px;
}
.sh-process-num {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255,255,255,.2);
    font-family: 'Playfair Display', serif;
}
.sh-process-step h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--sh-fg);
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

/* ---- Portfolio Page ---- */
.sh-portfolio-filters { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 3rem; }
.sh-filter-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    background: var(--sh-card);
    border: 1px solid var(--sh-border);
    color: var(--sh-muted-fg);
    transition: all 0.2s;
}
.sh-filter-btn:hover { color: var(--sh-fg); border-color: rgba(255,255,255,.3); }
.sh-filter-btn.active {
    background: var(--sh-primary);
    color: var(--sh-primary-fg);
    border-color: var(--sh-primary);
}

.sh-portfolio-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .sh-portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sh-portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

.sh-portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.sh-portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.sh-portfolio-item:hover img { transform: scale(1.05); }
.sh-portfolio-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.9), rgba(0,0,0,.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.sh-portfolio-item:hover .sh-portfolio-item-overlay { opacity: 1; }
.sh-portfolio-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    transform: translateY(1rem);
    opacity: 0;
    transition: all 0.3s;
}
.sh-portfolio-item:hover .sh-portfolio-item-info { transform: translateY(0); opacity: 1; }
.sh-portfolio-item-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--sh-fg);
    font-family: 'Playfair Display', serif;
}
.sh-portfolio-item-info p { font-size: 0.875rem; color: var(--sh-muted-fg); margin-top: 0.25rem; }

/* ---- Why Somota Page ---- */
.sh-stats-bar {
    padding: 3.5rem 0;
    background: var(--sh-card);
    border-bottom: 1px solid var(--sh-border);
}
.sh-stats-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
@media (min-width: 768px) { .sh-stats-inner { flex-direction: row; justify-content: center; } }
.sh-stat {
    text-align: center;
    padding: 1rem 2rem;
}
@media (min-width: 768px) { .sh-stat { padding: 0 3rem; } }
.sh-stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--sh-primary);
    line-height: 1;
    font-family: 'Playfair Display', serif;
}
@media (min-width: 768px) { .sh-stat-value { font-size: 2.25rem; } }
.sh-stat-label {
    font-size: 0.75rem;
    color: var(--sh-muted-fg);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
.sh-stat-divider {
    display: none;
    width: 1px;
    height: 3rem;
    background: var(--sh-border);
}
@media (min-width: 768px) { .sh-stat-divider { display: block; } }

/* Pillars Grid */
.sh-pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--sh-border);
}
@media (min-width: 768px) { .sh-pillars-grid { grid-template-columns: repeat(3, 1fr); } }
.sh-pillar {
    background: var(--sh-secondary);
    padding: 2.5rem 3rem;
    border-top: 2px solid var(--sh-primary);
}
.sh-pillar svg { color: var(--sh-primary); margin-bottom: 1.5rem; }
.sh-pillar h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sh-fg);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}
.sh-pillar p { font-size: 0.875rem; color: var(--sh-muted-fg); line-height: 1.6; }

.sh-pillars-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--sh-border);
    margin-top: 1px;
}
@media (min-width: 768px) { .sh-pillars-bottom { grid-template-columns: repeat(3, 1fr); } }
.sh-pillar-image {
    display: none;
    overflow: hidden;
}
@media (min-width: 768px) { .sh-pillar-image { display: block; } }
.sh-pillar-image img { width: 100%; height: 100%; object-fit: cover; }

/* Testimonial */
.sh-testimonial blockquote {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--sh-fg);
    margin-top: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}
@media (min-width: 768px) { .sh-testimonial blockquote { font-size: 1.875rem; } }
.sh-testimonial-author { color: var(--sh-muted-fg); margin-top: 1.5rem; }

/* ---- Locations Page ---- */
.sh-region-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 640px) { .sh-region-grid { grid-template-columns: repeat(2, 1fr); } }
.sh-region-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--sh-card);
    border: 1px solid var(--sh-border);
}
.sh-region-item svg { color: var(--sh-primary); width: 1rem; height: 1rem; flex-shrink: 0; }
.sh-region-item span { color: var(--sh-fg); font-size: 0.875rem; font-weight: 500; }

/* ---- Contact Page ---- */
.sh-contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.sh-contact-info-item { display: flex; align-items: center; gap: 1rem; }
.sh-contact-info-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}
.sh-contact-info-icon svg { color: var(--sh-primary); width: 1.25rem; height: 1.25rem; }
.sh-contact-info-item .sh-info-label { font-size: 0.875rem; color: var(--sh-muted-fg); }
.sh-contact-info-item .sh-info-value { color: var(--sh-fg); font-weight: 500; transition: color 0.2s; }
a.sh-contact-info-item:hover .sh-info-value { color: var(--sh-primary); }

/* ---- Thank You Page ---- */
.sh-thankyou {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0;
}
.sh-thankyou-inner { max-width: 42rem; margin: 0 auto; text-align: center; }
.sh-thankyou-icon {
    width: 5rem;
    height: 5rem;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}
.sh-thankyou-icon svg { color: var(--sh-primary); }
.sh-thankyou h1 { margin-bottom: 1.5rem; }
.sh-thankyou p { font-size: 1.125rem; color: var(--sh-muted-fg); line-height: 1.7; margin-bottom: 2.5rem; }
.sh-thankyou p a { color: var(--sh-primary); transition: opacity 0.2s; }
.sh-thankyou p a:hover { opacity: 0.8; }
.sh-thankyou-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) { .sh-thankyou-buttons { flex-direction: row; } }

/* ---- 404 Page ---- */
.sh-404 {
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    background: var(--sh-muted);
    text-align: center;
}
.sh-404 h1 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; }
.sh-404 p { font-size: 1.25rem; color: var(--sh-muted-fg); margin-bottom: 1rem; }
.sh-404 a { color: var(--sh-primary); text-decoration: underline; }
.sh-404 a:hover { opacity: 0.9; }

/* ---- Scroll Animations ---- */
.sh-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.sh-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Gallery (service sub-page) ---- */
.sh-gallery-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .sh-gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.sh-gallery-item { aspect-ratio: 4/3; overflow: hidden; }
.sh-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.sh-gallery-item:hover img { transform: scale(1.05); }

/* ---- Image standard ---- */
.sh-img-cover {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 2px;
}
.sh-img-cover--tall { height: 500px; }

/* ---- Utility ---- */
.sh-mb-6 { margin-bottom: 1.5rem; }
.sh-mb-8 { margin-bottom: 2rem; }
.sh-mb-10 { margin-bottom: 2.5rem; }
.sh-mb-12 { margin-bottom: 3rem; }
.sh-mb-16 { margin-bottom: 4rem; }
.sh-mt-4 { margin-top: 1rem; }
.sh-mt-6 { margin-top: 1.5rem; }
.sh-mt-8 { margin-top: 2rem; }
.sh-mt-10 { margin-top: 2.5rem; }
.sh-mt-12 { margin-top: 3rem; }
.sh-max-w-4xl { max-width: 56rem; }
.sh-max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.sh-max-w-2xl { max-width: 42rem; }

/* ---- Contact form iframe ---- */
.sh-form-iframe {
    border: none;
    width: 100%;
    min-height: 600px;
}
