:root {
  --navy: #071427;
  --navy-mid: #0e2240;
  --navy-soft: #163056;
  --gold: #c4a35a;
  --gold-bright: #e4c98a;
  --gold-dim: rgba(196, 163, 90, 0.18);
  --steel: #6b849c;
  --ink: #141c28;
  --muted: #5b6778;
  --paper: #f6f4f0;
  --paper-2: #ece8e1;
  --white: #ffffff;
  --line: rgba(20, 28, 40, 0.1);
  --shadow: 0 18px 50px rgba(7, 20, 39, 0.12);
  --shadow-lg: 0 28px 70px rgba(7, 20, 39, 0.18);
  --radius: 18px;
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Outfit", "Inter", system-ui, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --num: "Roboto", "Lato", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button,
input {
  font-family: inherit;
}

.num,
.phone,
.gst,
.stat-value,
.contact-card a.phone-link,
.float-panel a span.num,
.topbar .num {
  font-family: var(--num);
  letter-spacing: 0.02em;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
  position: relative;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--navy);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.3rem);
  max-width: 16ch;
}

.section-lead {
  color: var(--muted);
  max-width: 62ch;
  font-size: 1.05rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* Topbar */
.topbar {
  background: var(--navy);
  color: #d7dde8;
  font-size: 0.82rem;
  position: relative;
  z-index: 40;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  min-height: 38px;
  flex-wrap: wrap;
  padding: 8px 0;
}

.topbar a:hover,
.topbar span:hover {
  color: var(--gold-bright);
}

.topbar-left,
.topbar-right {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s;
}

.site-header.is-home {
  position: sticky;
  background: transparent;
  margin-bottom: calc(-1 * var(--header-h));
}

.site-header.is-home .brand span,
.site-header.is-home .nav-link,
.site-header.is-home .drop-toggle,
.site-header.is-home .nav-toggle span {
  color: #fff;
}

.site-header.is-home .nav-toggle span {
  background: #fff;
}

.site-header.is-solid,
.site-header.is-home.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(7, 20, 39, 0.08);
}

.site-header.is-solid .brand span,
.site-header.is-home.is-scrolled .brand span,
.site-header.is-solid .nav-link,
.site-header.is-home.is-scrolled .nav-link,
.site-header.is-solid .drop-toggle,
.site-header.is-home.is-scrolled .drop-toggle {
  color: var(--navy);
}

.brand span {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.site-header.is-solid .brand span,
.site-header.is-home.is-scrolled .brand span {
  text-shadow: none;
}

.site-header.is-solid .nav-toggle span,
.site-header.is-home.is-scrolled .nav-toggle span {
  background: var(--navy);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

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

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 4px;
}

.brand span {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link,
.drop-toggle {
  padding: 10px 12px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: none;
  border: 0;
  cursor: pointer;
  position: relative;
  color: inherit;
  appearance: none;
}

.drop-toggle::after {
  content: "▾";
  font-size: 0.7rem;
  margin-left: 4px;
}

.nav-link:hover,
.drop-toggle:hover,
.nav-link.is-active {
  color: var(--gold) !important;
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.25s var(--ease);
  z-index: 20;
}

.nav-item:hover .dropdown,
.nav-item.open .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--navy) !important;
  font-size: 0.86rem;
  text-transform: none;
  letter-spacing: 0;
}

.dropdown a:hover {
  background: var(--paper);
  color: var(--gold) !important;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.site-header.is-solid .nav-toggle,
.site-header.is-home.is-scrolled .nav-toggle {
  border-color: var(--line);
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--navy);
  transition: 0.25s var(--ease);
}

.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 29px; }

.nav-toggle.is-open span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
}

.hero-slide.is-active {
  opacity: 1;
  animation: kenburns 14s ease forwards;
}

