:root {
  --navy: #071923;
  --navy2: #0d2430;
  --charcoal: #12181c;
  --cream: #f4f0e8;
  --paper: #fbfaf7;
  --gold: #c6a15b;
  --teal: #73c9c7;
  --muted: #727b7f;
  --line: rgba(11,23,32,.13);
  --white: #fff;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;

  --radius: 24px;
  --max: 1240px;
}


/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: var(--sans);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  min-height: 86px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding: 0 max(5vw, calc((100vw - var(--max)) / 2));

  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 50;

  color: #fff;

  background:
    linear-gradient(
      to bottom,
      rgba(5,12,17,.88),
      rgba(5,12,17,.30)
    );

  transition:
    background .3s ease,
    backdrop-filter .3s ease,
    box-shadow .3s ease;
}

.site-header.scrolled {
  background: rgba(7,25,35,.97);

  backdrop-filter: blur(16px);

  box-shadow:
    0 8px 30px rgba(0,0,0,.15);
}


/* =========================================================
   LOGO / BRAND
========================================================= */

.brand {
  display: flex;
  align-items: center;

  gap: 13px;

  flex-shrink: 0;
}

.brand-logo {
  width: 68px;
  height: 68px;

  object-fit: contain;
  object-position: center;

  flex-shrink: 0;
}

.brand-name strong {
  display: block;

  font-family: var(--serif);

  font-size: 28px;
  line-height: 18px;

  white-space: nowrap;
}

.brand-name small {
  display: block;

  font-size: 12px;

  letter-spacing: 3px;

  margin-top: 4px;

  white-space: nowrap;
}


/* =========================================================
   HEADER RIGHT AREA
========================================================= */

.header-right {
  display: flex;

  align-items: center;

  gap: 28px;

  margin-left: auto;
}


/* =========================================================
   SOCIAL MEDIA LINKS
========================================================= */

.social-links {
  display: flex;

  align-items: center;

  gap: 13px;

  margin: 0;

  white-space: nowrap;
}

.social-link {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  color: rgba(255,255,255,.88);

  text-decoration: none;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: .7px;

  transition:
    color .25s ease,
    opacity .25s ease,
    transform .25s ease;
}

.social-link:hover {
  color: var(--gold);

  opacity: 1;

  transform: translateY(-2px);
}

.social-icon {
  width: 24px;
  height: 24px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,.45);

  border-radius: 50%;

  font-size: 12px;

  font-weight: 700;

  transition:
    background .25s ease,
    border-color .25s ease,
    color .25s ease;
}

.social-link:hover .social-icon {
  background: var(--gold);

  border-color: var(--gold);

  color: var(--navy);
}

.social-handle {
  white-space: nowrap;
}


/* =========================================================
   NAVIGATION
========================================================= */

.nav {
  display: flex;

  align-items: center;

  gap: 25px;

  font-size: 12px;

  letter-spacing: .8px;

  white-space: nowrap;
}

.nav a {
  opacity: .9;

  transition:
    color .2s ease,
    opacity .2s ease;
}

.nav a:hover {
  color: var(--gold);

  opacity: 1;
}

.nav-cta {
  border: 1px solid rgba(255,255,255,.45);

  padding: 11px 17px;

  border-radius: 100px;

  transition:
    background .25s ease,
    color .25s ease,
    border-color .25s ease;
}

.nav-cta:hover {
  background: var(--gold);

  border-color: var(--gold);

  color: var(--navy) !important;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  align-items: center;
  justify-content: center;

  flex-direction: column;

  gap: 5px;

  background: transparent;

  border: 1px solid rgba(255,255,255,.25);

  border-radius: 50%;

  cursor: pointer;

  padding: 0;
}

.menu-toggle span {
  display: block;

  width: 19px;
  height: 1px;

  background: #fff;

  transition:
    transform .25s ease,
    opacity .25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}


/* =========================================================
   HERO
========================================================= */

.hero {
  height: 100svh;

  min-height: 680px;

  position: relative;

  background: var(--navy);

  color: #fff;

  overflow: hidden;
}

.hero-image {
  position: absolute;

  inset: 0;

  background-image:
    url('assets/images/hero.jpg');

  background-size: cover;

  background-position: center;

  filter: saturate(.9);
}

.hero-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(6,16,23,.80) 0%,
      rgba(6,16,23,.28) 47%,
      rgba(6,16,23,.05) 100%
    ),
    linear-gradient(
      0deg,
      rgba(6,16,23,.45),
      transparent 55%
    );
}

