/* ============================================
   ja-dialog · Shared Stylesheet
   ============================================ */

:root {
  --bg-dark: #0F2A33;
  --bg-dark-2: #14333E;
  --bg-cream: #FAF7F0;
  --bg-white: #FFFFFF;
  --bg-soft: #F4F1EA;
  --ink: #121212;
  --ink-2: #2C2C2A;
  --muted: #5F5E5A;
  --line: rgba(18, 18, 18, 0.08);
  --line-dark: rgba(245, 241, 232, 0.12);
  --accent: #F5B400;
  --accent-soft: #FFE8A3;
  --accent-deep: #B07A0E;
  --cream-fg: #F5F1E8;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --max: 1200px;
  --pad: clamp(20px, 4vw, 48px);
  --shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-feature-settings: 'ss01', 'cv11';
  color: var(--ink);
  background: var(--bg-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(60px, 9vw, 110px) 0; }
.section-tight { padding: clamp(50px, 7vw, 90px) 0; }
.eyebrow { font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 14px; }
.eyebrow.on-dark { color: var(--accent); }

h1, h2, h3, h4 { font-weight: 500; letter-spacing: -0.02em; line-height: 1.08; color: var(--ink); }
h1 { font-size: clamp(40px, 6.5vw, 78px); }
h2 { font-size: clamp(30px, 4.4vw, 52px); }
h3 { font-size: clamp(20px, 2.4vw, 28px); }
h4 { font-size: 18px; letter-spacing: -0.01em; }
p { color: var(--ink-2); }
.lead { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; color: var(--ink-2); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px; font-size: 14px; font-weight: 500;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--ink); }
.btn-primary:hover { background: #FFC527; transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #2A2A2A; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--bg-soft); }
.btn-ghost.on-dark { color: var(--cream-fg); border-color: rgba(245,241,232,0.25); }
.btn-ghost.on-dark:hover { background: rgba(245,241,232,0.08); }
.arrow { display: inline-block; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15, 42, 51, 0.95);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-dark);
  color: var(--cream-fg);
  transition: background .3s ease;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.logo { display: inline-flex; align-items: center; gap: 12px; font-size: 18px; font-weight: 600; letter-spacing: -0.02em; color: var(--cream-fg); }
