/* ============================================
   MEO LP Template - Design System (Common)
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors - 和モダン（暗色ベース + ゴールドアクセント） */
  --color-bg: #ffffff;
  --color-bg-alt: #f7f5f0;
  --color-bg-dark: #1a1a1a;
  --color-bg-hero: #0d0d0d;
  --color-fg: #1a1a1a;
  --color-fg-light: #ffffff;
  --color-fg-muted: #6b6b6b;
  --color-fg-muted-light: #a0a0a0;
  --color-accent: #c5a55a;
  --color-accent-hover: #d4b76a;
  --color-border: rgba(26, 26, 26, 0.1);
  --color-border-light: rgba(255, 255, 255, 0.12);

  /* Typography */
  --font-sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-serif: "Noto Serif JP", "游明朝", "Yu Mincho", serif;
  --font-en: "Poppins", sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --section-py: clamp(4rem, 8vw, 7rem);
  --px: clamp(1.25rem, 4vw, 3rem);

  /* Animation */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.4s;

  /* Header height for scroll offset (anchor links) */
  --header-height: 80px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* アンカーリンク時、固定ヘッダー分だけスクロール位置をずらす */
[id] {
  scroll-margin-top: var(--header-height);
}

body {
  font-family: var(--font-sans);
  color: var(--color-fg);
  background: var(--color-bg);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

::selection {
  background: var(--color-accent);
  color: var(--color-bg-dark);
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
}

/* --- Typography --- */
.heading-xl {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.heading-lg {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.heading-md {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.heading-sm {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.text-body {
  font-size: 0.9375rem;
  line-height: 2;
  color: var(--color-fg-muted);
}

.text-en {
  font-family: var(--font-en);
  font-weight: 300;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--duration) var(--ease-out-expo),
              box-shadow var(--duration) var(--ease-out-expo);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  bottom: -20px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  pointer-events: none;
  transition: opacity var(--duration) var(--ease-out-expo);
}

.header.scrolled::before {
  opacity: 0;
}

.header.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-fg-light);
  letter-spacing: 0.1em;
}

.header-logo span {
  font-family: var(--font-en);
  font-size: 0.625rem;
  display: block;
  letter-spacing: 0.2em;
  color: var(--color-fg-muted-light);
  margin-top: 2px;
}

.header-nav {
  display: none;
}

/* header-cta styles moved to lang-dropdown section */

/* Hamburger — min 44px touch target */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-fg-light);
  transition: transform var(--duration) var(--ease-out-expo), opacity var(--duration) var(--ease-out-expo);
}

/* 開いたとき：3本線を×に変形 */
.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.98);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease-out-expo);
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-fg-light);
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--color-accent);
}

.mobile-nav-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--color-fg-light);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (min-width: 1000px) {
  .hamburger {
    display: none;
  }

  .header-nav {
    display: flex;
    gap: 2rem;
  }

  .header-nav a {
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    font-size: 0.8125rem;
    color: var(--color-fg-muted-light);
    letter-spacing: 0.08em;
    transition: color 0.2s;
    position: relative;
  }

  .header-nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width var(--duration) var(--ease-out-expo);
  }

  .header-nav a:hover {
    color: var(--color-fg-light);
  }

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

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--ease-out-expo);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-accent-hover);
  transform: translateX(-101%);
  transition: transform var(--duration) var(--ease-out-expo);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--color-fg-light);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--color-bg-dark);
  color: var(--color-fg-light);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-dark:hover {
  opacity: 0.85;
}

/* --- Section --- */
.section {
  padding: var(--section-py) 0;
}

.section-dark {
  background: var(--color-bg-dark);
  color: var(--color-fg-light);
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header .heading-sm {
  margin-bottom: 0.75rem;
}

.section-header .heading-lg {
  margin-bottom: 1rem;
}

.section-header .text-body {
  max-width: 560px;
  margin: 0 auto;
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  margin: 1.25rem auto;
}

/* --- Concept Section --- */
.concept {
  text-align: center;
}

.concept-text {
  max-width: 640px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 2.2;
  letter-spacing: 0.04em;
  color: var(--color-fg);
}

/* --- Cards (Common base used by top + subpage) --- */
.service-card {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-dark);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform var(--duration) var(--ease-out-expo);
}

.service-card-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-out-expo);
  background-color: #2a2a2a;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%);
}

.service-card-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  width: 100%;
}

.service-card-label {
  font-family: var(--font-en);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-fg-light);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.8125rem;
  color: var(--color-fg-muted-light);
  line-height: 1.6;
}

.service-card-arrow {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-fg-light);
  font-size: 0.875rem;
  transition: background 0.2s, border-color 0.2s;
}

@media (pointer: fine) {
  .service-card:hover .service-card-image {
    transform: scale(1.05);
  }

  .service-card:hover .service-card-arrow {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-bg-dark);
  }
}

@media (min-width: 768px) {
  .service-card {
    aspect-ratio: 3 / 4;
  }
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-bg-alt);
  position: relative;
}

.gallery-item img,
.gallery-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8e4dc 0%, #d4cfc4 100%);
  color: var(--color-fg-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

@media (pointer: fine) {
  .gallery-item:hover img,
  .gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
  }
}

.gallery-item.span-2 {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
  }

  .gallery-item.span-2 {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }

  .gallery-item.span-2 {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
  }
}

/* --- Reviews --- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.review-card {
  padding: 2rem;
  border: 1px solid var(--color-border);
  position: relative;
}

.review-stars {
  color: var(--color-accent);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-fg);
  margin-bottom: 1rem;
}

.review-author {
  font-size: 0.75rem;
  color: var(--color-fg-muted);
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Access (common parts used on top + access page) --- */
.access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.access-map {
  aspect-ratio: 16 / 10;
  background: var(--color-bg-alt);
  overflow: hidden;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.access-info h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
}

