/* =========================================================
   GLOBAL RESET
========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #12202a;
  --muted: #63717a;
  --paper: #f5f4ef;
  --white: #fff;

  /* Brand Colors from DIGANTA INTERNATIONAL Logo */
  --brand-blue: #082b6f;
  --brand-blue-hover: #041c4a;
  --brand-blue-light: #eef4fc;
  --brand-orange: #f26522;
  --brand-orange-hover: #d85416;

  /* Main brand orange / gold accents */
  --accent: #c79b55;
  --accent-light: #e0b875;

  --line: rgba(18, 32, 42, 0.13);

  --dark: #0d1820;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

button,
input,
textarea {
  font-family: inherit;
}

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


/* =========================================================
   HEADER
   WHITE BACKGROUND
========================================================= */

.site-header {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index: 100;

  background: #ffffff;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(8, 43, 111, 0.12);

  box-shadow:
    0 4px 20px rgba(8, 43, 111, 0.08);

  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}


/* =========================================================
   NAVIGATION
========================================================= */

.nav {
  min-height: 90px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}


/* =========================================================
   LOGO
   ONLY LOGO - NO COMPANY NAME
========================================================= */

.brand {
  display: flex;

  align-items: center;

  gap: 0;

  color: var(--brand-blue);

  flex-shrink: 0;

  background: transparent;

  border: none;

  padding: 0;

  margin: 0;

  box-shadow: none;

  backdrop-filter: none;
  -webkit-backdrop-filter: none;

  transition:
    transform 0.3s ease;
}

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


/* =========================================================
   ORIGINAL LOGO
========================================================= */

.brand img {
  display: block;

  width: auto;

  height: 72px;

  max-width: 220px;

  object-fit: contain;

  object-position: center;

  opacity: 1;

  filter: none;

  background: transparent;

  border: none;

  box-shadow: none;

  outline: none;

  transition:
    transform 0.3s ease;
}

.brand:hover img {
  transform: scale(1.02);
}


/* =========================================================
   NAV LINKS
   DARK BLUE AS PER LOGO (#082B6F), BIGGER FONT (16PX)
========================================================= */

.nav-links {
  display: flex;

  align-items: center;

  justify-content: flex-end;

  gap: 28px;

  color: var(--brand-blue);

  font-size: 16px;

  font-weight: 600;

  white-space: nowrap;
}

.nav-links a {
  position: relative;

  color: var(--brand-blue);

  letter-spacing: 0.2px;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--brand-blue-hover);

  transform: translateY(-1px);
}


/* =========================================================
   NAV LINK UNDERLINE
========================================================= */

.nav-links a:not(.nav-cta)::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -6px;

  width: 0;
  height: 2px;

  background: var(--brand-blue);

  transition:
    width 0.25s ease;
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}


/* =========================================================
   NAV CTA
========================================================= */

.nav-cta {
  padding: 10px 20px;

  background: var(--brand-blue);

  border: 1px solid var(--brand-blue);

  border-radius: 6px;

  color: #ffffff !important;

  font-weight: 600;

  font-size: 15px;

  box-shadow: 0 3px 10px rgba(8, 43, 111, 0.18);

  transition:
    background 0.25s ease,
    border 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.nav-cta:hover {
  background: var(--brand-blue-hover);

  border-color: var(--brand-blue-hover);

  color: #ffffff !important;

  box-shadow: 0 6px 16px rgba(8, 43, 111, 0.28);

  transform: translateY(-2px);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
  display: none;

  background: none;

  border: 0;

  color: var(--brand-blue);

  font-size: 30px;

  cursor: pointer;

  padding: 5px;

  line-height: 1;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  min-height: 100vh;

  position: relative;

  color: #fff;

  display: flex;

  align-items: center;

  background-image:
    url("https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=2200&q=85");

  background-size: cover;

  background-position: center;
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(5, 13, 19, 0.90),
      rgba(5, 13, 19, 0.55),
      rgba(5, 13, 19, 0.30)
    );
}


