:root {
  --ink: #111111;
  --muted: #676767;
  --paper: #ffffff;
  --line: #d7d7d7;
  --soft: #f3f3f3;
  --gold: #f2c230;
  --charcoal: #252525;
  --ash: #e9e9e9;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 215, 215, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
}

.brand-logo {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 24px));
  display: grid;
  align-items: end;
  padding: clamp(88px, 10vw, 136px) clamp(18px, 4vw, 56px) clamp(40px, 7vw, 84px);
  overflow: hidden;
  background: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 104px;
  background: linear-gradient(0deg, var(--paper), rgba(255, 255, 255, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy {
  width: min(590px, 100%);
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.map-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 750;
  line-height: 1;
}

.button.primary {
  color: var(--ink);
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.dark {
  color: var(--ink);
  border-color: var(--ink);
}

.button.secondary.light {
  color: var(--ink);
  background: var(--ash);
  border-color: var(--ash);
}

.button:hover,
.map-link:hover {
  transform: translateY(-1px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(64px, 9vw, 112px) clamp(18px, 4vw, 56px);
}

.intro p:last-child {
  align-self: end;
  color: var(--muted);
  font-size: 1.06rem;
}

.store-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.9fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.store-strip img {
  display: block;
  width: 100%;
  height: clamp(220px, 28vw, 420px);
  object-fit: cover;
  background: var(--line);
}

.store-strip img:first-child {
  object-position: center;
}

.store-strip img:nth-child(2) {
  object-position: center;
}

.store-strip img:nth-child(3) {
  object-position: center;
}

.branches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.branch-card {
  display: flex;
  min-height: 680px;
  flex-direction: column;
  gap: 30px;
  padding: clamp(28px, 5vw, 64px);
  background: var(--paper);
}

.branch-card.featured {
  background: var(--soft);
}

.branch-heading h2 {
  max-width: 600px;
}

.branch-visual {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--line);
}

.branch-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.branch-visual-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

#sibu .branch-visual img {
  object-position: center;
}

#kk .branch-visual img {
  object-position: center;
}

.branch-details {
  display: grid;
  gap: 22px;
  margin: 0;
}

.branch-details div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(104, 98, 91, 0.24);
}

dt {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: #393532;
}

dd a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.phone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--ink);
  background: var(--gold);
}

.social-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: currentColor;
}

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

.department-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  align-content: start;
}

.department-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.department-card h3 span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.department-card p,
.department-details {
  margin: 0;
}

.department-card p a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.department-details {
  display: grid;
  gap: 12px;
}

.department-details div {
  display: grid;
  gap: 3px;
}

.department-details dt {
  color: var(--muted);
  font-size: 0.72rem;
}

.department-details dd {
  color: var(--ink);
  font-size: 0.95rem;
}

.department-details dd a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.map-link {
  width: fit-content;
  color: var(--ink);
  border-color: var(--ink);
}

.map-preview {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--ash);
  border: 1px solid var(--line);
}

.map-preview iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

.contact-band {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--charcoal);
}

.contact-band h2,
.contact-band p {
  width: min(760px, 100%);
}

.contact-band p {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 4vw, 56px);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 840px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 720px;
    align-items: end;
  }

  .intro,
  .branches,
  .store-strip {
    grid-template-columns: 1fr;
  }

  .store-strip img {
    height: 260px;
  }

  .branch-card {
    min-height: auto;
  }

  .department-grid {
    grid-template-columns: 1fr;
  }

  .branch-visual-pair {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
  }

  .branch-visual-pair img {
    height: 260px;
  }
}

@media (max-width: 560px) {
  .nav-links {
    font-size: 0.86rem;
  }

  h1 {
    font-size: 3rem;
  }

  .branch-details div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .button,
  .map-link {
    width: 100%;
  }

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