.hero-content {
  position: absolute;

  left: max(8vw, calc((100vw - var(--max)) / 2));

  top: 50%;

  transform: translateY(-35%);

  max-width: 650px;
}

.eyebrow,
.kicker {
  font-size: 10px;

  letter-spacing: 3px;

  font-weight: 700;
}

.eyebrow {
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(55px,7vw,105px);

  line-height: .92;

  letter-spacing: -4px;

  margin: 20px 0 27px;

  font-weight: 600;
}

.hero h1 em,
.section h2 em,
.statement h2 em,
.cta h2 em,
.page-hero h1 em {
  font-family: var(--serif);

  font-weight: 500;

  color: var(--gold);
}

.hero-copy {
  font-size: 17px;

  max-width: 570px;

  color: rgba(255,255,255,.82);
}

.hero-actions {
  display: flex;

  gap: 12px;

  margin-top: 34px;
}

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 18px;

  border: 1px solid transparent;

  border-radius: 100px;

  padding: 15px 21px;

  font-weight: 700;

  font-size: 11px;

  letter-spacing: 1px;

  text-transform: uppercase;

  transition: .25s;

  cursor: pointer;
}

.btn span {
  font-size: 16px;
}

.btn-gold {
  background: var(--gold);

  color: #10181d;
}

.btn-gold:hover {
  transform: translateY(-3px);

  background: #d5b773;
}

.btn-ghost {
  border-color: rgba(255,255,255,.45);

  color: #fff;
}

.btn-ghost:hover {
  background: #fff;

  color: var(--navy);
}

.hero-bottom {
  position: absolute;

  bottom: 28px;

  left: max(8vw, calc((100vw - var(--max)) / 2));

  right: max(8vw, calc((100vw - var(--max)) / 2));

  display: flex;

  justify-content: space-between;

  font-size: 9px;

  letter-spacing: 2px;

  color: rgba(255,255,255,.55);
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
  padding: 130px max(5vw, calc((100vw - var(--max))/2));
}

.section-label {
  font-size: 9px;

  letter-spacing: 2.5px;

  color: var(--muted);

  border-top: 1px solid var(--line);

  padding-top: 13px;

  margin-bottom: 65px;
}

.intro-grid {
  display: grid;

  grid-template-columns: 1.1fr 1fr;

  gap: 10vw;
}

.kicker {
  color: var(--gold);

  margin: 0 0 17px;
}

.section h2 {
  font-size: clamp(46px,5.7vw,82px);

  line-height: 1;

  letter-spacing: -3px;

  margin: 0;

  font-weight: 600;
}

.intro-copy {
  font-size: 17px;

  color: #535b5e;

  max-width: 540px;

  padding-top: 10px;
}

.intro-copy p {
  margin: 0 0 24px;
}

.text-link {
  display: inline-flex;

  gap: 15px;

  font-size: 11px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1.5px;

  border-bottom: 1px solid var(--gold);

  padding-bottom: 8px;

  margin-top: 10px;
}


/* =========================================================
   STATEMENT
========================================================= */

.statement {
  background: var(--navy);

  color: #fff;

  padding: 150px 8vw;

  text-align: center;

  position: relative;

  overflow: hidden;
}

.statement:before {
  content: "TF";

  position: absolute;

  font: 700 38vw/.7 var(--serif);

  color: rgba(255,255,255,.025);

  right: -5vw;

  top: 50%;

  transform: translateY(-50%);
}

.statement-inner {
  position: relative;

  z-index: 1;

  max-width: 950px;

  margin: auto;
}

.statement h2 {
  font-size: clamp(48px,6vw,90px);

  line-height: 1.03;

  letter-spacing: -3px;

  margin: 20px 0 30px;
}

.statement p:last-child {
  max-width: 700px;

  margin: auto;

  color: rgba(255,255,255,.65);

  font-size: 16px;
}


/* =========================================================
   INDUSTRIES
========================================================= */

.section-heading {
  display: grid;

  grid-template-columns: 1fr .7fr;

  gap: 10vw;

  align-items: end;

  margin-bottom: 55px;
}

.section-heading > p {
  color: var(--muted);

  font-size: 15px;

  margin: 0 0 5px;
}

.industry-grid {
  display: grid;

  grid-template-columns: repeat(3,1fr);

  gap: 16px;
}