/* =========================================================
   HERO TOP DARKNESS
========================================================= */

.hero::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  height: 220px;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 13, 25, 0.45),
      transparent
    );

  pointer-events: none;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
  position: relative;

  z-index: 2;

  padding-top: 135px;

  padding-bottom: 80px;
}


/* =========================================================
   HERO LOGO HIDDEN
   Logo is only in header
========================================================= */

.hero-logo {
  display: none !important;
}


/* =========================================================
   EYEBROW
========================================================= */

.eyebrow {
  font-size: 11px;

  letter-spacing: 2.5px;

  font-weight: 700;

  color: #d7e0e5;

  margin-bottom: 18px;
}

.eyebrow.dark {
  color: #9a7643;
}


/* =========================================================
   HEADINGS
========================================================= */

h1,
h2 {
  font-family: "Playfair Display", serif;

  line-height: 1.08;

  font-weight: 700;
}

h1 {
  font-size: clamp(52px, 7vw, 92px);

  max-width: 950px;
}

h1 em {
  color: var(--accent-light);

  font-style: normal;
}

h2 {
  font-size: clamp(42px, 5vw, 66px);
}

h2 span {
  color: #a77d43;
}


/* =========================================================
   HERO COPY
========================================================= */

.hero-copy {
  max-width: 650px;

  color: #d5dde1;

  margin: 28px 0 34px;

  font-size: 17px;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-actions {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;
}

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 18px;

  padding: 14px 22px;

  border: 1px solid transparent;

  font-weight: 700;

  font-size: 13px;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border 0.25s ease,
    box-shadow 0.25s ease;
}

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

.btn-primary {
  background: var(--accent);

  color: #17212a;

  box-shadow:
    0 8px 22px rgba(199, 155, 85, 0.22);
}

.btn-primary:hover {
  background: #d7ad69;

  box-shadow:
    0 12px 28px rgba(199, 155, 85, 0.30);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);

  color: #fff;

  background: rgba(255, 255, 255, 0.04);

  backdrop-filter: blur(5px);
}

.btn-ghost:hover {
  border-color: #fff;

  background: rgba(255, 255, 255, 0.10);
}

.btn-dark {
  background: var(--ink);

  color: #fff;
}

.btn-dark:hover {
  background: #1d313d;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
  display: flex;

  gap: 50px;

  margin-top: 90px;

  padding-top: 22px;

  border-top:
    1px solid rgba(255, 255, 255, 0.22);
}

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

.trust-strip strong {
  font-family: "Playfair Display", serif;

  font-size: 19px;
}

.trust-strip span {
  font-size: 11px;

  color: #b8c2c7;
}


/* =========================================================
   SCROLL CUE
========================================================= */

.scroll-cue {
  position: absolute;

  bottom: 25px;

  right: 30px;

  border:
    1px solid rgba(255, 255, 255, 0.3);

  width: 40px;

  height: 40px;

  display: grid;

  place-items: center;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.scroll-cue:hover {
  background: rgba(255, 255, 255, 0.10);

  transform: translateY(-3px);
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
  padding: 115px 0;
}

.section-soft {
  background: #e9e7df;
}

.split {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 100px;
}

.section-copy {
  font-size: 17px;

  color: var(--muted);
}

.section-copy p + p {
  margin-top: 18px;
}


/* =========================================================
   FEATURE GRID
========================================================= */

.feature-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 25px;

  margin-top: 45px;
}

.feature-grid div {
  border-top:
    1px solid var(--line);

  padding-top: 16px;
}

.feature-grid span {
  font-size: 11px;

  color: #a77d43;

  display: block;

  margin-bottom: 8px;
}

.feature-grid strong {
  display: block;
}

.feature-grid small {
  display: block;

  color: var(--muted);

  margin-top: 5px;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
  display: flex;

  justify-content: space-between;

  align-items: end;

  gap: 30px;

  margin-bottom: 45px;
}