.logo-mark { flex-shrink: 0; display: inline-flex; }
.logo-mark svg { display: block; height: 26px; width: auto; }
.nav-links { display: flex; gap: 28px; font-size: 14px; }
.nav-links a { color: rgba(245,241,232,0.78); }
.nav-links a:hover, .nav-links a.is-active { color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.lang { font-size: 13px; color: rgba(245,241,232,0.6); border: 1px solid rgba(245,241,232,0.2); padding: 6px 10px; border-radius: 999px; }
.btn-nav { padding: 10px 18px; font-size: 13px; background: var(--accent); color: var(--ink); border-radius: 999px; font-weight: 500; }
.btn-nav:hover { background: #FFC527; }
.menu-toggle { display: none; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .lang { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--bg-dark);
  color: var(--cream-fg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 500px at 90% 20%, rgba(245, 180, 0, 0.10), transparent 60%),
    radial-gradient(600px 400px at 10% 90%, rgba(245, 180, 0, 0.06), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 60px;
  align-items: center;
  padding: clamp(70px, 10vw, 130px) 0 clamp(70px, 10vw, 120px);
}
.hero h1 { color: var(--cream-fg); margin-bottom: 24px; }
.hero h1 .gold { color: var(--accent); }
.hero h1 .serif { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 400; }
.hero-lead { font-size: clamp(16px, 1.6vw, 19px); color: rgba(245,241,232,0.78); max-width: 56ch; margin-bottom: 36px; line-height: 1.6; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-meta { display: flex; gap: 28px; font-size: 13px; color: rgba(245,241,232,0.6); flex-wrap: wrap; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.hero-card {
  background: rgba(245, 241, 232, 0.05);
  border: 1px solid rgba(245, 241, 232, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
  position: relative;
}
.hero-card .quote-mark {
  position: absolute; top: -16px; left: 24px;
  width: 40px; height: 40px;
  background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 32px; color: var(--ink); line-height: 1;
  padding-top: 8px;
}
.hero-card .person { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; padding-top: 8px; }
.hero-card .avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; color: var(--ink); font-size: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-card .avatar img,
.testimonial-avatar img,
.member-photo img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit; }
.hero-card .person-name { font-size: 15px; font-weight: 500; color: var(--cream-fg); }
.hero-card .person-role { font-size: 13px; color: rgba(245,241,232,0.6); }
.hero-card blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px; font-style: italic; line-height: 1.5;
  color: rgba(245,241,232,0.92);
  border-left: 2px solid var(--accent);
  padding-left: 18px;
}
.hero-card .source { margin-top: 16px; font-size: 12px; color: rgba(245,241,232,0.45); letter-spacing: 0.06em; text-transform: uppercase; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Logo strip ---------- */
.logos {
  background: var(--bg-cream);
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.logos-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.logos-label { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.logos-items {
  display: flex; flex-wrap: wrap;
  gap: clamp(28px, 4vw, 56px);
  align-items: center; justify-content: center;
  width: 100%;
}
.logos-items img {
  height: 32px; width: auto;
  max-width: 130px;
  object-fit: contain;
  opacity: 0.65;
  filter: grayscale(100%);
  mix-blend-mode: multiply;
  transition: opacity .25s ease, filter .25s ease;
}
.logos-items img:hover { opacity: 1; filter: grayscale(0%); }

/* ---------- Services ---------- */
.services { background: var(--bg-white); }
.services-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 56px; flex-wrap: wrap; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.service-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .25s ease, background .25s ease;
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 280px;
}
.service-card:hover { transform: translateY(-4px); background: var(--bg-cream); }
.service-card .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.service-card h3 { font-size: 21px; font-weight: 500; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.service-card .more { margin-top: auto; font-size: 13px; font-weight: 500; color: var(--accent-deep); display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Stats ---------- */
.stats {
  background: var(--bg-cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
}
.stat { padding: 36px 24px; text-align: left; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Fraunces', Georgia, serif; font-size: clamp(40px, 5vw, 60px); font-weight: 500; color: var(--ink); line-height: 1; margin-bottom: 8px; }
.stat-num .plus { color: var(--accent); }
.stat-label { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }
@media (max-width: 700px) { .stat { border-right: none; border-bottom: 1px solid var(--line); } .stat:last-child { border-bottom: none; } }

/* ---------- Heroes / Testimonials ---------- */
.heroes { background: var(--bg-white); }
.heroes-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 56px; }
.heroes-head p { max-width: 50ch; }
@media (max-width: 800px) { .heroes-head { grid-template-columns: 1fr; gap: 16px; } }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.testimonial {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.testimonial:hover { border-color: rgba(18,18,18,0.18); box-shadow: var(--shadow); }
.testimonial-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px; line-height: 1.5; color: var(--ink-2);
  font-style: italic;
}
.testimonial-quote::before { content: "\201C"; color: var(--accent); margin-right: 4px; font-size: 26px; vertical-align: -4px; }
.testimonial-meta { display: flex; align-items: center; gap: 14px; padding-top: 14px; border-top: 1px solid var(--line); margin-top: auto; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px; color: var(--ink);
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial .name { font-size: 14px; font-weight: 500; }
.testimonial .role { font-size: 12px; color: var(--muted); }

.featured-quote {
  grid-column: span 2;
  background: var(--bg-dark);
  color: var(--cream-fg);
  padding: 44px;
  border: none;
}
.featured-quote .testimonial-quote { font-size: 24px; color: var(--cream-fg); line-height: 1.4; }
.featured-quote .testimonial-quote::before { color: var(--accent); }
.featured-quote .testimonial-meta { border-top-color: rgba(245,241,232,0.15); }
.featured-quote .name { color: var(--cream-fg); }
.featured-quote .role { color: rgba(245,241,232,0.65); }
.featured-quote .testimonial-avatar { background: var(--accent); color: var(--ink); }
@media (max-width: 700px) { .featured-quote { grid-column: span 1; padding: 28px; } .featured-quote .testimonial-quote { font-size: 19px; } }

/* ---------- Leadership ---------- */
.leadership { background: var(--bg-cream); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 56px;
}
.member {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform .2s ease;
}
.member:hover { transform: translateY(-3px); }
.member-photo {
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 28px; font-weight: 500; color: var(--ink);
  margin-bottom: 18px;
  overflow: hidden;
  flex-shrink: 0;
}
.member-photo img { object-position: center 22%; }
.member h4 { font-size: 17px; margin-bottom: 4px; }
.member .role { font-size: 13px; color: var(--accent-deep); margin-bottom: 14px; font-weight: 500; }
.member .bio { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ---------- Insights / Blog ---------- */
.insights { background: var(--bg-white); }
.insights-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 48px; flex-wrap: wrap; }
.posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.post {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.post:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.post-img {
  height: 180px;
  background: linear-gradient(135deg, var(--bg-cream), var(--bg-soft));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  font-family: 'Fraunces', serif;
  color: var(--accent-deep);
  font-size: 80px;
  opacity: 0.4;
}
.post-img.alt-1 { background: linear-gradient(135deg, #1A4651, #0F2A33); }
.post-img.alt-2 { background: linear-gradient(135deg, var(--accent-soft), var(--accent)); }
.post-img.alt-3 { background: linear-gradient(135deg, var(--bg-soft), var(--bg-cream)); }
.post-body { padding: 0 24px 24px; display: flex; flex-direction: column; gap: 10px; }
.post-meta { font-size: 12px; color: var(--muted); display: flex; gap: 10px; }
.post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; align-self: center; }
.post h4 { font-size: 18px; line-height: 1.3; }
.post-link { font-size: 13px; font-weight: 500; color: var(--accent-deep); margin-top: 4px; display: inline-flex; align-items: center; gap: 6px; }

/* ---------- CTA ---------- */
.cta {
  background: var(--bg-dark);
  color: var(--cream-fg);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 80% 50%, rgba(245, 180, 0, 0.14), transparent 70%);
  pointer-events: none;
}
.cta-grid {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start;
}
.cta h2 { color: var(--cream-fg); margin-bottom: 20px; }
.cta-lead { color: rgba(245,241,232,0.78); margin-bottom: 32px; }
.cta-steps { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.cta-step { display: flex; align-items: flex-start; gap: 14px; }
.cta-step-num {
  flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px;
}
.cta-step-text { font-size: 15px; color: rgba(245,241,232,0.85); padding-top: 4px; }

.cta-form {
  background: rgba(245,241,232,0.06);
  border: 1px solid rgba(245,241,232,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
}
.cta-form h3 { color: var(--cream-fg); font-size: 22px; margin-bottom: 6px; }
.cta-form .form-lead { font-size: 14px; color: rgba(245,241,232,0.65); margin-bottom: 24px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 12px; color: rgba(245,241,232,0.7); margin-bottom: 6px; letter-spacing: 0.04em; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px;
  background: rgba(245,241,232,0.05);
  border: 1px solid rgba(245,241,232,0.18);
  border-radius: 10px;
  color: var(--cream-fg);
  font-family: inherit; font-size: 14px;
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); background: rgba(245,241,232,0.1);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.cta-form button[type="submit"] {
  width: 100%;
  padding: 14px;
  background: var(--accent); color: var(--ink);
  font-weight: 500; font-size: 14px;
  border-radius: 999px;
  margin-top: 8px;
  transition: background .2s ease, transform .15s ease;
}
.cta-form button[type="submit"]:hover { background: #FFC527; transform: translateY(-1px); }
.cta-form .privacy { font-size: 11px; color: rgba(245,241,232,0.5); margin-top: 12px; line-height: 1.5; }
@media (max-width: 800px) { .cta-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Awards ---------- */
.awards { background: var(--bg-white); padding: 60px 0; border-top: 1px solid var(--line); }
.awards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.award {
  padding: 20px;
  border: 1px solid var(--line); border-radius: var(--radius);
  font-size: 13px; line-height: 1.5;
}
.award .badge { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 6px; font-weight: 500; }
.award .award-title { font-weight: 500; color: var(--ink); }
.award .source { color: var(--muted); font-size: 12px; margin-top: 4px; }

/* ---------- Footer ---------- */
footer {
  background: var(--bg-dark);
  color: rgba(245,241,232,0.7);
  padding: 70px 0 30px;
  border-top: 1px solid var(--line-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-col h5 { font-size: 13px; color: var(--cream-fg); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; font-weight: 500; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(245,241,232,0.65); }
.footer-col a:hover { color: var(--accent); }
.footer-brand p { color: rgba(245,241,232,0.55); font-size: 14px; margin-top: 14px; max-width: 32ch; line-height: 1.55; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; font-size: 14px; }
.footer-contact a { display: inline-flex; align-items: center; gap: 10px; }
.footer-contact .ico {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(245,241,232,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--line-dark);
  font-size: 12px; color: rgba(245,241,232,0.5);
  flex-wrap: wrap; gap: 16px;
}
.footer-legal { display: flex; gap: 20px; }

/* ---------- Floating elements ---------- */
.scroll-indicator {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--accent); color: var(--ink);
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(10px); transition: all .3s ease;
  z-index: 50;
}
.scroll-indicator.visible { opacity: 1; transform: translateY(0); }
.scroll-indicator:hover { background: #FFC527; }

/* SVG icons */
.icon-svg { width: 22px; height: 22px; stroke-width: 1.8; }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; }
.reveal.in { animation: fadeUp .8s ease forwards; }


/* ============================================
   Standortseiten
   ============================================ */

/* ---------- Location hero ---------- */
.loc-hero {
  background: var(--bg-dark);
  color: var(--cream-fg);
  position: relative;
  overflow: hidden;
}
.loc-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 80% 30%, rgba(245, 180, 0, 0.12), transparent 65%),
    radial-gradient(500px 400px at 10% 90%, rgba(245, 180, 0, 0.05), transparent 60%);
  pointer-events: none;
}
.loc-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  padding: clamp(80px, 11vw, 140px) 0 clamp(60px, 8vw, 100px);
}
@media (max-width: 880px) { .loc-hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.loc-hero h1 { color: var(--cream-fg); margin-bottom: 18px; line-height: 0.95; }
.loc-hero h1 .accent { color: var(--accent); font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 400; }
.loc-hero-lead { font-size: clamp(16px, 1.6vw, 19px); color: rgba(245,241,232,0.78); max-width: 50ch; margin-bottom: 28px; line-height: 1.6; }
.loc-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.loc-address-card {
  background: rgba(245, 241, 232, 0.05);
  border: 1px solid rgba(245, 241, 232, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
}
.loc-address-card h3 { color: var(--cream-fg); font-size: 17px; margin-bottom: 18px; font-weight: 500; }
.loc-address-card .row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; font-size: 14px; color: rgba(245,241,232,0.85); }
.loc-address-card .row:last-child { margin-bottom: 0; }
.loc-address-card .row .ico {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(245,241,232,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.loc-address-card .row .txt { padding-top: 2px; }
.loc-address-card .row .label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,241,232,0.5); margin-bottom: 2px; }
.loc-address-card .row .value { color: var(--cream-fg); font-weight: 500; line-height: 1.4; }
.loc-address-card .row a { color: var(--accent); }

/* ---------- Quick facts strip ---------- */
.facts {
  background: var(--bg-cream);
  border-bottom: 1px solid var(--line);
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.fact { padding: 36px 28px; border-right: 1px solid var(--line); }
.fact:last-child { border-right: none; }
.fact-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.fact-value { font-size: 22px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; line-height: 1.2; }
.fact-value .highlight { color: var(--accent-deep); }
@media (max-width: 700px) { .fact { border-right: none; border-bottom: 1px solid var(--line); } .fact:last-child { border-bottom: none; } }

/* ---------- Two-col content section ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
.two-col-aside h2 { font-size: clamp(28px, 3.8vw, 44px); }
.two-col-content p { font-size: 15px; line-height: 1.7; margin-bottom: 14px; }
.two-col-content p:last-child { margin-bottom: 0; }
.two-col-content p strong { color: var(--ink); font-weight: 500; }

.bullet-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.bullet-list li { padding-left: 28px; position: relative; font-size: 15px; line-height: 1.55; color: var(--ink-2); }
.bullet-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 16px; height: 8px;
  border-radius: 4px;
  background: var(--accent);
}

/* ---------- Other locations cross-link ---------- */
.other-locs {
  background: var(--bg-white);
}
.other-locs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 48px;
}
.other-loc {
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .25s ease, background .25s ease;
}
.other-loc:hover { transform: translateY(-3px); background: var(--bg-soft); }
.other-loc .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-deep); font-weight: 500;
  margin-bottom: 4px;
}
.other-loc .badge::before {
  content: ""; width: 8px; height: 8px; border-radius: 2px;
  background: var(--accent);
}
.other-loc h4 { font-size: 19px; margin-bottom: 2px; }
.other-loc .country { font-size: 13px; color: var(--muted); }
.other-loc .desc { font-size: 13px; color: var(--ink-2); line-height: 1.55; margin-top: 8px; }
.other-loc .arrow-link { font-size: 13px; font-weight: 500; color: var(--accent-deep); margin-top: auto; padding-top: 14px; display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Visit / Map ---------- */
.visit { background: var(--bg-cream); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 800px) { .visit-grid { grid-template-columns: 1fr; } }

.visit-info {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column; gap: 22px;
  border: 1px solid var(--line);
}
.visit-info h3 { font-size: 22px; margin-bottom: 6px; }
.visit-info > p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.visit-row { display: flex; align-items: flex-start; gap: 14px; padding-top: 16px; border-top: 1px solid var(--line); }
.visit-row:first-of-type { border-top: none; padding-top: 0; }
.visit-row .ico {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--bg-soft);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--accent-deep);
}
.visit-row .label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.visit-row .value { font-size: 14px; color: var(--ink); font-weight: 500; line-height: 1.45; }
.visit-row a { color: var(--ink); }
.visit-row a:hover { color: var(--accent-deep); }

.visit-map {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex; align-items: flex-end; justify-content: flex-start;
  background-image:
    linear-gradient(135deg, rgba(245, 180, 0, 0.06), transparent 70%),
    repeating-linear-gradient(0deg, rgba(18,18,18,0.04) 0, rgba(18,18,18,0.04) 1px, transparent 1px, transparent 28px),
    repeating-linear-gradient(90deg, rgba(18,18,18,0.04) 0, rgba(18,18,18,0.04) 1px, transparent 1px, transparent 28px);
  border: 1px solid var(--line);
}
.visit-map .map-pin {
  position: absolute;
  top: 42%; left: 52%;
  width: 22px; height: 22px;
  background: var(--accent);
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  z-index: 2;
}
.visit-map .map-pin::before {
  content: ""; position: absolute;
  top: -10px; left: -10px; right: -10px; bottom: -10px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.25;
  z-index: -1;
  animation: mapPulse 2.4s infinite ease-out;
}
@keyframes mapPulse {
  0% { transform: scale(0.7); opacity: 0.5; }
  100% { transform: scale(2.6); opacity: 0; }
}
.visit-map .map-overlay {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,0.95);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.visit-map .map-overlay::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}
.visit-map .map-streets {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* ---------- Photo gallery placeholder ---------- */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  margin-top: 48px;
  height: 420px;
}
@media (max-width: 700px) {
  .gallery { grid-template-columns: 1fr 1fr; height: auto; }
  .gallery-cell { min-height: 180px; }
}
.gallery-cell {
  background: linear-gradient(135deg, var(--bg-cream), var(--bg-soft));
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.gallery-cell.large { grid-row: span 2; background: linear-gradient(135deg, #1A4651, #0F2A33); color: var(--cream-fg); }
.gallery-cell .placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.5;
}
.gallery-cell.large .placeholder { color: rgba(245,241,232,0.5); }
.gallery-cell .caption {
  position: relative; z-index: 1;
  font-size: 13px; font-weight: 500; color: var(--ink);
  background: rgba(255,255,255,0.85);
  padding: 6px 12px; border-radius: 999px;
}
.gallery-cell.large .caption { color: var(--ink); }
