@charset "utf-8";

/* ============================================================
   home.css — Homepage-specific styles only
   Shared header/footer/sitemap styles are in components.css
   ============================================================ */

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; overflow-x: hidden; }

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", "Yu Gothic", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #1a1a1a;
  overflow-x: clip;
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #06617f; text-decoration: none; transition: color .2s, opacity .2s; }
a:hover { color: #30a1af; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  height: clamp(36rem, 82vh, 56rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 25%;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,0.80) 0%, rgba(255,255,255,0.55) 45%, transparent 68%),
    linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.65) 40%, rgba(0,0,0,0.22) 65%, transparent 100%);
  display: flex;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 2;
}

/* ヒーローのみコンテンツ幅を拡張（ヘッダーほど全幅にはしない） */
.hero .container { max-width: 92rem; }

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
}

.hero__left {
  /* text content — retains existing child styles */
}

.hero__mockup-wrap {
  position: relative;
  height: 30rem;
  align-self: center;
}

.hero__mockup {
  position: absolute;
  top: 8rem;
  left: 7rem;
  width: 75%;
  z-index: 2;
  background: #1e2a3a;
  border-radius: 0.75rem 0.75rem 0.375rem 0.375rem;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-3deg);
}

.hero__mockup--sub {
  position: absolute;
  top: 16rem;
  left: auto;
  left: 17rem;
  width: 72%;
  z-index: 1;
  transform: perspective(1200px) rotateY(-4deg);
  pointer-events: none;
}

.hero__mockup-bar {
  background: #2d3d4f;
  padding: 0.5rem 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.hero__mockup-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.hero__mockup-dot:nth-child(1) { background: #ff5f57; }
.hero__mockup-dot:nth-child(2) { background: #febc2e; }
.hero__mockup-dot:nth-child(3) { background: #28c840; }

.hero__mockup-screen {
  overflow: hidden;
  line-height: 0;
}

.hero__mockup-screen img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__mockup-wrap { display: none; }
}

.hero__label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7), 0 0 8px rgba(0,0,0,0.5);
}

.hero__label-note {
  font-size: 0.5em;
  font-weight: 400;
  margin-left: 0.2em;
  opacity: 0.8;
}

.hero__label::before {
  content: '';
  display: inline-block;
  width: 3rem;
  height: 0.1875rem;
  background: #30a1af;
  flex-shrink: 0;
}

.hero__catchcopy {
  width: clamp(15rem, 36vw, 28rem);
  height: auto;
  margin-top: 2rem;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 0.125rem 0.5rem rgba(255,255,255,0.6));
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-top: 0.25rem;
  line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7), 0 0 8px rgba(0,0,0,0.5);
}

.hero__cta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}
.hero__cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  background: #06617f;
  color: #fff;
  border-radius: 3.125rem;
  font-size: 1rem;
  font-weight: 600;
  transition: background .3s, transform .2s;
}
.hero__cta a:hover {
  background: #30a1af;
  color: #fff;
  transform: translateY(-0.125rem);
}
.hero__cta .btn--ghost {
  background: transparent;
  border: 0.125rem solid #fff;
  color: #fff;
}
.hero__cta .btn--ghost:hover {
  background: #fff;
  color: #06617f;
  transform: translateY(-0.125rem);
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section-pad { padding: 5rem 0; }

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 2.5rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 3.75rem;
  height: 0.1875rem;
  background: #30a1af;
  margin-top: 0.75rem;
  border-radius: 0.125rem;
}

.achievements-section {
  background: #fff;
}

