*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f4f0e7;
  --bg-strong: #e9e4d7;
  --surface: rgba(8, 24, 29, 0.92);
  --surface-soft: rgba(10, 40, 34, 0.84);
  --card: rgba(255, 250, 243, 0.86);
  --card-strong: #fffaf3;
  --line: rgba(15, 48, 42, 0.12);
  --text: #182225;
  --muted: #536366;
  --white: #fffcf7;
  --green: #0f6a4c;
  --green-bright: #2f9566;
  --red: #c53d2f;
  --gold: #d7b56d;
  --shadow: 0 24px 60px rgba(12, 28, 28, 0.12);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top right, rgba(47, 149, 102, 0.16), transparent 22rem),
    radial-gradient(circle at left center, rgba(197, 61, 47, 0.10), transparent 18rem),
    linear-gradient(180deg, #faf7f0 0%, var(--bg) 55%, var(--bg-strong) 100%);
  color: var(--text);
  font-family: "Sora", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 48, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 48, 42, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: -1;
}

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

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

p,
h1,
h2,
h3,
ul {
  margin: 0;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 36px;
}

.topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(197, 61, 47, 0.14);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.84);
  backdrop-filter: blur(16px);
  color: var(--muted);
  font-size: 0.92rem;
}

.topline a {
  font-weight: 700;
  color: var(--red);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.brand-mark {
  width: 150px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-text strong,
.site-nav a,
.eyebrow,
.service-number,
.timeline-card h3,
.brand-card h3,
.contact-card h3,
.feature-card h2 {
  font-family: "Rajdhani", sans-serif;
}

.brand-text strong {
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 0.98;
}

.brand-text small {
  color: var(--muted);
  font-size: clamp(1.25rem, 1.6vw, 1.7rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 22px;
}

.hero-copy,
.hero-panel,
.service-card,
.quote-card,
.profile-card,
.brand-card,
.timeline-card,
.contact-panel,
.contact-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.96), rgba(255, 247, 237, 0.88)),
    var(--card);
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -6rem -6rem auto;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 61, 47, 0.16), transparent 72%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
  font-family: "Rajdhani", sans-serif;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: 13ch;
  font-size: 3.65rem;
  margin-bottom: 14px;
}

.hero-text {
  max-width: 60ch;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.section-text {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--red), #dd5b45);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(197, 61, 47, 0.28);
}

.button-secondary {
  border-color: rgba(15, 106, 76, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.88rem;
}

.hero-facts strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 30%),
    linear-gradient(160deg, var(--surface), var(--surface-soft));
  color: var(--white);
}

.hero-panel::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -10px;
  width: 200px;
  height: 200px;
  background:
    linear-gradient(135deg, transparent 0 22%, rgba(47, 149, 102, 0.9) 22% 28%, transparent 28% 38%, rgba(255, 255, 255, 0.72) 38% 44%, transparent 44% 54%, rgba(47, 149, 102, 0.9) 54% 60%, transparent 60%);
  opacity: 0.9;
}

.hero-panel-header {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.hero-panel-header span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel-header p {
  max-width: 22ch;
  font-family: "Rajdhani", sans-serif;
  font-size: 2.25rem;
  line-height: 0.95;
}

.hero-panel-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature-card {
  padding: 15px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.feature-card h2 {
  margin-bottom: 6px;
  font-size: 1.25rem;
  line-height: 1;
}

.feature-card p {
  color: rgba(255, 252, 247, 0.82);
  line-height: 1.65;
  font-size: 0.86rem;
}

.feature-card-wide {
  grid-column: 1 / -1;
}

.section {
  margin-top: 32px;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading h2 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 4.6vw, 4.5rem);
  margin-bottom: 12px;
}

.service-grid,
.brands-grid,
.timeline,
.contact-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
}

.service-number {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.service-card h3,
.contact-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.service-card p,
.contact-card p,
.timeline-card p,
.quote-card p,
.profile-card figcaption,
.owner-intro {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.8;
}

.profile-stack {
  display: grid;
  gap: 18px;
}

.quote-card,
.profile-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
}

.principle-card {
  background:
    linear-gradient(135deg, rgba(197, 61, 47, 0.08), rgba(215, 181, 109, 0.12)),
    rgba(255, 255, 255, 0.84);
}

.quote-mark {
  margin-bottom: 6px;
  color: var(--red);
  font-family: "Rajdhani", sans-serif;
  font-size: 4rem;
  line-height: 0.7;
}

.profile-card img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.profile-card figcaption {
  margin-top: 12px;
}

.owner-intro {
  max-width: 56ch;
}

.owner-card {
  margin-top: 8px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 237, 0.84));
}

.owner-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(197, 61, 47, 0.1);
  color: var(--red);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.owner-name {
  max-width: 100%;
  margin-bottom: 14px;
  font-size: clamp(3rem, 5.5vw, 5.4rem);
  line-height: 0.94;
}

.owner-name strong {
  font-weight: 700;
}

