/* ─────────────────────────────────────────────
   VARIABLES & RESET
───────────────────────────────────────────── */
:root {
  --red:      #c9102e;
  --darkblue: #00183e;
  --gray-text:#626262;
  --gray-light:#a0a6b0;
  --bg-light: #fafcfc;
  --bg-section:#f5f7f8;
  --white:    #ffffff;
  --border:   #e8e8e8;
  --font-main:'Lora', serif;
  --font-jp:  'Noto Serif JP', serif;
  --font-ui:  'Noto Sans JP', 'Lora', sans-serif;
  --max-w:    1220px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-text);
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.lang-jp { display: none; }
.lang-fr { display: block; }
body.jp .lang-jp { display: block; }
body.jp .lang-fr { display: none; }
body.jp { font-family: var(--font-jp); }

/* ─────────────────────────────────────────────
   HEADER
───────────────────────────────────────────── */
.header {
  background: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 80px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-logo img {
  height: 55px;
  width: auto;
}
.header-logo-text {
  display: flex;
  flex-direction: column;
}
.header-logo-text .brand-name {
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--darkblue);
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.header-logo-text .brand-sub {
  font-size: 0.7rem;
  color: var(--gray-light);
  letter-spacing: 0.03em;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.header-nav a {
  color: var(--darkblue);
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0 1rem;
  height: 80px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: 0.02em;
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 1.5rem;
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--gray-light);
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: all 0.2s;
}
.lang-btn:first-child { border-radius: 3px 0 0 3px; border-right: none; }
.lang-btn:last-child  { border-radius: 0 3px 3px 0; }
.lang-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ─────────────────────────────────────────────
   MOBILE MENU
───────────────────────────────────────────── */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--darkblue);
  margin: 5px 0;
  transition: 0.3s;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
#home {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('Image_Home.png');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.35) saturate(0.7);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,24,62,0.7) 0%,
    rgba(201,16,46,0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 2rem 5rem;
  text-align: center;
  color: #fff;
}
.hero-eyebrow {
  font-family: var(--font-main);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
body.jp .hero-eyebrow { font-family: var(--font-jp); letter-spacing: 0.12em; }
.hero-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
body.jp .hero-title { font-family: var(--font-jp); font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
.hero-title em { font-style: italic; color: #f0d4a8; }
.hero-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
  font-weight: 400;
}
body.jp .hero-body { font-family: var(--font-jp); font-size: 0.95rem; }
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── HR divider ─── */
.section-hr {
  border: none;
  height: 1px;
  background: var(--border);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 2.2rem;
  border-radius: 3px;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}
.btn-red {
  background: var(--red);
  color: #fff;
}
.btn-red:hover { background: #a30d25; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-dark {
  background: var(--darkblue);
  color: #fff;
}
.btn-dark:hover { background: var(--red); }

/* ─────────────────────────────────────────────
   STATS BAND
───────────────────────────────────────────── */
.stats-band {
  background: var(--darkblue);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.stat-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-main);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
  line-height: 1.6;
}
body.jp .stat-label { font-family: var(--font-jp); }

/* ─────────────────────────────────────────────
   SECTIONS COMMON
───────────────────────────────────────────── */
.section {
  padding: 5rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-full {
  padding: 5rem 2rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-eyebrow {
  font-family: var(--font-main);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
body.jp .section-eyebrow { font-family: var(--font-jp); letter-spacing: 0.1em; }
.section-title {
  font-family: var(--font-main);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--darkblue);
  line-height: 1.3;
}
body.jp .section-title { font-family: var(--font-jp); font-size: clamp(1.3rem, 2.5vw, 2rem); }
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 1.2rem auto 0;
}
.section-lead {
  font-size: 0.95rem;
  color: var(--gray-text);
  max-width: 680px;
  margin: 1.5rem auto 0;
  line-height: 1.9;
}
body.jp .section-lead { font-family: var(--font-jp); font-size: 0.9rem; }

/* ─────────────────────────────────────────────
   WELCOME / ABOUT
───────────────────────────────────────────── */
.welcome-section {
  background: var(--bg-light);
}
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 4rem;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem;
}
.portrait-wrap img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.portrait-caption {
  font-size: 0.78rem;
  color: var(--gray-light);
  margin-top: 0.8rem;
  text-align: center;
  letter-spacing: 0.03em;
}
body.jp .portrait-caption { font-family: var(--font-jp); }
.about-text h2 {
  font-family: var(--font-main);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--darkblue);
  margin-bottom: 1.5rem;
  line-height: 1.35;
}
body.jp .about-text h2 { font-family: var(--font-jp); font-size: 1.5rem; }
.about-text p {
  margin-bottom: 1.2rem;
  color: var(--gray-text);
  line-height: 1.85;
  font-size: 0.95rem;
}
body.jp .about-text p { font-family: var(--font-jp); font-size: 0.9rem; }
.check-list { list-style: none; margin: 1.5rem 0; }
.check-list li {
  padding: 0.6rem 0 0.6rem 1.8rem;
  position: relative;
  color: var(--gray-text);
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}
body.jp .check-list li { font-family: var(--font-jp); font-size: 0.88rem; }

