```css
:root {
    --charcoal: #1f2a30;
    --charcoal-soft: #2c3940;
    --teal: #3e6b73;
    --teal-soft: #6f9aa0;
    --silver: #c7cbcf;
    --stone: #f5f4f1;
    --white: #ffffff;
    --text: #223038;
    --muted: #5e6b70;
    --border: rgba(31, 42, 48, 0.10);
    --shadow: 0 18px 50px rgba(24, 35, 39, 0.10);
    --link-blue: #0563c1;
    --link-blue-hover: #0b57a1;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background:
        linear-gradient(180deg, rgba(245, 244, 241, 0.93), rgba(255, 255, 255, 1)),
        linear-gradient(135deg, rgba(62, 107, 115, 0.06), rgba(199, 203, 207, 0.10));
    color: var(--text);
}

body.home-page {
    background:
        linear-gradient(rgba(255, 255, 255, 0.0), rgba(245, 244, 241, 0.0)),
        url("inlet.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body.about-page {
    background:
        linear-gradient(rgba(255, 255, 255, 0.0), rgba(245, 244, 241, 0.0)),
        url("sky.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body.bio-page {
    background:
        linear-gradient(rgba(255, 255, 255, 0.0), rgba(245, 244, 241, 0.0)),
        url("sky.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body.services-page {
    background:
        linear-gradient(rgba(255, 255, 255, 0.0), rgba(245, 244, 241, 0.0)),
        url("beach.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.site-shell {
    min-height: 100vh;
}

.topbar {
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand-logo-link {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    border-radius: 14px;
}

.brand-logo-wrap {
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 1.00);
    border: 1px solid rgba(199, 203, 207, 0.55);
    box-shadow:
        0 10px 24px rgba(31, 42, 48, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-logo-link:hover .brand-logo-wrap {
    transform: translateY(-1px);
    box-shadow:
        0 14px 28px rgba(31, 42, 48, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.brand-logo {
    width: 160px;
    height: auto;
    filter: drop-shadow(0 6px 14px rgba(31, 42, 48, 0.12));
}

.brand-text-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-text {
    font-size: 0.95rem;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: bolder;
    font-size: large;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.65),
        0 0 14px rgba(0, 0, 0, 0.35);
    -webkit-text-stroke: 0.35px rgba(0, 0, 0, 0.22);
}

.nav {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 1.00);
    border: 1px solid rgba(31, 42, 48, 0.10);
    box-shadow:
        0 10px 24px rgba(21, 32, 36, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
}

.nav a {
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--charcoal);
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.nav a.active {
    background: rgba(62, 107, 115, 0.14);
    color: var(--charcoal-soft);
    transform: translateY(-1px);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-family: Arial, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--teal);
}

.hero-wrap,
.page-header-wrap,
.services,
.content-wrap,
.closing,
.site-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
}

/* Home page */
.hero-wrap {
    padding: 92px 28px 50px;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 74vh;
    max-width: 100%;
}

.hero-content {
    max-width: 760px;
    padding: 78px 66px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1.00), rgba(255, 255, 255, 1.00));
    border: 1px solid rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(12px);
    box-shadow:
        0 28px 70px rgba(21, 32, 36, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
    text-align: center;
}

.hero-title {
    max-width: none;
    margin: 0 auto;
    font-size: clamp(3.1rem, 5.2vw, 5.4rem);
    line-height: 0.98;
    font-weight: 600;
    color: var(--charcoal);
    text-wrap: balance;
}

.home-hero-title {
    font-size: clamp(2.5rem, 4.2vw, 4.3rem);
    line-height: 1.02;
}

.hero-copy {
    max-width: 560px;
    margin: 28px 0 0;
    font-family: Arial, sans-serif;
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--white);
}

.hero-actions {
    margin-top: 42px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-content: center;
    min-width: 170px;
    padding: 14px 22px;
    border-radius: 999px;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.btn-primary {
    background: var(--charcoal);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(31, 42, 48, 0.18);
}

.btn-primary:hover {
    background: var(--charcoal-soft);
    transform: translateY(-1px);
}

.btn-secondary {
    border: 1px solid rgba(62, 107, 115, 0.26);
    color: var(--teal);
    background: rgba(255, 255, 255, 0.78);
}

.btn-secondary:hover {
    background: rgba(62, 107, 115, 0.08);
}

.services {
    padding: 18px 28px 72px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.service-card,
.content-card,
.sidebar-card {
    background: rgba(255, 255, 255, 1.00);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(31, 42, 48, 0.05);
}

.service-card {
    padding: 24px;
}

.service-number {
    font-family: Arial, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
}

.service-card h3 {
    margin: 12px 0 12px;
    font-size: 1.35rem;
    color: var(--charcoal);
}

.service-card p {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.8;
    color: var(--muted);
}

.closing {
    max-width: 900px;
    padding: 8px 28px 96px;
}

.closing-card {
    padding: 34px 38px;
    text-align: center;
    background: rgba(255, 255, 255, 1.00);
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow:
        0 18px 44px rgba(21, 32, 36, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.closing p {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 1.18rem;
    line-height: 1.95;
    color: var(--white);
}

/* About page */
.page-header-wrap {
    padding: 26px 28px 22px;
}

.page-header {
    background: linear-gradient(150deg, rgba(31, 42, 48, 1.00), rgba(62, 107, 115, 1.00));
    border-radius: 24px;
    color: var(--white);
    box-shadow: var(--shadow);
    padding: 54px 58px;
}

.page-header .page-title {
    margin: 0;
    font-size: clamp(2.0rem, 3.7vw, 3.7rem);
    line-height: 1.1;
    font-weight: 700;
    color: #ffffff;
    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.45),
        0 0 18px rgba(0, 0, 0, 0.20);
    -webkit-text-stroke: 0.4px rgba(0, 0, 0, 0.18);
}

.bio-role-title {
    margin: 14px 0 0;
    font-size: clamp(1.25rem, 2.4vw, 2rem);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.header-copy {
    max-width: 760px;
    margin: 20px 0 0;
    font-family: Arial, sans-serif;
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
}

.page-header .eyebrow {
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 16px;
}

.content-wrap {
    padding: 24px 28px 80px;
    display: grid;
    grid-template-columns: 1.15fr 0.75fr;
    gap: 24px;
    align-items: start;
}

.content-card {
    padding: 38px 38px 34px;
}

.content-card h2 {
    margin: 0 0 18px;
    font-size: 1.65rem;
    color: var(--charcoal);
}

.content-card p {
    margin: 0 0 20px;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--muted);
}

.sidebar {
    display: grid;
    gap: 24px;
}

.sidebar-card {
    padding: 30px;
}

.sidebar-card h3 {
    margin: 0 0 14px;
    font-size: 1.2rem;
    color: var(--charcoal);
}

.sidebar-card p,
.sidebar-card li {
    font-family: Arial, sans-serif;
    line-height: 1.8;
    color: var(--muted);
}

.values-list {
    margin: 0;
    padding-left: 20px;
}

.values-list li + li {
    margin-top: 10px;
}



.bio-page-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 8px 28px 84px;
}

.bio-card {
    padding: 34px;
}

.bio-card-grid {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.bio-photo-wrap {
    overflow: hidden;
    border-radius: 22px;
    background: rgba(245, 244, 241, 0.92);
    box-shadow: 0 12px 30px rgba(31, 42, 48, 0.08);
}

.bio-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.bio-content p {
    margin: 0 0 18px;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text);
    overflow-wrap: break-word;
    word-break: normal;
}

.bio-heading {
    margin: 0 0 16px;
    font-size: 1.7rem;
    color: var(--charcoal);
}

.bio-section {
    margin-top: 28px;
}

.bio-section {
        margin-top: 24px;
    }

.bio-list {
    margin: 0;
    padding-left: 18px;
    columns: 3;
    column-gap: 18px;
}

.bio-list li {
    margin: 0 0 4px;
    break-inside: avoid;
    font-size: 0.95rem;
    line-height: 1.35;
    color: var(--text);
    overflow-wrap: anywhere;
    word-break: normal;
}

.bio-actions {
    margin-top: 30px;
}

/* Services page */
.services-page-grid,
.services-summary {
    max-width: 1180px;
    margin: 0 auto;
}

.services-page-grid {
    padding: 24px 28px 28px;
    display: grid;
    gap: 24px;
}

.service-detail-card {
    padding: 36px 38px;
    background: rgba(255, 255, 255, 1.00);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(31, 42, 48, 0.06);
}

.service-detail-card-featured {
    padding: 42px 44px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 244, 241, 0.93));
    border: 1px solid rgba(62, 107, 115, 0.18);
    box-shadow:
        0 18px 42px rgba(31, 42, 48, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.service-detail-card p {
    margin: 0 0 18px;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--muted);
}

.service-feature-group + .service-feature-group {
    margin-top: 28px;
}

.service-feature-group {
    padding-top: 8px;
}

.service-feature-group h3 {
    margin: 0 0 12px;
    font-family: Arial, sans-serif;
    font-size: 0.86rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal);
}

.service-detail-card-featured .service-feature-group {
    padding: 20px 0 0;
    border-top: 1px solid rgba(62, 107, 115, 0.14);
}

.service-detail-card-featured .service-feature-group:first-of-type {
    margin-top: 26px;
}

.service-feature-list {
    margin: 0;
    padding-left: 20px;
}

.service-feature-list li {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--muted);
}

.service-feature-list li + li {
    margin-top: 8px;
}

.doc-link {
    color: #0563c1;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
}

.doc-link:hover {
    color: #0b57a1;
}

.services-summary {
    padding: 0 28px 84px;
}

.services-list-card {
    text-align: left;
}

.service-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
}

.service-list li {
    padding: 22px 22px 20px;
    border: 1px solid rgba(31, 42, 48, 0.10);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 20px rgba(31, 42, 48, 0.04);
}

.service-list strong {
    display: block;
    margin-bottom: 10px;
    color: var(--charcoal);
    font-family: Arial, sans-serif;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.service-list span {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--muted);
}

.services-closing-copy {
    margin: 22px 0 0;
    padding-top: 18px;
    border-top: 1px solid rgba(31, 42, 48, 0.08);
    font-family: Arial, sans-serif;
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--muted);
    text-align: center;
}

/* Contact page */
.contact-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 28px 84px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 24px;
}

.contact-card {
    padding: 36px 38px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(31, 42, 48, 0.06);
}

.contact-card h2 {
    margin: 0 0 18px;
    font-size: 1.9rem;
    line-height: 1.2;
    color: var(--charcoal);
}

.contact-detail + .contact-detail {
    margin-top: 24px;
}

.contact-detail h3 {
    margin: 0 0 8px;
    font-family: Arial, sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
}

.contact-detail p,
.contact-form-intro,
.contact-note,
.form-field label,
.form-field input,
.form-field textarea {
    font-family: Arial, sans-serif;
}

.contact-detail p,
.contact-form-intro,
.contact-note {
    margin: 0;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--muted);
}

.contact-form-intro {
    margin-bottom: 22px;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field label {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--charcoal-soft);
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(31, 42, 48, 0.14);
    border-radius: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #7a878d;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: rgba(62, 107, 115, 0.55);
    box-shadow: 0 0 0 4px rgba(62, 107, 115, 0.12);
    background: var(--white);
}

.form-field textarea {
    resize: vertical;
    min-height: 160px;
}

.contact-submit {
    margin-top: 8px;
    justify-self: start;
}

.contact-note {
    margin-top: 18px;
    font-size: 0.94rem;
}

.team-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 8px 28px 84px;
}

.team-section-inner {
    padding: 38px 0 0;
}

.team-intro-card {
    max-width: 980px;
    margin: 0 auto 28px;
    padding: 30px;
    background: rgba(255, 255, 255, 1.00);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(31, 42, 48, 0.05);
    text-align: center;
}

.team-title {
    margin: 0 0 14px;
    font-size: 2.1rem;
    line-height: 1.2;
    color: var(--charcoal);
    font-style: italic;
}

.team-copy {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--muted);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.team-card {
    padding: 18px 18px 22px;
    background: rgba(255, 255, 255, 1.00);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(31, 42, 48, 0.06);
    text-align: center;
}

.team-photo-wrap {
    margin-bottom: 18px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(245, 244, 241, 0.9);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    margin: 0;
    font-size: 1.35rem;
    color: var(--charcoal);
}

.about-stack {
    display: grid;
    gap: 5px;
}

.about-contact-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px 84px;
}

.about-contact-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: stretch;
    padding: 38px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 244, 241, 0.90));
    border: 1px solid rgba(62, 107, 115, 0.14);
    border-radius: 28px;
    box-shadow:
        0 18px 44px rgba(21, 32, 36, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.about-contact-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 8px 8px 4px;
}

.about-contact-title {
    margin: 0 0 18px;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.15;
    color: var(--charcoal);
}

.about-contact-copy {
    margin: 0;
    max-width: 34rem;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--muted);
}

.about-contact-info-card {
    margin: 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 12px 32px rgba(31, 42, 48, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.about-grid {
    align-items: start;
}

.about-side-visual {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    max-width: 500px;
    margin-top: 0;
    margin-right: 0;
}

.about-side-link {
    display: block;
    color: inherit;
    background: rgba(255, 255, 255, 0.98);
}

.about-side-image {
    width: 100%;
    height: 420px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.about-side-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 12px 16px 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--charcoal);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1.00), rgba(245, 244, 241, 1.00));
    border-top: 1px solid rgba(31, 42, 48, 0.08);
}

.about-side-quote-box {
    padding: 18px 20px 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1.00), rgba(245, 244, 241, 1.00));
    border-top: 1px solid rgba(31, 42, 48, 0.08);
}

.about-side-quote-text {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--charcoal-soft);
    text-align: center;
    font-style: italic;
}

.quote-text {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--charcoal-soft);
}

.quote-mark {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 2rem;
    color: var(--teal-soft);
}

.quote-card {
    margin-top: -10px; /* try -6px to -16px */
    background: linear-gradient(180deg, rgba(245, 244, 241, 0.98), rgba(255, 255, 255, 0.92));
    border: 1px solid rgba(62, 107, 115, 0.14);
}

/* Footer */
.site-footer {
    margin-top: 30px;
    background: linear-gradient(180deg, rgba(31, 42, 48, 0.98), rgba(27, 37, 42, 1));
    border-top: 1px solid rgba(199, 203, 207, 0.14);
    color: rgba(255, 255, 255, 0.88);
}

.site-footer-inner {
    padding: 30px 28px 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.85fr);
    gap: 40px;
    align-items: start;
}

.footer-main {
    min-width: 0;
}

.footer-contact {
    padding-left: 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-title {
    margin: 0 0 14px;
    font-size: 0.85rem;
    font-family: Arial, sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.footer-copy {
    margin: 0;
    max-width: 980px;
    font-family: Arial, sans-serif;
    font-size: 0.75rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.82);
}

.footer-copy-small {
    font-size: 0.75rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.76);
}

.footer-copy + .footer-copy {
    margin-top: 14px;
}

.footer-link {
    color: #b9d3d7;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-link:hover {
    color: var(--white);
}

@media (max-width: 900px) {
    .about-side-visual {
        min-height: 320px;
    }
}

@media (max-width: 960px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .topbar {
        gap: 24px;
    }

    .brand {
        gap: 14px;
    }

    .brand-logo {
        width: 138px;
    }

    .brand-text {
        font-size: 0.88rem;
        letter-spacing: 0.12em;
    }

    .brand-subtext {
        font-size: 0.78rem;
    }

    .nav {
        gap: 8px;
        padding: 8px;
    }

    .nav a {
        padding: 9px 13px;
    }

    .hero-wrap {
        padding: 68px 28px 88px;
    }

    .hero {
        min-height: auto;
        align-items: stretch;
    }

    .hero-content {
        max-width: 100%;
        padding: 54px 40px;
    }

    .hero-title {
        max-width: 11ch;
        font-size: clamp(2.9rem, 8vw, 4.8rem);
    }

    .home-hero-title {
        font-size: clamp(2.3rem, 6.5vw, 3.8rem);
    }

    .services,
    .content-wrap {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 42px 32px;
    }

    .content-card {
        padding: 30px 28px;
    }

    .closing-card {
        padding: 28px 26px;
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

        .service-list-grid {
        grid-template-columns: 1fr;
    }

    .about-contact-card,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-section {
        padding: 24px 20px 72px;
    }

    .contact-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .contact-card h2 {
        font-size: 1.55rem;
    }

    .contact-submit {
        width: 100%;
    }

    .topbar {
        flex-direction: column;
        gap: 18px;
    }

    .brand {
        flex-direction: column;
        text-align: center;
    }

    .brand-logo-wrap {
        padding: 8px;
    }

    .brand-logo {
        width: 170px;
    }

    .brand-text-group {
        align-items: center;
    }

    .nav {
        gap: 8px;
        padding: 8px;
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 22px;
    }

    .nav a {
        padding: 9px 14px;
    }

    .hero-wrap {
        padding: 44px 20px 58px;
    }

    .hero-content {
        padding: 38px 24px 42px;
        border-radius: 22px;
    }

    .hero-title {
        max-width: none;
        font-size: clamp(2.7rem, 11vw, 4rem);
    }

    .home-hero-title {
        font-size: clamp(2.1rem, 8.8vw, 3.1rem);
    }

    .hero-copy {
        font-size: 1rem;
        line-height: 1.8;
    }

    .hero-actions {
        margin-top: 30px;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .closing {
        padding: 0 20px 72px;
    }

    .closing-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .closing p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .page-header {
        padding: 36px 24px;
    }

    .bio-role-title {
    font-size: clamp(1.1rem, 4.8vw, 1.55rem);
    }

    .site-footer-inner {
        padding: 24px 20px 28px;
    }

        .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-contact {
        padding-left: 0;
        border-left: 0;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .footer-copy {
        font-size: 0.84rem;
        line-height: 1.8;
        margin-bottom: 14px;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .footer-link {
        display: inline;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .footer-copy br {
        display: block;
        margin-bottom: 8px;
    }

    .footer-copy-small {
        font-size: 0.82rem;
        line-height: 1.75;
    }

    .footer-title {
        margin-bottom: 12px;
    }

    .footer-contact-item + .footer-contact-item {
        margin-top: 18px;
    }

    .services-page-grid,
    .services-summary {
        padding-left: 20px;
        padding-right: 20px;
    }

    .services-list-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .service-list li {
        padding: 18px 18px 16px;
        border-radius: 16px;
    }

    .service-list strong {
        font-size: 0.98rem;
    }

    .service-list span {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .services-closing-copy {
        margin-top: 18px;
        padding-top: 16px;
        font-size: 0.95rem;
    }
    .service-detail-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .service-detail-card h2 {
        font-size: 1.5rem;
    }

    .team-section {
        padding: 8px 20px 72px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        padding: 16px 16px 20px;
        border-radius: 20px;
    }

    .team-title {
        font-size: 1.7rem;
        font-style: italic;
    }

    .about-contact-section {
        padding: 0 20px 72px;
    }

    .about-contact-card {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .about-contact-title {
        font-size: 1.8rem;
    }

    .bio-page-wrap {
        padding: 8px 20px 72px;
    }

    .bio-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .bio-card-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bio-heading {
        font-size: 1.55rem;
    }

    .bio-photo-wrap {
        max-width: 100%;
        border-radius: 18px;
    }

        .bio-list {
        columns: 1;
        padding-left: 18px;
    }

    .bio-list li {
        white-space: nowrap;
    }

}