.industry-card {
  min-height: 520px;

  position: relative;

  border-radius: var(--radius);

  overflow: hidden;

  color: #fff;

  background: var(--navy);
}

.industry-card.large {
  grid-row: span 2;

  min-height: 1056px;
}

.card-image {
  position: absolute;

  inset: 0;

  background-image: var(--bg);

  background-size: cover;

  background-position: center;

  transition: transform .7s ease;
}

.industry-card:hover .card-image {
  transform: scale(1.06);
}

.industry-card:after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      0deg,
      rgba(4,13,18,.92),
      rgba(4,13,18,.04) 72%
    );
}

.card-content {
  position: absolute;

  z-index: 1;

  left: 27px;

  right: 27px;

  bottom: 26px;
}

.card-content span {
  color: var(--gold);

  font-size: 10px;

  letter-spacing: 2px;
}

.card-content h3 {
  font: 600 clamp(28px,3vw,43px)/.98 var(--serif);

  margin: 10px 0;
}

.card-content p {
  color: rgba(255,255,255,.7);

  font-size: 12px;

  max-width: 290px;

  margin: 0;
}

.card-link {
  display: inline-flex;

  margin-top: 18px;

  font-size: 10px;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  color: #fff;

  border-bottom: 1px solid var(--gold);

  padding-bottom: 6px;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
  background: var(--cream);
}

.service-layout {
  display: grid;

  grid-template-columns: .85fr 1.15fr;

  gap: 9vw;
}

.service-intro > p:not(.kicker) {
  color: var(--muted);

  max-width: 410px;

  margin: 25px 0 32px;
}

.btn-dark {
  background: var(--navy);

  color: #fff;
}

.btn-dark:hover {
  transform: translateY(-3px);

  background: #192a35;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;

  grid-template-columns: 50px 1fr 30px;

  gap: 18px;

  align-items: start;

  padding: 27px 0;

  border-bottom: 1px solid var(--line);
}

.service-item > span {
  font-size: 10px;

  color: var(--gold);

  letter-spacing: 2px;
}

.service-item h3 {
  font: 600 24px var(--serif);

  margin: 0 0 6px;
}

.service-item p {
  font-size: 13px;

  color: var(--muted);

  margin: 0;

  max-width: 520px;
}

.service-item b {
  font-size: 18px;

  font-weight: 400;

  transition: .2s;
}

.service-item:hover b {
  transform: translate(4px,-4px);
}


/* =========================================================
   VALUES
========================================================= */

.values {
  background: var(--paper);
}

.values-head {
  display: flex;

  justify-content: space-between;

  align-items: end;

  margin-bottom: 60px;
}

.values-head h2 {
  max-width: 650px;
}

.value-grid {
  display: grid;

  grid-template-columns: repeat(5,1fr);

  border-top: 1px solid var(--line);
}

.value {
  padding: 30px 20px 10px 0;

  border-right: 1px solid var(--line);

  margin-right: 20px;
}

.value:last-child {
  border-right: 0;
}

.value span {
  color: var(--gold);

  font-size: 10px;

  letter-spacing: 2px;
}

.value h3 {
  font: 600 22px/1.1 var(--serif);

  margin: 35px 0 12px;
}

.value p {
  font-size: 12px;

  color: var(--muted);

  margin: 0;
}


/* =========================================================
   CTA
========================================================= */

.cta {
  min-height: 600px;

  position: relative;

  color: #fff;

  display: grid;

  place-items: center;

  text-align: center;

  overflow: hidden;
}

.cta-image {
  position: absolute;

  inset: 0;

  background:
    url('assets/images/customized-apparel.png')
    center / cover;

  filter: saturate(.55);
}

.cta-overlay {
  position: absolute;

  inset: 0;

  background: rgba(6,16,23,.68);
}

.cta-content {
  position: relative;

  z-index: 1;
}

.cta h2 {
  font-size: clamp(55px,7vw,105px);

  line-height: .96;

  letter-spacing: -4px;

  margin: 20px 0 40px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 10vw;
}

.contact-info > p:not(.kicker) {
  color: var(--muted);

  max-width: 470px;

  margin: 28px 0;
}

.contact-details {
  display: grid;

  gap: 18px;

  margin-top: 35px;
}

.contact-details a,
.contact-details div {
  font-size: 14px;
}

