/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
  --purple-950: #1e073f;
  --purple-900: #2e0c69;
  --purple-800: #401291;
  --purple-700: #5a20bd;
  --purple-500: #8d54df;
  --purple-200: #d9c7f6;
  --purple-100: #eee7fb;
  --purple-50: #f8f5fd;

  --ink: #1e1b24;
  --muted: #6d6874;
  --line: #e8e1f0;

  --white: #ffffff;
  --green: #21a366;
  --orange: #ffa126;

  --shadow:
    0 24px 65px rgba(44, 14, 98, 0.14);

  --radius: 24px;

  --container: 1160px;
}


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

* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  color: var(--ink);

  background: var(--white);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
}


img {
  display: block;

  max-width: 100%;
}


a {
  color: inherit;

  text-decoration: none;
}


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


button {
  cursor: pointer;
}


.container {
  width:
    min(
      var(--container),
      calc(100% - 40px)
    );

  margin-inline: auto;
}


/* =========================================================
   SKIP LINK
========================================================= */

.skip-link {
  position: fixed;

  left: 12px;
  top: -80px;

  z-index: 9999;

  padding: 10px 14px;

  color: white;

  background: var(--purple-900);

  border-radius: 8px;
}


.skip-link:focus {
  top: 12px;
}



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

.site-header {
  position: sticky;

  top: 0;

  z-index: 100;

  border-bottom:
    1px solid rgba(64, 18, 145, 0.08);

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

  backdrop-filter: blur(16px);
}


.nav-wrap {
  min-height: 88px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 28px;
}



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

.brand {
  display: inline-flex;

  align-items: center;

  flex-shrink: 0;
}


.brand-image {
  display: inline-flex;

  align-items: center;

  line-height: 0;
}


.brand-image img {
  width: 215px;

  height: 70px;

  object-fit: contain;

  object-position: left center;
}


/* Footer version */

.brand-footer {
  width: fit-content;

  padding: 9px 12px;

  background: white;

  border-radius: 13px;
}


.brand-footer img {
  width: 215px;

  height: auto;

  max-height: 78px;

  object-fit: contain;
}



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

.site-nav {
  display: flex;

  align-items: center;

  gap: 30px;
}


.site-nav a {
  color: #514b58;

  font-size: 0.94rem;

  font-weight: 700;
}


.site-nav a:hover {
  color: var(--purple-800);
}


.site-nav .nav-cta {
  padding: 11px 18px;

  color: white;

  background: var(--purple-900);

  border-radius: 999px;
}



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

.menu-button {
  display: none;

  width: 44px;

  height: 44px;

  border: 0;

  background: transparent;

  border-radius: 10px;
}


.menu-button span {
  display: block;

  width: 23px;

  height: 2px;

  margin: 5px auto;

  background: var(--purple-900);

  transition:
    transform 0.25s,
    opacity 0.25s;
}



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

.hero {
  position: relative;

  overflow: hidden;

  padding:
    82px 0 88px;

  background:
    linear-gradient(
      130deg,
      #faf7fe 0%,
      #f3ecfc 56%,
      #ffffff 100%
    );
}


.hero::before {
  content: "";

  position: absolute;

  inset:
    auto -10% -42% -10%;

  height: 65%;

  border-radius: 50%;

  background:
    rgba(104, 48, 188, 0.06);

  transform:
    rotate(-3deg);
}


.hero-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(1px);

  opacity: 0.55;
}


.glow-one {
  width: 430px;

  height: 430px;

  right: 4%;

  top: -190px;

  background:
    radial-gradient(
      circle,
      rgba(151, 101, 230, 0.34),
      transparent 68%
    );
}


.glow-two {
  width: 360px;

  height: 360px;

  left: -180px;

  bottom: -180px;

  background:
    radial-gradient(
      circle,
      rgba(78, 21, 163, 0.25),
      transparent 68%
    );
}