.achievements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 60rem;
  margin: 0 auto;
  border-top: 0.25rem solid var(--c-teal);
  border-radius: 0.5rem;
  box-shadow: 0 4px 24px rgba(6, 97, 127, 0.08);
  overflow: hidden;
}
.achievements__item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 0.0625rem solid #e8f4f6;
  background: #fff;
}
.achievements__item:last-child {
  border-right: none;
}
.achievements__label {
  font-size: 0.9375rem;
  color: #666;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}
.achievements__number {
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 700;
  color: var(--c-dark-blue);
  line-height: 1.0;
  white-space: nowrap;
}
.achievements__unit {
  font-size: clamp(1.125rem, 2.6vw, 1.5rem);
  font-weight: 700;
  margin-left: 0.125rem;
}
.achievements__icon {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}
.achievements__icon svg {
  width: 2.75rem;
  height: 2.75rem;
  fill: #c8e8ed;
}

@media (max-width: 768px) {
  .achievements {
    grid-template-columns: 1fr;
  }
  .achievements__item {
    border-right: none;
    border-bottom: 0.0625rem dashed #c0dce0;
  }
  .achievements__item:last-child {
    border-bottom: none;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 3.125rem;
  border: 0.125rem solid #06617f;
  background: #06617f;
  color: #fff;
  transition: background .25s, color .25s, transform .15s;
  cursor: pointer;
  line-height: 1.4;
}
.btn:hover {
  background: #fff;
  color: #06617f;
  transform: translateY(-0.0625rem);
}

/* ============================================================
   NEWS
   ============================================================ */

.news-list { display: flex; flex-direction: column; }

.news-item {
  display: grid;
  grid-template-columns: 8.125rem auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid #eee;
}
.news-item:last-child { border-bottom: none; }

.news-item__date { font-size: 0.875rem; color: #646464; white-space: nowrap; padding-top: 0.125rem; }
.news-item__tag {
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid #d0d0d0;
  border-radius: 0.25rem;
  padding: 0.1875rem 0.75rem;
  text-align: center;
  white-space: nowrap;
  color: #646464;
}
.news-item__text { font-size: 0.9375rem; line-height: 1.6; }
.news-item__text a {
  color: #06617f;
  text-decoration: underline;
  text-decoration-color: rgba(6,97,127,0.3);
  text-underline-offset: 0.1875rem;
}
.news-item__text a:hover { text-decoration-color: #30a1af; color: #30a1af; }

/* Hidden news items */
.news-item--hidden { display: none; }

/* Show more / show less button */
.news-pager {
  text-align: center;
  padding-top: 1.5rem;
}
.news-pager__btn {
  display: inline-block;
  padding: 0.625rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  background: #06617f;
  border: 1px solid #06617f;
  border-radius: 3.125rem;
  cursor: pointer;
  transition: background .2s, color .2s;
  font-family: inherit;
}
.news-pager__btn:hover {
  background: #fff;
  color: #06617f;
}

/* ============================================================
   RESPONSIVE (homepage-specific)
   ============================================================ */

@media (max-width: 56.25rem) {
      .news-item { grid-template-columns: 1fr; gap: 0.375rem; }
  .news-item__tag { justify-self: start; }
}

@media (max-width: 48rem) {
  .section-pad { padding: 3.5rem 0; }
  .container { padding: 0 1rem; }
  .hero { height: clamp(28rem, 72vh, 38rem); }
  .hero__overlay { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .hero__label { font-size: clamp(0.7rem, 3.2vw, 0.95rem); white-space: nowrap; }
  .hero__subtitle { font-size: 1rem; }
  .hero__cta { margin-top: 1.75rem; }
  .hero__cta a { padding: 0.625rem 1.5rem; font-size: 0.875rem; }
      }

@media (max-width: 30rem) {
  .hero { height: clamp(26rem, 68vh, 34rem); }
  .section-pad { padding: 2.5rem 0; }
      .btn { width: 100%; padding: 0.875rem 1.25rem; }
}

/* ============================================================
   SECTION TITLE — CENTERED MODIFIER
   ============================================================ */

.section-title--center { text-align: center; }
.section-title--center::after { margin-left: auto; margin-right: auto; }

/* ============================================================
   FLOW SECTION
   ============================================================ */

.flow-section {
  background: var(--c-light-bg);
}

.flow-section__lead {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-top: -1.5rem;
  margin-bottom: 1.25rem;
}

.flow-section__badge {
  text-align: center;
  color: #1a1a1a;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem auto 0;
  letter-spacing: 0.03em;
}

.flow-section__badge strong {
  font-size: 1.75rem;
  color: var(--c-teal);
}

.flow-faq {
  text-align: center;
  margin-top: 2.5rem;
}

.flow-faq__text {
  color: #666;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .flow-faq__btn { width: 100%; }
}

.flow-steps {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}

.flow-step {
  flex: 1;
  background: #fff;
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.flow-step__num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-teal);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.flow-step__num span {
  display: block;
  font-size: 2rem;
  line-height: 1.2;
}

.flow-step__title {
  font-weight: 700;
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.flow-step__text {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.7;
}

.flow-step__arrow {
  color: var(--c-teal);
  font-size: 2rem;
  flex-shrink: 0;
  user-select: none;
  align-self: center;
}

@media (max-width: 768px) {
  .flow-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .flow-step__arrow {
    transform: rotate(90deg);
    text-align: center;
    display: block;
  }
}

/* ============================================================
   PRODUCT LAYOUT
   ============================================================ */

.product-section { background: #f7fbfc; }

.product-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.product-section__header .section-title {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  white-space: nowrap;
}

.product-section__header .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.product-features {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-features--5grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.product-features--5grid .product-feature {
  grid-column: span 2;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.75rem;
  border: 1px solid rgba(208, 208, 208, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.product-features--5grid .product-feature:nth-child(4) { grid-column: 2 / span 2; }
.product-features--5grid .product-feature:nth-child(5) { grid-column: 4 / span 2; }

.product-features--5grid .product-feature__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 48rem) {
  .product-features--5grid {
    grid-template-columns: 1fr;
  }
  .product-features--5grid .product-feature,
  .product-features--5grid .product-feature:nth-child(4),
  .product-features--5grid .product-feature:nth-child(5) {
    grid-column: 1;
  }
}

.product-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.product-feature__icon {
  font-size: 1.75rem;
  color: var(--c-dark-blue);
  flex-shrink: 0;
}

.product-feature__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--c-text);
}

.product-feature__text {
  font-size: 0.9375rem;
  color: #646464;
  line-height: 1.7;
}

/* ============================================================
   CASES SECTION
   ============================================================ */

.cases-section { background: #fff; }

/* 導入事例 / 素敵な社員食堂 の2カラム構成 */
.cases-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  align-items: start;
}

/* 素敵な社員食堂 公開準備中の一時対応：右カラムを隠し、残った1カラムを中央寄せ。
   公開時はこのクラスの使用をやめ、.cases-cols（2カラム）に戻すこと。 */
.cases-cols--single {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin-inline: auto;
}

.cases-col {
  display: flex;
  flex-direction: column;
}

.cases-col__title {
  margin-bottom: 1rem;
}

.cases-col__lead {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.case-card {
  background: var(--c-light-bg);
  border-radius: 0.75rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border-top: 0.25rem solid var(--c-teal);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(6, 97, 127, 0.14);
  color: inherit;
}

/* 近日公開カード：素敵な社員食堂のテラコッタ配色（--s-terracotta #C45C2E）を使用 */
.case-card--soon { border-top-color: #C45C2E; }
.case-card--soon:hover { box-shadow: 0 8px 28px rgba(196, 92, 46, 0.18); }
.case-card--soon .case-card__headline { color: #C45C2E; }

/* リンクしない静的カード（導入事例側）：ホバー演出・ポインタを無効化 */
.case-card--static { cursor: default; }
.case-card--static:hover { transform: none; box-shadow: none; }

.case-card__headline {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.case-card__headline strong {
  color: var(--c-dark-blue);
}

.case-card__text {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.8;
  flex: 1;
}

.case-card__author {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #c8e8ed;
}

.case-card__company {
  font-weight: 700;
  font-size: 0.875rem;
  color: #1a1a1a;
}

.case-card__role {
  font-size: 0.75rem;
  color: #888;
  margin-top: 0.2rem;
}

/* 素敵な社員食堂ボタン：ヘッダーのナビボタンと同じテラコッタ配色のピル型。
   単独のCTAとしても使えるよう、ナビ依存のないクラスとして定義する。 */
.btn-sutekina {
  display: inline-block;
  background: #C45C2E;
  color: #fff;
  padding: 0.5rem 1.125rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s, opacity 0.2s;
}
.btn-sutekina:hover {
  background: #9C3D18;
  color: #fff;
}

@media (max-width: 768px) {
  /* スマホでは2カラムを縦積みにする */
  .cases-cols {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .lineup-scroll { gap: 0; width: 100%; }
  .lineup-card { flex: 0 0 100%; }
}

/* ============================================================
   PRODUCT LINEUP
   ============================================================ */

.lineup-section { background: #f7fbfc; }

.lineup-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lineup-slider__track-wrap {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.lineup-scroll {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
  will-change: transform;
}

.lineup-slider__btn {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid #d0e8ee;
  background: #fff;
  color: var(--c-dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(6,97,127,0.1);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  line-height: 1;
}

.lineup-slider__btn:hover {
  background: var(--c-teal);
  color: #fff;
  box-shadow: 0 4px 12px rgba(48,161,175,0.3);
}

.lineup-slider__btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.lineup-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.lineup-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: none;
  background: #c8d8e0;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.lineup-dot.is-active {
  background: var(--c-teal);
  transform: scale(1.4);
}

.lineup-card {
  flex: 0 0 calc((100% - 7.5rem) / 3);
  background: #fff;
  border-top: 0.25rem solid var(--c-teal);
  border-radius: 1rem;
  overflow: hidden;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lineup-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(6, 97, 127, 0.14);
  color: inherit;
}

.lineup-card__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.lineup-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center button;
  transition: transform 0.5s ease;
}

.lineup-card:hover .lineup-card__img { transform: scale(1.05); }

/* アイコン素材（クラウド食堂楽など）は切り抜かずに余白付きで全体表示 */
.lineup-card__img--contain {
  object-fit: contain;
  object-position: center;
  background: #f7fbfc;
  padding: 1.5rem;
}

.lineup-card__body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lineup-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #06617f;
  margin-bottom: 1rem;
}

.lineup-card__text {
  font-size: 0.9375rem;
  color: #646464;
  line-height: 1.7;
  flex: 1;
}

/* ============================================================
   NEWS + MAP COMBINED SECTION
   ============================================================ */

.news-map-section { background: #fff; border-top: 1px solid #d0d0d0; overflow: hidden; }

.news-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
}

.news-list { display: flex; flex-direction: column; gap: 0.75rem; }

/* モダンなカード型ニュース（ページ全体のカードデザインに統一） */
.news-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 1rem 1.25rem;
  background: var(--c-light-bg);
  border: 1px solid rgba(6, 97, 127, 0.06);
  border-left: 3px solid var(--c-teal);
  border-radius: 0.5rem;
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.news-item:hover {
  transform: translateX(3px);
  box-shadow: 0 6px 20px rgba(6, 97, 127, 0.10);
}

.news-item--hidden { display: none; }

.news-item__date {
  color: var(--c-dark-blue);
  font-weight: 600;
  font-size: 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.news-item__tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: var(--c-teal);
  border: none;
  border-radius: 1rem;
  padding: 0.18rem 0.7rem;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.news-item__text { flex: 1; min-width: 0; line-height: 1.6; }
.news-item__text a { color: #1a1a1a; text-decoration: none; }
.news-item__text a:hover { color: var(--c-teal); text-decoration: underline; text-underline-offset: 0.15rem; }

/* スマホでは本文を改行して全幅で表示する。
   日付・タグは上段に残し、本文が極端に細い列に押し込まれて
   1文字ずつ折り返すのを防ぐ。 */
@media (max-width: 48rem) {
  .news-item { align-items: baseline; }
  .news-item__text { flex-basis: 100%; }
}

.news-pager { margin-top: 1.5rem; text-align: center; }

.news-pager__btn {
  background: none;
  border: 1px solid var(--c-teal);
  border-radius: 2rem;
  padding: 0.55rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-teal);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.news-pager__btn:hover { background: var(--c-teal); color: #fff; }

.map-address {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.map-hours {
  font-size: 0.825rem;
  color: #888;
  margin-bottom: 1rem;
}

.map-embed {
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

/* ============================================================
   CONTACT BAR
   ============================================================ */

.contact-bar {
  background: #fff;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  padding: 3rem 0;
  text-align: center;
}

.contact-bar__lead {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.25rem;
}

.contact-bar__tel-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.contact-bar__tel-icon {
  font-size: 2.75rem;
  color: var(--c-teal);
  border: 2px solid var(--c-teal);
  border-radius: 50%;
  padding: 0.25rem;
  line-height: 1;
}

.contact-bar__tel {
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--c-dark-blue);
  letter-spacing: 0.04em;
  text-decoration: none;
  line-height: 1;
}

.contact-bar__tel:hover { color: var(--c-teal); }

.contact-bar__hours {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.6;
  text-align: left;
}

.contact-bar__mail {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 1.2rem;
  color: var(--c-dark-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-bar__mail .material-symbols-outlined { font-size: 1.1rem; }
.contact-bar__mail:hover { color: var(--c-teal); }

@media (max-width: 48rem) {
  .contact-bar__tel { font-size: 2.25rem; }
  .contact-bar__tel-wrap { flex-wrap: wrap; }
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  background: #30a1af;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.cta-section__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.cta-section__deco {
  position: absolute;
  border-radius: 50%;
  border: 2.5rem solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.cta-section__deco--bl {
  width: 24rem;
  height: 24rem;
  bottom: -5rem;
  left: -5rem;
}

.cta-section__deco--tr {
  width: 16rem;
  height: 16rem;
  top: -5rem;
  right: -5rem;
  border-width: 1.25rem;
}

/* ============================================================
   BUTTON VARIANTS (homepage additions)
   ============================================================ */

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn--ghost:hover {
  background: #fff;
  color: #06617f;
  transform: translateY(-0.0625rem);
}

.btn--white {
  background: #fff;
  color: #06617f;
  border-color: #fff;
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
}

.btn--white:hover {
  background: #06617f;
  color: #fff;
  border-color: #06617f;
  transform: scale(1.05);
}

.btn--secondary {
  background: transparent;
  color: #06617f;
  border-color: #06617f;
}

.btn--secondary:hover {
  background: #06617f;
  color: #fff;
}

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */

@media (max-width: 56.25rem) {
  .news-map-grid { grid-template-columns: 1fr; }
  }

