/* ===================================
   リセット & 基本設定
=================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #2C5F7C;
    --color-primary-dark: #1A3F54;
    --color-primary-light: #EAF1F5;
    --color-accent: #C8A96A;
    --color-accent-dark: #A8884A;
    --color-text: #1F2933;
    --color-text-light: #5C6773;
    --color-bg: #ffffff;
    --color-bg-light: #F6F4EF;
    --color-border: #E5E2DA;
    --font-display: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
    --font-base: "Inter", "Noto Sans JP", "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", system-ui, sans-serif;
    --font-en: "Inter", "Noto Sans JP", sans-serif;
    --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.04), 0 1px 3px rgba(17, 24, 39, 0.06);
    --shadow-md: 0 8px 24px rgba(17, 24, 39, 0.08);
    --shadow-lg: 0 24px 48px -12px rgba(17, 24, 39, 0.18);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-base);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.75;
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "palt" 1;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: opacity 0.3s ease, color 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    letter-spacing: 0.1em;
}

/* ===================================
   ヘッダー
=================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: bold;
}

.logo a {
    color: var(--color-primary-dark);
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-list a {
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-list a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
}

.nav-toggle span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary-dark);
    transition: 0.3s;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 22px; }

/* ===================================
   ヒーローセクション
=================================== */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background-color: var(--color-primary-dark);
}

.hero-mosaic {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
}

.hero-img {
    overflow: hidden;
    background-color: var(--color-primary-light);
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 8s ease;
}

.hero:hover .hero-img img {
    transform: scale(1.05);
}

.hero-img--v1 {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.hero-img--h1 {
    grid-column: 2;
    grid-row: 1;
}

.hero-img--h2 {
    grid-column: 2;
    grid-row: 2;
}

.hero-img--v2 {
    grid-column: 3;
    grid-row: 1 / span 2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    z-index: 2;
    padding: 0;
    pointer-events: none;
}

.hero-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.3) 100%),
                linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0%, transparent 35%);
    pointer-events: none;
}

.hero-text {
    position: relative;
    text-align: left;
    color: #ffffff;
    padding: 32px 40px;
    max-width: 640px;
    margin: 0 0 48px 48px;
    pointer-events: auto;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    font-weight: 600;
    line-height: 1.35;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: 0.08em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.4);
    word-break: keep-all;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 28px;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 56px;
    background-color: var(--color-accent);
    color: #ffffff;
    border-radius: 4px;
    font-family: var(--font-base);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    box-shadow: 0 12px 32px -8px rgba(200, 169, 106, 0.5);
    cursor: pointer;
    border: none;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, background-color 0.3s ease;
}

.btn-primary::after {
    content: "→";
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-accent-dark);
    transform: translateY(-4px);
    box-shadow: 0 18px 36px -8px rgba(168, 136, 74, 0.55);
    opacity: 1;
}

.btn-primary:hover::after {
    transform: translateX(4px);
}

/* ===================================
   セクション共通
=================================== */
.section {
    padding: 100px 0;
}

.section:nth-of-type(even) {
    background-color: var(--color-bg-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    text-align: center;
    color: var(--color-primary-dark);
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ===================================
   コンセプト
=================================== */
.concept-lead {
    text-align: center;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: var(--color-text);
    margin-bottom: 60px;
    line-height: 1.9;
}

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

.concept-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.concept-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(30, 136, 229, 0.18);
}

.concept-image {
    flex: 0 0 auto;
    width: 42%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--color-primary-light);
}

.concept-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.concept-card:hover .concept-image img {
    transform: scale(1.05);
}

.concept-body {
    flex: 1;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.concept-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 12px;
}

.concept-card h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-primary);
}

.concept-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.director-name {
    color: var(--color-text) !important;
    font-size: 1rem !important;
    font-weight: 600;
    margin-bottom: 12px;
}

.director-reading {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-weight: normal;
    margin-left: 4px;
}

.director-birth {
    display: inline-block;
    font-size: 0.78rem;
    color: var(--color-text-light);
    font-weight: normal;
    margin-left: 10px;
    padding: 2px 8px;
    background-color: var(--color-primary-light);
    border-radius: 4px;
}

.director-career {
    list-style: none;
    padding: 0;
    margin: 0;
}