.hero-grid {
  position: relative;

  display: grid;

  grid-template-columns:
    1.02fr 0.98fr;

  align-items: center;

  gap: 70px;
}



/* =========================================================
   EYEBROWS
========================================================= */

.eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 18px;

  color: var(--purple-700);

  font-size: 0.78rem;

  font-weight: 900;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}


.eyebrow::before {
  content: "";

  width: 30px;

  height: 2px;

  background: currentColor;
}



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

.hero h1 {
  max-width: 680px;

  margin: 0;

  color: var(--purple-950);

  font-size:
    clamp(
      2.75rem,
      5.7vw,
      5.15rem
    );

  line-height: 0.98;

  letter-spacing: -0.055em;
}


.hero-copy > p {
  max-width: 620px;

  margin: 25px 0 0;

  color: var(--muted);

  font-size: 1.12rem;
}



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

.hero-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 13px;

  margin-top: 32px;
}


.button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-height: 51px;

  padding: 13px 22px;

  border:
    1px solid transparent;

  border-radius: 999px;

  font-weight: 800;

  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}


.button:hover {
  transform:
    translateY(-2px);
}


.button.primary {
  color: white;

  background:
    linear-gradient(
      135deg,
      var(--purple-900),
      var(--purple-700)
    );

  box-shadow:
    0 14px 30px
    rgba(67, 17, 145, 0.22);
}


.button.secondary {
  color: var(--purple-900);

  background: white;

  border-color: var(--purple-200);
}



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

.hero-points {
  display: flex;

  flex-wrap: wrap;

  gap: 18px;

  margin-top: 28px;

  color: #514b58;

  font-size: 0.91rem;

  font-weight: 700;
}


.hero-points b {
  display: inline-grid;

  place-items: center;

  width: 20px;

  height: 20px;

  margin-right: 6px;

  color: white;

  background: var(--purple-700);

  border-radius: 50%;

  font-size: 0.7rem;
}



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

.hero-visual {
  position: relative;

  min-height: 585px;
}


.hero-image-frame {
  position: absolute;

  inset:
    0 35px 0 42px;

  overflow: hidden;

  border:
    13px solid white;

  border-radius:
    180px 46px 180px 46px;

  box-shadow: var(--shadow);

  transform:
    rotate(2deg);
}


.hero-image-frame img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}



/* =========================================================
   FLOATING CARDS
========================================================= */

.floating-card {
  position: absolute;

  z-index: 3;

  display: flex;

  align-items: center;

  gap: 12px;

  min-width: 220px;

  padding: 15px 17px;

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

  border:
    1px solid rgba(66, 19, 142, 0.1);

  border-radius: 17px;

  box-shadow:
    0 16px 35px
    rgba(44, 14, 98, 0.16);

  backdrop-filter:
    blur(12px);
}


.floating-card strong,
.floating-card small {
  display: block;
}


.floating-card strong {
  color: var(--purple-950);

  font-size: 0.91rem;
}


.floating-card small {
  color: var(--muted);

  font-size: 0.75rem;
}


.floating-icon {
  display: grid;

  place-items: center;

  width: 38px;

  height: 38px;

  flex:
    0 0 38px;

  color: white;

  background: var(--purple-800);

  border-radius: 12px;
}


.stock-card {
  left: 0;

  bottom: 78px;
}


.location-card {
  right: 0;

  top: 72px;
}



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

.trust-strip {
  border-top:
    1px solid var(--line);

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

  background: white;
}


.trust-grid {
  display: grid;

  grid-template-columns:
    0.8fr 0.8fr 1.4fr;
}


