*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --dark-1: #121620;
  --dark-2: #1A1E28;
  --dark-3: #222836;
  --dark-4: #222838;
  --dark-5: #2A3142;
  --gold: #C9A96E;
  --gold-light: #D4B483;
  --gold-soft: rgba(201,169,110,0.15);
  --gold-glow: rgba(201,169,110,0.3);
  --white: #FFFFFF;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-50: rgba(255,255,255,0.5);
  --white-30: rgba(255,255,255,0.3);
  --white-15: rgba(255,255,255,0.15);
  --white-08: rgba(255,255,255,0.08);
  --white-04: rgba(255,255,255,0.04);
  --line-green: #06C755;
  --serif-en: 'Cormorant Garamond', serif;
  --serif-jp: 'Noto Serif JP', serif;
  --sans-en: 'DM Sans', sans-serif;
  --sans-jp: 'Noto Sans JP', sans-serif;
  --nav-height: 72px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans-jp); font-weight: 400; color: var(--white-90); background: var(--dark-1); line-height: 1.9; font-size: 15px; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(50px); transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.15s; }
.fade-up-d2 { transition-delay: 0.3s; }
.fade-up-d3 { transition-delay: 0.45s; }
.fade-up-d4 { transition-delay: 0.6s; }
.fade-up-d5 { transition-delay: 0.75s; }
.fade-up-d6 { transition-delay: 0.9s; }

/* GOLD LINE DECO */
.gold-line { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.gold-line--center { margin: 0 auto; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-height); display: flex; align-items: center; transition: background 0.4s, box-shadow 0.4s, border-color 0.4s; border-bottom: 1px solid transparent; }
.nav--scrolled { background: rgba(13,17,23,0.92); backdrop-filter: blur(20px) saturate(180%); border-bottom-color: var(--white-08); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.nav__logo { font-family: var(--serif-jp); font-size: 15px; font-weight: 600; color: var(--white); letter-spacing: 0.08em; }
.nav__links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav__links a { font-family: var(--sans-jp); font-size: 13px; font-weight: 400; color: var(--white-50); transition: color 0.3s; letter-spacing: 0.04em; }
.nav__links a:hover { color: var(--gold); }
.nav__cta { background: var(--gold) !important; color: var(--dark-1) !important; padding: 10px 28px; border-radius: 2px; font-weight: 600 !important; font-size: 12px !important; letter-spacing: 0.1em !important; text-transform: uppercase; transition: background 0.3s, transform 0.3s, box-shadow 0.3s !important; }
.nav__cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); box-shadow: 0 4px 20px var(--gold-glow); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav__hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white-70); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav__mobile { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0; background: rgba(13,17,23,0.98); backdrop-filter: blur(20px); z-index: 999; padding: 40px 32px; }
.nav__mobile.active { display: flex; flex-direction: column; }
.nav__mobile a { font-family: var(--sans-jp); font-size: 18px; font-weight: 400; padding: 20px 0; border-bottom: 1px solid var(--white-08); display: block; color: var(--white-70); letter-spacing: 0.04em; }
.nav__mobile a:last-child { color: var(--gold); }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,17,23,0.88) 0%, rgba(20,24,33,0.92) 50%, rgba(13,17,23,0.95) 100%); z-index: 1; }
.hero__photos { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; z-index: 0; }
.hero__photo-slot { background: var(--dark-3); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--white-30); overflow: hidden; }
.hero__photo-slot:nth-child(2) { background: var(--dark-4); }
.hero__photo-slot:nth-child(3) { background: var(--dark-5); }
.hero__content { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 800px; margin: 0 auto; }
.hero__catch-en { font-family: var(--serif-en); font-size: 14px; font-weight: 400; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 24px; text-transform: uppercase; }
.hero__title { font-family: var(--serif-jp); font-size: clamp(34px, 7vw, 58px); font-weight: 600; color: var(--white); line-height: 1.5; margin-bottom: 8px; }
.hero__title em { font-style: normal; color: var(--gold); }
.hero__gold-line { width: 80px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 20px auto 24px; }
.hero__sub { font-family: var(--sans-jp); font-size: 16px; color: var(--white-70); margin-bottom: 40px; font-weight: 400; letter-spacing: 0.1em; }
.hero__badges { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero__badge { background: var(--gold-soft); backdrop-filter: blur(8px); padding: 8px 24px; border-radius: 2px; font-family: var(--sans-jp); font-size: 13px; font-weight: 500; color: var(--gold-light); border: 1px solid rgba(201,169,110,0.25); letter-spacing: 0.04em; }
.hero__stats { display: flex; justify-content: center; gap: 60px; }
.hero__stat { text-align: center; }
.hero__stat-num { font-family: var(--serif-en); font-size: 72px; font-weight: 300; color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.hero__stat-num small { font-size: 18px; font-weight: 400; color: var(--white-50); margin-left: 4px; }
.hero__stat-label { font-family: var(--sans-jp); font-size: 12px; color: var(--white-50); margin-top: 8px; font-weight: 400; letter-spacing: 0.1em; }
.hero__scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; text-align: center; }
.hero__scroll-text { font-family: var(--serif-en); font-size: 11px; color: var(--white-30); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 12px; }
.hero__scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold-light), transparent); margin: 0 auto; animation: scroll-anim 2s ease-in-out infinite; }
@keyframes scroll-anim { 0% { opacity: 1; transform: scaleY(1); } 100% { opacity: 0; transform: scaleY(0); transform-origin: top; } }

