:root {
  --ink: #1a1612;
  --warm-white: #f8f5ef;
  --cream: #ede8df;
  --cream2: #e4ddd2;
  --gold: #b8975a;
  --gold-light: #d4b87a;
  --gold-pale: rgba(184,151,90,0.12);
  --sage: #7a8c7e;
  --dark-sage: #4a5e4d;
  --muted: #8a8278;
  --border: rgba(26,22,18,0.1);
  --border-strong: rgba(26,22,18,0.18);
  --max: 1080px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--warm-white);
  color: var(--ink);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.7;
}

/* Noise texture overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
  opacity: 0.35;
}

a { text-decoration: none; color: inherit; transition: all 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── UTILITIES ─── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.serif { font-family: 'Cormorant Garamond', serif; }
.serif-jp { font-family: 'Noto Serif JP', serif; }

.sec-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.divider {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 1rem;
}
.divider-line { flex: 1; height: 1px; background: var(--border); }
.divider .sec-label { margin: 0; }

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }

/* ─── HEADER ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 4rem;
  transition: all 0.4s;
}
#navbar.scrolled {
  background: rgba(248,245,239,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1.1rem 4rem;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.nav-logo small {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  font-weight: 300;
  margin-top: 2px;
}

.nav-links { display: flex; align-items: center; gap: 2.8rem; }
.nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  color: var(--ink);
  opacity: 0.65;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-contact {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  border: 1px solid var(--border-strong);
  padding: 0.55rem 1.4rem;
  color: var(--ink) !important;
  opacity: 1 !important;
  transition: background 0.3s, border-color 0.3s !important;
}
.nav-contact:hover { background: var(--ink) !important; color: var(--warm-white) !important; border-color: var(--ink) !important; }
.nav-contact::after { display: none !important; }

/* Hamburger */
.hbg { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hbg span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: all 0.3s; }
.hbg.on span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.hbg.on span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hbg.on span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* Mobile nav */
#mn {
  position: fixed; inset: 0; z-index: 499;
  background: rgba(248,245,239,0.97);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
#mn.on { opacity: 1; pointer-events: all; }
#mn ul { display: flex; flex-direction: column; align-items: center; gap: 2.8rem; }
#mn a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300;
  letter-spacing: 0.1em; color: var(--ink); opacity: 0.6;
}
#mn a:hover { opacity: 1; color: var(--gold); }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 10rem 4rem 6rem 8rem;
  position: relative; z-index: 2;
}

.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem; letter-spacing: 0.45em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 1s 0.3s forwards;
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300; line-height: 1.15;
  letter-spacing: -0.01em; margin-bottom: 1.2rem;
  opacity: 0; animation: fadeUp 1s 0.55s forwards;
}
.hero-h1 em { font-style: italic; color: var(--gold); }

.hero-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4rem; font-weight: 300;
  letter-spacing: 0.06em; margin-bottom: 1.8rem;
  color: var(--ink);
  opacity: 0; animation: fadeUp 1s 0.75s forwards;
}

.hero-body {
  font-size: 0.875rem; line-height: 2.1;
  color: var(--muted); max-width: 420px;
  opacity: 0; animation: fadeUp 1s 0.95s forwards;
}

.hero-cta {
  margin-top: 3rem;
  display: flex; gap: 1.5rem; align-items: center;
  opacity: 0; animation: fadeUp 1s 1.15s forwards;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--ink); color: var(--warm-white);
  padding: 1rem 2.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem; letter-spacing: 0.22em; text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--dark-sage); transform: translateY(-1px); }
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-secondary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem; letter-spacing: 0.16em;
  color: var(--muted); border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
}
.btn-secondary:hover { color: var(--gold); border-color: var(--gold); }

/* Hero right panel */
.hero-right {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, #dfd8cc 100%);
}
.hero-right-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 35% 55%, rgba(184,151,90,0.1) 0%, transparent 55%),
    repeating-linear-gradient(45deg, transparent, transparent 28px, rgba(26,22,18,0.018) 28px, rgba(26,22,18,0.018) 29px);
}

