:root {
    --ink: #2b1d16;
    --muted: #6f625b;
    --cream: #fbf7ef;
    --warm: #f4eadb;
    --paper: #ffffff;
    --line: #e7d8c5;
    --brown: #8b572f;
    --brown-dark: #5a351e;
    --olive: #6f7f3f;
    --olive-dark: #2f4a2c;
    --rose: #a55b62;
    --blue: #5f8295;
    --gold: #a26f31;
    --shadow: 0 18px 45px rgba(68, 45, 25, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: "Trebuchet MS", Arial, sans-serif;
    line-height: 1.55;
}

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

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

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3,
.brand strong {
    font-family: Georgia, "Times New Roman", serif;
}

.topbar {
    background: linear-gradient(90deg, #f7ebdc, #fffaf3);
    border-bottom: 1px solid #eadccb;
    color: var(--brown-dark);
    font-size: 14px;
}

.topbar-inner,
.topbar-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.topbar-actions {
    flex-wrap: wrap;
}

.topbar-actions a:not(.btn) {
    white-space: nowrap;
    font-weight: 800;
}

.topbar-inner {
    padding: 8px 0;
}

.topbar-tag::before {
    content: "⌖";
    margin-right: 8px;
    color: var(--brown);
}

.topbar-tag::after {
    content: "☘";
    margin-left: 8px;
    color: var(--olive);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 24px rgba(78, 52, 31, 0.08);
    backdrop-filter: blur(12px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 120px;
    gap: 34px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    min-width: 390px;
}

.brand-mark {
    display: grid;
    width: 116px;
    height: 116px;
    place-items: center;
    border: 2px solid #b49376;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.9), rgba(250, 242, 229, 0.96)),
        linear-gradient(135deg, #fffaf2, #ead8bf);
    color: var(--brown-dark);
    box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.75), 0 8px 22px rgba(90, 53, 30, 0.12);
    text-align: center;
}

.brand-mark span,
.brand-mark strong {
    display: block;
}

.brand-mark span {
    align-self: end;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-style: italic;
}

.brand-mark strong {
    align-self: start;
    font-size: 24px;
    letter-spacing: 0;
}

.brand-mark.has-logo {
    overflow: hidden;
    width: auto;
    height: 100px;
    padding: 9px;
    background: #ffffff;
}

.brand-mark.has-logo img {
    height: 100px !important;
    object-fit: contain;
    border-radius: 50%;
}

.brand > span:last-child {
    display: grid;
    gap: 2px;
}

.brand strong {
    color: var(--brown-dark);
    font-size: 34px;
    line-height: 1;
}

.brand small {
    color: #3f2c21;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
}

.brand em {
    color: var(--olive-dark);
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 18px;
}

.nav-links a {
    color: #271b16;
    font-size: 14px;
    font-weight: 800;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brown);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border: 1px solid var(--brown);
    border-radius: 8px;
    background: linear-gradient(180deg, #a2693a, #7f4a27);
    color: #ffffff;
    font-weight: 850;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(127, 74, 39, 0.18);
}

.btn:hover {
    background: linear-gradient(180deg, #8b572f, #60371e);
}

.btn-sm {
    min-height: 36px;
    padding: 8px 18px;
    font-size: 13px;
}

.btn-outline,
.btn-light {
    background: #fffaf5;
    color: var(--brown);
    border: 1px solid #b98e68;
    box-shadow: none;
}

.hero-homeo {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    background: #eee4d7;
}

.hero-remedy {
    position: absolute;
    inset: 0 0 0 auto;
    width: 62%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-copy-panel {
    position: relative;
    z-index: 2;
    width: 58%;
    min-height: 540px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #fffaf4 0%, #fff8ef 72%, rgba(255, 248, 239, 0.82) 100%);
    border-radius: 0 50% 50% 0;
    box-shadow: 28px 0 70px rgba(255, 250, 244, 0.94);
}

.hero-inner {
    width: min(620px, calc(100% - 48px));
    margin-left: max(36px, calc((100vw - 1220px) / 2));
}

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

.hero-copy h1 {
    margin-bottom: 22px;
    color: #2a1c15;
    font-size: 55px;
    line-height: 1.05;
    letter-spacing: 0;
}

.hero-copy h1 span {
    display: block;
    color: #9b6a45;
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: 64px;
    font-weight: 400;
}

.hero-copy p {
    max-width: 520px;
    color: #1f1b19;
    font-size: 21px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(82px, 1fr));
    gap: 0;
    margin: 34px 0;
    max-width: 520px;
}

.hero-features div {
    min-height: 76px;
    display: grid;
    place-items: center;
    gap: 7px;
    border-right: 1px solid #eadccb;
    text-align: center;
}

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

.hero-features span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid #9d7a5d;
    border-radius: 50%;
    color: #74543b;
    font-size: 22px;
}

.hero-features small {
    color: #3b302a;
    font-size: 12px;
    font-weight: 800;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.section {
    padding: 42px 0;
}

.section-title {
    text-align: center;
}

.section-title h2,
.why-card h2,
.patient-card h2 {
    margin-bottom: 4px;
    color: #2c1c15;
    font-size: 32px;
    line-height: 1.15;
}

.section-title p {
    margin-bottom: 24px;
    color: #4c4039;
    font-size: 16px;
}

.leaf-divider {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    margin-bottom: 12px;
    color: var(--olive);
    font-size: 24px;
}

.leaf-divider::before,
.leaf-divider::after {
    content: "";
    width: 62px;
    height: 1px;
    background: #dcc9b6;
}

.leaf-divider::before {
    margin-right: 8px;
}

.leaf-divider::after {
    margin-left: 8px;
}

.doctors-home {
    background: #fffdf8;
}

.doctor-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.doctor-profile-card {
    position: relative;
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
    min-height: 278px;
    padding: 22px 22px 34px;
    border: 1px solid #ecdcc9;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 15px 42px rgba(73, 48, 31, 0.08);
}

.doctor-profile-card img {
    width: 145px;
    height: 228px;
    object-fit: cover;
    border-radius: 10px;
    background: #eadccb;
}

.doctor-profile-card h3 {
    margin-bottom: 8px;
    font-size: 22px;
}

.doctor-profile-card p {
    margin-bottom: 20px;
    color: #1f1b18;
    font-weight: 700;
}

.doctor-profile-card span {
    color: #4d413b;
    font-size: 15px;
}

.round-link {
    position: absolute;
    left: 50%;
    bottom: -18px;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    transform: translateX(-50%);
    border: 1px solid #b78a65;
    border-radius: 50%;
    background: #fff8ef;
    color: var(--brown);
    font-size: 22px;
}

.center-actions {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}

.service-home {
    background: linear-gradient(180deg, #fffaf3, #fffdf9);
}

.service-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.home-service-card {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    padding: 28px 28px 26px;
    border: 1px solid #d9c5ad;
    border-radius: 14px;
    background: #ffffff;
}

.home-service-card.green {
    background: linear-gradient(180deg, #fbfdf7, #f6faed);
    border-color: #c8d2ac;
}

.home-service-card.blue {
    background: linear-gradient(180deg, #f8fcfd, #eef7fa);
    border-color: #bdd2dc;
}

.home-service-card.rose {
    background: linear-gradient(180deg, #fff9f9, #fbf0f1);
    border-color: #e0bdc2;
}

.home-service-card.gold {
    background: linear-gradient(180deg, #fffbf2, #f8eddc);
    border-color: #e5cda8;
}

.home-service-card header {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 14px;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(137, 94, 54, 0.18);
}

.home-service-card h3 {
    margin-bottom: 2px;
    font-size: 22px;
}

.home-service-card p {
    margin-bottom: 0;
    color: var(--brown);
    font-weight: 800;
}

.line-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: currentColor;
}

.line-icon::before {
    font-size: 42px;
}

.line-icon.child::before {
    content: "♙";
}

.line-icon.men::before {
    content: "♂";
}

.line-icon.women::before {
    content: "♀";
}

.line-icon.senior::before {
    content: "♧";
}

.home-service-card.green .line-icon,
.home-service-card.green li::before {
    color: var(--olive);
}

.home-service-card.blue .line-icon,
.home-service-card.blue li::before {
    color: var(--blue);
}

.home-service-card.rose .line-icon,
.home-service-card.rose li::before {
    color: var(--rose);
}

.home-service-card.gold .line-icon,
.home-service-card.gold li::before {
    color: var(--gold);
}

.home-service-card ul,
.special-panel ul {
    list-style: none;
    padding: 0;
}

.home-service-card ul {
    flex: 1;
    margin: 18px 0 24px;
}

.home-service-card li,
.special-panel li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 22px;
    color: #2e2723;
    font-size: 15px;
}

.home-service-card li::before,
.special-panel li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brown);
    font-weight: 900;
}

.special-panel li a {
    font-weight: 800;
}

.special-panel li a:hover {
    color: var(--brown);
}

.home-service-card a {
    align-self: center;
    min-width: 170px;
    padding: 10px 18px;
    border-radius: 7px;
    background: rgba(139, 87, 47, 0.12);
    color: var(--brown-dark);
    text-align: center;
    font-weight: 850;
}

.home-service-card a::after {
    content: " →";
}

.special-home {
    padding-top: 12px;
    background: #fffdf9;
}

.special-panel {
    display: grid;
    grid-template-columns: 1fr 1fr 1.25fr;
    gap: 30px;
    padding: 28px;
    border: 1px solid #e1cbb5;
    border-radius: 14px;
    background: #fffdf9;
    box-shadow: 0 15px 42px rgba(73, 48, 31, 0.08);
}

.special-panel ul {
    margin: 0;
    padding-right: 22px;
    border-right: 1px solid #e8d8c6;
}

.special-panel ul:last-of-type {
    border-right: 0;
}

.special-note {
    grid-column: 3;
    display: grid;
    grid-template-columns: 1fr 180px;
    align-items: center;
    gap: 18px;
    margin-top: 14px;
    padding: 22px;
    border-radius: 12px;
    background: linear-gradient(90deg, #fff5e8, #eff5df);
}

.special-note strong,
.special-note span {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
}

.special-note img {
    width: 180px;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
}

.proof-home {
    padding-top: 0;
    background: #fffdf9;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.proof-row {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid #eadccb;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(73, 48, 31, 0.08);
}

.proof-row-reverse {
    grid-template-columns: 1.1fr 0.9fr;
}

.proof-row-reverse img {
    order: 2;
}

.proof-row > img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
}

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

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

.why-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    padding: 0;
}

.why-list div {
    display: grid;
    gap: 8px;
    justify-items: center;
    align-content: start;
    min-height: 124px;
    padding: 16px 10px;
    border: 1px solid #eee0cf;
    border-radius: 12px;
    background: linear-gradient(180deg, #fffdf9, #f8efe5);
}

.why-list span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid #c59d79;
    border-radius: 50%;
    color: var(--brown);
    font-size: 26px;
}

.why-list strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    line-height: 1.2;
}

.patient-card blockquote {
    margin: 0;
    min-height: 132px;
    padding: 28px 38px;
    border-radius: 14px;
    background: linear-gradient(180deg, #fffdf9, #f8efe5);
    box-shadow: 0 12px 34px rgba(73, 48, 31, 0.07);
    color: #4f4038;
    text-align: left;
}

.patient-card blockquote::before {
    content: "“";
    color: #c59d79;
    font-size: 42px;
    line-height: 0;
}

.patient-card cite {
    display: block;
    margin-top: 10px;
    color: var(--brown-dark);
    font-style: normal;
    font-weight: 850;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d7c3ae;
}

.dots span:first-child {
    background: var(--brown);
}

.page-hero {
    padding: 72px 0 58px;
    background: linear-gradient(180deg, #fff8ef, #fffdf8);
    border-bottom: 1px solid #eadccb;
}

.page-hero h1 {
    max-width: 850px;
    margin-bottom: 14px;
    color: var(--brown-dark);
    font-size: 46px;
    line-height: 1.12;
}

.page-hero p {
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
}

.eyebrow {
    color: var(--olive);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.split,
.section-heading,
.image-split,
.detail-grid,
.form-layout,
.cta-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    align-items: center;
}

.section-heading {
    grid-template-columns: 1fr auto;
    margin-bottom: 26px;
}

.section-heading a,
.service-card a,
.blog-card a,
.doctor-card a {
    color: var(--brown);
    font-weight: 850;
}

.card-grid,
.doctor-grid,
.quote-grid,
.blog-grid,
.gallery-grid,
.value-grid {
    display: grid;
    gap: 22px;
}

.card-grid {
    grid-template-columns: repeat(3, 1fr);
}

.service-card,
.quote-card,
.value-grid article,
.side-panel,
.panel-form,
.blog-card,
.doctor-card,
.gallery-grid figure {
    border: 1px solid #eadccb;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(73, 48, 31, 0.07);
}

.service-card {
    overflow: hidden;
    padding: 0;
}

.service-card,
.quote-card,
.value-grid article,
.side-panel,
.panel-form {
    padding: 26px;
}

.service-card {
    padding: 0;
}

.service-card-image {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 0;
}

.service-card-body {
    padding: 24px;
}

.service-card .icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 50%;
    background: #f5eadb;
    color: var(--brown);
    font-weight: 900;
}

.image-split img,
.detail-content img,
.blog-card img,
.doctor-card img,
.gallery-grid img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.image-split img {
    height: 420px;
}

.doctor-grid {
    grid-template-columns: repeat(3, 1fr);
}

.doctor-grid-wide {
    grid-template-columns: repeat(2, 1fr);
}

.doctor-card {
    overflow: hidden;
}

.doctor-card img {
    height: 600px;
    border-radius: 0;
    object-position: top;
}

.doctor-card div,
.blog-card div {
    padding: 22px;
}

.doctor-card span,
.doctor-card small,
.blog-card span,
.quote-card span {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.quote-grid,
.blog-grid,
.gallery-grid {
    grid-template-columns: repeat(3, 1fr);
}

.stars {
    color: var(--brown);
    font-weight: 900;
    letter-spacing: 2px;
}

.blog-card {
    overflow: hidden;
}

.blog-card img {
    height: 210px;
    border-radius: 0;
}

.muted-section {
    background: #fff8ef;
}

.cta-band {
    background: var(--olive-dark);
    color: #ffffff;
}

.cta-band .eyebrow {
    color: #e9d5bd;
}

.detail-grid,
.form-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
}

.detail-content,
.article-body {
    color: var(--muted);
    font-size: 17px;
}

.detail-content img,
.article-body img {
    height: 420px;
    margin-bottom: 28px;
}

.service-detail-copy h2 {
    margin: 26px 0 10px;
}

.service-detail-copy p {
    margin-bottom: 16px;
}

.rich-list {
    margin: 0 0 18px;
    padding-left: 20px;
}

.rich-list li {
    margin-bottom: 8px;
}

.side-panel {
    position: sticky;
    top: 170px;
}

.side-panel a {
    display: flex;
    margin-top: 12px;
}

.booking-box {
    padding-bottom: 22px;
    border-bottom: 1px solid #eadccb;
}

.sidebar-services {
    margin-top: 22px;
}

.sidebar-services h3 {
    margin-bottom: 14px;
    font-size: 22px;
}

.sidebar-services a {
    align-items: center;
    gap: 12px;
    margin-top: 0;
    padding: 10px 0;
    border-bottom: 1px solid #eadccb;
}

.sidebar-services a.active strong,
.sidebar-services a:hover strong {
    color: var(--brown);
}

.sidebar-services img {
    width: 58px;
    height: 48px;
    flex: 0 0 58px;
    object-fit: cover;
    border-radius: 8px;
}

.sidebar-services strong,
.sidebar-services small {
    display: block;
}

.sidebar-services small {
    color: var(--muted);
    font-size: 12px;
}

.panel-form label,
.side-panel label {
    display: grid;
    gap: 7px;
    margin-bottom: 16px;
    color: var(--ink);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #d9c3ab;
    border-radius: 8px;
    padding: 12px 13px;
    color: var(--ink);
    background: #fffdf9;
    font: inherit;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(139, 87, 47, 0.16);
    border-color: var(--brown);
}

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

.alert {
    margin-bottom: 18px;
    padding: 13px 15px;
    border-radius: 8px;
    font-weight: 800;
}

.alert-success {
    background: #eef6e8;
    color: #375c2d;
}

.alert-error {
    background: #f9e9e2;
    color: #8e3a23;
}

.gallery-grid figure {
    margin: 0;
    overflow: hidden;
}

.gallery-grid img {
    height: 260px;
    border-radius: 0;
}

.gallery-grid figcaption {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 16px;
}

.gallery-grid span,
.check-list,
.faq-list p,
.faq-answer {
    color: var(--muted);
}

.faq-list {
    max-width: 850px;
}

.faq-list details {
    border: 1px solid #eadccb;
    border-radius: 12px;
    margin-bottom: 14px;
    background: #ffffff;
}

.faq-list summary {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 900;
}

.faq-list p,
.faq-answer {
    padding: 0 20px 18px;
}

.faq-answer p:last-child,
.faq-answer .rich-list:last-child {
    margin-bottom: 0;
}

.article-body {
    max-width: 850px;
}

.article-body h2 {
    color: var(--brown-dark);
    font-size: 25px;
}

.text-only {
    max-width: 830px;
}

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

.site-footer {
    color: rgba(255, 255, 255, 0.84);
    background: linear-gradient(120deg, #263f24, #172d1a);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 1fr 1.1fr;
    gap: 34px;
    padding: 34px 0 26px;
}

.footer-grid h3,
.footer-brand strong {
    color: #ffffff;
}

.footer-brand {
    min-width: 0;
}

.footer-brand .brand-mark {
    width: 64px;
    height: 64px;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.footer-brand .brand-mark span {
    font-size: 10px;
}

.footer-brand .brand-mark strong {
    font-size: 16px;
}

.footer-brand .brand-mark.has-logo {
    padding: 5px;
}

.footer-brand strong {
    font-size: 22px;
}

.footer-brand small {
    color: #e9d5bd;
}

.footer-grid a {
    display: block;
    margin: 7px 0;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.social-links a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.social-links svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.social-links a[aria-label="Instagram"] svg,
.social-links a[aria-label="WhatsApp"] svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-btn {
    display: inline-flex !important;
    margin-top: 8px !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 13px;
}

@media (max-width: 1120px) {
    .nav {
        min-height: 112px;
    }

    .brand {
        min-width: 310px;
    }

    .brand-mark {
        width: 86px;
        height: 86px;
    }

    .brand strong {
        font-size: 28px;
    }

    .nav-links {
        gap: 12px;
    }

    .hero-copy-panel {
        width: 66%;
    }

    .hero-remedy {
        width: 58%;
    }

    .service-showcase,
    .doctor-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .special-panel,
    .proof-grid {
        grid-template-columns: 1fr;
    }

    .special-panel ul {
        border-right: 0;
        border-bottom: 1px solid #e8d8c6;
        padding-bottom: 10px;
    }

    .special-note {
        grid-column: auto;
    }
}

@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }

    .nav {
        min-height: 96px;
    }

    .brand {
        min-width: 0;
    }

    .brand-mark {
        width: 68px;
        height: 68px;
    }

    .brand strong {
        font-size: 23px;
    }

    .brand small,
    .brand em {
        font-size: 11px;
    }

    .nav-links {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 132px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #fffdf9;
        box-shadow: var(--shadow);
    }

    .nav-links.open {
        display: flex;
    }

    .hero-homeo {
        min-height: auto;
        padding-top: 320px;
    }

    .hero-remedy {
        width: 100%;
        height: 340px;
        object-position: center;
    }

    .hero-copy-panel {
        width: 100%;
        min-height: auto;
        padding: 50px 0;
        border-radius: 0;
    }

    .hero-inner {
        margin: 0 auto;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

    .hero-copy h1 span {
        font-size: 52px;
    }

    .card-grid,
    .doctor-grid,
    .doctor-grid-wide,
    .quote-grid,
    .blog-grid,
    .gallery-grid,
    .footer-grid,
    .value-grid,
    .split,
    .image-split,
    .detail-grid,
    .form-layout,
    .cta-inner,
    .proof-row,
    .proof-row-reverse {
        grid-template-columns: 1fr;
    }

    .proof-row-reverse img {
        order: 0;
    }

    .side-panel {
        position: static;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 28px, 1220px);
    }

    .topbar-inner,
    .topbar-actions,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .brand-mark {
        width: 58px;
        height: 58px;
    }

    .brand > span:last-child {
        max-width: 240px;
    }

    .brand strong {
        font-size: 20px;
    }

    .brand small {
        display: none;
    }

    .nav-links {
        top: 140px;
    }

    .hero-homeo {
        padding-top: 250px;
    }

    .hero-remedy {
        height: 270px;
    }

    .hero-copy-panel {
        padding: 38px 0;
    }

    .hero-copy h1 {
        font-size: 34px;
    }

    .hero-copy h1 span {
        font-size: 42px;
    }

    .hero-copy p {
        font-size: 17px;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-features div:nth-child(2) {
        border-right: 0;
    }

    .doctor-showcase,
    .service-showcase,
    .why-list,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .doctor-profile-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .doctor-profile-card img {
        margin: 0 auto 18px;
    }

    .special-note {
        grid-template-columns: 1fr;
    }

    .special-note img {
        width: 100%;
    }

    .page-hero h1 {
        font-size: 34px;
    }

    .section {
        padding: 34px 0;
    }
}