/* SECTION DIVIDERS */
.divider { position: relative; height: 120px; overflow: hidden; }
.divider--down { clip-path: polygon(0 0, 100% 0, 100% 20%, 0 100%); }
.divider--up { clip-path: polygon(0 0, 100% 80%, 100% 100%, 0 100%); }
.divider--angle { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 60%); }
.divider--angle-rev { clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%); }
.divider--dark1 { background: var(--dark-1); }
.divider--dark2 { background: var(--dark-2); }
.divider--dark3 { background: var(--dark-3); }

/* SECTION */
.section { padding: 120px 24px; position: relative; }
.section--dark1 { background: var(--dark-1); }
.section--dark2 { background: var(--dark-2); }
.section--dark3 { background: var(--dark-3); }
.section__inner { max-width: 1080px; margin: 0 auto; }
.section-label { font-family: var(--serif-en); font-size: 14px; font-weight: 400; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; }
.section-heading { font-family: var(--serif-jp); font-size: clamp(26px, 5vw, 42px); font-weight: 600; line-height: 1.5; color: var(--white); margin-bottom: 12px; }
.section-heading em { font-style: normal; color: var(--gold); }
.section-desc { font-size: 15px; line-height: 2; color: var(--white-50); max-width: 600px; }
.section--center { text-align: center; }
.section--center .section-desc { margin: 0 auto; }
.section--center .gold-line { margin: 16px auto 0; }

