:root {
  --ink: #171615;
  --muted: #67625c;
  --paper: #f8f5ef;
  --white: #ffffff;
  --stone: #d8d0c3;
  --chrome: #d7dde0;
  --teal: #0f5b5f;
  --teal-dark: #0a3d40;
  --sand: #b99c75;
  --gold: #b99c75;
  --line: rgba(23, 22, 21, 0.12);
  --shadow: 0 24px 80px rgba(24, 35, 38, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(248, 245, 239, 0.94);
  box-shadow: 0 12px 40px rgba(23, 22, 21, 0.08);
  backdrop-filter: blur(18px);
}

.subpage .site-header {
  position: sticky;
  color: var(--ink);
  background: rgba(248, 245, 239, 0.96);
  box-shadow: 0 12px 40px rgba(23, 22, 21, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 310px;
}

.brand-logo {
  max-width: 280px;
  height: auto;
  object-fit: contain;
  padding: 4px;
  transition: opacity 220ms ease;
}

.brand-logo.logo-light {
  display: none;
}

.brand-logo.logo-dark {
  display: block;
}

/* On homepage, when header is not scrolled and not open, show light logo and hide dark logo */
body:not(.subpage) .site-header:not(.is-scrolled):not(.is-open) .brand-logo.logo-dark {
  display: none;
}

body:not(.subpage) .site-header:not(.is-scrolled):not(.is-open) .brand-logo.logo-light {
  display: block;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  letter-spacing: 0;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.74;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  opacity: 0.86;
}

.main-nav a:hover {
  opacity: 1;
}

.main-nav a[aria-current="page"],
.dropdown.is-current .dropdown-trigger {
  color: var(--teal);
  opacity: 1;
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  cursor: pointer;
  opacity: 0.86;
  transition: opacity 220ms ease;
}

.dropdown-trigger:hover {
  opacity: 1;
}

.dropdown-trigger::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4.5px solid currentColor;
  opacity: 0.8;
  transition: transform 220ms ease;
}

.dropdown.is-active .dropdown-trigger::after,
.dropdown:hover .dropdown-trigger::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-width: 210px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  z-index: 100;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.dropdown-menu a {
  padding: 10px 18px;
  color: var(--ink) !important;
  font-weight: 700;
  font-size: 13.5px;
  opacity: 0.86;
  white-space: nowrap;
  transition: opacity 180ms ease, background 180ms ease, color 180ms ease;
  display: block;
  text-align: left;
}

.dropdown-menu a:hover {
  opacity: 1 !important;
  background: var(--paper);
  color: var(--teal) !important;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: end;
}

.header-socials {
  display: flex;
  gap: 10px;
}

.header-socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.8;
  transition: all 220ms ease;
}

.header-socials a:hover {
  opacity: 1;
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.header-call {
  padding: 11px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  color: var(--white);
}

.hero picture {
  position: absolute;
  inset: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 18, 20, 0.84), rgba(6, 18, 20, 0.46) 48%, rgba(6, 18, 20, 0.14)),
    linear-gradient(0deg, rgba(6, 18, 20, 0.5), rgba(6, 18, 20, 0.04) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  padding: 190px 0 120px clamp(18px, 7vw, 96px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

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

.hero-text {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 42px;
  z-index: 1;
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px 26px;
  width: min(440px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.hero-panel strong {
  justify-self: end;
  font-size: 14px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--paper);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 5px;
  color: var(--muted);
}

.section {
  padding: clamp(72px, 10vw, 124px) clamp(18px, 5vw, 72px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(200px, 0.52fr) minmax(300px, 1fr);
  gap: clamp(28px, 7vw, 100px);
  align-items: end;
  margin-bottom: 42px;
}

.section-head.compact {
  grid-template-columns: 1fr;
  max-width: 720px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.section-head p:not(.eyebrow),
.split-copy p,
.contact-copy p,
.work-card p,
.solution-grid p,
.process-list p,
.site-footer p {
  color: var(--muted);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.solution-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(23, 22, 21, 0.07);
}

.solution-grid img {
  height: 300px;
}

.solution-grid h3,
.solution-grid p {
  padding-inline: 22px;
}

.solution-grid h3 {
  margin-top: 22px;
}

.solution-grid p {
  padding-bottom: 24px;
}

.split-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 700px;
  background: #e8e3d9;
}

.split-section.alternate {
  grid-template-columns: 0.95fr 1.05fr;
  background: var(--white);
}

.split-section.alternate .split-media {
  grid-column: 2;
}

.split-section.alternate .split-copy {
  grid-column: 1;
  grid-row: 1;
}

.split-media {
  min-height: 520px;
}

.split-copy {
  align-self: center;
  padding: clamp(48px, 7vw, 90px);
}

.split-copy h2 {
  margin-bottom: 24px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 14px;
  height: 2px;
  background: var(--teal);
  content: "";
}

.work {
  background: var(--ink);
  color: var(--white);
}

.work .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.work-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: #253235;
}

.work-card.large {
  grid-row: span 2;
  min-height: 738px;
}

.work-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 9, 10, 0.72), rgba(3, 9, 10, 0.02) 55%);
  content: "";
}

