﻿@media (max-width: 600px) {
  body {
    background-position: center center, center center !important;
    background-size: cover, cover !important;
  }
  .container {
    width: 100vw !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 8px;
  }
}
@font-face {
  font-family: 'Merriweather';
  src: url('assets/fonts/merriweather/Merriweather_96pt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Merriweather';
  src: url('assets/fonts/merriweather/Merriweather_96pt-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Merriweather';
  src: url('assets/fonts/merriweather/Merriweather_96pt-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Merriweather';
  src: url('assets/fonts/merriweather/Merriweather_96pt-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/*
Theme Name: AVT Lifts
Theme URI: https://avtlifts.com.au/
Author: AVT Lifts
Version: 1.1.0
Description: Custom theme for AVT Lifts.
*/

:root {
  --bg: #f2f4f6;
  --bg-soft: #e7ebef;
  --bg-panel: #f7f8fa;
  --line: rgba(18, 20, 24, 0.12);
  --text: #14161a;
  --muted: rgba(20, 22, 26, 0.65);
  --accent: #b08a4b;
  --accent-2: #6c7ea0;
  --steel-base: #c7ccd2;
  --steel-dark: #8e949b;
  --steel-light: #f2f4f6;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
  --section-pad: clamp(64px, 8vw, 140px);
  --title-font: 'Merriweather', Georgia, serif;
  --body-font: 'Merriweather', Georgia, serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--text);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)),
    url('assets/img/steel-background.png');
  background-size: cover, cover;
  background-position: center, center right;
  background-attachment: fixed, fixed;
  background-repeat: no-repeat, no-repeat;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: min(45vw, 520px);
  height: min(45vh, 360px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.35) 55%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 0;
}

main,
#page,
.site {
  background: rgba(255, 255, 255, 0.5);
}

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

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

.container {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section--panel {
  background: rgba(255, 255, 255, 0.55);
  position: relative;
  backdrop-filter: blur(4px);
}

.section--panel::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, rgba(242, 244, 246, 0), var(--bg-soft));
  pointer-events: none;
}

.section__title {
  font-family: var(--title-font);
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: 0.5px;
  margin: 0 0 20px;
}

.section__lead {
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 20px);
  max-width: 740px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero .eyebrow {
  font-size: 24px;
  letter-spacing: 6px;
}

.section .eyebrow {
  font-size: 24px;
  letter-spacing: 6px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background:
    linear-gradient(135deg, rgba(243, 228, 196, 0.92) 0%, rgba(232, 208, 170, 0.94) 45%, rgba(220, 192, 150, 0.94) 70%, rgba(244, 227, 198, 0.92) 100%),
    rgba(245, 242, 237, 0.8);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(18, 20, 24, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  gap: 20px;
  min-height: 80px;
}

.nav__logo {
  display: flex;
  align-items: center;
  overflow: visible;
}

.nav__logo a {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav__logo img {
  height: 54px;
  width: auto;
  max-height: none;
}

.nav__menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav__links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-direction: row;
}

.nav__actions .button {
  padding: 10px 22px;
  min-width: 120px;
  max-width: none;
  min-height: 0;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1.3;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: linear-gradient(135deg, var(--steel-light) 0%, var(--steel-base) 45%, #d9dde2 70%, var(--steel-dark) 100%);
  color: #1a1d21;
  border-color: rgba(18, 20, 24, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 10px 18px rgba(18, 20, 24, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 500;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button--primary {
  background:
    linear-gradient(135deg, rgba(243, 228, 196, 0.92) 0%, rgba(232, 208, 170, 0.94) 45%, rgba(220, 192, 150, 0.94) 70%, rgba(244, 227, 198, 0.92) 100%);
  color: #1a1d21;
  border-color: rgba(18, 20, 24, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 10px 18px rgba(18, 20, 24, 0.12);
}

.panel .button--primary {
  background:
    linear-gradient(135deg, rgba(243, 228, 196, 0.92) 0%, rgba(232, 208, 170, 0.94) 45%, rgba(220, 192, 150, 0.94) 70%, rgba(244, 227, 198, 0.92) 100%);
  color: #1a1d21;
  font-weight: 700;
  border-color: rgba(18, 20, 24, 0.18);
}

.button--ghost {
  background:
    linear-gradient(135deg, rgba(243, 228, 196, 0.92) 0%, rgba(232, 208, 170, 0.94) 45%, rgba(220, 192, 150, 0.94) 70%, rgba(244, 227, 198, 0.92) 100%);
  color: #1a1d21;
  border-color: rgba(18, 20, 24, 0.18);
}

.page-template-page-gallery .button,
.page-template-page-gallery .button--ghost,
.page-template-page-gallery .button--primary {
  background:
    linear-gradient(135deg, rgba(243, 228, 196, 0.92) 0%, rgba(232, 208, 170, 0.94) 45%, rgba(220, 192, 150, 0.94) 70%, rgba(244, 227, 198, 0.92) 100%);
  color: #1a1d21;
  border-color: rgba(18, 20, 24, 0.18);
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 10px 18px rgba(18, 20, 24, 0.12);
}

body.page-template-page-gallery .button,
body.page-template-page-gallery .button--ghost,
body.page-template-page-gallery .button--primary {
  background:
    linear-gradient(135deg, rgba(243, 228, 196, 0.92) 0%, rgba(232, 208, 170, 0.94) 45%, rgba(220, 192, 150, 0.94) 70%, rgba(244, 227, 198, 0.92) 100%) !important;
  color: #1a1d21 !important;
  border-color: rgba(18, 20, 24, 0.18) !important;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 10px 18px rgba(18, 20, 24, 0.12) !important;
}

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

.hero {
  padding: clamp(90px, 12vw, 180px) 0 80px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.75) 45%, rgba(255, 255, 255, 0.6) 100%);
  z-index: 0;
}

.hero > .container,
.hero > .avt-showcase {
  position: relative;
  z-index: 1;
}

.page-template-page-gallery .section:first-of-type {
  position: relative;
}

.page-template-page-gallery .section:first-of-type::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.75) 45%, rgba(255, 255, 255, 0.6) 100%);
  z-index: 0;
}

.page-template-page-gallery .section:first-of-type > .container {
  position: relative;
  z-index: 1;
}

.hero__title {
  font-family: var(--title-font);
  font-size: clamp(40px, 7vw, 80px);
  margin: 0 0 16px;
}

.hero__copy {
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 22px);
  max-width: 820px;
  margin: 0 auto 28px;
}

.hero__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.ticker {
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 28px 0;
}

.ticker__track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: ticker 40s linear infinite;
}

