/* ===========================
   SHINANOBASHI TAX OFFICE
   Modern Redesign - style.css
   =========================== */

/* --- Variables & Reset --- */
:root {
  --navy:      #0d1f3c;
  --navy-mid:  #162a50;
  --navy-light:#1e3a6e;
  --gold:      #c9a84c;
  --gold-light:#e2c97a;
  --white:     #ffffff;
  --off-white: #f8f7f4;
  --gray-100:  #f2f1ee;
  --gray-300:  #d4d0c8;
  --gray-500:  #8a8680;
  --gray-700:  #4a4744;
  --text:      #1c1b19;

  --font-jp: 'Noto Sans JP', sans-serif;
  --font-en: 'Cormorant Garamond', serif;
  --font-ui: 'Inter', sans-serif;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(13,31,60,0.08);
  --shadow-md: 0 8px 32px rgba(13,31,60,0.14);
  --shadow-lg: 0 20px 60px rgba(13,31,60,0.2);

  --container-max: 1100px;
  --section-padding: 100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-jp);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13, 31, 60, 0.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}
.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-jp {
  font-family: var(--font-jp);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.logo-en {
  font-family: var(--font-ui);
  font-size: 0.55rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-family: var(--font-jp);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.05em;
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('hero_bg.png') center center / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,31,60,0.88) 0%,
    rgba(22,42,80,0.75) 50%,
    rgba(13,31,60,0.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}
.hero-sub {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-sub::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-jp);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title-lg {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.3;
  display: block;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 44px;
  font-weight: 300;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll-indicator span {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%        { opacity: 1;   transform: scaleY(1.2); }
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-jp);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 36px;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

/* ===========================
   SECTION COMMON
   =========================== */
.section { padding: var(--section-padding) 0; }
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-jp);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}
.section-desc {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 2;
}
.section-cta {
  text-align: center;
  margin-top: 56px;
}

/* ===========================
   STRENGTHS
   =========================== */
.strengths-section {
  background: var(--off-white);
}
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.strength-card {
  background: var(--white);
  padding: 40px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.strength-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.strength-card:hover::before { transform: scaleX(1); }
.strength-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.strength-icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
  margin-bottom: 20px;
}
.strength-icon svg { width: 100%; height: 100%; }
.strength-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.strength-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.8;
}

/* ===========================
   SERVICES
   =========================== */
.services-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.services-bg-text {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-en);
  font-size: clamp(8rem, 15vw, 16rem);
  font-weight: 600;
  color: rgba(255,255,255,0.03);
  letter-spacing: 0.1em;
  pointer-events: none;
  user-select: none;
}
.services-section .section-title { color: var(--white); }
.services-section .section-desc { color: rgba(255,255,255,0.55); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
}
.service-number {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 16px;
  line-height: 1;
}
.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.service-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  margin-bottom: 20px;
}
.service-arrow {
  font-size: 1.1rem;
  color: var(--gold);
  display: block;
  transition: transform var(--transition);
}
.service-card:hover .service-arrow {
  transform: translateX(6px);
}

/* ===========================
   PROFILE STRIP
   =========================== */