.trust-grid a {
  min-width: 0;

  padding: 25px 32px;

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


.trust-grid a:last-child {
  border-right: 0;
}


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


.trust-grid span {
  color: var(--muted);

  font-size: 0.72rem;

  font-weight: 900;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}


.trust-grid strong {
  overflow: hidden;

  margin-top: 4px;

  color: var(--purple-900);

  font-size: 1rem;

  text-overflow: ellipsis;

  white-space: nowrap;
}



/* =========================================================
   GENERAL SECTION STYLES
========================================================= */

.section {
  padding:
    105px 0;
}


.section-heading {
  max-width: 720px;

  margin:
    0 auto 52px;

  text-align: center;
}


.section-heading .eyebrow {
  justify-content: center;
}


h2 {
  margin: 0;

  color: var(--purple-950);

  font-size:
    clamp(
      2.1rem,
      4vw,
      3.5rem
    );

  line-height: 1.06;

  letter-spacing: -0.04em;
}


.section-heading p {
  max-width: 620px;

  margin:
    18px auto 0;

  color: var(--muted);

  font-size: 1.02rem;
}



/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
  background: var(--white);
}


.product-grid {
  display: grid;

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

  gap: 20px;
}


.product-card {
  overflow: hidden;

  background: white;

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

  border-radius: 22px;

  box-shadow:
    0 12px 30px
    rgba(36, 11, 77, 0.06);

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


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

  box-shadow:
    var(--shadow);
}


.product-card > img {
  width: 100%;

  height: 235px;

  object-fit: cover;

  background: #f7f5f9;
}


.product-card:nth-child(2) > img,
.product-card:nth-child(3) > img {
  object-fit: contain;

  padding: 15px;
}


.product-card-body {
  padding: 23px;
}


.product-number {
  color: var(--purple-500);

  font-size: 0.72rem;

  font-weight: 900;

  letter-spacing: 0.16em;
}


.product-card h3 {
  margin:
    8px 0 8px;

  color: var(--purple-950);

  font-size: 1.2rem;
}


.product-card p {
  min-height: 110px;

  margin: 0;

  color: var(--muted);

  font-size: 0.9rem;
}


.text-link {
  margin-top: 16px;

  padding: 0;

  color: var(--purple-700);

  background: transparent;

  border: 0;

  font-size: 0.88rem;

  font-weight: 900;

  text-align: left;
}



/* =========================================================
   ABOUT
========================================================= */

.about-section {
  background: var(--purple-50);
}


.about-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  align-items: center;

  gap: 80px;
}


.about-visual {
  position: relative;

  min-height: 590px;
}


.about-main {
  position: absolute;

  inset:
    0 65px 0 0;

  width:
    calc(100% - 65px);

  height: 100%;

  object-fit: cover;

  background: white;

  border:
    10px solid white;

  border-radius:
    34px 120px 34px 34px;

  box-shadow:
    var(--shadow);
}


.about-small {
  position: absolute;

  right: 0;

  bottom: 38px;

  width: 43%;

  aspect-ratio: 1;

  object-fit: cover;

  border:
    9px solid white;

  border-radius: 50%;

  box-shadow:
    var(--shadow);
}


.about-copy > p {
  color: var(--muted);

  font-size: 1.02rem;
}



/* =========================================================
   FEATURE LIST
========================================================= */

.feature-list {
  display: grid;

  gap: 18px;

  margin-top: 30px;
}


.feature-list > div {
  display: grid;

  grid-template-columns:
    42px 1fr;

  gap: 16px;

  align-items: start;
}


.feature-list span {
  display: grid;

  place-items: center;

  width: 42px;

  height: 42px;

  color: white;

  background: var(--purple-800);

  border-radius: 13px;

  font-size: 0.74rem;

  font-weight: 900;
}


.feature-list p {
  margin: 0;

  color: var(--muted);

  font-size: 0.93rem;
}


.feature-list strong {
  display: block;

  color: var(--ink);

  font-size: 1rem;
}


.gst-line {
  display: inline-block;

  margin-top: 30px !important;

  padding:
    9px 15px;

  border:
    1px dashed #c2a8ec;

  border-radius: 10px;

  background: white;

  font-size:
    0.86rem !important;
}



/* =========================================================
   GALLERY
========================================================= */