.work-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 26px;
}

.work-card span {
  color: var(--chrome);
  font-size: 13px;
  font-weight: 800;
}

.work-card h3 {
  margin-top: 8px;
  color: var(--white);
  font-size: 28px;
}

.work-card p {
  max-width: 360px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0;
  margin: 0;
  background: var(--line);
  list-style: none;
  border: 1px solid var(--line);
}

.process-list li {
  min-height: 270px;
  padding: 26px;
  background: var(--paper);
}

.process-list span {
  display: inline-block;
  margin-bottom: 58px;
  color: var(--teal);
  font-weight: 900;
}

.testimonials {
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-grid article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(23, 22, 21, 0.06);
}

.testimonial-grid p {
  margin-bottom: 34px;
  color: var(--ink);
  font-size: 19px;
}

.testimonial-grid strong,
.testimonial-grid span {
  display: block;
}

.testimonial-grid span {
  margin-top: 5px;
  color: var(--muted);
}

.faq {
  background: var(--paper);
}

.faq .section-head.compact {
  margin-inline: auto;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin-inline: auto;
}

/* Card logos and payment styles */
.card-logos {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  vertical-align: middle;
  margin-left: 8px;
}

.payment-icon {
  height: 14px;
  width: auto;
  vertical-align: middle;
  opacity: 0.95;
}

.payment-icon.visa {
  fill: currentColor;
}

.footer-brand .card-logos {
  margin-left: 0;
  margin-top: 4px;
}

.footer-brand .payment-icon.visa {
  fill: #fff;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.faq-list p {
  max-width: 760px;
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.quote-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  padding: clamp(54px, 8vw, 84px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--teal-dark);
}

blockquote {
  max-width: 960px;
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
  background: var(--white);
}

.contact-copy h2 {
  margin-bottom: 22px;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 22, 21, 0.18);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.lead-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.45fr) repeat(3, minmax(150px, 0.6fr));
  gap: clamp(24px, 4vw, 54px);
  padding: 36px clamp(18px, 5vw, 72px);
  background: #10100f;
  color: var(--white);
}

.site-footer p {
  max-width: 460px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.footer-logo {
  display: block;
  width: min(280px, 100%);
  height: auto;
  object-fit: contain;
  object-position: left center;
  padding: 4px;
}

.footer-brand p {
  margin-block: 16px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--gold);
  color: #14110d;
  font-weight: 900;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-col strong {
  color: var(--white);
  font-size: 16px;
}

.footer-col a,
.footer-col span {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.45;
}

.footer-col a {
  font-weight: 800;
}

.footer-col a:hover {
  color: var(--white);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--white);
  background: #168b55;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: end;
  padding: clamp(86px, 12vw, 150px) clamp(18px, 5vw, 72px) clamp(56px, 8vw, 92px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(15, 91, 95, 0.1), transparent 42%),
    var(--paper);
}

.page-hero h1 {
  max-width: 880px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(46px, 7vw, 86px);
}

.page-hero > p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  min-height: 680px;
  background: var(--white);
}

.about-image {
  min-height: 460px;
}

.about-copy {
  align-self: center;
  padding: clamp(42px, 7vw, 86px);
}

.about-copy h2 {
  margin-bottom: 22px;
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
}

.mission-section {
  background: var(--ink);
  color: var(--white);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.mission-grid article {
  min-height: 380px;
  padding: clamp(28px, 5vw, 54px);
  background: #141817;
}

.mission-grid h2 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(34px, 4.4vw, 56px);
}

.mission-grid p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 19px;
}

.about-detail {
  background: var(--white);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.detail-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.detail-grid p {
  color: var(--muted);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.value-grid article {
  min-height: 260px;
  padding: 26px;
  background: var(--paper);
}

.value-grid span {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--teal);
  font-weight: 900;
}

.value-grid p {
  color: var(--muted);
}

.why-us {
  background: var(--paper);
}

.gallery-section {
  background: var(--ink);
}

.category-stack {
  display: grid;
  gap: clamp(44px, 7vw, 72px);
}

.gallery-category {
  min-width: 0;
}

.category-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(260px, 0.35fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 22px;
  color: var(--white);
}

.category-head h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(32px, 4.4vw, 56px);
}