.section-heading h2 {
  max-width: 650px;
}


/* =========================================================
   CATALOGUE
========================================================= */

.catalogue-card {
  display: grid;

  grid-template-columns: auto 1fr auto;

  gap: 22px;

  align-items: center;

  padding: 28px;

  background: #fff;

  border:
    1px solid var(--line);

  margin-bottom: 25px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

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

  box-shadow:
    0 15px 35px rgba(18, 32, 42, 0.08);
}

.catalogue-icon {
  width: 55px;

  height: 55px;

  background: #1b2c36;

  color: #fff;

  display: grid;

  place-items: center;

  font-size: 11px;

  font-weight: 700;
}

.catalogue-card h3 {
  font-family: "Playfair Display", serif;

  font-size: 24px;
}

.catalogue-card p {
  color: var(--muted);
}

.catalogue-card > a {
  font-size: 25px;

  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.catalogue-card > a:hover {
  color: var(--accent);

  transform: translate(3px, -3px);
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.product-grid,
.updates-grid,
.testimonial-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {
  padding: 34px;

  background: #fff;

  border:
    1px solid var(--line);

  min-height: 270px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 18px 45px rgba(18, 32, 42, 0.1);
}

.product-number {
  font-size: 11px;

  color: #a77d43;
}

.product-card h3 {
  font-family: "Playfair Display", serif;

  font-size: 27px;

  margin: 30px 0 12px;
}

.product-card p {
  color: var(--muted);

  margin-bottom: 25px;
}

.product-card a,
.update-card a {
  font-weight: 700;

  font-size: 13px;

  color: #8b6739;

  transition:
    color 0.25s ease;
}

.product-card a:hover {
  color: #b4874b;
}


/* =========================================================
   COUNTRIES
========================================================= */

.countries-section {
  background: #fff;
}

.intro {
  color: var(--muted);

  margin: 15px 0 40px;
}

.country-list {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;
}

.country-list span {
  border:
    1px solid var(--line);

  padding: 14px 20px;

  background: #faf9f5;

  font-size: 14px;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.country-list span:hover {
  background: #142630;

  color: #fff;

  transform: translateY(-2px);
}


/* =========================================================
   UPDATES
========================================================= */

.section-dark {
  background: var(--dark);

  color: #fff;
}

.light .eyebrow {
  color: #aebbc2;
}

.light h2 span {
  color: #d7ad69;
}

.update-card {
  border:
    1px solid rgba(255, 255, 255, 0.14);

  padding: 32px;

  min-height: 280px;

  transition:
    border 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
}

.update-card:hover {
  border-color:
    rgba(215, 173, 105, 0.7);

  background:
    rgba(255, 255, 255, 0.025);

  transform: translateY(-5px);
}

.update-card small {
  color: #d2a867;

  font-size: 10px;

  letter-spacing: 2px;
}

.update-card h3 {
  font-family: "Playfair Display", serif;

  font-size: 27px;

  margin: 35px 0 12px;
}

.update-card p {
  color: #aeb9be;

  margin-bottom: 25px;
}

.update-card a {
  color: #d7ad69;
}

.update-card a:hover {
  color: #f0c982;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

blockquote {
  background: #fff;

  border:
    1px solid var(--line);

  padding: 32px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

blockquote:hover {
  transform: translateY(-5px);

  box-shadow:
    0 15px 35px rgba(18, 32, 42, 0.08);
}

.stars {
  letter-spacing: 4px;

  color: #b4874b;

  font-size: 12px;

  margin-bottom: 25px;
}

blockquote p {
  font-family: "Playfair Display", serif;

  font-size: 20px;

  line-height: 1.45;
}

blockquote footer {
  color: var(--muted);

  font-size: 12px;

  margin-top: 25px;
}


/* =========================================================
   ENQUIRY
========================================================= */

.enquiry-section {
  background: #e9e7df;
}

.enquiry-wrap {
  display: grid;

  grid-template-columns:
    0.8fr 1.2fr;

  gap: 90px;
}

.enquiry-info > p:not(.eyebrow) {
  color: var(--muted);

  max-width: 420px;

  margin: 25px 0;
}

.contact-mini {
  border-top:
    1px solid var(--line);

  padding-top: 20px;

  display: grid;

  gap: 5px;
}

.contact-mini span {
  font-size: 9px;

  letter-spacing: 2px;

  color: #8b6739;

  margin-top: 12px;
}

.contact-mini a {
  font-weight: 600;

  transition:
    color 0.25s ease;
}

.contact-mini a:hover {
  color: #8b6739;
}


/* =========================================================
   ENQUIRY FORM
========================================================= */

.enquiry-form {
  background: #fff;

  padding: 36px;

  border:
    1px solid var(--line);

  box-shadow:
    0 15px 40px rgba(18, 32, 42, 0.06);
}

.form-row {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 15px;
}

label {
  display: block;

  font-size: 11px;

  font-weight: 700;

  margin-bottom: 16px;

  letter-spacing: 0.4px;
}

input,
textarea {
  display: block;

  width: 100%;

  margin-top: 7px;

  border:
    1px solid #d8d7d0;

  padding: 14px;

  font: inherit;

  outline: none;

  background: #fbfaf7;

  transition:
    border 0.25s ease,
    box-shadow 0.25s ease;
}

input:focus,
textarea:focus {
  border-color: var(--brand-blue);

  box-shadow:
    0 0 0 3px rgba(8, 43, 111, 0.12);
}

textarea {
  resize: vertical;
}

.btn-submit {
  border: 0;

  width: 100%;

  cursor: pointer;

  background: var(--brand-blue);

  color: #ffffff;

  padding: 16px 28px;

  font-size: 16px;

  font-weight: 700;

  border-radius: 6px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  box-shadow: 0 6px 18px rgba(8, 43, 111, 0.22);

  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-submit:hover:not(:disabled) {
  background: var(--brand-blue-hover);

  transform: translateY(-2px);

  box-shadow: 0 8px 22px rgba(8, 43, 111, 0.30);
}

.btn-submit:disabled {
  opacity: 0.75;

  cursor: not-allowed;

  transform: none;
}

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

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

.form-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-divider::before,
.form-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--line);
}

.form-divider::before {
  margin-right: 15px;
}

.form-divider::after {
  margin-left: 15px;
}

.btn-whatsapp-direct {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: #25d366;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 15px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-whatsapp-direct:hover {
  background: #1eb956;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.32);
}

.btn-whatsapp-direct svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* =========================================================
   FORM FEEDBACK NOTIFICATION
========================================================= */

.form-feedback {
  display: none;
  margin-bottom: 24px;
  padding: 20px 22px;
  border-radius: 8px;
  animation: fadeIn 0.3s ease-out;
}

.form-feedback.visible {
  display: block;
}

.form-feedback.success {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #064e3b;
}

.form-feedback.success h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #047857;
}

.form-feedback.success p {
  font-size: 14px;
  line-height: 1.5;
  color: #065f46;
  margin-bottom: 12px;
}

.form-feedback.error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

.form-feedback.error h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #b91c1c;
}

.form-feedback.error p {
  font-size: 13px;
  color: #7f1d1d;
}

.feedback-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 14px;
}

.btn-reset-form {
  background: transparent;
  border: 1px solid #047857;
  color: #047857;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-reset-form:hover {
  background: #047857;
  color: #ffffff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-note {
  font-size: 12px;

  color: var(--muted);

  margin-top: 14px;

  text-align: center;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
  background: #fff;
}

.contact-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 25px;

  margin-top: 50px;

  border-top:
    1px solid var(--line);

  padding-top: 25px;
}