.hero-img-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 10%;
}
.hero-globe {
  width: min(88%, 460px);
  height: auto;
  opacity: 0;
  animation: fadeIn 1.4s 0.8s forwards;
  mix-blend-mode: multiply;
  filter: contrast(1.05);
}

.hero-scroll {
  position: absolute; bottom: 3rem; right: 3.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.68rem; letter-spacing: 0.35em; color: var(--muted);
  opacity: 0; animation: fadeIn 2s 1.6s forwards;
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2.2s 2s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  48% { transform: scaleY(1); transform-origin: top; }
  50% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── PHILOSOPHY ─── */
#philosophy {
  padding: 9rem 0;
  background: var(--ink);
  color: var(--warm-white);
  position: relative; overflow: hidden;
}
#philosophy::before {
  content: 'Philosophy';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(7rem,14vw,17rem); font-weight: 300;
  color: rgba(255,255,255,0.022); white-space: nowrap;
  pointer-events: none; letter-spacing: -0.02em;
}
.ph-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 7rem; align-items: center;
}
.ph-left .sec-label { color: var(--gold); }
.ph-left .sec-title { color: var(--warm-white); margin-bottom: 1.5rem; }
.ph-values { display: flex; gap: 2.5rem; margin-top: 3rem; }
.ph-val .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 300; color: var(--gold); line-height: 1;
}
.ph-val .lbl { font-size: 0.72rem; letter-spacing: 0.2em; color: rgba(248,245,239,0.45); margin-top: 4px; }

.ph-right .quote {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.25rem,2vw,1.85rem);
  font-weight: 300; line-height: 1.9;
  letter-spacing: 0.04em; margin-bottom: 2rem;
  position: relative;
}
.ph-right .quote::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem; color: var(--gold);
  opacity: 0.18; line-height: 0;
  position: absolute; top: 3rem; left: -2rem;
}
.ph-right .body {
  font-size: 0.88rem; line-height: 2.3;
  color: rgba(248,245,239,0.52);
}

/* ─── BUSINESS ─── */
#business {
  padding: 9rem 0;
  background: #141210;
  position: relative; overflow: hidden;
}
#business::before {
  content: 'Business';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(7rem,13vw,15rem); font-weight: 300;
  color: rgba(255,255,255,0.02); white-space: nowrap;
  pointer-events: none; letter-spacing: -0.02em;
}
.biz-head {
  text-align: center; padding: 0 40px; margin-bottom: 4rem;
  position: relative; z-index: 1;
}
.biz-head .sec-label { color: var(--gold); }
.biz-head .sec-title { color: rgba(248,245,239,0.9); font-size: clamp(2rem,4vw,3.2rem); }

.biz-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.25rem; padding: 0 40px;
  position: relative; z-index: 1;
}

.biz-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2rem 1.75rem 1.75rem;
  display: flex; flex-direction: column; gap: 0;
  transition: background 0.35s, border-color 0.35s, transform 0.35s;
  position: relative; overflow: hidden;
}
.biz-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(184,151,90,0.07) 0%, transparent 65%);
  opacity: 0; transition: opacity 0.4s;
}
.biz-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(184,151,90,0.35); transform: translateY(-5px); }
.biz-card:hover::before { opacity: 1; }
.biz-card > * { position: relative; z-index: 1; }

.biz-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(184,151,90,0.13);
  border: 1px solid rgba(184,151,90,0.24);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.biz-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.biz-card:hover .biz-icon { background: rgba(184,151,90,0.22); }

.biz-card-head { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 0.4rem; }
.biz-card-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 400;
  color: rgba(248,245,239,0.9); letter-spacing: 0.02em;
}
.biz-card-ja { font-size: 0.66rem; letter-spacing: 0.15em; color: rgba(248,245,239,0.32); white-space: nowrap; }

