/* ===== VK Soho Offices — Brand Styles ===== */
@font-face {
  font-family: "UTM Avo";
  src: url("assets/fonts/UTMAvo.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "UTM Avo";
  src: url("assets/fonts/UTMAvoBold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
:root {
  --navy: #113952;
  --navy-dark: #0b2738;
  --gold: #B99667;
  --gold-light: #d7bd99;
  --bg: #ffffff;
  --bg-soft: #f5f3ef;
  --text: #1d2b33;
  --muted: #5b6b75;
  --radius: 14px;
  --shadow: 0 10px 40px rgba(17, 57, 82, 0.12);
  --font-head: "UTM Avo", "Montserrat", "Segoe UI", sans-serif;
  --font-body: "Be Vietnam Pro", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { width: min(1160px, 90%); margin: 0 auto; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.2; font-weight: 700; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--navy); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #a07f50; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-ghost:hover { background: #fff; color: var(--navy); }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 18px rgba(17,57,82,0.07);
  transition: transform 0.3s ease;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand-logo { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-family: var(--font-head); font-weight: 500; font-size: 0.95rem; color: var(--navy); transition: color 0.2s; }
.nav a:hover { color: var(--gold); }
.nav-cta { background: var(--navy); color: #fff !important; padding: 9px 22px; border-radius: 50px; }
.nav-cta:hover { background: var(--gold); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: 0.3s; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, rgba(11,39,56,0.92) 0%, rgba(17,57,82,0.82) 100%),
    url("assets/img/office-4.jpg") center/cover no-repeat;
  color: #fff; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -10%; top: -10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(185,150,103,0.30), transparent 70%);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 2; max-width: 760px; padding-top: 80px; }
.hero-eyebrow { color: var(--gold-light); letter-spacing: 4px; font-weight: 600; font-family: var(--font-head); margin-bottom: 14px; }
.hero-title { font-size: clamp(2.6rem, 6vw, 4.6rem); color: #fff; font-weight: 800; }
.hero-slogan { font-size: clamp(1.2rem, 2.5vw, 1.7rem); color: var(--gold-light); font-style: italic; margin: 12px 0 22px; font-family: var(--font-head); }
.hero-sub { font-size: 1.08rem; color: rgba(255,255,255,0.88); max-width: 620px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.tag {
  display: inline-block; background: var(--bg-soft); color: var(--gold);
  font-family: var(--font-head); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 2px; text-transform: uppercase; padding: 7px 18px; border-radius: 50px; margin-bottom: 18px;
}
.tag-light { background: rgba(255,255,255,0.15); color: var(--gold-light); }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.lead { font-size: 1.1rem; color: var(--muted); }
.lead.center { text-align: center; margin-top: 16px; }

/* ===== About ===== */
.about { background: var(--bg-soft); }
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 50px; }
.pillar { background: #fff; border-radius: var(--radius); padding: 40px; text-align: center; box-shadow: var(--shadow); transition: transform 0.25s; }
.pillar:hover { transform: translateY(-6px); }
.pillar img { height: 60px; width: auto; margin: 0 auto 20px; object-fit: contain; }
.pillar h3 { color: var(--navy); margin-bottom: 10px; }
.pillar p { color: var(--muted); }

/* ===== VKCOWORK ===== */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 70px; }
.feature-card {
  background: #fff; border: 1px solid #eee; border-radius: var(--radius); padding: 32px 24px;
  transition: all 0.25s; border-top: 4px solid var(--gold);
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.feature-icon { font-size: 2.4rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 0.96rem; }

/* Gallery */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; margin-bottom: 70px;
}
.gallery figure { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px;
  background: linear-gradient(transparent, rgba(11,39,56,0.85));
  color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
}
.gallery .g-tall { grid-row: span 2; }
.gallery .g-wide { grid-column: span 2; }

.audience { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 50px; text-align: center; }
.audience h3 { color: var(--gold-light); margin-bottom: 30px; }
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-bottom: 36px; }
.audience-item { background: rgba(255,255,255,0.06); border-radius: var(--radius); padding: 28px; text-align: left; }
.audience-item strong { color: var(--gold-light); font-size: 1.15rem; font-family: var(--font-head); display: block; margin-bottom: 8px; }
.audience-item p { color: rgba(255,255,255,0.82); }

/* ===== VKTALK ===== */
.vktalk { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); color: #fff; }
.vktalk-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: center; }
.vktalk-text h2 { color: #fff; margin-bottom: 20px; }
.vktalk-text p { color: rgba(255,255,255,0.85); margin-bottom: 18px; }
.vktalk-text .btn { margin-top: 12px; }
.vktalk-media img { border-radius: var(--radius); box-shadow: var(--shadow); margin: 0 auto; max-height: 320px; width: auto; }

/* ===== Why / Stats ===== */
.why { background: var(--bg-soft); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.stat { text-align: center; background: #fff; border-radius: var(--radius); padding: 40px 20px; box-shadow: var(--shadow); }
.stat-num { display: block; font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--gold); }
.stat-label { color: var(--muted); font-weight: 500; }

/* ===== Contact ===== */
.contact-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 0 auto;
}
.cc {
  display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center;
  background: #fff; border: 1px solid #ece8e0; border-radius: var(--radius); padding: 28px 18px;
  box-shadow: var(--shadow); transition: all 0.25s ease; border-bottom: 4px solid var(--gold);
}
.cc:hover { transform: translateY(-5px); border-bottom-color: var(--navy); }
.cc-ico { font-size: 2rem; }
.cc-label { font-family: var(--font-head); font-weight: 700; color: var(--navy); }
.cc-val { color: var(--muted); font-size: 0.95rem; word-break: break-word; }

/* ===== Footer ===== */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.8); padding-top: 60px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand img { height: 50px; width: auto; margin-bottom: 16px; background: #fff; padding: 8px 12px; border-radius: 8px; }
.footer-links h4 { color: var(--gold-light); margin-bottom: 16px; font-size: 1rem; }
.footer-links a { display: block; color: rgba(255,255,255,0.75); margin-bottom: 10px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; text-align: center; font-size: 0.9rem; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery .g-tall { grid-row: span 1; }
  .gallery .g-wide { grid-column: span 2; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .vktalk-inner { grid-template-columns: 1fr; }
  .vktalk-media { order: -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav {
    position: fixed; top: 74px; right: 0; width: 75%; height: calc(100vh - 74px);
    flex-direction: column; align-items: flex-start; gap: 0; background: #fff;
    padding: 30px; transform: translateX(100%); transition: transform 0.3s ease; box-shadow: var(--shadow);
  }
  .nav.open { transform: translateX(0); }
  .nav a { padding: 14px 0; width: 100%; border-bottom: 1px solid #f0ece5; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .section { padding: 70px 0; }
  .pillars, .features, .stats, .audience-grid, .form-row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery .g-wide { grid-column: span 1; }
  .contact-cards { grid-template-columns: 1fr; }
  .audience { padding: 36px 24px; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ===== Services cards ===== */
.service-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.svc-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.25s; display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px); }
.svc-img { height: 170px; background-size: cover; background-position: center; }
.svc-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.svc-body p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.svc-link { color: var(--gold); font-family: var(--font-head); font-weight: 600; margin-top: 14px; }

/* ===== About ===== */
.about { background: var(--bg-soft); }
.about-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; max-height: 440px; }
.about-text h2 { margin-bottom: 18px; }
.about-text p { color: var(--muted); margin-bottom: 14px; }
.about-slogan { color: var(--navy) !important; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; }
.about-text .audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 22px; }
.about-text .audience-item { background: #fff; border-radius: 12px; padding: 20px; border-left: 4px solid var(--gold); }
.about-text .audience-item strong { color: var(--navy); font-family: var(--font-head); display: block; margin-bottom: 6px; }
.about-text .audience-item p { margin: 0; font-size: 0.92rem; }

/* ===== Amenities ===== */
.amenity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.amenity {
  display: flex; align-items: center; gap: 12px; background: var(--bg-soft); border-radius: 12px;
  padding: 18px 20px; font-family: var(--font-head); font-weight: 500; color: var(--navy);
}
.amenity span { font-size: 1.5rem; }
.amenity-note { text-align: center; color: var(--muted); margin-top: 26px; font-size: 0.92rem; }

/* ===== Pricing ===== */
.pricing { background: var(--bg-soft); }
.price-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 36px; }
.ptab {
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; padding: 12px 24px;
  border: 2px solid var(--navy); background: transparent; color: var(--navy); border-radius: 50px; cursor: pointer; transition: 0.2s;
}
.ptab:hover { background: rgba(17,57,82,0.08); }
.ptab.active { background: var(--navy); color: #fff; }
.ptab-panel { display: none; animation: fade 0.3s ease; }
.ptab-panel.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.price-h { text-align: center; color: var(--navy); margin-bottom: 24px; font-size: 1.5rem; }
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.price-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 640px; }
.price-table th, .price-table td { padding: 14px 16px; text-align: center; border-bottom: 1px solid #eee; font-size: 0.94rem; }
.price-table thead th { background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 600; }
.price-table th small { font-weight: 400; opacity: 0.8; }
.price-table tbody td:first-child, .price-table tbody th:first-child { text-align: left; font-weight: 600; color: var(--navy); background: #faf8f4; }
.price-table .row-price td { background: #f3ede2; color: var(--gold); font-family: var(--font-head); font-weight: 700; font-size: 1rem; }
.price-table .row-price td:first-child { color: var(--navy); }
.price-note { text-align: center; color: var(--muted); margin-top: 18px; font-size: 0.88rem; }

/* Virtual office cards */
.vo-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 820px; margin: 0 auto; }
.vo-card { background: #fff; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); position: relative; border-top: 5px solid var(--gold); }
.vo-card.featured { border-top-color: var(--navy); }
.vo-badge { position: absolute; top: -14px; right: 24px; background: var(--navy); color: #fff; font-family: var(--font-head); font-size: 0.78rem; font-weight: 600; padding: 6px 16px; border-radius: 50px; }
.vo-head { text-align: center; border-bottom: 1px solid #eee; padding-bottom: 18px; margin-bottom: 18px; }
.vo-head h4 { color: var(--navy); font-size: 1.2rem; letter-spacing: 1px; }
.vo-price { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--gold); margin-top: 8px; }
.vo-price span { font-size: 0.95rem; font-weight: 500; color: var(--muted); margin-left: 4px; }
.vo-list { list-style: none; }
.vo-list li { padding: 8px 0 8px 28px; position: relative; color: var(--text); font-size: 0.94rem; }
.vo-list li.yes::before { content: "✓"; position: absolute; left: 0; color: #2e9e5b; font-weight: 700; }
.vo-list li.no::before { content: "✕"; position: absolute; left: 0; color: #c0392b; }
.vo-list li.no { color: var(--muted); }

/* ===== Gallery section bg ===== */
.gallery-sec { background: #fff; }

/* Contact address */
.contact-address { text-align: center; color: var(--navy); font-family: var(--font-head); font-weight: 600; margin-bottom: 30px; }
.footer-addr { font-size: 0.85rem; opacity: 0.8; margin-top: 8px; }

/* ===== Responsive additions ===== */
@media (max-width: 900px) {
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .vo-cards { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .service-cards { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: 1fr; }
  .about-text .audience-grid { grid-template-columns: 1fr; }
}

/* ===== Floating contact ===== */
.float-contact { position: fixed; right: 22px; bottom: 22px; z-index: 200; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.fc-options { display: flex; flex-direction: column; gap: 10px; opacity: 0; transform: translateY(12px) scale(0.95); pointer-events: none; transition: all 0.25s ease; }
.float-contact.open .fc-options { opacity: 1; transform: none; pointer-events: auto; }
.fc-btn {
  display: flex; align-items: center; gap: 8px; background: #fff; color: var(--navy);
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; padding: 10px 16px;
  border-radius: 50px; box-shadow: var(--shadow); white-space: nowrap; transition: transform 0.2s;
}
.fc-btn:hover { transform: translateX(-4px); }
.fc-btn span { font-size: 1.1rem; }
.fc-call { background: var(--gold); color: #fff; }
.fc-zalo { background: #0068ff; color: #fff; }
.fc-wa { background: #25d366; color: #fff; }
.fc-main {
  width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--navy); color: #fff; font-size: 1.5rem; box-shadow: 0 8px 24px rgba(17,57,82,0.4);
  display: flex; align-items: center; justify-content: center; transition: transform 0.25s, background 0.25s;
  animation: pulse 2.2s infinite;
}
.fc-main:hover { transform: scale(1.08); }
.float-contact.open .fc-main { background: var(--gold); animation: none; }
.fc-ic-close { display: none; }
.float-contact.open .fc-ic-open { display: none; }
.float-contact.open .fc-ic-close { display: inline; }
@keyframes pulse {
  0% { box-shadow: 0 8px 24px rgba(17,57,82,0.4), 0 0 0 0 rgba(185,150,103,0.5); }
  70% { box-shadow: 0 8px 24px rgba(17,57,82,0.4), 0 0 0 16px rgba(185,150,103,0); }
  100% { box-shadow: 0 8px 24px rgba(17,57,82,0.4), 0 0 0 0 rgba(185,150,103,0); }
}

/* ===== Hero badge & accent ===== */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; letter-spacing: 1.5px;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(185,150,103,0.45); animation: badgePulse 2.4s infinite;
}
@keyframes badgePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.04); } }
.hero-title .accent { color: var(--gold-light); }

/* ===== Map ===== */
.map-wrap { margin-top: 44px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); line-height: 0; }
.map-wrap iframe { display: block; width: 100%; }

/* ===== Social row (footer) ===== */
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12); border-radius: 50%; font-size: 1.2rem; transition: background 0.2s, transform 0.2s;
}
.social-row a:hover { background: var(--gold); transform: translateY(-3px); }

/* ===== Brand icon colors (contact cards) ===== */
.cc-ico { display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
.cc-ico i { font-size: 1.9rem; }
.cc-ico.ico-navy i { color: var(--navy); }
.cc-ico.ico-gold i { color: var(--gold); }
.cc-ico.ico-wa i { color: #25D366; }
.cc-ico.ico-fb i { color: #1877F2; }
.cc-ico.ico-viber i { color: #7360F2; }
.cc-ico.ico-zalo svg { display: block; border-radius: 9px; }
/* Instagram gradient */
.cc-ico.ico-ig i {
  background: linear-gradient(45deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
/* amenity icons */
.amenity span { color: var(--gold); display: inline-flex; width: 30px; justify-content: center; }
.amenity span i { font-size: 1.35rem; }
/* float contact icons */
.fc-btn span i, .fc-main i { font-size: 1.15rem; }
.fc-main i { font-size: 1.4rem; }
/* svc link arrow */
.svc-link i { margin-left: 6px; transition: transform 0.2s; }
.svc-card:hover .svc-link i { transform: translateX(4px); }

/* Kakao & WeChat brand icons */
.cc-ico.ico-kakao { width: 44px; height: 44px; background: #FEE500; border-radius: 12px; }
.cc-ico.ico-kakao i { color: #3C1E1E; font-size: 1.4rem; }
.cc-ico.ico-wechat i { color: #07C160; }
.contact-address i { color: var(--gold); margin-right: 6px; }

/* Hero VKCOWORK logo */
.hero-logo { height: 64px; width: auto; margin-bottom: 20px; }
/* Two addresses */
.address-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 40px; margin-bottom: 30px; }
.address-row .contact-address { margin-bottom: 0; }
/* Footer white logo (no box) */
.footer-brand img { height: 52px; width: auto; background: none; padding: 0; border-radius: 0; margin-bottom: 16px; }
@media (max-width: 680px) { .hero-logo { height: 50px; } }

/* ===== Gallery grouped by space (3 rows) ===== */
.gallery-group { margin-bottom: 48px; }
.gallery-group:last-child { margin-bottom: 0; }
.gallery-cat { color: var(--navy); font-size: 1.35rem; display: flex; align-items: center; gap: 10px; }
.gallery-cat i { color: var(--gold); }
.gallery-desc { color: var(--muted); margin: 4px 0 18px; }
.gallery-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-row figure { margin: 0; height: 240px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery-row img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-row figure:hover img { transform: scale(1.06); }

/* Footer logo box (dark navy logo on white) */
.footer-brand img.footer-logo-box { background: #fff; padding: 10px 16px; border-radius: 10px; height: 66px; width: auto; display: inline-block; }

@media (max-width: 900px) {
  .gallery-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .gallery-row { grid-template-columns: 1fr 1fr; }
  .gallery-row figure { height: 160px; }
}
