:root {
  --dark: #16181c;
  --dark2: #1e2127;
  --red: #e2231a;
  --red-dark: #b81b14;
  --navy: #17356b;
  --teal: #136c6c;
  --cream: #faf7f2;
  --text: #26241f;
  --muted: #6b6459;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(0,0,0,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Kanit', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
}

.brand-name {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: .5px;
}

.brand-tagline {
  display: block;
  font-size: .75rem;
  font-weight: 300;
  color: #9a9a9a;
}

nav.main-nav ul {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

nav.main-nav a {
  color: #e9e9e9;
  font-size: .95rem;
  font-weight: 500;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--red);
  border-color: var(--red);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.55), rgba(10,10,10,.75));
}

.hero-content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 60px 20px;
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: .5px;
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  margin: 0 0 14px;
  font-weight: 700;
  text-shadow: 0 3px 10px rgba(0,0,0,.4);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 640px;
  margin: 0 auto 28px;
  color: #f0f0f0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .15s, box-shadow .15s;
}

.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(226,35,26,.4); }

.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline:hover { background: #fff; color: var(--dark); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(23,53,107,.4); }

/* Sections */
section { padding: 64px 0; }
.section-alt { background: #fff; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 42px;
}

.eyebrow {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: .8rem;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 8px 0 12px;
}

.section-head p { color: var(--muted); }

/* Grid / Cards */
.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s;
}

.card:hover { transform: translateY(-4px); }

.card img { height: 210px; object-fit: cover; width: 100%; }

.card-body { padding: 20px; }
.card-body h3 { margin: 0 0 8px; font-size: 1.15rem; }
.card-body p { margin: 4px 0; color: var(--muted); font-size: .92rem; }

.tag {
  display: inline-block;
  background: rgba(226,35,26,.1);
  color: var(--red);
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* Branch card specifics */
.branch-card .card-body a.map-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--navy);
  font-weight: 600;
  font-size: .9rem;
}
.branch-card .card-body a.map-link:hover { color: var(--red); }

.delivery-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.delivery-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  color: #fff;
  transition: transform .15s, opacity .15s;
}
.delivery-btn:hover { transform: translateY(-2px); opacity: .9; }
.delivery-lineman { background: #06c755; }
.delivery-grab { background: #00b14f; }
.delivery-shopeefood { background: #ee4d2d; }
.delivery-robinhood { background: #543ab4; }

.link-hub {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.link-hub a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: .92rem;
  transition: transform .15s;
}
.link-hub a:hover { transform: translateY(-3px); color: var(--red); }
.link-hub .ic { font-size: 1.3rem; }

@media (max-width: 720px) {
  .link-hub { grid-template-columns: repeat(2, 1fr); }
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery img {
  border-radius: 10px;
  height: 200px;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.gallery img:hover { transform: scale(1.03); }

/* Quick info strip */
.info-strip {
  background: var(--navy);
  color: #fff;
}
.info-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  font-size: .95rem;
}
.info-strip a { font-weight: 600; }
.info-strip a:hover { color: var(--red); }

/* About */
.about-flex {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.about-flex figure { flex: 1 1 380px; margin: 0; }
.about-flex figure img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-copy { flex: 1 1 380px; }
.about-copy h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-top: 0; }
.about-copy ul { margin: 18px 0; }
.about-copy li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  color: var(--text);
}
.about-copy li::before {
  content: "🦐";
  position: absolute;
  left: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
  font-size: 1.02rem;
}
.contact-list .icon {
  background: var(--red);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 320px;
}
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* Footer */
footer.site-footer {
  background: var(--dark);
  color: #cfcfcf;
  padding: 46px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-grid h4 { color: #fff; margin-top: 0; }
.footer-grid a:hover { color: var(--red); }
.social-row { display: flex; gap: 12px; margin-top: 14px; }
.social-row a {
  background: rgba(255,255,255,.1);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 18px;
  text-align: center;
  font-size: .85rem;
  color: #8a8a8a;
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--red), var(--red-dark));
  color: #fff;
  text-align: center;
}
.cta-band h2 { margin-top: 0; }
.cta-band .btn-outline { border-color: #fff; }

/* Responsive */
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  nav.main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--dark2);
    flex-direction: column;
    display: none;
    padding: 10px 20px 20px;
  }
  nav.main-nav.open { display: block; }
  nav.main-nav ul { flex-direction: column; gap: 4px; }
  .nav-toggle { display: block; }
  .grid { grid-template-columns: 1fr; }
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .about-flex { flex-direction: column; }
}