.gallery-section {
  background: white;
}


.gallery-grid {
  display: grid;

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

  grid-auto-rows: 245px;

  gap: 15px;
}


.gallery-item {
  position: relative;

  overflow: hidden;

  padding: 0;

  border: 0;

  border-radius: 20px;

  background: var(--purple-50);
}


.gallery-item::after {
  content: "View";

  position: absolute;

  right: 16px;

  bottom: 16px;

  padding:
    8px 13px;

  color: white;

  background:
    rgba(36, 9, 79, 0.78);

  border-radius: 999px;

  font-size: 0.76rem;

  font-weight: 800;

  opacity: 0;

  transform:
    translateY(8px);

  transition: 0.25s;
}


.gallery-item:hover::after {
  opacity: 1;

  transform:
    translateY(0);
}


.gallery-item img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition:
    transform 0.45s;
}


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


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


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


.gallery-item:nth-child(2) img,
.gallery-item:nth-child(5) img {
  object-fit: contain;

  padding: 15px;

  background: white;
}



/* =========================================================
   LOCATION
========================================================= */

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


.location-grid {
  display: grid;

  grid-template-columns:
    0.88fr 1.12fr;

  overflow: hidden;

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

  border-radius: 30px;

  background: white;

  box-shadow:
    var(--shadow);
}


.location-card-main {
  padding: 45px;
}


.location-card-main address {
  margin:
    24px 0 0;

  color: var(--muted);

  font-style: normal;

  font-size: 1.05rem;
}


.location-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 28px;
}


.shop-board {
  width: 100%;

  height: auto;

  margin-top: 35px;

  object-fit: contain;

  object-position:
    center 

  border-radius: 18px;
   display: block;
}


.map-wrap {
  min-height: 690px;

  background: #ede8f5;
}


.map-wrap iframe {
  display: block;

  width: 100%;

  height: 100%;

  min-height: 690px;

  border: 0;
}



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

.contact-section {
  overflow: hidden;

  color: white;

  background:
    radial-gradient(
      circle at 75% 15%,
      rgba(155, 95, 235, 0.32),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--purple-950),
      var(--purple-800)
    );
}


.contact-grid {
  display: grid;

  grid-template-columns:
    0.9fr 1.1fr;

  gap: 80px;

  align-items: start;
}


.eyebrow.light {
  color: #cfb8f4;
}


.contact-copy h2 {
  color: white;
}


.contact-copy > p {
  max-width: 540px;

  color:
    rgba(255, 255, 255, 0.73);

  font-size: 1.03rem;
}



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

.direct-contact {
  display: grid;

  gap: 12px;

  margin-top: 34px;
}


.direct-contact a {
  padding:
    15px 17px;

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

  border-radius: 15px;

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


.direct-contact small,
.direct-contact strong {
  display: block;
}


.direct-contact small {
  color:
    rgba(255, 255, 255, 0.58);

  font-size: 0.74rem;

  text-transform: uppercase;

  letter-spacing: 0.1em;
}


.direct-contact strong {
  overflow-wrap: anywhere;

  margin-top: 3px;
}



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

.enquiry-form {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 18px;

  padding: 34px;

  color: var(--ink);

  background: white;

  border-radius: 25px;

  box-shadow:
    0 30px 70px
    rgba(0, 0, 0, 0.22);
}


.form-row {
  display: grid;

  gap: 7px;
}


.form-row:nth-child(3),
.form-row:nth-child(4) {
  grid-column:
    1 / -1;
}


.form-row label {
  color: #47404e;

  font-size: 0.84rem;

  font-weight: 800;
}


.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;

  padding:
    13px 14px;

  color: var(--ink);

  background: #fbfafc;

  border:
    1px solid #ded7e6;

  border-radius: 12px;

  outline: none;

  transition:
    border 0.2s,
    box-shadow 0.2s;
}


.form-row textarea {
  resize: vertical;
}


