:root {
  --navy: #071a3d;
  --navy-2: #0b244f;
  --gold: #d4af37;
  --gold-dark: #ad861c;
  --white: #ffffff;
  --light: #f6f7fb;
  --line: #dce2ee;
  --text: #14213d;
  --muted: #637083;
  --accent: #0ea5e9;
  --success: #12805c;
  --shadow: 0 18px 45px rgba(7, 26, 61, 0.14);
  --radius: 8px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.menu-active,
body.dialog-active {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.72);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--gold);
  color: var(--navy);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.narrow {
  max-width: 850px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(7, 26, 61, 0.96);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.65);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #eff4fb);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name,
.brand-subtitle {
  display: block;
}

.brand-name {
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
}

.brand-subtitle {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  line-height: 1.3;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  gap: 4px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-panel {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  display: grid;
  gap: 1rem;
  padding: 1rem 16px 1.2rem;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-header.menu-open .header-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-nav,
.header-actions {
  display: grid;
  gap: 0.45rem;
}

.site-nav a {
  display: block;
  padding: 0.82rem 0.85rem;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.52rem;
  min-height: 46px;
  padding: 0.82rem 1.05rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background-color: var(--gold);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  transition: transform 180ms ease, background-color 180ms ease;
}

.whatsapp-button:hover {
  background-color: #e3c24f;
  color: var(--navy);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-small {
  min-height: 40px;
  padding: 0.66rem 0.9rem;
  font-size: 0.9rem;
}

.btn-gold {
  background: linear-gradient(180deg, #e8c85a, var(--gold));
  color: #071a3d;
  box-shadow: 0 12px 26px rgba(212, 175, 55, 0.24);
}

.btn-gold:hover {
  background: linear-gradient(180deg, #f1d574, #d4af37);
}

.btn-light {
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
}

.btn-light:hover {
  background: var(--white);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-dark {
  border-color: rgba(7, 26, 61, 0.28);
  color: var(--navy);
  background: var(--white);
}

.btn-outline-dark:hover {
  border-color: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 26, 61, 0.98) 0%, rgba(7, 26, 61, 0.9) 43%, rgba(7, 26, 61, 0.55) 100%),
    linear-gradient(180deg, rgba(7, 26, 61, 0.18), rgba(7, 26, 61, 0.92));
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(212, 175, 55, 0.26), transparent 34%),
    radial-gradient(circle at 70% 74%, rgba(14, 165, 233, 0.2), transparent 34%),
    linear-gradient(135deg, #071a3d, #0b244f 48%, #111827);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
  padding: 3rem 0 2.65rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-size: 2.62rem;
  line-height: 0.98;
  font-weight: 900;
}

.hero-subtitle {
  margin: 1rem 0 0;
  color: var(--gold);
  font-size: 1.18rem;
  line-height: 1.35;
  font-weight: 800;
}

.hero-copy {
  max-width: 620px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.2rem 0 0;
}

.hero-badges span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.36rem 0.55rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 420px;
  margin-top: 1.25rem;
}

.trust-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  gap: 0;
  border-left: 1px solid var(--line);
}

.trust-item {
  padding: 1.15rem 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.trust-item strong {
  color: var(--navy);
  font-size: 1.04rem;
  line-height: 1.25;
}

.trust-item span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 4.7rem 0;
  background: var(--white);
}

.section-light {
  background: var(--light);
}

.section-navy {
  background:
    linear-gradient(135deg, rgba(7, 26, 61, 0.97), rgba(11, 36, 79, 0.94)),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.22), transparent 38%);
  color: var(--white);
}