.biz-catch {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem; color: var(--gold);
  letter-spacing: 0.04em; margin-bottom: 0.9rem; line-height: 1.65;
}
.biz-desc { font-size: 0.75rem; line-height: 1.95; color: rgba(248,245,239,0.42); margin-bottom: 1.25rem; flex: 1; }

.biz-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.75rem; }
.biz-tag {
  font-size: 0.63rem; letter-spacing: 0.08em; padding: 0.25rem 0.65rem;
  border: 1px solid rgba(255,255,255,0.11); color: rgba(248,245,239,0.42);
  border-radius: 50px; transition: all 0.25s;
}
.biz-card:hover .biz-tag { border-color: rgba(184,151,90,0.38); color: rgba(248,245,239,0.68); }

.biz-brand {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.25rem; margin-top: auto;
}
.biz-brand-lbl {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.58rem; letter-spacing: 0.36em;
  color: rgba(248,245,239,0.2); text-transform: uppercase;
  margin-bottom: 0.85rem; text-align: center;
}
.biz-brand a {
  display: block; transition: opacity 0.2s, transform 0.2s;
}
.biz-brand a:hover { opacity: 0.85; transform: scale(1.02); }
.biz-brand img {
  height: 80px; width: 100%; object-fit: contain;
  background: rgba(255,255,255,0.88); padding: 10px 14px; border-radius: 3px;
}

/* ─── COMPANY ─── */
#company {
  padding: 9rem 0;
  background: var(--cream);
}
.co-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
}
.co-head { text-align: center; margin-bottom: 4rem; }
.co-head .sec-title { color: var(--ink); }

.co-table-wrap {
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 0 3rem;
  max-width: 760px; margin: 0 auto;
}
.co-table { width: 100%; border-collapse: collapse; }
.co-table tr { border-bottom: 1px solid var(--border); }
.co-table tr:last-child { border: none; }
.co-table td { padding: 1.2rem 0; font-size: 0.875rem; vertical-align: top; line-height: 1.85; }
.co-table td:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem; letter-spacing: 0.18em;
  color: var(--muted); width: 34%; padding-right: 2rem;
}

/* ─── RECRUIT ─── */
#recruit {
  padding: 9rem 0;
  text-align: center;
  background: var(--warm-white);
  position: relative; overflow: hidden;
}
#recruit::before {
  content: 'Recruit';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(7rem,16vw,19rem); font-weight: 300;
  color: rgba(26,22,18,0.03); white-space: nowrap;
  pointer-events: none;
}
.rc-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; padding: 0 40px; }
.rc-inner .divider { justify-content: center; }
.rc-inner .sec-title { font-size: clamp(2.2rem,4vw,3.5rem); color: var(--ink); margin-bottom: 0.5rem; }
.rc-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.15rem; font-weight: 300;
  line-height: 2.1; color: var(--muted); margin: 2rem 0 3rem;
}
.rc-btn {
  display: inline-flex; align-items: center; gap: 1rem;
  border: 1px solid var(--ink); padding: 1.2rem 3rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink); transition: background 0.3s, color 0.3s;
}
.rc-btn:hover { background: var(--ink); color: var(--warm-white); }
.rc-btn svg { transition: transform 0.3s; }
.rc-btn:hover svg { transform: translateX(4px); }

/* ─── CONTACT ─── */
#contact {
  padding: 9rem 0;
  background: var(--ink);
  color: var(--warm-white);
}
.ct-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 7rem; align-items: start;
}
.ct-info .sec-label { color: var(--gold); }
.ct-info .sec-title { color: var(--warm-white); margin-bottom: 1.5rem; }
.ct-info p { font-size: 0.875rem; line-height: 2.3; color: rgba(248,245,239,0.5); }
.ct-address {
  margin-top: 2.5rem; padding: 1.75rem;
  border: 1px solid rgba(255,255,255,0.07);
}
.ct-address .lbl {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.68rem; letter-spacing: 0.35em; color: var(--gold); margin-bottom: 0.75rem;
}
.ct-address .addr { font-size: 0.83rem; color: rgba(248,245,239,0.52); line-height: 2.1; }