.contact-details small {
  display: block;

  font-size: 8px;

  letter-spacing: 2px;

  color: var(--gold);

  margin-bottom: 3px;
}


/* =========================================================
   GOOGLE MAP BUTTON
========================================================= */

.map-button {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-top: 22px;

  padding: 13px 20px;

  border: 1px solid rgba(11,23,32,.20);

  border-radius: 100px;

  text-decoration: none;

  color: var(--navy);

  background: transparent;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.2px;

  text-transform: uppercase;

  transition:
    background .25s ease,
    color .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.map-button:hover {
  background: var(--navy);

  color: #fff;

  border-color: var(--navy);

  transform: translateY(-2px);
}

.map-icon {
  font-size: 16px;

  line-height: 1;
}


/* =========================================================
   GOOGLE MAP EMBED
========================================================= */

.google-map {
  width: 100%;

  height: 360px;

  margin-top: 45px;

  border: 0;

  border-radius: var(--radius);

  overflow: hidden;

  box-shadow:
    0 12px 40px rgba(0,0,0,.08);
}

.google-map iframe {
  width: 100%;

  height: 100%;

  border: 0;
}


/* =========================================================
   WHATSAPP CONTACT BUTTON
========================================================= */

.whatsapp {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-top: 32px;

  padding: 13px 18px;

  border-radius: 100px;

  background: #25D366;

  color: #fff;

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: 1.2px;

  font-weight: 700;

  transition: .25s;

  box-shadow:
    0 8px 25px rgba(37,211,102,.20);
}

.whatsapp:hover {
  transform: translateY(-3px);

  background: #1ebe5d;

  box-shadow:
    0 12px 30px rgba(37,211,102,.30);
}

.whatsapp-icon {
  font-size: 15px;
}


/* =========================================================
   FORM
========================================================= */

.quote-form {
  display: grid;

  gap: 19px;
}

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;
}

.quote-form label {
  font-size: 9px;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  display: block;

  width: 100%;

  border: 0;

  border-bottom: 1px solid rgba(11,23,32,.2);

  background: transparent;

  padding: 13px 0 11px;

  outline: 0;

  border-radius: 0;

  color: var(--navy);

  font-size: 14px;

  letter-spacing: 0;

  text-transform: none;

  transition:
    border-color .25s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--gold);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #8a9295;
}

.quote-form textarea {
  resize: vertical;
}

.form-actions {
  display: flex;

  align-items: center;

  gap: 20px;

  flex-wrap: wrap;
}

.form-submit {
  justify-self: start;

  margin-top: 4px;
}

.form-whatsapp {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  color: #168b42;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.2px;

  text-transform: uppercase;

  border-bottom: 1px solid #25D366;

  padding-bottom: 5px;

  transition:
    color .2s ease,
    transform .2s ease;
}

.form-whatsapp:hover {
  color: #25D366;

  transform: translateY(-2px);
}

.form-note {
  font-size: 10px;

  color: var(--muted);

  margin: 0;
}

.captcha-container {
    margin: 20px 0;
}

/* =====================================================
   CLOUDFLARE TURNSTILE
====================================================== */

.captcha-container {

    width: 100%;

    margin: 24px 0;

    min-height: 70px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

}


#turnstile-widget {

    width: 100%;

    max-width: 500px;

}


.captcha-error {

    margin: 8px 0 0;

    color: #b42318;

    font-size: 13px;

    line-height: 1.5;

}


@media (max-width: 600px) {

    .captcha-container {

        width: 100%;

        overflow: hidden;

    }

}



.honeypot-field {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {
  position: fixed;

  right: 24px;

  bottom: 24px;

  z-index: 100;

  display: flex;

  align-items: center;

  gap: 10px;

  background: #25D366;

  color: #fff;

  padding: 13px 18px;

  border-radius: 100px;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: .7px;

  box-shadow:
    0 8px 30px rgba(0,0,0,.22);

  transition: .25s;
}

.floating-whatsapp:hover {
  transform: translateY(-4px);

  background: #1ebe5d;

  box-shadow:
    0 12px 35px rgba(0,0,0,.28);
}

.floating-whatsapp-icon {
  font-size: 16px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  background: var(--navy);

  color: #fff;

  padding:
    55px
    max(5vw,calc((100vw - var(--max))/2))
    25px;
}

.footer-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  padding-bottom: 55px;

  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-brand {
  gap: 14px;
}

.footer-brand .brand-logo {
  width: 82px;

  height: 82px;

  object-fit: contain;
}

.footer-brand .brand-name strong {
  font-size: 21px;
}

.footer-brand .brand-name small {
  font-size: 7px;
}

.footer-top > p {
  font: italic 22px var(--serif);

  color: rgba(255,255,255,.7);

  text-align: center;
}

.back-top {
  font-size: 10px;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  transition: color .2s ease;
}

.back-top:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  padding-top: 22px;

  font-size: 8px;

  letter-spacing: 1.5px;

  color: rgba(255,255,255,.4);
}