/* STATS */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 64px; }
.stat-card { background: var(--dark-3); padding: 48px 24px; text-align: center; position: relative; overflow: hidden; transition: transform 0.4s; }
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0; transition: opacity 0.4s; }
.stat-card:hover::before { opacity: 1; }
.stat-card:hover { transform: translateY(-4px); }
.stat-card__icon { margin-bottom: 16px; }
.stat-card__val { font-family: var(--serif-en); font-size: 56px; font-weight: 300; color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.stat-card__val small { font-size: 16px; font-weight: 400; color: var(--white-50); }
.stat-card__label { font-family: var(--sans-jp); font-size: 13px; color: var(--white-50); margin-top: 12px; font-weight: 400; letter-spacing: 0.08em; }

/* PHOTO BANNER */
.photo-banner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; height: 280px; overflow: hidden; }
.photo-banner--3col { grid-template-columns: repeat(3, 1fr); height: 320px; }
.photo-banner__item { background: var(--dark-3); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--white-30); overflow: hidden; position: relative; }
.photo-banner__item:nth-child(2) { background: var(--dark-4); }
.photo-banner__item:nth-child(3) { background: var(--dark-5); }
.photo-banner__item:nth-child(4) { background: var(--dark-3); }
.photo-banner__item--overlay::after { content: ''; position: absolute; inset: 0; background: rgba(13,17,23,0.8); }
.photo-banner__text { position: relative; z-index: 1; text-align: center; color: var(--white); font-family: var(--serif-jp); font-weight: 600; font-size: 22px; line-height: 1.7; padding: 20px; }
.photo-banner__text small { display: block; font-family: var(--serif-en); font-size: 13px; font-weight: 400; color: var(--gold); margin-top: 8px; letter-spacing: 0.15em; }

/* APPEAL */
.appeal-list { margin-top: 64px; display: flex; flex-direction: column; gap: 2px; }
.appeal-item { display: grid; grid-template-columns: 120px 1fr; gap: 0; align-items: stretch; transition: transform 0.4s; }
.appeal-item:hover { transform: translateX(4px); }
.appeal-item__num-wrap { background: var(--dark-1); display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.appeal-item__num { font-family: var(--serif-en); font-size: 64px; font-weight: 300; color: var(--gold); line-height: 1; opacity: 0.6; }
.appeal-item__body { background: var(--dark-3); padding: 36px 40px; }
.appeal-item:nth-child(even) .appeal-item__body { background: var(--dark-4); }
.appeal-item:nth-child(even) .appeal-item__num-wrap { background: var(--dark-2); }
.appeal-item__icon { margin-bottom: 10px; }
.appeal-item__title { font-family: var(--serif-jp); font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.appeal-item__desc { font-size: 14px; line-height: 2; color: var(--white-50); }
.appeal-item__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.appeal-tag { background: var(--gold-soft); color: var(--gold); font-family: var(--sans-jp); font-size: 11px; font-weight: 500; padding: 5px 14px; border-radius: 2px; border: 1px solid rgba(201,169,110,0.2); letter-spacing: 0.04em; }

/* TABLES */
.info-table { width: 100%; border-collapse: collapse; margin-top: 56px; }
.info-table tr { border-bottom: 1px solid var(--white-08); }
.info-table tr:last-child { border-bottom: none; }
.info-table th { font-family: var(--sans-jp); font-size: 14px; font-weight: 600; color: var(--gold); padding: 20px 28px; text-align: left; width: 160px; vertical-align: top; background: var(--dark-1); letter-spacing: 0.04em; }
.info-table td { font-size: 14px; color: var(--white-70); padding: 20px 28px; line-height: 1.9; background: var(--dark-3); }
.info-table--dark th { color: var(--dark-1); background: var(--gold); font-weight: 600; }
.info-table--dark td { background: var(--dark-2); }

/* DAY */
.day-timeline { max-width: 640px; margin: 56px auto 0; }
.day-entry { display: flex; gap: 20px; margin-bottom: 0; position: relative; padding-bottom: 20px; }
.day-entry::before { content: ''; position: absolute; left: 23px; top: 40px; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--gold-glow), var(--white-08)); }
.day-entry:last-child::before { display: none; }
.day-entry__time { font-family: var(--serif-en); font-size: 15px; font-weight: 400; color: var(--gold); min-width: 48px; padding-top: 10px; letter-spacing: 0.05em; }
.day-entry__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 14px; flex-shrink: 0; z-index: 1; box-shadow: 0 0 12px var(--gold-glow); }
.day-entry__box { flex: 1; background: var(--dark-3); border-radius: 0; padding: 16px 20px; border-left: 2px solid var(--gold-soft); }
.day-entry__title { font-family: var(--sans-jp); font-size: 14px; font-weight: 600; color: var(--white); }
.day-entry__desc { font-size: 13px; color: var(--white-50); margin-top: 4px; }