/* ─────────────────────────────────────────────
   SERVICES CARDS
───────────────────────────────────────────── */
.services-section {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.service-card {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
  background: var(--white);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--darkblue), #1a3060);
  color: #fff;
  font-size: 1.8rem;
}
.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, var(--red), #e02040); }
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, #b8963e, #d4a84a); }
.service-card h3 {
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--darkblue);
  margin-bottom: 1rem;
  line-height: 1.35;
}
body.jp .service-card h3 { font-family: var(--font-jp); font-size: 1.05rem; }
.service-card p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
body.jp .service-card p { font-family: var(--font-jp); font-size: 0.84rem; }
.card-link {
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.card-link::after { content: '\2192'; }
.card-link:hover { gap: 0.8rem; }

/* ─────────────────────────────────────────────
   PAGE SECTIONS (Translation, Relocation, etc.)
───────────────────────────────────────────── */
.page-section {
  display: none;
  padding: 3rem 2rem 5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-section.active { display: block; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.content-block {
  background: var(--white);
  border-radius: 4px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-top: 4px solid var(--darkblue);
}
.content-block.crimson { border-top-color: var(--red); }
.content-block.gold { border-top-color: #b8963e; }
.content-block h2 {
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--darkblue);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}
body.jp .content-block h2 { font-family: var(--font-jp); font-size: 1.2rem; }
.content-block p { font-size: 0.92rem; color: var(--gray-text); margin-bottom: 1rem; line-height: 1.85; }
body.jp .content-block p { font-family: var(--font-jp); font-size: 0.88rem; }
.content-block ul {
  list-style: none;
  margin: 0.5rem 0;
}
.content-block ul li {
  padding: 0.4rem 0 0.4rem 1.4rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--gray-text);
  border-bottom: 1px solid #f0f0f0;
}
.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}
body.jp .content-block ul li { font-family: var(--font-jp); font-size: 0.86rem; }
.content-block h3 {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--darkblue);
  margin: 1.5rem 0 0.8rem;
}
body.jp .content-block h3 { font-family: var(--font-jp); font-size: 0.98rem; }
.contact-cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  padding: 0.7rem 1.8rem;
  border-radius: 3px;
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.contact-cta:hover { background: #a30d25; }

/* ─────────────────────────────────────────────
   RELOCATION SECTION
───────────────────────────────────────────── */
.relocation-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.relocation-intro img {
  width: 100%;
  border-radius: 4px;
  height: 420px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* ─────────────────────────────────────────────
   LEGAL / PRIVACY
───────────────────────────────────────────── */
.legal-content {
  background: var(--white);
  border-radius: 4px;
  padding: 3rem;
  border: 1px solid var(--border);
}
.legal-content h2 {
  font-family: var(--font-main);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--darkblue);
  margin: 2rem 0 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
body.jp .legal-content h2 { font-family: var(--font-jp); font-size: 1.15rem; }
.legal-content p { font-size: 0.9rem; color: #555; margin-bottom: 0.9rem; line-height: 1.85; }
body.jp .legal-content p { font-family: var(--font-jp); font-size: 0.86rem; }

/* ─────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────── */
.contact-section-bg { background: var(--bg-section); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-main);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--darkblue);
  margin-bottom: 1.2rem;
}
body.jp .contact-info h3 { font-family: var(--font-jp); }
.contact-info p {
  font-size: 0.9rem;
  color: var(--gray-text);
  margin-bottom: 0.6rem;
}
body.jp .contact-info p { font-family: var(--font-jp); }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0.8rem 0;
  font-size: 0.9rem;
  color: #444;
}
.contact-detail .icon { font-size: 1rem; color: var(--red); flex-shrink: 0; margin-top: 0.15rem; }
.contact-form {
  background: var(--white);
  border-radius: 4px;
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 0.4rem;
}
body.jp .form-group label { font-family: var(--font-jp); letter-spacing: 0.03em; text-transform: none; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: #333;
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
body.jp .form-group input,
body.jp .form-group select,
body.jp .form-group textarea { font-family: var(--font-jp); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--darkblue); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 1rem;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s;
}
.form-submit:hover { background: #a30d25; }

.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.form-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.form-success h3 {
  font-family: var(--font-main, 'Lora', serif);
  color: var(--darkblue);
  margin-bottom: 0.5rem;
}
.form-success p {
  color: #555;
}
.form-error-msg {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

/* ─────────────────────────────────────────────
   CTA BAND
───────────────────────────────────────────── */
.cta-band {
  background: var(--darkblue);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}
.cta-band h2 {
  font-family: var(--font-main);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #fff;
}
body.jp .cta-band h2 { font-family: var(--font-jp); font-size: 1.5rem; }
.cta-band p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
  line-height: 1.8;
}
body.jp .cta-band p { font-family: var(--font-jp); }

/* ─────────────────────────────────────────────
   PAGE HERO (sub-pages)
───────────────────────────────────────────── */
.page-hero {
  background: var(--darkblue);
  color: #fff;
  padding: 4rem 2rem 3rem;
  text-align: center;
  margin-top: 80px;
}
.page-hero h1,
.page-hero h2 {
  font-family: var(--font-main);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: #fff;
}
body.jp .page-hero h1,
body.jp .page-hero h2 { font-family: var(--font-jp); font-size: clamp(1.2rem, 2.5vw, 1.9rem); }
.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  font-style: italic;
}
body.jp .page-hero p { font-family: var(--font-jp); font-style: normal; }
.page-hero-bar {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 1.2rem auto 0;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
footer {
  background: var(--white);
  color: var(--gray-text);
  border-top: 1px solid var(--border);
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 2rem 3rem;
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--gray-light);
}
body.jp .footer-brand p { font-family: var(--font-jp); }
.footer-col h4 {
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--darkblue);
  margin-bottom: 1rem;
}
body.jp .footer-col h4 { font-family: var(--font-jp); letter-spacing: 0.06em; text-transform: none; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--gray-text);
  transition: color 0.2s;
}
body.jp .footer-col ul li a { font-family: var(--font-jp); font-size: 0.8rem; }
.footer-col ul li a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-light);
  max-width: var(--max-w);
  margin: 0 auto;
}
body.jp .footer-bottom { font-family: var(--font-jp); }

/* ─────────────────────────────────────────────
   BACK TO TOP
───────────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--red);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.back-top.visible { opacity: 1; pointer-events: all; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1240px) {
  .header-nav a { padding: 0 0.6rem; font-size: 0.78rem; }
}
@media (max-width: 960px) {
  .header-nav { display: none; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 1rem 0;
  }
  .header-nav.open a {
    height: auto;
    padding: 0.8rem 2rem;
    border-bottom: none;
  }
  .menu-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .welcome-grid { grid-template-columns: 1fr; }
  .portrait-wrap { max-width: 300px; margin: 0 auto; }
  .two-col { grid-template-columns: 1fr; }
  .relocation-intro { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}
@media (max-width: 640px) {
  .header-logo-text .brand-name { font-size: 1rem; }
  .header-logo-text .brand-sub { display: none; }
  .header-logo img { height: 40px; }
  .header-inner { height: 65px; }
  #home { margin-top: 65px; min-height: 75vh; }
  .page-hero { margin-top: 65px; }
  .header-nav.open { top: 65px; }
}