.ticker__item {
  width: 220px;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

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

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.panel {
  background: var(--bg-panel);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(18, 20, 24, 0.08);
}

.panel-stack {
  display: grid;
  gap: 20px;
}

.panel-stack .panel {
  min-height: 210px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

@media (max-width: 980px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(18, 20, 24, 0.08);
}

.card__media {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid rgba(18, 20, 24, 0.08);
  background:
    linear-gradient(135deg, rgba(243, 228, 196, 0.92) 0%, rgba(232, 208, 170, 0.94) 45%, rgba(220, 192, 150, 0.94) 70%, rgba(244, 227, 198, 0.92) 100%);
  box-shadow: 0 10px 22px rgba(18, 20, 24, 0.12);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(18, 20, 24, 0.08);
}

.card--feature {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.card--feature .card__media {
  position: absolute;
  inset: 0;
  height: 100%;
  margin: 0;
  border: none;
  box-shadow: none;
  border-radius: var(--radius-md);
}

.card--feature .card__media img {
  height: 100%;
  filter: saturate(1.05) contrast(1.05);
}

.card--feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 16, 0.05) 10%, rgba(10, 12, 16, 0.55) 100%);
}

.card--feature .card__body {
  position: relative;
  z-index: 1;
  background: rgba(250, 251, 252, 0.9);
  border: 1px solid rgba(18, 20, 24, 0.1);
  border-radius: 14px;
  padding: 14px 16px;
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 24px rgba(18, 20, 24, 0.18);
}

.card-slider {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
}

.card-slider__viewport {
  width: min(980px, 92vw);
  background: var(--bg-panel);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.2);
  padding: 26px 26px 32px;
  overflow: hidden;
}

.card-slider__track {
  display: flex;
  transition: transform 0.8s ease;
}