/* VOICE */
.voice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 56px; }
.voice-card { background: var(--dark-3); overflow: hidden; border: 1px solid var(--white-08); transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s; }
.voice-card:hover { transform: translateY(-6px); border-color: var(--gold-glow); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.voice-card__photo { height: 160px; background: var(--dark-4); display: flex; align-items: center; justify-content: center; position: relative; }
.voice-icon { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-light)); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px var(--gold-glow); }
.voice-card__badge { position: absolute; top: 16px; right: 16px; background: var(--gold); color: var(--dark-1); font-family: var(--sans-jp); font-size: 11px; font-weight: 600; padding: 5px 16px; border-radius: 2px; z-index: 1; letter-spacing: 0.04em; }
.voice-card__body { padding: 28px 28px 32px; }
.voice-card__headline { font-family: var(--serif-jp); font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 12px; line-height: 1.7; }
.voice-card__text { font-size: 13px; line-height: 2; color: var(--white-50); margin-bottom: 24px; }
.voice-card__person { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--white-08); }
.voice-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--dark-4); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 9px; color: var(--white-30); border: 1px solid var(--white-08); }
.voice-card__role { font-family: var(--serif-en); font-size: 11px; font-weight: 400; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; }
.voice-card__name { font-family: var(--sans-jp); font-size: 13px; font-weight: 600; color: var(--white); margin-top: 2px; }
.voice-card__clinic { font-size: 11px; color: var(--white-30); margin-top: 1px; }

/* FAQ */
.faq-list { max-width: 760px; margin: 56px auto 0; }
.faq-item { background: var(--dark-3); border: 1px solid var(--white-08); margin-bottom: 8px; overflow: hidden; transition: border-color 0.3s; }
.faq-item:hover { border-color: var(--gold-glow); }
.faq-q { display: flex; align-items: center; gap: 16px; padding: 22px 28px; cursor: pointer; font-family: var(--sans-jp); font-size: 15px; font-weight: 500; color: var(--white); width: 100%; background: none; border: none; text-align: left; line-height: 1.6; transition: color 0.3s; }
.faq-q:hover { color: var(--gold); }
.faq-q__icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-family: var(--serif-en); font-size: 14px; font-weight: 600; color: var(--dark-1); background: var(--gold); flex-shrink: 0; border-radius: 2px; }
.faq-q__text { flex: 1; }
.faq-q__arrow { width: 20px; height: 20px; transition: transform 0.3s; flex-shrink: 0; color: var(--white-30); }
.faq-item.active .faq-q__arrow { transform: rotate(180deg); color: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-a { max-height: 300px; }
.faq-a__inner { padding: 0 28px 24px 76px; font-size: 14px; line-height: 2; color: var(--white-50); text-align: left; }

/* MID CTA */
.mid-cta { background: var(--dark-2); border: 1px solid var(--white-08); padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; margin-top: 64px; position: relative; overflow: hidden; }
.mid-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.mid-cta__text { font-family: var(--serif-jp); font-size: 22px; font-weight: 600; color: var(--white); }
.mid-cta__text small { display: block; font-family: var(--sans-jp); font-size: 13px; font-weight: 400; color: var(--white-50); margin-top: 8px; }
.mid-cta__btn { display: inline-flex; align-items: center; gap: 8px; background: var(--line-green); color: var(--white); padding: 16px 36px; border-radius: 2px; font-family: var(--sans-jp); font-size: 14px; font-weight: 600; white-space: nowrap; transition: transform 0.3s, box-shadow 0.3s; letter-spacing: 0.04em; }
.mid-cta__btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,199,85,0.25); }