.owner-card .section-text + .section-text {
  margin-top: 12px;
}

.owner-principle {
  margin-top: 18px;
}

.showcase-section {
  margin-top: 38px;
}

.showcase-shell {
  padding: 24px;
  border: 1px solid rgba(15, 48, 42, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at top right, rgba(47, 149, 102, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(8, 24, 29, 0.97), rgba(17, 54, 46, 0.94));
}

.showcase-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.showcase-note {
  color: rgba(255, 252, 247, 0.78);
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-viewport {
  overflow: hidden;
}

.showcase-track {
  display: flex;
  gap: 18px;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.showcase-slide {
  min-width: calc((100% - 36px) / 3);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.10);
  box-shadow: 0 24px 50px rgba(5, 12, 14, 0.22);
}

.showcase-slide img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.showcase-card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
  color: var(--white);
}

.showcase-brand {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-brand {
  color: var(--gold);
  font-size: 0.95rem;
}

.showcase-card-body h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.8rem;
  line-height: 0.95;
}

.showcase-card-body p:last-child {
  color: rgba(255, 252, 247, 0.82);
  line-height: 1.7;
}

.showcase-controls {
  display: flex;
  gap: 10px;
}

.showcase-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.12);
  color: var(--white);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
}

.showcase-slide.is-active {
  border-color: rgba(215, 181, 109, 0.35);
}

.brands-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  padding: 20px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 247, 237, 0.76));
}

.brand-logo-shell {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 18px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 242, 235, 0.96));
  border: 1px solid rgba(15, 48, 42, 0.08);
}

.brand-logo-shell-dark {
  background: linear-gradient(135deg, #101922, #243443);
  border-color: rgba(255, 255, 255, 0.08);
}

.brand-logo-shell-zoom {
  padding: 10px;
}

.brand-logo {
  width: 100%;
  max-width: 260px;
  max-height: 68px;
  object-fit: contain;
}

.brand-logo-sawafuji {
  max-width: 330px;
  max-height: 96px;
  transform: scale(1.14);
}

.brand-logo-fks {
  width: 112px;
  height: 112px;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.brand-meta {
  display: grid;
  gap: 10px;
}

.brand-card h3 {
  font-size: 1.45rem;
  line-height: 1;
}

.brand-origin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 106, 76, 0.08);
  color: var(--green);
  font-weight: 600;
}

.flag-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(15, 48, 42, 0.08);
}

.timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.9), rgba(255, 255, 255, 0.7));
}

.timeline-card h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  line-height: 1;
}

.contact-section {
  margin-top: 40px;
}

.contact-panel {
  padding: 32px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(140deg, rgba(8, 24, 29, 0.95), rgba(13, 64, 48, 0.88)),
    var(--surface);
  color: var(--white);
}

.contact-panel .eyebrow {
  color: var(--gold);
}

