*,
*::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: flex-end;
  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 {
  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: block;
  margin-bottom: 22px;
}

.hero-copy,
.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;
  max-width: 820px;
  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-why-list {
  display: grid;
  gap: 18px;
  max-width: 68ch;
  margin: 10px 0 24px;
}

.hero-why-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.hero-why-item p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-why-item strong {
  color: var(--text);
  font-weight: 800;
}

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

.hero-actions:last-child {
  margin-bottom: 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;
}

.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 {
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 60px rgba(4, 12, 10, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(145deg, #123624 0%, #0d2b1e 52%, #091611 100%);
}

.owner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 250, 243, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.owner-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.owner-summary,
.owner-details {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.owner-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(215, 181, 109, 0.14);
  color: #d7b56d;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.owner-name {
  max-width: 100%;
  margin-bottom: 12px;
  color: rgba(255, 250, 243, 0.98);
  font-size: clamp(2.5rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  white-space: normal;
  text-wrap: balance;
}

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

.owner-name-last {
  display: block;
  margin-top: 0.12em;
}

.owner-designation {
  max-width: 34ch;
  margin-bottom: 22px;
  color: rgba(204, 219, 211, 0.8);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.owner-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.owner-fact {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  margin: 0;
  border: 1px solid rgba(173, 235, 194, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(232, 238, 233, 0.86);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.owner-fact-training {
  gap: 8px;
}

.owner-fact-flags {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.owner-flag-icon {
  width: 16px;
  height: 16px;
  box-shadow: 0 0 0 1px rgba(255, 250, 243, 0.08);
}

.owner-details {
  display: grid;
  gap: 22px;
}

.owner-bio-list {
  display: grid;
  gap: 12px;
}

.owner-bio-line {
  margin: 0;
  padding-bottom: 12px;
  color: rgba(232, 238, 233, 0.78);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.68;
}

.owner-bio-line:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.owner-principle {
  margin-top: 0;
  padding: 14px 0 0 16px;
  border-left: 4px solid #22c55e;
}

.owner-principle-label {
  margin-bottom: 6px;
  color: rgba(173, 235, 194, 0.88);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.owner-principle p:last-child {
  max-width: 44ch;
  color: rgba(244, 248, 245, 0.9);
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.6;
}

.showcase-section {
  margin-top: 0;
  margin-bottom: 28px;
}

.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 {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.showcase-slide img.showcase-image-product {
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 20px rgba(3, 12, 14, 0.32));
}

.showcase-image-sawafuji {
  object-position: center 68%;
}

.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;
}

.why-choose-check {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(34, 197, 94, 0.7);
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
}

.why-choose-check::after {
  content: "";
  width: 11px;
  height: 6px;
  border-bottom: 3px solid var(--green);
  border-left: 3px solid var(--green);
  transform: translateY(-1px) rotate(-45deg);
}

.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);
}

.social-section {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.social-copy {
  display: grid;
  gap: 8px;
}

.social-copy .eyebrow {
  margin-bottom: 0;
  color: rgba(215, 181, 109, 0.94);
}

.social-copy h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.65rem;
  line-height: 1;
}

.social-note {
  color: rgba(255, 252, 247, 0.74);
  font-size: 0.95rem;
  line-height: 1.7;
}

.social-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.social-button {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 84px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(4, 12, 10, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.social-button:hover,
.social-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(4, 12, 10, 0.24);
}

.social-button-facebook {
  background: linear-gradient(135deg, #1877f2, #0c5ed6);
}

.social-button-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c4a);
}

.social-icon-shell {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 252, 247, 0.92);
}

.social-icon {
  width: 24px;
  height: 24px;
}

.social-button-text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.social-button-text strong,
.social-button-text small {
  display: block;
}

.social-button-text strong {
  color: var(--white);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.social-button-text small {
  color: rgba(255, 252, 247, 0.8);
  font-size: 0.88rem;
  line-height: 1.4;
}

.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 {
  }

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

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

  .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;
  }

  .social-actions {
    grid-template-columns: 1fr;
  }
}

@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 {
    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: 154px minmax(0, 1fr);
    gap: 12px;
    width: 100%;
    align-items: center;
  }

  .brand-mark {
    width: 154px;
  }

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

  .brand-text strong {
    font-size: 1.9rem;
    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;
    min-width: 0;
    width: 100%;
  }

  .site-nav a {
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 36px;
    padding: 0 4px;
    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,
  .service-card,
  .quote-card,
  .profile-card,
  .brand-card,
  .timeline-card,
  .contact-panel,
  .contact-card,
  .showcase-shell {
    padding: 16px;
    border-radius: 8px;
  }

  .hero-copy {
    max-width: 100%;
    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,
  .hero-why-item p,
  .quote-card p,
  .profile-card figcaption,
  .owner-intro {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .hero-why-list {
    gap: 12px;
    margin: 8px 0 18px;
  }

  .hero-why-item {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
  }

  .why-choose-check {
    width: 28px;
    height: 28px;
  }

  .why-choose-check::after {
    width: 9px;
    height: 5px;
    border-bottom-width: 2px;
    border-left-width: 2px;
  }

  .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;
  }

  .section-heading h2 {
    max-width: 100%;
  }

  .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;
  }

  .social-section {
    gap: 12px;
    margin-top: 16px;
    padding: 16px;
    border-radius: 8px;
  }

  .social-copy h3 {
    font-size: 1.28rem;
  }

  .social-note {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .social-actions {
    gap: 10px;
  }

  .social-button {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    min-height: 70px;
    padding: 12px;
    border-radius: 10px;
  }

  .social-icon-shell {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .social-icon {
    width: 21px;
    height: 21px;
  }

  .social-button-text strong {
    font-size: 1.18rem;
  }

  .social-button-text small {
    font-size: 0.8rem;
  }

  .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 {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-rows: repeat(2, auto);
    gap: 12px;
  }

  .showcase-slide {
    width: 100%;
    min-width: 0;
    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: 28px 24px;
    border-radius: 8px;
  }

  .owner-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .owner-name {
    margin-bottom: 10px;
    font-size: 2.15rem;
    line-height: 1.05;
    white-space: normal;
  }

  .owner-name-last {
    margin-top: 0.1em;
  }

  .owner-designation {
    margin-bottom: 14px;
    font-size: 0.78rem;
    line-height: 1.35;
    letter-spacing: 0.14em;
  }

  .owner-facts {
    gap: 8px;
  }

  .owner-fact {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .owner-fact-training {
    gap: 6px;
  }

  .owner-fact-flags {
    gap: 3px;
  }

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

  .owner-details {
    gap: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .owner-bio-list {
    gap: 10px;
  }

  .owner-bio-line {
    padding-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .owner-principle {
    padding: 14px 0 0 14px;
  }

  .owner-principle-label {
    margin-bottom: 6px;
    font-size: 0.74rem;
  }

  .owner-principle p:last-child {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .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);
  }

  .brand {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 10px;
  }

  .brand-mark {
    width: 140px;
  }

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

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

  .site-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }

  .site-nav a {
    font-size: 0.68rem;
    letter-spacing: 0.03em;
  }

  .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.95rem;
  }

  .brand-text strong {
    font-size: 1.72rem;
  }
}