.director-career li {
    display: flex;
    gap: 12px;
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--color-text-light);
    border-bottom: 1px dashed var(--color-border);
    line-height: 1.5;
}

.director-career li:last-child {
    border-bottom: none;
}

.career-year {
    flex: 0 0 70px;
    color: var(--color-primary-dark);
    font-weight: 600;
    font-size: 0.85rem;
}

.awards-note {
    margin-top: 12px !important;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
    font-size: 0.82rem !important;
    color: var(--color-text-light) !important;
    line-height: 1.6 !important;
}

/* ===================================
   診療科目
=================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(30, 136, 229, 0.18);
}

.service-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: var(--color-primary-light);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-body {
    padding: 24px;
    border-top: 3px solid var(--color-primary);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.92rem;
}

.service-card p + p {
    margin-top: 12px;
}

.service-card p strong {
    display: inline-block;
    color: var(--color-primary-dark);
    font-weight: 600;
    margin-bottom: 4px;
}

.service-note {
    display: inline-block;
    margin-top: 8px !important;
    padding: 6px 10px;
    background-color: var(--color-primary-light);
    color: var(--color-primary-dark) !important;
    border-radius: 4px;
    font-size: 0.82rem !important;
}

.service-price {
    display: inline-block;
    margin-top: 6px;
    color: var(--color-primary-dark);
    font-weight: 600;
    font-size: 0.88rem;
}

/* ===================================
   当院の紹介
=================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--color-text-light);
}

.clinic-info {
    margin-top: 32px;
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
}

.clinic-info dt {
    font-weight: bold;
    color: var(--color-primary-dark);
    margin-top: 12px;
    font-size: 0.9rem;
}

.clinic-info dd {
    color: var(--color-text);
    padding-left: 12px;
}

.schedule {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.schedule-title {
    font-size: 1rem;
    color: var(--color-primary-dark);
    margin-bottom: 14px;
    font-weight: 600;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.schedule-table th,
.schedule-table td {
    padding: 10px 4px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    color: var(--color-text);
}

.schedule-table thead th {
    background-color: var(--color-primary);
    color: #ffffff;
    font-weight: 600;
    border-bottom: none;
    border-right-color: rgba(255, 255, 255, 0.2);
}

.schedule-table thead th.off {
    background-color: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.7);
}

.schedule-table tbody th {
    background-color: var(--color-bg-light);
    font-weight: 600;
    color: var(--color-primary-dark);
    font-size: 0.82rem;
    white-space: nowrap;
    padding: 10px 8px;
}

.schedule-table tbody td {
    font-size: 1.05rem;
    color: var(--color-primary);
    font-weight: 600;
}

.schedule-table tbody td.off {
    color: #c0c0c0;
    background-color: #fafafa;
}

.schedule-table tr:last-child th,
.schedule-table tr:last-child td {
    border-bottom: none;
}

.schedule-table th:last-child,
.schedule-table td:last-child {
    border-right: none;
}

.schedule-note {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.map-embed {
    width: 100%;
    aspect-ratio: 16 / 12;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.clinic-notice {
    margin-top: 64px;
    padding: 36px 40px;
    background-color: #ffffff;
    border-radius: 16px;
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.notice-title {
    font-size: 1.2rem;
    color: var(--color-primary-dark);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--color-border);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.notice-lead {
    color: var(--color-text-light);
    margin-bottom: 18px;
    line-height: 1.9;
    font-size: 0.95rem;
}

.notice-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-list li {
    position: relative;
    padding-left: 22px;
    padding-bottom: 10px;
    color: var(--color-text-light);
    line-height: 1.8;
    font-size: 0.93rem;
}

.notice-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 14px;
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.notice-list li:last-child {
    padding-bottom: 0;
}

.access-directions {
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid var(--color-border);
}

.directions-title {
    font-size: 1.4rem;
    color: var(--color-primary-dark);
    margin-bottom: 32px;
    text-align: center;
    position: relative;
    padding-bottom: 16px;
}

.directions-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 2px;
    background-color: var(--color-primary);
}

.directions-route {
    background-color: #ffffff;
    border-left: 4px solid var(--color-primary);
    border-radius: 8px;
    padding: 24px 28px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.directions-route h4 {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 14px;
    font-weight: 600;
    line-height: 1.6;
}

.directions-route h4 strong {
    color: var(--color-primary-dark);
    font-size: 1.05rem;
    background-color: var(--color-primary-light);
    padding: 2px 8px;
    border-radius: 4px;
    margin: 0 2px;
}

.directions-route p {
    color: var(--color-text-light);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

.directions-route p:last-child {
    margin-bottom: 0;
}

.directions-note {
    margin-top: 16px;
    padding: 14px 20px;
    background-color: #fff8e1;
    border-radius: 8px;
    color: #8a6d3b;
    font-size: 0.9rem;
    line-height: 1.7;
}

.access-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 32px;
}

.access-gallery-item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--color-primary-light);
}

.access-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.access-gallery-item:hover img {
    transform: scale(1.05);
}

/* ===================================
   リンク
=================================== */
.links-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 720px;
    margin: 0 auto;
}