.section-contact {
  background:
    linear-gradient(180deg, #ffffff, #f6f7fb);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.split-layout h2,
.business-layout h2 {
  margin: 0;
  color: var(--navy);
  font-size: 2.1rem;
  line-height: 1.12;
  font-weight: 900;
}

.section-heading p:not(.eyebrow) {
  margin: 0.9rem auto 0;
  color: var(--muted);
}

.section-navy h2,
.section-navy .eyebrow {
  color: var(--gold);
}

.section-navy p {
  color: rgba(255, 255, 255, 0.84);
}

.category-grid,
.feature-grid {
  display: grid;
  gap: 1rem;
}

.category-card,
.feature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(7, 26, 61, 0.08);
}

.category-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.image-frame {
  position: relative;
  display: grid;
  min-height: 190px;
  aspect-ratio: 16 / 10;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 26, 61, 0.95), rgba(14, 165, 233, 0.45)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 12px);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 26, 61, 0.32));
  pointer-events: none;
}

.image-frame img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fallback-label {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-weight: 900;
  text-align: center;
  padding: 0 1rem;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.36);
}

.category-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.category-body h3,
.feature-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.25;
}

.category-body p,
.feature-card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 1.1rem;
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.9);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link:hover {
  color: var(--accent);
}

.feature-card {
  padding: 1.25rem;
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-dark);
}

.feature-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split-layout,
.shipping-layout,
.contact-layout {
  display: grid;
  gap: 2rem;
}

.about-copy {
  max-width: 720px;
}

.about-side {
  display: grid;
  gap: 1.2rem;
}

.about-media {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(14, 165, 233, 0.18)),
    linear-gradient(135deg, #071a3d, #0b244f);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  opacity: 0.9;
}

.about-copy p {
  margin: 0;
}

.about-copy p + p {
  margin-top: 1rem;
}

.shipping-list {
  border-left: 4px solid var(--gold);
  background: var(--white);
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.shipping-list ul {
  display: grid;
  gap: 0.78rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text);
}

.shipping-list li::marker {
  color: var(--gold-dark);
}

.shipping-note {
  margin: 1rem 0 0;
  color: var(--success);
  font-weight: 800;
}

.payment-layout,
.business-layout,
.request-layout,
.video-layout {
  display: grid;
  gap: 2rem;
}

.payment-panel,
.request-panel,
.video-placeholder {
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.business-panel {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 1.3rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.payment-columns {
  display: grid;
  gap: 1.2rem;
}

.payment-panel h3,
.business-panel h3 {
  margin: 0 0 0.7rem;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.25;
}

.business-panel h3,
.section-navy .business-panel p {
  color: var(--white);
}

.clean-list,
.business-list {
  display: grid;
  gap: 0.58rem;
  margin: 0;
  padding-left: 1.1rem;
}

.clean-list li::marker,
.business-list li::marker {
  color: var(--gold-dark);
}

.business-list {
  grid-template-columns: 1fr;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1rem;
}

.panel-note {
  margin: 1.2rem 0 0;
  color: var(--muted);
}

.section-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.example-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.1rem 0 0;
}

.example-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(7, 26, 61, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--navy);
  padding: 0.35rem 0.58rem;
  font-size: 0.86rem;
  font-weight: 800;
}