.ct-form { display: flex; flex-direction: column; gap: 1.5rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.fg { display: flex; flex-direction: column; gap: 0.5rem; }
.fg label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem; letter-spacing: 0.28em;
  color: rgba(248,245,239,0.45); text-transform: uppercase;
}
.fi, .fs, .ft {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 1rem 1.2rem;
  color: var(--warm-white);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.875rem; font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.fi:focus, .fs:focus, .ft:focus { border-color: var(--gold); }
.fi::placeholder, .ft::placeholder { color: rgba(255,255,255,0.2); }
.fs { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238a8278' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 18px;
  padding-right: 36px;
}
.fs option { background: #1a1612; }
.ft { resize: vertical; min-height: 140px; line-height: 1.85; }
.pv { display: flex; align-items: center; gap: 0.9rem; font-size: 0.8rem; color: rgba(248,245,239,0.45); cursor: pointer; }
.pv input { accent-color: var(--gold); width: 15px; height: 15px; cursor: pointer; flex-shrink: 0; }
.pv a { color: var(--gold-light); border-bottom: 1px solid rgba(184,151,90,0.3); }
.pv a:hover { border-color: var(--gold); }
.btn-submit {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--gold); color: var(--ink);
  padding: 1.1rem 2.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem; letter-spacing: 0.25em; text-transform: uppercase;
  transition: background 0.3s, transform 0.2s; cursor: pointer;
  border: none; font-weight: 400;
  align-self: flex-start;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-submit svg { transition: transform 0.3s; }
.btn-submit:hover svg { transform: translateX(3px); }

/* ─── FOOTER ─── */
footer {
  background: #0e0c0a;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 4rem 0 0;
}
.ft-in {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ft-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; letter-spacing: 0.06em;
  color: rgba(248,245,239,0.8); display: block; margin-bottom: 0.75rem;
}
.ft-addr { font-size: 0.78rem; color: rgba(248,245,239,0.3); line-height: 2.1; }
.ft-links { display: flex; gap: 4rem; justify-content: flex-end; }
.ft-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.68rem; letter-spacing: 0.35em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 1.25rem;
}
.ft-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.ft-col a { font-size: 0.8rem; color: rgba(248,245,239,0.3); letter-spacing: 0.06em; }
.ft-col a:hover { color: rgba(248,245,239,0.7); }
.ft-bottom {
  padding: 1.5rem 40px; text-align: center;
  font-size: 0.7rem; color: rgba(248,245,239,0.2); letter-spacing: 0.08em;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 10rem 2.5rem 5rem; }
  .nav-links { display: none; }
  .hbg { display: flex; }
  #navbar { padding: 1.4rem 2.5rem; }
  #navbar.scrolled { padding: 1rem 2.5rem; }
  .ph-inner { grid-template-columns: 1fr; gap: 3rem; }
  .biz-grid { grid-template-columns: 1fr 1fr; }
  .ct-inner { grid-template-columns: 1fr; gap: 4rem; }
  .f-row { grid-template-columns: 1fr; }
  .ft-in { grid-template-columns: 1fr; }
  .ft-links { justify-content: flex-start; }
  #philosophy { padding: 6rem 0; }
  .co-table-wrap { padding: 0 1.5rem; }
}
@media (max-width: 600px) {
  .biz-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .hero-left { padding: 9rem 1.8rem 4rem; }
  .ph-inner, .co-inner .wrap, .ct-inner { padding: 0 24px; }
  .rc-inner { padding: 0 24px; }
  .ft-in { padding: 0 24px 3rem; }
  .ft-bottom { padding: 1.5rem 24px; }
}