.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--purple-500);

  box-shadow:
    0 0 0 4px
    rgba(116, 62, 198, 0.12);
}


.form-button {
  grid-column:
    1 / -1;

  width: 100%;

  color: white;

  background: var(--green);

  border: 0;
}


.form-note {
  grid-column:
    1 / -1;

  margin:
    -3px 0 0;

  color: var(--muted);

  font-size: 0.76rem;

  text-align: center;
}



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

.site-footer {
  padding:
    65px 0 0;

  color:
    rgba(255, 255, 255, 0.74);

  background: #17052f;
}


.footer-grid {
  display: grid;

  grid-template-columns:
    1.4fr 0.75fr 0.65fr 0.65fr;

  gap: 55px;
}


.footer-brand p {
  margin-top: 20px;
}


.site-footer h3 {
  margin:
    0 0 15px;

  color: white;

  font-size: 0.9rem;

  letter-spacing: 0.07em;

  text-transform: uppercase;
}


.site-footer a:not(.brand) {
  display: block;

  margin:
    9px 0;

  font-size: 0.9rem;
}


.site-footer a:hover {
  color: white;
}



/* =========================================================
   QR CODE
========================================================= */

.qr-block {
  justify-self: end;

  text-align: center;
}


.qr-block img {
  width: 118px;

  height: 118px;

  margin-inline: auto;

  padding: 7px;

  background: white;

  border-radius: 11px;
}


.qr-block span {
  display: block;

  margin-top: 9px;

  font-size: 0.76rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}



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

.footer-bottom {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  margin-top: 55px;

  padding:
    24px 0;

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

  font-size: 0.8rem;
}


.footer-bottom p {
  margin: 0;
}



/* =========================================================
   FLOATING WHATSAPP BUTTON
========================================================= */

.floating-whatsapp {
  position: fixed;

  z-index: 95;

  right: 22px;

  bottom: 22px;

  display: grid;

  place-items: center;

  width: 58px;

  height: 58px;

  color: white;

  background: #25d366;

  border:
    5px solid white;

  border-radius: 50%;

  box-shadow:
    0 14px 30px
    rgba(18, 71, 37, 0.3);
}


.floating-whatsapp svg {
  width: 29px;

  height: 29px;

  fill: currentColor;
}



/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox {
  width:
    min(
      920px,
      calc(100% - 32px)
    );

  padding: 0;

  overflow: visible;

  background: transparent;

  border: 0;
}


.lightbox::backdrop {
  background:
    rgba(17, 5, 36, 0.88);

  backdrop-filter:
    blur(7px);
}


.lightbox img {
  width: 100%;

  max-height: 82vh;

  object-fit: contain;

  border:
    8px solid white;

  border-radius: 18px;

  background: white;
}


.lightbox-close {
  position: absolute;

  right: -12px;

  top: -18px;

  z-index: 2;

  display: grid;

  place-items: center;

  width: 42px;

  height: 42px;

  color: white;

  background: var(--purple-800);

  border:
    3px solid white;

  border-radius: 50%;

  font-size: 1.6rem;

  line-height: 1;
}



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

.reveal {
  opacity: 0;

  transform:
    translateY(20px);

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


.reveal.visible {
  opacity: 1;

  transform: none;
}



/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 1020px) {


  .hero-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }


  .hero-copy {
    text-align: center;
  }


  .hero-copy > p {
    margin-inline: auto;
  }


  .hero-actions,
  .hero-points {
    justify-content: center;
  }


  .hero-visual {
    width:
      min(
        660px,
        100%
      );

    margin-inline: auto;
  }


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


  .product-card p {
    min-height: auto;
  }


  .about-grid,
  .contact-grid {
    gap: 45px;
  }


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


  .map-wrap {
    min-height: 460px;
  }


  .map-wrap iframe {
    min-height: 460px;
  }


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


  .qr-block {
    display: none;
  }


}



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