.links-list a {
    display: block;
    padding: 20px 24px;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text);
    transition: all 0.3s ease;
    position: relative;
}

.links-list a::after {
    content: "→";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.links-list a:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary);
    opacity: 1;
}

.links-list a:hover::after {
    transform: translateY(-50%) translateX(4px);
}

/* ===================================
   マップ
=================================== */
.map-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.map-info h3 {
    font-size: 1.3rem;
    color: var(--color-primary-dark);
    margin-bottom: 16px;
}

.map-info p {
    margin-bottom: 12px;
    color: var(--color-text-light);
}

/* ===================================
   フッター
=================================== */
.footer {
    background-color: var(--color-primary-dark);
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ===================================
   電話番号モーダル
=================================== */
.phone-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: phoneModalFade 0.25s ease;
}

.phone-modal[hidden] {
    display: none;
}

@keyframes phoneModalFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.phone-modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(13, 71, 161, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
}

.phone-modal-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 48px 40px 40px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
    animation: phoneModalUp 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes phoneModalUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.phone-modal-x {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--color-text-light);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.phone-modal-x:hover {
    background-color: var(--color-bg-light);
}

.phone-modal-clinic {
    font-size: 1.05rem;
    color: var(--color-primary-dark);
    font-weight: 600;
    margin-bottom: 4px;
}

.phone-modal-label {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.phone-modal-number {
    display: block;
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    font-weight: bold;
    color: var(--color-primary-dark);
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    text-decoration: none;
}

.phone-modal-hours {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.phone-modal-call {
    display: inline-block;
    padding: 14px 36px;
    background-color: var(--color-primary);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.phone-modal-call:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    opacity: 1;
}

/* ===================================
   レスポンシブ - タブレット
=================================== */
@media (max-width: 900px) {
    .concept-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content,
    .map-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section {
        padding: 80px 0;
    }
}

/* ===================================
   レスポンシブ - スマホ
=================================== */
@media (max-width: 600px) {
    .header-inner {
        padding: 12px 16px;
    }

    .logo {
        font-size: 1.05rem;
    }

    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        box-shadow: var(--shadow-md);
        transition: right 0.3s ease;
    }

    .nav-list.is-open {
        right: 0;
    }

    .nav-list a {
        font-size: 1.05rem;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .hero-img--v1 { grid-column: 1; grid-row: 1; }
    .hero-img--h1 { grid-column: 2; grid-row: 1; }
    .hero-img--h2 { grid-column: 1; grid-row: 2; }
    .hero-img--v2 { grid-column: 2; grid-row: 2; }

    .hero-overlay {
        padding: 100px 16px 40px;
    }

    .hero-text {
        padding: 32px 24px;
    }

    .btn-primary {
        padding: 14px 36px;
        font-size: 0.95rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .concept-grid,
    .services-grid,
    .links-list {
        grid-template-columns: 1fr;
    }

    .concept-card {
        flex-direction: column;
    }

    .concept-image {
        flex: none;
        aspect-ratio: 16 / 10;
    }

    .concept-body {
        padding: 24px 20px;
    }

    .clinic-info dd {
        padding-left: 0;
        margin-bottom: 8px;
    }

    .clinic-notice {
        margin-top: 40px;
        padding: 24px 20px;
    }

    .access-directions {
        margin-top: 48px;
        padding-top: 40px;
    }

    .directions-route {
        padding: 20px 18px;
    }

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