.contact-panel .section-text {
  color: rgba(255, 252, 247, 0.78);
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.contact-card p,
.contact-card a {
  color: rgba(255, 252, 247, 0.88);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 8px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero,
  .service-grid,
  .brands-grid,
  .timeline,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    align-items: start;
  }

  .hero-copy,
  .hero-panel,
  .contact-panel,
  .showcase-shell {
    padding: 28px;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .hero-panel-header p {
    font-size: 2.1rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .showcase-slide {
    min-width: calc((100% - 18px) / 2);
  }

  .service-grid .service-card:last-child,
  .timeline .timeline-card:last-child {
    grid-column: 1 / -1;
  }

  .contact-grid .contact-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at top right, rgba(47, 149, 102, 0.10), transparent 14rem),
      linear-gradient(180deg, #faf7f0 0%, var(--bg) 100%);
  }

  body::before {
    background-size: 28px 28px;
    opacity: 0.55;
  }

  .page-shell {
    width: min(100% - 24px, 1180px);
    padding: 12px 0 28px;
  }

  .topline,
  .site-header,
  .site-footer,
  .hero,
  .service-grid,
  .brands-grid,
  .timeline,
  .contact-grid,
  .hero-panel-grid {
    grid-template-columns: 1fr;
  }

  .topline {
    display: grid;
    gap: 8px;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .topline a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 8px;
    background: rgba(197, 61, 47, 0.10);
  }

  .topline,
  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    gap: 14px;
    margin-bottom: 18px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 252, 247, 0.82);
  }

  .brand {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
    width: 100%;
  }

  .brand-mark {
    width: 68px;
  }

  .brand-text {
    gap: 3px;
    min-width: 0;
  }

  .brand-text strong {
    font-size: 1.48rem;
    line-height: 1;
  }

  .brand-text small {
    font-size: 0.72rem;
    line-height: 1.3;
    letter-spacing: 0.08em;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
  }

  .site-nav a {
    display: grid;
    place-items: center;
    min-height: 36px;
    border-radius: 8px;
    background: rgba(15, 106, 76, 0.08);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }

  .hero {
    gap: 12px;
    margin-bottom: 12px;
  }

  .hero-copy,
  .hero-panel,
  .service-card,
  .quote-card,
  .profile-card,
  .brand-card,
  .timeline-card,
  .contact-panel,
  .contact-card,
  .showcase-shell {
    padding: 16px;
    border-radius: 8px;
  }

  .hero-copy {
    padding: 20px 18px;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.76rem;
    line-height: 1.3;
    letter-spacing: 0.08em;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 10px;
    font-size: 2.18rem;
    line-height: 0.98;
  }

  .hero-text,
  .section-text,
  .service-card p,
  .contact-card p,
  .timeline-card p,
  .quote-card p,
  .profile-card figcaption,
  .owner-intro {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .hero-actions {
    display: grid;
    gap: 8px;
    margin: 16px 0;
  }

  .button {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 8px;
    font-size: 0.9rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-facts li {
    display: grid;
    grid-template-columns: minmax(74px, max-content) minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .hero-facts strong {
    margin-bottom: 0;
    font-size: 0.95rem;
  }

  .hero-facts li:last-child {
    display: block;
  }

  .hero-facts li:last-child strong {
    margin-bottom: 4px;
  }

  .hero-panel-header p,
  .section-heading h2 {
    max-width: 100%;
  }

  .hero-panel {
    padding: 18px;
  }

  .hero-panel::before {
    top: -92px;
    right: -76px;
    opacity: 0.55;
    transform: scale(0.72);
  }

  .hero-panel-header {
    margin-bottom: 14px;
  }

  .hero-panel-header span {
    margin-bottom: 8px;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .hero-panel-header p {
    font-size: 1.65rem;
    line-height: 1;
  }

  .hero-panel-grid {
    gap: 8px;
  }

  .feature-card {
    padding: 12px;
    border-radius: 8px;
  }

  .feature-card h2 {
    margin-bottom: 5px;
    font-size: 1.12rem;
  }

  .feature-card p {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .section {
    margin-top: 24px;
  }

  .section-heading {
    margin-bottom: 14px;
  }

  .section-heading h2 {
    margin-bottom: 8px;
    font-size: 2rem;
    line-height: 1;
  }

  .brand-logo-shell {
    min-height: 64px;
    padding: 10px;
    border-radius: 8px;
  }

  .brand-logo-shell-zoom {
    padding: 6px;
  }

  .brands-grid,
  .timeline,
  .contact-grid {
    gap: 10px;
  }

  .brand-card {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 12px;
  }

  .brand-logo {
    max-width: 100px;
    max-height: 42px;
  }

  .brand-logo-sawafuji {
    max-width: 132px;
    max-height: 62px;
    transform: scale(1.12);
  }

  .brand-logo-fks {
    width: 70px;
    height: 70px;
    max-width: none;
    max-height: none;
  }

  .brand-meta {
    gap: 8px;
  }

  .brand-card h3 {
    font-size: 1.2rem;
    line-height: 1.05;
  }

  .brand-origin {
    padding: 5px 9px;
    border-radius: 8px;
    font-size: 0.82rem;
  }

  .flag-icon {
    width: 14px;
    height: 14px;
  }

  .showcase-toolbar {
    gap: 10px;
    margin-bottom: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .showcase-note {
    font-size: 0.76rem;
    line-height: 1.3;
  }

  .showcase-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

  .showcase-button {
    width: 100%;
    min-height: 38px;
    border-radius: 8px;
    font-size: 0.82rem;
  }

  .showcase-track {
    gap: 12px;
  }

  .showcase-slide {
    min-width: 100%;
    border-radius: 8px;
  }

  .showcase-slide img {
    height: 170px;
  }

  .showcase-card-body {
    gap: 8px;
    padding: 14px;
  }

  .showcase-brand {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .showcase-card-body h3 {
    font-size: 1.35rem;
    line-height: 1;
  }

  .showcase-card-body p:last-child {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .owner-card {
    padding: 18px;
    border-radius: 8px;
  }

  .owner-label {
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 0.76rem;
  }

  .owner-name {
    margin-bottom: 10px;
    font-size: 2rem;
    line-height: 1;
  }

  .quote-card,
  .timeline-card,
  .contact-card {
    padding: 14px;
  }

  .timeline-card h3,
  .contact-card h3 {
    font-size: 1.22rem;
  }

  .contact-section {
    margin-top: 26px;
  }

  .contact-card p,
  .contact-card a {
    overflow-wrap: anywhere;
  }

  .site-footer {
    gap: 6px;
    padding: 18px 0 0;
    font-size: 0.82rem;
  }
}

@media (max-width: 420px) {
  .page-shell {
    width: min(100% - 18px, 1180px);
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-heading h2 {
    font-size: 1.82rem;
  }

  .brand-card {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .brand-logo {
    max-width: 88px;
  }

  .brand-logo-sawafuji {
    max-width: 116px;
  }

  .brand-logo-fks {
    width: 64px;
    height: 64px;
  }

  .owner-name {
    font-size: 1.82rem;
  }
}