@keyframes kenburns {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 20, 39, 0.55) 0%, rgba(7, 20, 39, 0.72) 48%, rgba(7, 20, 39, 0.88) 100%),
    radial-gradient(circle at 20% 20%, rgba(196, 163, 90, 0.16), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  max-width: 16ch;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.hero-content p {
  max-width: 58ch;
  color: #dce4ef;
  font-size: 1.12rem;
  margin: 8px auto 28px;
}

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

.hero-dots {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 42px;
  height: 4px;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  border-radius: 99px;
}

.hero-dots button.is-active {
  background: var(--gold);
}

.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(7, 20, 39, 0.35);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.hero-nav.prev { left: 18px; }
.hero-nav.next { right: 18px; }

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.spark-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-bright);
  border-radius: 50%;
  opacity: 0;
  animation: spark 3.8s linear infinite;
  box-shadow: 0 0 10px #ffd27a, 0 0 18px #c4a35a;
}

@keyframes spark {
  0% { transform: translateY(20px) scale(0.4); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: translateY(-110vh) scale(1); opacity: 0; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(196, 163, 90, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(196, 163, 90, 0.38);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--navy);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-dark:hover {
  background: var(--navy-soft);
  transform: translateY(-2px);
}

.btn-line {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn-line:hover {
  background: var(--navy);
  color: #fff;
}

/* Page hero */
.page-hero {
  width: 100%;
  min-height: 52vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 20, 39, 0.55), rgba(7, 20, 39, 0.82));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 90px 20px 70px;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.page-hero p {
  color: #d7deea;
  max-width: 60ch;
  margin: 0 auto;
}

/* Cards */
.grid {
  display: grid;
  gap: 22px;
}

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

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-media {
  background: linear-gradient(180deg, #101b2c, #1c2f4a);
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.card-media img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  cursor: zoom-in;
}

.card-body {
  padding: 22px;
}

.card-body h3 {
  font-size: 1.45rem;
}

.card-body p {
  color: var(--muted);
  margin: 0 0 14px;
}

/* Director */
.director {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.director-photo {
  background: #fff;
  border-radius: 24px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.director-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  cursor: zoom-in;
}

.director-copy {
  padding-right: 10px;
}

.quote {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin: 22px 0;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat {
  background: var(--navy);
  color: #fff;
  padding: 28px 22px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.stat::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border: 18px solid rgba(196, 163, 90, 0.12);
  border-radius: 50%;
  right: -30px;
  bottom: -40px;
  animation: spin 18s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-bright);
}

.stat p {
  margin: 6px 0 0;
  color: #c9d3e0;
}

/* Values / why */
.icon-card {
  padding: 28px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}

.icon-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 700;
}

/* Certificates */
.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cert-card {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.cert-card img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  background: #fafafa;
  cursor: zoom-in;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  background: #101b2c;
  border-radius: 16px;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  transition: 0.45s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* Clients */
.client-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.client-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.client-marquee:hover .client-track {
  animation-play-state: paused;
}

.client-chip {
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  font-weight: 600;
  color: var(--navy);
}

.client-grid .client-chip {
  min-width: 0;
}

/* Capabilities list */
.machine-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.machine-list li {
  list-style: none;
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 8px 22px rgba(7, 20, 39, 0.06);
}

ul.machine-list {
  margin: 0;
  padding: 0;
}

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-card,
.map-frame {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.map-frame {
  background: #d7dee8;
  min-height: 460px;
  overflow: hidden;
}

.contact-card {
  padding: 28px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  border-radius: 20px;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list a,
.contact-list p {
  margin: 0;
}

.person {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: #c9d3e0;
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
}

.site-footer p {
  margin: 8px 0;
}

.footer-grid h4 {
  margin-bottom: 12px;
}

.site-footer a:hover {
  color: var(--gold-bright);
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 5px;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.credit a {
  color: var(--gold-bright);
  text-decoration: underline;
}

/* Floating buttons */
.float-stack {
  position: fixed;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-stack.left { left: 16px; bottom: 18px; }
.float-stack.right { right: 16px; bottom: 18px; }

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: 0.25s var(--ease);
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.04);
}

.float-btn.call { background: #1f7a4d; }
.float-btn.wa { background: #25d366; }
.float-btn.map { background: #c0392b; }

.float-btn small {
  position: absolute;
  bottom: -7px;
  right: -4px;
  background: var(--navy);
  color: #fff;
  font-size: 0.62rem;
  font-family: var(--num);
  border-radius: 99px;
  padding: 2px 5px;
}

.float-btn[title]:hover::after {
  content: attr(title);
  position: absolute;
  white-space: nowrap;
  background: var(--navy);
  color: #fff;
  font-size: 0.72rem;
  padding: 6px 10px;
  border-radius: 8px;
  bottom: 12px;
  z-index: 2;
}

.float-stack.left .float-btn[title]:hover::after {
  left: 62px;
}

.float-stack.right .float-btn[title]:hover::after {
  right: 62px;
}

.float-group {
  position: relative;
}

.float-panel {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: 0.25s var(--ease);
  min-width: 210px;
}

.float-stack.left .float-panel {
  left: 64px;
  transform: translateX(-8px);
}

.float-stack.right .float-panel {
  right: 64px;
}

.float-group:hover .float-panel,
.float-group.open .float-panel {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.float-panel a {
  background: #fff;
  color: var(--navy);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  display: flex;
  flex-direction: column;
}

.float-panel a span {
  color: var(--muted);
  font-size: 0.75rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 10, 20, 0.88);
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 12px;
  background: #0b1524;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.8s var(--ease) forwards;
}

.reveal-d1 { animation-delay: 0.12s; }
.reveal-d2 { animation-delay: 0.24s; }
.reveal-d3 { animation-delay: 0.36s; }

@keyframes rise {
  to { opacity: 1; transform: none; }
}

.dark-band {
  background: var(--navy);
  color: #d5deea;
}

.dark-band .section-title,
.dark-band .section-head h2,
.dark-band .section-head h3 {
  color: #fff;
}

.dark-band .icon-card h3 {
  color: var(--navy);
}

.dark-band .icon-card p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.split img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  background: #101b2c;
  border-radius: 20px;
  cursor: zoom-in;
}

.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.badge {
  border: 1px solid rgba(196, 163, 90, 0.4);
  color: var(--gold);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-band {
  background:
    linear-gradient(120deg, rgba(7, 20, 39, 0.88), rgba(7, 20, 39, 0.72)),
    url("https://images.unsplash.com/photo-1537462715879-360eeb61a0ad?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: #fff;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
}

/* Service page extras */
.service-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.service-points li {
  list-style: none;
  padding-left: 28px;
  position: relative;
}

.service-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 10px;
}

/* Responsive */
@media (max-width: 980px) {
  .grid-3,
  .grid-4,
  .director,
  .cert-grid,
  .gallery-grid,
  .stats,
  .contact-wrap,
  .footer-grid,
  .split,
  .machine-list {
    grid-template-columns: 1fr 1fr;
  }

  .brand span {
    font-size: 0.78rem;
    white-space: normal;
    max-width: 160px;
    line-height: 1.2;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
  }

  .site-header.is-solid .nav-toggle,
  .site-header.is-home.is-scrolled .nav-toggle {
    background: var(--navy);
  }

  .site-header.is-solid .nav-toggle span,
  .site-header.is-home.is-scrolled .nav-toggle span {
    background: #fff;
  }

  .brand span {
    font-size: 0.7rem;
    max-width: 130px;
    white-space: normal;
    line-height: 1.15;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    right: 16px;
    left: 16px;
    background: #fff;
    color: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: none;
    max-height: calc(100vh - 110px);
    overflow: auto;
    z-index: 70;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-link,
  .drop-toggle {
    color: var(--navy) !important;
    text-align: left;
    width: 100%;
  }

  .site-header.is-home .nav.is-open {
    color: var(--navy);
  }

  .dropdown {
    position: static;
    opacity: 1;
    pointer-events: none;
    transform: none;
    display: none;
    box-shadow: none;
    background: var(--paper);
    margin-top: 6px;
  }

  .nav-item.open .dropdown {
    display: block;
    pointer-events: auto;
  }

  .topbar {
    display: none;
  }

  .hero-nav {
    display: none;
  }
}

@media (max-width: 700px) {
  .grid-3,
  .grid-4,
  .director,
  .cert-grid,
  .gallery-grid,
  .stats,
  .contact-wrap,
  .footer-grid,
  .split,
  .machine-list,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .hero,
  .hero-content {
    min-height: 92vh;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 320px);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }

  .float-btn[title]:hover::after {
    display: none;
  }

  .card-media img,
  .gallery-item img {
    height: 210px;
  }
}