.contact-grid small {
  font-size: 9px;

  letter-spacing: 2px;

  color: #9a7643;
}

.contact-grid a,
.contact-grid p {
  display: block;

  margin-top: 8px;

  color: var(--muted);
}

.contact-grid a {
  transition:
    color 0.25s ease;
}

.contact-grid a:hover {
  color: #8b6739;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  background: #0a141b;

  color: #b4c0c5;

  padding: 30px 0;

  font-size: 11px;
}

.footer-inner {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 20px;
}

.footer strong {
  color: #fff;

  letter-spacing: 2px;

  font-size: 13px;
}

.footer p {
  margin-top: 3px;
}

.footer a {
  color: #d7ad69;

  transition:
    color 0.25s ease;
}

.footer a:hover {
  color: #f0c982;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;

  transform: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .nav {
    min-height: 85px;
    gap: 20px;
  }

  /* Logo */
  .brand img {
    height: 64px;

    max-width: 140px;
  }

  /* Navigation */
  .nav-links {
    gap: 18px;

    font-size: 15px;

    font-weight: 600;
  }
}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 900px) {

  .nav {
    min-height: 80px;
  }

  /* Mobile navigation */

  .nav-links {
    position: absolute;

    top: 80px;

    left: 0;
    right: 0;

    background: #ffffff;

    padding: 28px 24px;

    display: none;

    flex-direction: column;

    align-items: flex-start;

    gap: 18px;

    border-bottom:
      1px solid rgba(8, 43, 111, 0.15);

    box-shadow:
      0 15px 30px rgba(8, 43, 111, 0.12);
  }

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

  .nav-links a {
    width: 100%;

    color: var(--brand-blue);

    font-size: 17px;

    font-weight: 600;

    padding: 4px 0;
  }

  .nav-links a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    width: 100% !important;

    text-align: center;

    margin-top: 8px;

    padding: 12px 20px;
  }

  /* Mobile button */

  .menu-toggle {
    display: block;

    color: var(--brand-blue);
  }

  /* Content grids */

  .split,
  .enquiry-wrap {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .product-grid,
  .updates-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns:
      1fr 1fr;
  }

  .section-heading {
    align-items: flex-start;

    flex-direction: column;
  }

  .trust-strip {
    gap: 25px;

    flex-wrap: wrap;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .container {
    width:
      min(100% - 30px, 1180px);
  }

  .section {
    padding: 80px 0;
  }


  /* =======================================================
     HEADER
  ======================================================== */

  .nav {
    min-height: 75px;

    gap: 10px;
  }

  .nav-links {
    top: 75px;
  }


  /* =======================================================
     LOGO
  ======================================================== */

  .brand {
    gap: 0;
  }

  .brand img {
    height: 58px;

    max-width: 95px;
  }


  /* =======================================================
     HERO
  ======================================================== */

  .hero {
    background-position: center;
  }

  .hero-content {
    padding-top: 125px;

    padding-bottom: 70px;
  }

  h1 {
    font-size: 50px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .trust-strip {
    margin-top: 55px;
  }


  /* =======================================================
     FORM
  ======================================================== */

  .form-row {
    grid-template-columns: 1fr;
  }

  .enquiry-form {
    padding: 25px;
  }


  /* =======================================================
     CONTACT
  ======================================================== */

  .contact-grid {
    grid-template-columns: 1fr;
  }


  /* =======================================================
     CATALOGUE
  ======================================================== */

  .catalogue-card {
    grid-template-columns:
      auto 1fr;
  }

  .catalogue-card > a {
    grid-column: 2;
  }


  /* =======================================================
     FOOTER
  ======================================================== */

  .footer-inner {
    flex-direction: column;

    align-items: flex-start;
  }


  /* =======================================================
     SCROLL
  ======================================================== */

  .scroll-cue {
    display: none;
  }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

  .brand img {
    height: 52px;

    max-width: 82px;
  }

  .nav {
    min-height: 70px;
  }

  .nav-links {
    top: 70px;
  }

  h1 {
    font-size: 44px;
  }
}