.enquiry-card {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.enquiry-field {
  display: grid;
  gap: 0.18rem;
  min-height: 72px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcff;
  padding: 0.85rem;
}

.enquiry-field span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.enquiry-field strong {
  color: var(--navy);
  font-size: 0.98rem;
}

.video-placeholder {
  position: relative;
  display: grid;
  gap: 1rem;
  overflow: hidden;
  min-height: 260px;
}

.video-placeholder img {
  width: 100%;
  min-height: 210px;
  object-fit: cover;
  border-radius: var(--radius);
}

.video-placeholder div {
  display: grid;
  gap: 0.2rem;
}

.video-placeholder span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.video-placeholder strong {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(7, 26, 61, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-question {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  text-align: left;
  text-decoration: none;
}

.faq-question span {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.16);
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--navy);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-question span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-question {
  background: #fbfcff;
}

.faq-item.is-open {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 16px 34px rgba(7, 26, 61, 0.1);
}

.faq-item.is-open .faq-question span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  border-top: 0 solid transparent;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.15rem;
  color: var(--muted);
  text-decoration: none;
}

.faq-answer,
.faq-answer * {
  text-decoration: none;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  border-top: 1px solid var(--line);
}

.faq-item.is-open .faq-answer p {
  padding-top: 0.95rem;
  padding-bottom: 1.15rem;
}

.contact-details {
  border-top: 4px solid var(--gold);
  background: var(--white);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.contact-details dl {
  display: grid;
  gap: 0.95rem;
  margin: 0;
}

.contact-details dl > div {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.contact-details dl > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-details dt {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-details dd {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-details a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.site-footer {
  background: #06142f;
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 1.1rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand {
  display: inline-block;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 900;
}

.site-footer p {
  margin: 0.55rem 0 0;
}

.site-footer h2 {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.95rem;
}

.site-footer nav {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.site-footer a,
.site-footer button {
  width: fit-content;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
}

.site-footer .whatsapp-button {
  width: fit-content;
  margin-top: 1rem;
  padding: 0.82rem 1.05rem;
  background-color: var(--gold);
  color: var(--navy);
  text-align: center;
}

.site-footer .whatsapp-button:hover {
  color: var(--navy);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer button:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.copyright {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.policy-dialog {
  width: min(100% - 32px, 760px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
}

.policy-dialog::backdrop {
  background: rgba(3, 11, 26, 0.72);
  backdrop-filter: blur(4px);
}

.dialog-panel {
  position: relative;
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.45rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.dialog-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.75rem;
}

.dialog-panel p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.dialog-policy-content {
  max-height: min(62vh, 560px);
  overflow: auto;
  padding-right: 0.25rem;
}

.dialog-policy-content h3,
.dialog-policy-content h4 {
  margin: 1rem 0 0.3rem;
  color: var(--navy);
  line-height: 1.3;
}

.dialog-policy-content h3 {
  font-size: 1.08rem;
}

.dialog-policy-content h4 {
  font-size: 0.98rem;
}

.dialog-policy-content p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.dialog-policy-content ul {
  display: grid;
  gap: 0.45rem;
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.dialog-policy-content li::marker {
  color: var(--gold-dark);
}

.dialog-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--light);
}

.dialog-close::before,
.dialog-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 2px;
  background: var(--navy);
}

.dialog-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.dialog-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 560px) {
  .hero-actions,
  .contact-actions,
  .section-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions {
    display: grid;
    max-width: 540px;
  }

  .contact-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .payment-columns,
  .enquiry-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enquiry-field-wide {
    grid-column: 1 / -1;
  }

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

  .category-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 780px) {
  .hero-content {
    padding: 4.4rem 0 3.8rem;
  }

  .hero h1 {
    font-size: 4.35rem;
  }

  .hero-subtitle {
    font-size: 1.55rem;
  }

  .section {
    padding: 5.7rem 0;
  }

  .section-heading h2,
  .split-layout h2,
  .business-layout h2 {
    font-size: 2.55rem;
  }

  .category-grid,
  .feature-grid {
    gap: 1.25rem;
  }

  .split-layout,
  .shipping-layout,
  .contact-layout,
  .payment-layout,
  .business-layout,
  .request-layout,
  .video-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
  }

  .business-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) repeat(3, minmax(150px, 0.45fr));
  }
}

@media (min-width: 1100px) {
  .menu-toggle {
    display: none;
  }

  .header-panel {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.1rem;
    padding: 0;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .site-nav,
  .header-actions {
    display: flex;
    align-items: center;
  }

  .site-nav {
    gap: 0.15rem;
  }

  .site-nav a {
    padding: 0.55rem 0.56rem;
    font-size: 0.9rem;
  }

  .header-actions {
    gap: 0.55rem;
  }

  .hero-content {
    padding: 4.8rem 0 4.1rem;
  }

  .hero h1 {
    font-size: 4.75rem;
  }

  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .category-grid,
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 360px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand-name {
    font-size: 0.86rem;
  }

  .brand-subtitle {
    display: none;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .section-heading h2,
  .split-layout h2 {
    font-size: 1.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