/* =========================================================
   OTHER PAGES
========================================================= */

.page-hero {
  min-height: 560px;

  padding:
    180px
    max(5vw,calc((100vw - var(--max))/2))
    90px;

  background:
    linear-gradient(
      115deg,
      var(--navy),
      var(--navy2)
    );

  color: #fff;

  position: relative;

  overflow: hidden;
}

.page-hero:after {
  content: "";

  position: absolute;

  width: 560px;

  height: 560px;

  border-radius: 50%;

  right: -160px;

  top: -180px;

  background: rgba(115,201,199,.08);
}

.page-hero .eyebrow,
.page-hero h1,
.page-hero p {
  position: relative;

  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(52px,7vw,100px);

  line-height: .95;

  letter-spacing: -4px;

  max-width: 900px;

  margin: 25px 0;
}

.page-hero p {
  max-width: 720px;

  color: rgba(255,255,255,.68);

  font-size: 17px;
}

.content-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: start;
}

.content-grid h2 {
  font-size: clamp(38px,4vw,60px);

  line-height: 1;

  letter-spacing: -2px;

  margin: 0 0 25px;
}

.content-grid p {
  color: #596266;

  font-size: 16px;
}

.info-panel {
  background: var(--cream);

  padding: 35px;

  border-radius: var(--radius);
}

.info-panel h3 {
  font: 600 28px var(--serif);

  margin: 0 0 16px;
}

.check-list {
  display: grid;

  gap: 12px;

  margin: 25px 0 0;

  padding: 0;

  list-style: none;
}

.check-list li {
  padding-left: 28px;

  position: relative;

  color: #50595d;

  font-size: 14px;
}

.check-list li:before {
  content: "✓";

  position: absolute;

  left: 0;

  color: var(--gold);

  font-weight: 700;
}

.product-grid {
  display: grid;

  grid-template-columns: repeat(3,1fr);

  gap: 20px;
}

.product-card {
  background: #fff;

  border: 1px solid var(--line);

  border-radius: 18px;

  overflow: hidden;
}

.product-card .product-image {
  height: 230px;

  background-size: cover;

  background-position: center;
}

.product-card .product-body {
  padding: 24px;
}

.product-card h3 {
  font: 600 25px var(--serif);

  margin: 0 0 8px;
}

.product-card p {
  font-size: 13px;

  color: var(--muted);

  margin: 0;
}

.related {
  background: var(--navy);

  color: #fff;
}

.related .section-label {
  color: rgba(255,255,255,.45);

  border-color: rgba(255,255,255,.15);
}

.related-grid {
  display: grid;

  grid-template-columns: repeat(3,1fr);

  gap: 16px;
}

.related-card {
  border: 1px solid rgba(255,255,255,.14);

  border-radius: 18px;

  padding: 28px;
}

.related-card h3 {
  font: 600 25px var(--serif);

  margin: 0 0 8px;
}

.related-card p {
  font-size: 13px;

  color: rgba(255,255,255,.55);
}


/* =========================================================
   ANIMATION
========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(28px);

  transition:
    opacity .75s ease,
    transform .75s ease;
}

.reveal.visible {
  opacity: 1;

  transform: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .site-header {
    padding-left: 4vw;
    padding-right: 4vw;

    gap: 18px;
  }

  .header-right {
    gap: 18px;
  }

  .social-links {
    gap: 8px;
  }

  .social-handle {
    display: none;
  }

  .nav {
    gap: 17px;
  }

}


/* =========================================================
   TABLET / MOBILE NAVIGATION
========================================================= */