.profile-strip {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  padding: 70px 0;
}
.profile-strip-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.profile-strip-text { flex: 1; min-width: 220px; }
.profile-strip-title {
  font-family: var(--font-jp);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.profile-strip-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.profile-strip-info {
  flex: 2;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.profile-info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.info-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.info-value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.info-value a {
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.info-value a:hover { color: var(--gold); }

/* ===========================
   CONTACT CTA
   =========================== */
.contact-cta-section {
  background: var(--off-white);
}
.contact-cta-inner {
  text-align: center;
  padding: 20px;
}
.contact-cta-title {
  font-family: var(--font-jp);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.5;
}
.contact-cta-sub {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 40px;
}
.contact-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--navy);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  display: flex;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.footer-brand { flex: 2; min-width: 240px; }
.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.footer-address,
.footer-tel {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.footer-tel a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-tel a:hover { color: var(--gold); }
.footer-nav { flex: 1; min-width: 160px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 14px; }
.footer-nav a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  letter-spacing: 0.05em;
}
.footer-nav a:hover { color: var(--gold); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* ===========================
   PAGE HEADER (inner pages)
   =========================== */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: attr(data-bg-text);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-size: clamp(5rem, 12vw, 12rem);
  font-weight: 600;
  color: rgba(255,255,255,0.04);
  white-space: nowrap;
  pointer-events: none;
}
.page-header .section-label { color: var(--gold); }
.page-header-title {
  font-family: var(--font-jp);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-top: 8px;
}

/* ===========================
   SERVICE PAGE
   =========================== */
.service-detail-section {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}
.service-detail-grid {
  display: grid;
  gap: 32px;
}
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-md);
  pad: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 80px 1fr;
  min-height: 120px;
  transition: var(--transition);
}
.service-detail-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-detail-num {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
}
.service-detail-body {
  padding: 28px 32px;
}
.service-detail-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-detail-body p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.85;
}
.service-detail-body ul {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-detail-body ul li {
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

/* ===========================
   COMPANY PAGE TABLE
   =========================== */
.company-section {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}
.company-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.company-table tr {
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition);
}
.company-table tr:last-child { border-bottom: none; }
.company-table tr:hover { background: var(--off-white); }
.company-table th {
  background: var(--navy);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 18px 28px;
  width: 200px;
  text-align: left;
  vertical-align: top;
}
.company-table td {
  padding: 18px 28px;
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.8;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-section {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  color: var(--white);
}
.contact-info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}
.contact-info-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-info-value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.contact-info-value a { color: rgba(255,255,255,0.8); transition: color var(--transition); }
.contact-info-value a:hover { color: var(--gold); }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
}
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.form-label .required {
  color: #c0392b;
  margin-left: 4px;
  font-size: 0.7rem;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-jp);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-jp);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.1em;
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

/* ===========================
   ACCESS PAGE
   =========================== */
.access-section {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}
.access-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
}
.access-info-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
}
.access-detail-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.access-detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  min-width: 60px;
  padding-top: 2px;
}
.access-detail-value {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.7;
}
.access-detail-value a { color: var(--navy); }
.access-detail-value a:hover { color: var(--gold); }
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 400px;
  background: var(--gray-100);
}
.map-container iframe {
  width: 100%; height: 100%; border: none;
}

/* ===========================
   ANIMATIONS
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.8s ease forwards;
}
.fade-in.delay-1 { animation-delay: 0.15s; }
.fade-in.delay-2 { animation-delay: 0.3s; }
.fade-in.delay-3 { animation-delay: 0.45s; }
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
.sp-only { display: none; }

@media (max-width: 1024px) {
  .strengths-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .contact-grid   { grid-template-columns: 1fr; }
  .access-grid    { grid-template-columns: 1fr; }
  .profile-strip-inner { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-padding: 64px; }
  .sp-only { display: block; }

  /* Nav */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75vw;
    max-width: 320px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 4px;
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { right: 0; }
  .nav-link { width: 100%; padding: 14px 0; font-size: 0.95rem; }
  .nav-cta { margin-top: 12px; text-align: center; width: 100%; }

  /* Hero */
  .hero-title-lg { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .hero-scroll-indicator { display: none; }

  /* Grids */
  .strengths-grid { grid-template-columns: 1fr; gap: 16px; }
  .services-grid  { grid-template-columns: 1fr; }
  .profile-strip-inner { flex-direction: column; gap: 28px; text-align: center; }
  .profile-strip-info { gap: 20px; justify-content: center; }
  .footer-inner { flex-direction: column; gap: 40px; }
  .company-table th { width: 120px; padding: 14px 16px; font-size: 0.75rem; }
  .company-table td { padding: 14px 16px; font-size: 0.85rem; }
  .contact-form-card { padding: 28px 20px; }
}