.category-head > span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.category-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 4px 20px;
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(255, 255, 255, 0.36) transparent;
}

.rail-card {
  position: relative;
  flex: 0 0 clamp(240px, 28vw, 360px);
  height: clamp(330px, 42vw, 470px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #263235;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  scroll-snap-align: start;
}

.rail-card img {
  transition: transform 240ms ease;
}

.rail-card:hover img {
  transform: scale(1.035);
}

.rail-card-label {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 30px 18px 18px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(23, 22, 21, 0.92) 0%, rgba(23, 22, 21, 0.4) 60%, transparent 100%);
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  pointer-events: none;
  transition: transform 240ms ease, background 240ms ease;
}

.rail-card:hover .rail-card-label {
  background: linear-gradient(0deg, rgba(15, 91, 95, 0.95) 0%, rgba(15, 91, 95, 0.4) 60%, transparent 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 290px;
  gap: 18px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #243235;
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 9, 10, 0.74), rgba(3, 9, 10, 0.04) 62%);
  content: "";
}

.gallery-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 24px;
  color: var(--white);
}

.gallery-card span {
  color: var(--chrome);
  font-size: 13px;
  font-weight: 800;
}

.gallery-card h3 {
  margin: 7px 0 0;
  color: var(--white);
  font-size: 25px;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-button {
    justify-self: end;
    display: grid;
    gap: 7px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
  }

  .menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .main-nav,
  .header-right {
    display: none;
  }

  .main-nav.is-open {
    position: absolute;
    top: 78px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open a {
    padding: 12px;
  }

  .main-nav.is-open .dropdown {
    display: grid;
    gap: 4px;
  }

  .main-nav.is-open .dropdown-trigger {
    padding: 12px;
    width: 100%;
    justify-content: space-between;
  }

  .main-nav.is-open .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    display: none;
    padding-left: 18px;
    min-width: unset;
  }

  .main-nav.is-open .dropdown.is-active .dropdown-menu {
    display: flex;
  }

  .main-nav.is-open .dropdown-menu a {
    padding: 8px 12px;
    font-size: 13.5px;
    white-space: normal;
  }

  .trust-strip,
  .solution-grid,
  .split-section,
  .work-grid,
  .process-list,
  .testimonial-grid,
  .quote-band,
  .contact,
  .page-hero,
  .about-story,
  .mission-grid,
  .detail-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .split-section.alternate .split-media {
    grid-column: auto;
  }

  .split-section.alternate .split-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

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

  .category-head {
    grid-template-columns: 1fr;
  }

  .gallery-card.wide {
    grid-column: span 2;
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .work-card.large {
    grid-row: auto;
    min-height: 420px;
  }

  .process-list li {
    min-height: 220px;
  }

  .process-list span {
    margin-bottom: 30px;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand-logo {
    max-width: 180px;
    height: auto;
    padding: 4px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 900px;
  }

  .hero-content {
    width: 100%;
    padding: 140px 18px 320px;
  }

  .hero-panel {
    right: 18px;
    bottom: 26px;
    left: 18px;
    grid-template-columns: 1fr;
  }

  .hero-panel strong {
    justify-self: start;
    margin-bottom: 6px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-actions .button,
  .quote-band .button {
    width: 100%;
  }

  .solution-grid img {
    height: 240px;
  }

  .split-media {
    min-height: 360px;
  }

  .split-copy,
  .section,
  .contact,
  .about-copy {
    padding-inline: 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .category-rail {
    gap: 14px;
  }

  .rail-card {
    flex-basis: min(82vw, 330px);
    height: 390px;
  }

  .gallery-card.wide,
  .gallery-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    width: 200px;
    height: auto;
    object-position: center;
  }

  .footer-col {
    align-items: center;
  }
}

/* Social links styles */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  transition: all 220ms ease;
}

.social-links a:hover {
  color: var(--white);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

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

/* Testimonial Stars & Toggle Expand/Collapse */
.testimonial-grid .stars {
  color: #ffb100;
  font-size: 18px;
  margin-bottom: 12px;
}

.review-extra {
  display: none;
}

.testimonial-grid.is-expanded .review-extra {
  display: block;
}

/* Videos Grid Section */
.videos-section {
  background: var(--paper);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1240px;
  margin-inline: auto;
  margin-top: 40px;
  padding-inline: 20px;
}

.video-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--line);
  background: #000;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  padding: 20px;
  color: var(--white);
  pointer-events: none;
}

.video-card-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
}

.video-card-info span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

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

@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }
}

/* Footer Bottom Credit Bar */
.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 220ms ease;
}

.footer-bottom a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