.card-slider__slide {
  flex: 0 0 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-slider .card--feature {
  min-height: auto;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.card-slider .card--feature::after {
  content: none;
}

.card-slider .card__media {
  position: relative;
  height: min(60vh, 560px);
  margin: 0 0 18px;
  border-radius: var(--radius-md);
  border: 0;
  box-shadow: 0 14px 28px rgba(18, 20, 24, 0.22);
}

.card-slider .card__body {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  text-align: center;
}

.card-slider .card__title {
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.card-slider .card__copy {
  font-size: 15px;
  color: var(--muted);
}

.card-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.card-modal.is-open {
  display: flex;
}

.card-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 18, 0.72);
  backdrop-filter: blur(6px);
}

.card-modal__content {
  position: relative;
  z-index: 1;
  width: min(980px, 92vw);
  max-height: 88vh;
  background: var(--bg-panel);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 18px;
  padding: 26px;
  justify-items: center;
}

.card-modal__image {
  width: min(900px, 90vw);
  max-height: 60vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 28px rgba(18, 20, 24, 0.22);
}

.card-modal__text {
  text-align: center;
  max-width: 720px;
}

.card-modal__title {
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.card-modal__copy {
  color: var(--muted);
  font-size: 15px;
}

.card-modal__close,
.card-modal__next,
.card-modal__prev {
  position: absolute;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #14161a;
  font-size: 22px;
  line-height: 1;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-modal__close {
  top: 16px;
  right: 16px;
}

.card-modal__next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.card-modal__prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 680px) {
  .card-modal__content {
    padding: 20px;
  }

  .card-modal__next,
  .card-modal__prev {
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .card-modal__next {
    right: 16px;
  }

  .card-modal__prev {
    left: 16px;
  }
}

.card__title {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-align: center;
}

.card__copy {
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 32px;
  padding: 28px;
  border-radius: 24px;
  background: #c3c9cf;
  box-shadow: 0 16px 36px rgba(18, 20, 24, 0.16);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: transparent;
  aspect-ratio: 3 / 4;
  border: none;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.02);
  transform-origin: center;
  border-radius: calc(var(--radius-md) - 2px);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.gallery-modal.is-open {
  display: flex;
}

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 18, 0.72);
  backdrop-filter: blur(6px);
}

.gallery-modal__content {
  position: relative;
  z-index: 1;
  width: min(820px, 90vw);
  aspect-ratio: 3 / 4;
  background: var(--bg-panel);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.gallery-modal__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 8px);
}

.gallery-modal__label {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 20, 24, 0.12);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #1a1d21;
  box-shadow: 0 8px 16px rgba(18, 20, 24, 0.18);
  z-index: 2;
}

.gallery-modal__close,
.gallery-modal__next,
.gallery-modal__prev {
  position: absolute;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #14161a;
  font-size: 22px;
  line-height: 1;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-modal__close {
  top: 16px;
  right: 16px;
}

.gallery-modal__next {
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-modal__prev {
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 680px) {
  .gallery-modal__content {
    width: min(92vw, 520px);
  }

  .gallery-modal__next {
    right: 10px;
  }

  .gallery-modal__prev {
    left: 10px;
  }
}

.gallery-item__tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(12, 15, 18, 0.8);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gallery-item--coming-soon img {
  filter: grayscale(1) blur(8px) brightness(1.1);
  opacity: 0.18;
  transform: scale(1.08);
}

.gallery-item__coming-soon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: rgba(12, 15, 18, 0.8);
  font-weight: 700;
  transform: rotate(-35deg);
  pointer-events: none;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.quote {
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(18, 20, 24, 0.08);
}

.quote__stars {
  color: var(--accent);
  letter-spacing: 2px;
}

.quote__name {
  font-weight: 600;
  margin-top: 12px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.panel__map {
  margin-top: 18px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(18, 20, 24, 0.12);
  background: var(--bg-panel);
}

.panel__map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
  filter: none;
}

.footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--line);
  background: #f5f2ed;
}

.footer__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 32px;
}

.footer__cta-title {
  font-family: var(--title-font);
  font-size: clamp(28px, 4.5vw, 54px);
  max-width: 640px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.footer__title {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.footer__note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
}

.footer__note--center {
  text-align: center;
}

.contact-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.contact-modal.is-open {
  display: flex;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 18, 0.7);
  backdrop-filter: blur(6px);
}

.contact-modal__content {
  position: relative;
  z-index: 1;
  width: min(640px, 92vw);
  background: var(--bg-panel);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  padding: 28px;
  display: grid;
  gap: 18px;
}

.contact-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #14161a;
  font-size: 22px;
  line-height: 1;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-modal__callout {
  padding: 12px 18px;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(243, 228, 196, 0.92) 0%, rgba(232, 208, 170, 0.94) 45%, rgba(220, 192, 150, 0.94) 70%, rgba(244, 227, 198, 0.92) 100%);
  color: #1a1d21;
  border: 1px solid rgba(18, 20, 24, 0.12);
  display: block;
}

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

.contact-modal__label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}

.contact-modal__input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(18, 20, 24, 0.12);
  background: #fff;
  font-size: 14px;
  color: var(--text);
}