.access-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.access-list-item {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.access-list-item dt {
  min-width: 5rem;
  color: var(--color-fg-muted);
  flex-shrink: 0;
}

.access-list-item dd {
  color: var(--color-fg);
}

@media (min-width: 768px) {
  .access-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* --- NAP Block --- */
.nap-block {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid var(--color-border);
}

.nap-block.dark {
  border-top-color: var(--color-border-light);
}

.nap-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.nap-details {
  font-size: 0.875rem;
  line-height: 2;
  color: var(--color-fg-muted);
}

.nap-details a {
  color: var(--color-accent);
}

/* --- CTA Section --- */
.cta-section {
  background: var(--color-bg-dark);
  padding: var(--section-py) 0;
  text-align: center;
}

.cta-section .heading-lg {
  color: var(--color-fg-light);
  margin-bottom: 1rem;
}

.cta-section .text-body {
  color: var(--color-fg-muted-light);
  max-width: 480px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  background: var(--color-bg-hero);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-fg-light);
  letter-spacing: 0.1em;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.75rem;
  color: var(--color-fg-muted-light);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--color-accent);
}

.footer-contact {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.footer-contact-label {
  font-size: 0.6875rem;
  color: var(--color-fg-muted-light);
  letter-spacing: 0.08em;
}
.footer-contact-email {
  font-size: 0.875rem;
  color: var(--color-fg-muted-light);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-email:hover {
  color: var(--color-accent);
}

.footer-copyright {
  font-size: 0.6875rem;
  color: var(--color-fg-muted-light);
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

/* --- Mobile Floating CTA --- */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem var(--px);
  display: flex;
  gap: 0.75rem;
  transform: translateY(100%);
  transition: transform var(--duration) var(--ease-out-expo);
  border-top: 1px solid var(--color-border-light);
}

.floating-cta.visible {
  transform: translateY(0);
}

.floating-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  min-height: 44px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* CTAセクションと同じ配色：左=電話(primary)、右=オンライン(outline) */
.floating-cta .btn-call {
  background: var(--color-accent);
  color: var(--color-bg-dark);
  border: 1px solid var(--color-accent);
}

.floating-cta .btn-call:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

.floating-cta .btn-reserve {
  background: transparent;
  color: var(--color-fg-light);
  border: 1px solid var(--color-border-light);
}

.floating-cta .btn-reserve:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

@media (min-width: 768px) {
  .floating-cta {
    display: none;
  }
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.75rem;
  color: var(--color-fg-muted);
}

.breadcrumb a {
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

.breadcrumb span {
  margin: 0 0.5rem;
}

/* --- Fade In Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out-expo),
              transform 0.6s var(--ease-out-expo);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Utilities --- */
.text-center { text-align: center; }
.text-light { color: var(--color-fg-light) !important; }
.text-muted { color: var(--color-fg-muted) !important; }
.link-accent { color: var(--color-accent) !important; }
.content-narrow {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.text-note { font-size: 0.8125rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* --- Language Dropdown Switcher --- */
.lang-dropdown {
  position: relative;
  /* SP・PCともにヘッダー内に表示 */
  display: flex;
  align-items: center;
  margin-left: 0.25rem;
}

.lang-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-en);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.5rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  transition: color 0.2s;
  min-height: 44px;
}

.lang-dropdown-trigger:hover {
  color: rgba(255,255,255,1);
}

.lang-current {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
}

.lang-chevron {
  opacity: 0.6;
  transition: transform 0.2s, opacity 0.2s;
}

.lang-dropdown-trigger:hover .lang-chevron {
  opacity: 1;
}

.lang-dropdown.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 72px;
  background: rgba(10, 8, 5, 0.97);
  border-top: 1px solid var(--color-accent);
  list-style: none;
  padding: 0.25rem 0;
  z-index: 200;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

/* SPでは上方向に開く（ハンバーガー横のスペースが狭いため） */
@media (max-width: 999px) {
  .lang-dropdown-menu {
    top: auto;
    bottom: calc(100% + 6px);
    right: 0;
  }
}

.lang-dropdown.open .lang-dropdown-menu {
  display: block;
}

.lang-dropdown-menu li a {
  display: block;
  padding: 0.5rem 1.125rem;
  font-family: var(--font-en);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s, background 0.15s;
}

.lang-dropdown-menu li a:hover {
  color: var(--color-fg-light);
  background: rgba(255,255,255,0.04);
}

.lang-dropdown-menu li a.is-active {
  color: var(--color-accent);
}

/* header-cta: PCのみ表示 */
.header-cta {
  display: none;
}

@media (min-width: 1000px) {
  .header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    min-height: 44px;
    background: var(--color-accent);
    color: var(--color-bg-dark);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: background var(--duration) var(--ease-out-expo);
  }

  .header-cta:hover {
    background: var(--color-accent-hover);
  }
}

/* mobile-lang-dropdown は廃止（header内のlang-dropdownを使用） */
.mobile-lang-dropdown {
  display: none;
}

/* --- Focus Visible (Accessibility) --- */
::focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.btn-primary:focus-visible,
.btn-outline:focus-visible,
.btn-dark:focus-visible,
.header-cta:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.header-nav a:focus-visible {
  color: var(--color-fg-light);
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.hamburger:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* --- service-card--static (non-clickable) --- */
.service-card--static {
  cursor: default;
  pointer-events: none;
}

.service-card--static .service-card-arrow {
  display: none;
}

/* --- menu CTA button spacing --- */
.mt-5 { margin-top: 3rem; }

/* --- btn-lg --- */
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 0.9375rem;
}