@media (max-width: 900px) {

  .site-header {
    height: 76px;

    min-height: 76px;

    padding:
      0 6vw;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .brand-name strong {
    font-size: 23px;
  }

  .brand-name small {
    font-size: 9px;

    letter-spacing: 2.5px;
  }

  .header-right {
    display: flex;

    gap: 15px;
  }

  .social-links {
    display: flex;

    gap: 8px;
  }

  .social-link {
    font-size: 0;
  }

  .social-icon {
    width: 34px;
    height: 34px;

    font-size: 13px;

    border-color: rgba(255,255,255,.4);
  }

  .nav {
    position: absolute;

    top: 84px;

    left: 15px;

    right: 15px;

    background: rgba(11,23,32,.98);

    padding: 20px;

    border-radius: 18px;

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 3px;

    box-shadow:
      0 20px 50px rgba(0,0,0,.25);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px 11px;
  }

  .nav-cta {
    text-align: center;

    margin-top: 8px;
  }

  .menu-toggle {
    display: flex;
  }

  .intro-grid,
  .section-heading,
  .service-layout,
  .contact-grid,
  .content-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .industry-card,
  .industry-card.large {
    min-height: 500px;
  }

  .industry-card.large {
    grid-row: auto;
  }

  .value-grid {
    grid-template-columns: 1fr 1fr;

    gap: 0;
  }

  .value {
    padding-bottom: 35px;
  }

  .values-head {
    display: block;
  }

  .hero-content {
    left: 7vw;

    right: 7vw;
  }

  .hero h1 {
    letter-spacing: -3px;
  }

  .hero-bottom span:last-child {
    display: none;
  }

  .product-grid,
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .google-map {
    height: 320px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .site-header {
    height: 72px;

    min-height: 72px;

    padding:
      0 5vw;
  }

  .brand {
    gap: 9px;
  }

  .brand-logo {
    width: 50px;

    height: 50px;
  }

  .brand-name strong {
    font-size: 19px;

    line-height: 18px;
  }

  .brand-name small {
    font-size: 8px;

    letter-spacing: 2px;
  }

  .header-right {
    gap: 7px;
  }

  .social-links {
    gap: 5px;
  }

  .social-icon {
    width: 31px;

    height: 31px;

    font-size: 11px;
  }

  .menu-toggle {
    width: 38px;

    height: 38px;
  }

  .nav {
    top: 80px;

    left: 10px;

    right: 10px;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    top: 48%;
  }

  .hero h1 {
    font-size: 54px;

    letter-spacing: -2.5px;
  }

  .hero-copy {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;

    align-items: flex-start;
  }

  .hero-bottom {
    left: 7vw;

    right: 7vw;
  }

  .section {
    padding: 90px 6vw;
  }

  .section-label {
    margin-bottom: 42px;
  }

  .section h2 {
    font-size: 47px;

    letter-spacing: -2px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .industry-card,
  .industry-card.large {
    min-height: 480px;
  }

  .statement {
    padding: 110px 7vw;
  }

  .statement h2 {
    font-size: 49px;

    letter-spacing: -2px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: flex-start;

    flex-direction: column;
  }

  .footer-top {
    display: block;
  }

  .footer-top > p {
    margin: 35px 0;

    text-align: left;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;

    margin-top: 10px;
  }

  .footer-brand .brand-logo {
    width: 70px;

    height: 70px;
  }

  .cta {
    min-height: 570px;
  }

  .page-hero {
    padding:
      145px
      6vw
      75px;

    min-height: 480px;
  }

  .page-hero h1 {
    font-size: 55px;

    letter-spacing: -2.5px;
  }

  .product-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .product-card .product-image {
    height: 210px;
  }

  .google-map {
    height: 280px;

    margin-top: 35px;

    border-radius: 18px;
  }

  .map-button {
    width: 100%;

    justify-content: center;
  }

  /* Floating WhatsApp on mobile */

  .floating-whatsapp {
    right: 16px;

    bottom: 16px;

    width: 52px;

    height: 52px;

    padding: 0;

    justify-content: center;

    border-radius: 50%;
  }

  .floating-whatsapp-text {
    display: none;
  }

  .floating-whatsapp-icon {
    font-size: 18px;
  }

}


/* =========================================================
   VERY SMALL MOBILE DEVICES
========================================================= */

@media (max-width: 390px) {

  .brand-name {
    display: none;
  }

  .social-icon {
    width: 29px;

    height: 29px;
  }

  .menu-toggle {
    width: 36px;

    height: 36px;
  }

  .hero h1 {
    font-size: 47px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: .01ms !important;

    scroll-behavior: auto !important;
  }

}