/* CTA */
.cta { position: relative; padding: 100px 24px; background: var(--dark-1); text-align: center; overflow: hidden; }
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, var(--gold-soft) 0%, transparent 70%); pointer-events: none; }
.cta__deco1 { position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; border: 1px solid var(--white-04); }
.cta__deco2 { position: absolute; bottom: -120px; left: -80px; width: 500px; height: 500px; border-radius: 50%; border: 1px solid var(--white-04); }
.cta__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta__title { font-family: var(--serif-jp); font-size: clamp(24px, 4vw, 38px); font-weight: 600; color: var(--white); margin-bottom: 12px; line-height: 1.6; }
.cta__gold-line { width: 60px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 20px auto; }
.cta__desc { font-size: 14px; color: var(--white-50); margin-bottom: 40px; line-height: 2; }
.btn-line { display: inline-flex; align-items: center; gap: 10px; background: var(--line-green); color: var(--white); padding: 18px 52px; border-radius: 2px; font-family: var(--sans-jp); font-size: 16px; font-weight: 600; transition: transform 0.3s, box-shadow 0.3s; letter-spacing: 0.04em; }
.btn-line:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(6,199,85,0.3); }

/* FOOTER */
.footer { background: var(--dark-1); color: var(--white-30); padding: 64px 24px 40px; border-top: 1px solid var(--white-08); }
.footer__inner { max-width: 1080px; margin: 0 auto; }
.footer__top { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--white-08); }
.footer__brand-name { font-family: var(--serif-jp); font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.footer__brand-desc { font-size: 12px; line-height: 1.9; color: var(--white-30); }
.footer__links h4 { font-family: var(--serif-en); font-size: 12px; font-weight: 400; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px; }
.footer__links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 12px; color: var(--white-30); transition: color 0.2s; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__copy { font-family: var(--sans-en); font-size: 11px; color: var(--white-15); letter-spacing: 0.05em; }

/* FIXED BAR */
.fixed-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; background: rgba(13,17,23,0.95); backdrop-filter: blur(16px); border-top: 1px solid var(--white-08); padding: 12px 16px; }
.fixed-bar__inner { display: flex; gap: 8px; max-width: 480px; margin: 0 auto; }
.fixed-bar__btn { flex: 1; padding: 14px; border-radius: 2px; font-family: var(--sans-jp); font-size: 14px; font-weight: 600; text-align: center; display: inline-flex; align-items: center; justify-content: center; gap: 8px; letter-spacing: 0.04em; }
.fixed-bar__btn--line { background: var(--line-green); color: var(--white); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .section { padding: 80px 20px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__inner { padding: 0 20px; }
  .hero__photos { grid-template-columns: 1fr; }
  .hero__photo-slot:nth-child(2), .hero__photo-slot:nth-child(3) { display: none; }
  .hero__stats { flex-direction: column; gap: 28px; }
  .hero__stat-num { font-size: 56px; }
  .hero__badges { gap: 8px; }
  .hero__badge { font-size: 11px; padding: 6px 16px; }
  .stats-row { grid-template-columns: 1fr; gap: 2px; }
  .stat-card__val { font-size: 44px; }
  .appeal-item { grid-template-columns: 1fr; }
  .appeal-item__num-wrap { display: none; }
  .appeal-item__body { padding: 28px 24px; }
  .voice-grid { grid-template-columns: 1fr; }
  .photo-banner { grid-template-columns: 1fr 1fr; height: 180px; }
  .photo-banner--3col { grid-template-columns: 1fr; height: 220px; }
  .photo-banner__item:nth-child(3), .photo-banner__item:nth-child(4) { display: none; }
  .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { padding: 14px 20px 4px; }
  .info-table td { padding: 4px 20px 14px; }
  .mid-cta { flex-direction: column; text-align: center; padding: 32px 24px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .fixed-bar { display: block; }
  body { padding-bottom: 68px; }
  .divider { height: 80px; }
  #specialists [style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; gap: 40px !important; }
}