@media (max-width: 800px) {


  .nav-wrap {
    min-height: 82px;
  }


  .brand-image img {
    width: 180px;

    height: 62px;
  }


  .menu-button {
    display: block;
  }


  .site-nav {
    position: absolute;

    left: 20px;

    right: 20px;

    top: 76px;

    display: none;

    padding: 16px;

    background: white;

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

    border-radius: 16px;

    box-shadow:
      var(--shadow);
  }


  .site-nav.open {
    display: grid;

    gap: 5px;
  }


  .site-nav a {
    padding:
      11px 12px;

    border-radius: 9px;
  }


  .site-nav .nav-cta {
    text-align: center;
  }


  .menu-button[aria-expanded="true"]
  span:nth-child(1) {
    transform:
      translateY(7px)
      rotate(45deg);
  }


  .menu-button[aria-expanded="true"]
  span:nth-child(2) {
    opacity: 0;
  }


  .menu-button[aria-expanded="true"]
  span:nth-child(3) {
    transform:
      translateY(-7px)
      rotate(-45deg);
  }


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


  .trust-grid a {
    padding:
      18px 22px;

    border-right: 0;

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


  .trust-grid a:last-child {
    border-bottom: 0;
  }


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


  .about-visual {
    min-height: 530px;
  }


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


  .gallery-item.wide {
    grid-column:
      span 1;
  }


  .gallery-item.tall {
    grid-row:
      span 1;
  }


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


  .footer-brand {
    grid-column:
      1 / -1;
  }


}



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

@media (max-width: 560px) {


  .container {
    width:
      min(
        calc(100% - 28px),
        var(--container)
      );
  }


  /* Logo */

  .nav-wrap {
    min-height: 74px;
  }


  .brand-image img {
    width: 150px;

    height: 52px;
  }


  .brand-footer img {
    width: 185px;

    height: auto;
  }


  /* Hero */

  .hero {
    padding:
      65px 0 62px;
  }


  .hero h1 {
    font-size:
      clamp(
        2.45rem,
        14vw,
        3.4rem
      );
  }


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


  .hero-visual {
    min-height: 445px;
  }


  .hero-image-frame {
    inset:
      0 16px;

    border-radius:
      110px 30px 110px 30px;
  }


  .floating-card {
    min-width: 185px;

    padding: 12px;
  }


  .location-card {
    right: -5px;

    top: 42px;
  }


  .stock-card {
    left: -5px;

    bottom: 35px;
  }


  /* Sections */

  .section {
    padding:
      76px 0;
  }


  /* Products */

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


  .product-card > img {
    height: 270px;
  }


  /* About */

  .about-grid {
    gap: 35px;
  }


  .about-visual {
    min-height: 430px;
  }


  .about-main {
    right: 35px;

    width:
      calc(100% - 35px);
  }


  .about-small {
    width: 42%;

    right: 0;
  }


  /* Gallery */

  .gallery-grid {
    grid-auto-rows: 195px;
  }


  /* Location */

  .location-card-main {
    padding: 28px;
  }


  .location-actions .button {
    width: 100%;
  }


  .map-wrap {
    min-height: 380px;
  }


  .map-wrap iframe {
    min-height: 380px;
  }


  /* Contact */

  .contact-grid {
    gap: 35px;
  }


  .enquiry-form {
    grid-template-columns: 1fr;

    padding: 23px;
  }


  .form-row,
  .form-row:nth-child(3),
  .form-row:nth-child(4),
  .form-button,
  .form-note {
    grid-column: 1;
  }


  /* Footer */

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


  .footer-brand {
    grid-column: 1;
  }


  .footer-bottom {
    flex-direction: column;
  }


  /* WhatsApp */

  .floating-whatsapp {
    right: 14px;

    bottom: 14px;
  }


}



/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {


  html {
    scroll-behavior: auto;
  }


  *,
  *::before,
  *::after {
    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;
  }


  .reveal {
    opacity: 1;

    transform: none;
  }


}