.contact-modal__textarea {
  resize: vertical;
}

.contact-modal__submit {
  justify-self: start;
}

.contact-modal__status {
  font-size: 13px;
  color: var(--muted);
}

.contact-modal__status.is-error {
  color: #8b2c2c;
}

.footer__col {
  display: grid;
  gap: 8px;
}

.footer__logo {
  justify-items: end;
  align-content: center;
}

.footer__logo .custom-logo,
.footer__logo img {
  max-width: 180px;
  height: auto;
}

@media (max-width: 820px) {
  .footer__cta {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer__logo {
    justify-items: start;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (max-width: 900px) {
  .nav__menu {
    display: none;
  }

  .hero {
    text-align: left;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .footer__cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    min-height: 64px;
  }

  .nav__actions {
    width: 100%;
  }

  .nav__logo img {
    height: 42px;
  }
}

.avt-showcase {
  padding: 40px 0 0;
  position: relative;
  z-index: 1;
}

.avt-showcase__top {
  margin-bottom: 24px;
}

.avt-kicker {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}

.avt-showcase__title {
  font-family: var(--title-font);
  font-size: clamp(28px, 4.4vw, 50px);
  margin: 0 0 12px;
}

.avt-showcase__sub {
  color: var(--muted);
  margin: 0 0 18px;
}

.avt-showcase__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 500;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--steel-light) 0%, var(--steel-base) 45%, #d9dde2 70%, var(--steel-dark) 100%);
  color: #1a1d21;
  border-color: rgba(18, 20, 24, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 10px 18px rgba(18, 20, 24, 0.12);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
}

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

.avt-fade-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
  position: relative;
  z-index: 2;
  padding: 28px;
  border-radius: 24px;
  background: #c3c9cf;
  box-shadow: 0 16px 36px rgba(18, 20, 24, 0.16);
}

.avt-fade-slot {
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.avt-fade-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 1.6s ease, transform 1.6s ease;
}

.avt-fade-slot img.is-visible {
  opacity: 1;
  transform: scale(1);
}

.avt-catalog-pill {
  margin-top: 32px;
  padding: 14px 24px;
  border-radius: 999px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(18, 20, 24, 0.12);
  background:
    linear-gradient(135deg, rgba(243, 228, 196, 0.92) 0%, rgba(232, 208, 170, 0.94) 45%, rgba(220, 192, 150, 0.94) 70%, rgba(244, 227, 198, 0.92) 100%);
  color: #1a1d21;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 10px 18px rgba(18, 20, 24, 0.1);
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  max-width: none;
}

@media (max-width: 980px) {
  .avt-fade-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .avt-fade-row {
    grid-template-columns: 1fr;
  }
}


/* Force logo to 72px regardless of SVG attributes */
.nav__logo {
  overflow: visible !important;
  height: auto !important;
}

.nav__logo a {
  display: block !important;
  height: 86px !important;
  width: auto !important;
  line-height: 0 !important;
}

.nav__logo img,
.nav__logo svg {
  height: 86px !important;
  width: auto !important;
  max-height: none !important;
  max-width: none !important;
  min-height: 86px !important;
}

/* Override any inline styles */
.nav__logo img[style],
.nav__logo svg[style] {
  height: 86px !important;
  width: auto !important;
}

@media (max-width: 768px) {
  .nav__logo a {
    height: 77px !important;
  }
  
  .nav__logo img,
  .nav__logo svg {
    height: 77px !important;
    min-height: 77px !important;
  }
}

@media (max-width: 600px) {
  .nav__logo a {
    height: 67px !important;
  }
  
  .nav__logo img,
  .nav__logo svg {
    height: 67px !important;
    min-height: 67px !important;
  }
}

/* ── Hamburger button ── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile nav drawer ── */
.nav__drawer {
  display: none;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(243, 228, 196, 0.97) 0%, rgba(232, 208, 170, 0.98) 45%, rgba(220, 192, 150, 0.98) 70%, rgba(244, 227, 198, 0.97) 100%);
  backdrop-filter: blur(12px);
}

.nav__drawer.is-open {
  display: block;
}

.nav__drawer-links {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 8px 0 16px;
}

.nav__drawer-links li a {
  display: block;
  padding: 14px 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease;
}

.nav__drawer-links li a:hover {
  color: var(--accent);
}

.nav__drawer-links li:last-child a {
  border-bottom: none;
}

@media (max-width: 900px) {
  .nav__hamburger {
    display: flex;
  }
}
