/* ========================= Brand Fonts ========================= */

@font-face {
  font-family: 'Azonix';
  src: url('../assets/fonts/Azonix.woff') format('woff'),
       url('../assets/fonts/Azonix.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/Poppins-Light.woff') format('woff'),
       url('../assets/fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/Poppins-Light.woff') format('woff'),
       url('../assets/fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/Poppins-Regular.woff') format('woff'),
       url('../assets/fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/Poppins-Regular.woff') format('woff'),
       url('../assets/fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/Poppins-Medium.woff') format('woff'),
       url('../assets/fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/Poppins-Medium.woff') format('woff'),
       url('../assets/fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/Poppins-SemiBold.woff') format('woff'),
       url('../assets/fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/Poppins-SemiBold.woff') format('woff'),
       url('../assets/fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

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

@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/Poppins-Bold.woff') format('woff'),
       url('../assets/fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/Poppins-ExtraBold.woff') format('woff'),
       url('../assets/fonts/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/Poppins-ExtraBold.woff') format('woff'),
       url('../assets/fonts/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

/* ========================= Custom Properties ========================= */

:root {
  /* Color tokens */
  --color-red:          #B93338;
  --color-red-dark:     #8f2227;
  --color-red-light:    #f7e8e8;
  --color-dark:         #111110;
  --color-darker:       #0A0908;
  --color-dark-2:       #0F0E0C;
  --color-dark-3:       #1A1917;
  --color-dark-4:       #1C1A18;
  --color-dark-5:       #2E2B28;
  --color-off-white:    #F6F4F2;
  --color-off-white-2:  #EDEBE9;
  --color-border:       #D9D5D2;
  --color-text-muted:   #6B6560;
  --color-text-mid:     #47423E;
  --color-text-light:   #918B86;
  --color-white:        #fff;
  --color-green-bg:     #e6f4ec;
  --color-green-text:   #1a6636;

  /* Typography tokens */
  --font-brand:  'Azonix', sans-serif;
  --font-body:   'Poppins', 'Helvetica Neue', sans-serif;

  /* Spacing tokens */
  --space-4:   4px;
  --space-8:   8px;
  --space-12:  12px;
  --space-16:  16px;
  --space-20:  20px;
  --space-24:  24px;
  --space-28:  28px;
  --space-32:  32px;
  --space-40:  40px;
  --space-48:  48px;
  --space-56:  56px;
  --space-64:  64px;
  --space-80:  80px;
  --space-90:  90px;
  --space-96:  96px;

  /* Radii */
  --radius-sm:  2px;
  --radius-md:  6px;
  --radius-lg:  8px;
  --radius-xl:  10px;

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-mid:    250ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-reveal: 600ms cubic-bezier(0.22, 1, 0.36, 1);

  /* Container */
  --max-width: 1280px;
}

/* ========================= Reset ========================= */

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

html {
  scroll-behavior: smooth;
}

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

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

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

ul,
ol {
  list-style: none;
}

/* ========================= Base ========================= */

body {
  background: #111110;
  color: #fff;
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: #B93338;
  color: #fff;
}

/* ========================= Animations ========================= */

/* 3-image crossfade: each image stays visible for ~27% then fades out */
@keyframes vgfade {
  0%   { opacity: 1; }
  27%  { opacity: 1; }
  33%  { opacity: 0; }
  94%  { opacity: 0; }
  100% { opacity: 1; }
}

/* Ken Burns slow zoom */
@keyframes vgken {
  from { transform: scale(1.02); }
  to   { transform: scale(1.15); }
}

/* Subtle cinematic drift for the hero carousel */
@keyframes vgdrift {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

/* Gentle entrance for validation error messages */
@keyframes vgfadein {
  from { opacity: 0; transform: translateY(-2px); }
  to   { opacity: 1; transform: none; }
}

/* Marquee scroll — assumes duplicate content at 50% */
@keyframes vgmarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Simple spin */
@keyframes vgspin {
  to { transform: rotate(360deg); }
}

/* ========================= Utilities ========================= */

.vg_ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vg_ico svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.container_article {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px;
}

.align_left   { text-align: left; }
.align_right  { text-align: right; }
.align_center { text-align: center; }
.text_center  { text-align: center; }

.mar_top_20  { margin-top: 20px; }
.mar_top_40  { margin-top: 40px; }
.mar_top_60  { margin-top: 60px; }
.mar_bot_20  { margin-bottom: 20px; }
.pad_top_40  { padding-top: 40px; }
.pad_bot_20  { padding-bottom: 20px; }

.hide_mobile { display: block; }
.show_mobile { display: none; }

/* ========================= Buttons ========================= */

.btn_primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #B93338;
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 15px 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 150ms ease;
  text-decoration: none;
}

.btn_primary:hover {
  background: #8f2227;
}

.btn_primary_lg {
  padding: 17px 34px;
}

.btn_ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  padding: 15px 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease;
  text-decoration: none;
}

.btn_ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn_white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #111110;
  border: none;
  border-radius: 2px;
  padding: 15px 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 150ms ease;
  text-decoration: none;
}

.btn_white:hover {
  background: #F6F4F2;
}

.btn_dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #111110;
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 15px 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 150ms ease;
  text-decoration: none;
}

.btn_dark:hover {
  background: #1C1A18;
}

.btn_link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 150ms ease;
}

.btn_link_red   { color: #B93338; }
.btn_link_red:hover  { color: #8f2227; }
.btn_link_white { color: rgba(255, 255, 255, 0.55); }
.btn_link_white:hover { color: #fff; }

.btn_full {
  width: 100%;
  justify-content: center;
}

/* ========================= Navigation ========================= */

.section_nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: rgba(15, 14, 12, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 250ms ease;
}

.section_nav.is_scrolled {
  background: rgba(15, 14, 12, 0.96);
}

.nav_inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav_logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav_logo img {
  height: 34px;
  width: auto;
}

.nav_links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav_links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  transition: color 150ms ease;
  text-decoration: none;
}

.nav_links a:hover {
  color: #fff;
}

.nav_links_item {
  position: relative;
}

/* Dropdown */
.nav_dropdown {
  position: relative;
}

.nav_dropdown_trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 150ms ease;
}

.nav_dropdown_trigger:hover {
  color: #fff;
}

/* Dropdown chevron — small, vertically centred with the label */
.nav_dropdown_trigger .vg_ico {
  width: 14px;
  height: 14px;
}

.nav_dropdown_menu {
  position: absolute;
  top: 100%;
  left: -16px;
  padding-top: 16px;
  display: none;
  z-index: 500;
}

.nav_dropdown:hover .nav_dropdown_menu,
.nav_dropdown.is_open .nav_dropdown_menu {
  display: block;
}

.nav_dropdown_panel {
  background: #1A1917;
  border: 1px solid #2E2B28;
  border-radius: 6px;
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.nav_dropdown_item {
  display: block;
  padding: 12px 14px;
  border-radius: 4px;
  transition: background 150ms ease;
  text-decoration: none;
}

.nav_dropdown_item:hover {
  background: #2E2B28;
}

.nav_dropdown_item_name {
  font-family: 'Azonix', sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #fff;
}

.nav_dropdown_item_sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
}

.nav_cta {
  flex-shrink: 0;
}

/* Hamburger */
.nav_hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav_hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 250ms ease, opacity 250ms 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 overlay */
.nav_mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 399;
  background: rgba(10, 9, 8, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav_mobile.is_open {
  display: flex;
}

.nav_mobile a {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 150ms ease;
}

.nav_mobile a:hover {
  color: #fff;
}

/* ========================= Hero ========================= */

.section_hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #0A0908;
  /* Reserved gutter so the floating enquiry form overlaps hero image below
     the trust bar, never the trust-bar points themselves. */
  padding-bottom: 72px;
}

/* Carousel background layers */
.hero_bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  /* Subtle cinematic drift across the whole carousel. */
  animation: vgdrift 32s ease-in-out infinite alternate;
}

.hero_bg_img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* 3-image crossfade (was inline in front-page.php; in CSS so it can be
     disabled under prefers-reduced-motion). */
  animation: vgfade 21s infinite;
}

.hero_bg_img:nth-child(2) {
  animation-delay: -7s;
}

.hero_bg_img:nth-child(3) {
  animation-delay: -14s;
}

/* Ken Burns variant */
.hero_bg_kenburns {
  position: absolute;
  inset: -40px;
  background-size: cover;
  background-position: center;
  animation: vgken 22s ease-in-out infinite alternate;
}

/* Gradient overlays */
.hero_overlay_h {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 9, 8, 0.86) 0%, rgba(10, 9, 8, 0.55) 45%, rgba(10, 9, 8, 0.15) 100%);
}

.hero_overlay_v {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 9, 8, 0.7) 0%, transparent 30%);
}

.hero_content {
  position: relative;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 40px 40px;
}

.hero_content_inner {
  max-width: 760px;
}

/* Staggered entrance — parent stays put (overrides the global [data-reveal]
   hidden state); its children ease in one after another on reveal. */
.hero_content_inner[data-reveal] {
  opacity: 1;
  transform: none;
}

.hero_content_inner > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero_content_inner.is_visible > * {
  opacity: 1;
  transform: translateY(0);
}

.hero_content_inner.is_visible > :nth-child(1) { transition-delay: 0.05s; }
.hero_content_inner.is_visible > :nth-child(2) { transition-delay: 0.18s; }
.hero_content_inner.is_visible > :nth-child(3) { transition-delay: 0.32s; }
.hero_content_inner.is_visible > :nth-child(4) { transition-delay: 0.46s; }

.hero_eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.hero_eyebrow_line {
  width: 34px;
  height: 2px;
  background: #B93338;
  flex-shrink: 0;
}

.hero_eyebrow_text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.hero_h1 {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(42px, 6.6vw, 92px);
  line-height: 1.02;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 26px;
}

.hero_intro {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero_actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero_price {
  margin-left: 8px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero_price_label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.hero_price_value {
  font-family: 'Azonix', sans-serif;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: #fff;
}

/* Hero trust bar */
.hero_bar {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero_bar_inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.hero_bar_item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero_bar_icon {
  width: 26px;
  height: 26px;
  color: #B93338;
  flex-shrink: 0;
  display: inline-flex;
}

.hero_bar_title {
  font-family: 'Azonix', sans-serif;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #fff;
}

.hero_bar_sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 1px;
}

/* ========================= Enquiry Form (floating) ========================= */

.section_enquiry {
  position: relative;
  background: #F6F4F2;
}

.enquiry_card {
  background: #fff;
  border: 1px solid #D9D5D2;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(10, 9, 8, 0.28);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

/* minmax(0, ...) + min-width:0 so a wide child (the 300px-minimum Turnstile
   widget) can never push a track past the card and get clipped by the
   overflow:hidden above. */
.enquiry_card > * {
  min-width: 0;
}

@media only screen and (min-width: 769px) {
  .enquiry_card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.enquiry_info {
  background: #111110;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.enquiry_label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B93338;
  margin-bottom: 14px;
}

.enquiry_title {
  font-family: 'Azonix', sans-serif;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 16px;
}

.enquiry_desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

.enquiry_contacts {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.enquiry_contact_item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.enquiry_contact_item .vg_ico {
  width: 17px;
  height: 17px;
  color: #B93338;
}

.enquiry_form_wrap {
  padding: 36px 40px;
}

.enquiry_thankyou {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 0;
  height: 100%;
}

.enquiry_thankyou_icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e6f4ec;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.enquiry_thankyou_icon .vg_ico {
  width: 26px;
  height: 26px;
  color: #1a6636;
}

.enquiry_thankyou_title {
  font-family: 'Azonix', sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #0F0E0C;
  margin-bottom: 8px;
}

.enquiry_thankyou_text {
  font-size: 14px;
  color: #6B6560;
}

/* Countdown line appended to a thank-you note by emailsend.js when the form
   carries data-redirect. */
.form_redirect_note {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 14, 12, 0.1);
  font-size: 13px;
  color: #6B6560;
}

.form_redirect_count {
  font-weight: 700;
  color: #1a6636;
}

.form_redirect_note a {
  color: inherit;
  text-decoration: underline;
}

/* ========================= Forms ========================= */

.form_section form > div {
  /* Room for a one-line absolute error below each field, so a validation
     message never nudges adjacent fields. */
  margin-bottom: 20px;
}

.form_section label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #47423E;
  margin-bottom: 6px;
}

.form_section input:not([type="submit"]),
.form_section select,
.form_section textarea {
  width: 100%;
  height: 44px;
  border: 1.5px solid #D9D5D2;
  background: #fff;
  border-radius: 2px;
  padding: 0 13px;
  font-size: 14px;
  color: #0F0E0C;
  outline: none;
  font-family: 'Poppins', sans-serif;
  transition: border-color 150ms ease;
  -webkit-appearance: none;
  appearance: none;
}

.form_section textarea {
  height: auto;
  min-height: 80px;
  padding: 10px 13px;
  resize: vertical;
  line-height: 1.6;
}

.form_section input:focus,
.form_section select:focus,
.form_section textarea:focus {
  border-color: #B93338;
}

.form_section input::placeholder,
.form_section textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.form_section select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23918B86' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
  cursor: pointer;
}

/* Muted placeholder look while the "Select your area" option is still chosen. */
.form_section select:required:invalid {
  color: rgba(0, 0, 0, 0.4);
}

.form_section select option {
  color: #0F0E0C;
}

.form_row_2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
}

.form_row_2 > * {
  min-width: 0;
}

/* The Turnstile widget has a hard 300px minimum width of its own, so it must be
   allowed to size itself down rather than push the form wider than its card. */
.cf-turnstile {
  max-width: 100%;
}

.form_field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Validation errors: out of flow (no layout shift) + clearly an error. */
.form_section label.error {
  position: absolute;
  top: 100%;
  left: 0;
  margin: 4px 0 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #B93338;
  animation: vgfadein 200ms ease;
}

.form_section input.error,
.form_section select.error,
.form_section textarea.error {
  border-color: #B93338;
}

.form_hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ========================= Promotion Section ========================= */

.section_promo {
  background: #F6F4F2;
  padding: 40px 0 96px;
}

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

.promo_img_wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 9, 8, 0.2);
}

.promo_img_wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.promo_badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: #B93338;
  color: #fff;
  padding: 9px 16px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promo_label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B93338;
  margin-bottom: 14px;
}

.promo_title {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: #0F0E0C;
  margin-bottom: 12px;
}

.promo_desc {
  font-size: 16px;
  color: #6B6560;
  margin-bottom: 26px;
  line-height: 1.65;
}

.promo_checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-bottom: 30px;
}

.promo_check_item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #2E2B28;
}

.promo_check_item .vg_ico {
  width: 18px;
  height: 18px;
  color: #B93338;
  flex-shrink: 0;
}

/* ========================= Lifestyle Band ========================= */

.section_lifestyle {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.lifestyle_bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.lifestyle_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 9, 8, 0.85) 0%, rgba(10, 9, 8, 0.4) 60%, transparent 100%);
}

.lifestyle_content {
  position: relative;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 90px 40px;
}

.lifestyle_inner {
  max-width: 640px;
}

.lifestyle_label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #B93338;
  margin-bottom: 18px;
}

.lifestyle_title {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 22px;
}

.lifestyle_desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.lifestyle_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lifestyle_tag {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 2px;
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #fff;
}

/* ========================= Model Cards ========================= */

.section_models {
  background: #F6F4F2;
  padding: 96px 0;
}

.models_header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.models_label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B93338;
  margin-bottom: 12px;
}

.models_title {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(30px, 3.6vw, 46px);
  letter-spacing: 0.04em;
  color: #0F0E0C;
  margin-bottom: 14px;
}

.models_desc {
  font-size: 15px;
  color: #6B6560;
  line-height: 1.65;
}

.models_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.card_model {
  background: #fff;
  border: 1px solid #D9D5D2;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 250ms cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  display: block;
}

.card_model:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(10, 9, 8, 0.16);
}

.card_model_img {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.card_model_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.card_model:hover .card_model_img img {
  transform: scale(1.04);
}

.card_model_badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #111110;
  color: #fff;
  padding: 6px 12px;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card_model_body {
  padding: 28px 28px 30px;
}

.card_model_name {
  font-family: 'Azonix', sans-serif;
  font-size: 26px;
  letter-spacing: 0.06em;
  color: #0F0E0C;
  margin-bottom: 8px;
}

.card_model_tagline {
  font-size: 14px;
  color: #6B6560;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card_model_chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
}

.chip {
  background: #EDEBE9;
  color: #2E2B28;
  border-radius: 2px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 500;
}

.card_model_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #EDEBE9;
}

.card_model_price_label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #918B86;
}

.card_model_price {
  font-family: 'Azonix', sans-serif;
  font-size: 18px;
  letter-spacing: 0.03em;
  color: #0F0E0C;
  margin-top: 3px;
}

.card_model_link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #B93338;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.card_model_link .vg_ico {
  width: 15px;
  height: 15px;
}

/* ========================= About Preview ========================= */

.section_about_prev {
  background: #111110;
  padding: 96px 0;
}

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

.about_prev_label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B93338;
  margin-bottom: 14px;
}

.about_prev_title {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 20px;
}

.about_prev_text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
}

.about_prev_imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about_prev_imgs img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.about_prev_imgs img:last-child {
  margin-top: 32px;
}

/* ========================= Blog Section ========================= */

.section_blog {
  background: #F6F4F2;
  padding: 96px 0;
}

.blog_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

.blog_header_left {
  flex: 1;
  min-width: 0;
}

.blog_label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B93338;
  margin-bottom: 12px;
}

.blog_title {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: 0.04em;
  color: #0F0E0C;
}

.blog_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.card_post {
  background: #fff;
  border: 1px solid #D9D5D2;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 250ms cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
  text-decoration: none;
}

.card_post:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10, 9, 8, 0.14);
}

.card_post_img {
  height: 210px;
  overflow: hidden;
}

.card_post_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.card_post:hover .card_post_img img {
  transform: scale(1.04);
}

.card_post_body {
  padding: 24px 24px 28px;
}

.card_post_meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.card_post_cat {
  background: #f7e8e8;
  color: #8f2227;
  border-radius: 2px;
  padding: 4px 9px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.card_post_date {
  font-size: 12px;
  color: #918B86;
}

.card_post_title {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
  color: #0F0E0C;
  margin-bottom: 10px;
}

.card_post_excerpt {
  font-size: 14px;
  color: #6B6560;
  line-height: 1.6;
  margin-bottom: 16px;
}

.card_post_link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #B93338;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.card_post_link .vg_ico {
  width: 14px;
  height: 14px;
}

/* ========================= Videos ========================= */

.section_videos {
  background: #0A0908;
  padding: 90px 0;
}

.videos_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-bottom: 44px;
}

.videos_channel_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 150ms ease, color 150ms ease;
}

.videos_channel_link:hover {
  color: #fff;
  gap: 12px;
}

.videos_channel_link .vg_ico {
  width: 15px;
  height: 15px;
}

.videos_label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B93338;
  margin-bottom: 12px;
}

.videos_title {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: 0.04em;
  color: #fff;
}

.videos_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card_video_btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.card_video_thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: #1A1917;
}

.card_video_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 250ms ease;
}

.card_video_btn:hover .card_video_thumb img {
  opacity: 0.94;
}

.card_video_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 9, 8, 0.55), transparent 60%);
  transition: opacity 200ms ease;
}

.card_video_play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(185, 51, 56, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1), background 150ms ease, opacity 200ms ease;
}

.card_video_play .vg_ico {
  width: 26px;
  height: 26px;
  color: #fff;
  margin-left: 3px;
}

.card_video_btn:hover .card_video_play {
  transform: translate(-50%, -50%) scale(1.06);
  background: #B93338;
}

.card_video_btn:focus-visible {
  outline: 2px solid #B93338;
  outline-offset: 3px;
}

.card_video_title {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}

.card_video_iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.card_video.is_playing .card_video_play,
.card_video.is_playing .card_video_overlay {
  opacity: 0;
  pointer-events: none;
}

/* ── Facebook Reels ──
   Plain links out to Facebook, sat under the video grid. */

.reels_links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 32px;
}

.reels_link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease;
}

.reels_link:hover {
  color: #fff;
}

.reels_link:focus-visible {
  outline: 2px solid #B93338;
  outline-offset: 3px;
}

.reels_link_mark {
  display: inline-flex;
  width: 17px;
  height: 17px;
  color: #B93338;
}

.reels_link_mark svg {
  width: 100%;
  height: 100%;
}

.reels_link .vg_ico {
  width: 14px;
  height: 14px;
}

/* ========================= Testimonials ========================= */

.section_testimonials {
  background: #111110;
  padding: 96px 0;
}

/* Header: title left, carousel controls right (matches the blog section). */
.testimonials_header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 32px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.testimonials_label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B93338;
  margin-bottom: 12px;
}

.testimonials_title {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: 0.04em;
  color: #fff;
}

.testimonials_controls {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.testimonials_arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #2E2B28;
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, opacity 150ms ease;
}

.testimonials_arrow:hover {
  border-color: #B93338;
  background: rgba(185, 51, 56, 0.14);
}

.testimonials_arrow .vg_ico {
  width: 18px;
  height: 18px;
}

.testimonials_arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

/* Carousel track — horizontal scroll-snap, no scrollbar chrome. */
.testimonials_track {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.testimonials_track::-webkit-scrollbar {
  display: none;
}

.card_testimonial {
  position: relative;
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: #1A1917;
  border: 1px solid #2E2B28;
  border-radius: 8px;
  padding: 30px 28px;
}

/* Faint quote glyph gives the image-less card presence. */
.card_testimonial::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  right: 22px;
  font-family: 'Azonix', sans-serif;
  font-size: 64px;
  line-height: 1;
  color: rgba(185, 51, 56, 0.22);
  pointer-events: none;
}

.card_testimonial_stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #B93338;
}

.card_testimonial_stars .vg_ico {
  width: 16px;
  height: 16px;
}

.card_testimonial_quote {
  flex: 1 1 auto;
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  text-wrap: pretty;
}

.card_testimonial_name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.card_testimonial_place {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 2px;
}

/* ========================= Final CTA ========================= */

.section_cta {
  position: relative;
  overflow: hidden;
}

.cta_bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta_overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.72);
}

.cta_content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 110px 40px;
  text-align: center;
}

.cta_title {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 22px;
}

.cta_desc {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  line-height: 1.65;
}

.cta_actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================= Page Hero (inner pages) ========================= */

.section_page_hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0A0908;
}

.section_page_hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page_hero_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 9, 8, 0.92), rgba(10, 9, 8, 0.3));
}

.page_hero_content {
  position: relative;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px 60px;
}

.page_hero_eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.page_hero_eyebrow_line {
  width: 26px;
  height: 2px;
  background: #B93338;
  flex-shrink: 0;
}

.page_hero_label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #B93338;
  margin-bottom: 16px;
}

.page_hero_h1 {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: #fff;
}

.page_hero_desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin-top: 14px;
  line-height: 1.65;
}

/* ========================= Model Hero ========================= */

.section_model_hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0A0908;
}

.section_model_hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model_hero_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 9, 8, 0.9) 0%, rgba(10, 9, 8, 0.25) 55%, rgba(10, 9, 8, 0.45) 100%);
}

.model_hero_content {
  position: relative;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px 64px;
}

.model_hero_inner {
  max-width: 720px;
}

.model_badge {
  display: inline-block;
  background: #B93338;
  color: #fff;
  padding: 7px 14px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.model_hero_h1 {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(52px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 20px;
}

.model_hero_tagline {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin-bottom: 32px;
}

.model_hero_actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.model_hero_price {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.model_hero_price_note {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3px;
}

.model_hero_price_value {
  font-family: 'Azonix', sans-serif;
  font-size: 26px;
  letter-spacing: 0.03em;
  color: #fff;
}

/* ========================= Model Sections ========================= */

.section_model_intro {
  background: #fff;
  padding: 90px 0;
}

.model_intro_label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B93338;
  margin-bottom: 18px;
}

.model_intro_lead {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 300;
  line-height: 1.5;
  color: #0F0E0C;
  margin-bottom: 36px;
}

.model_writeup_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.model_writeup_grid p {
  font-size: 16px;
  line-height: 1.75;
  color: #47423E;
}

.section_model_gallery {
  background: #F6F4F2;
  padding: 90px 0;
}

.gallery_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.gallery_item {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery_item:hover img {
  transform: scale(1.06);
}

/* Clickable tile: reset the button so it fills the item and shows a zoom cursor. */
.gallery_open {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

.gallery_open:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 3px;
}

/* ===== Gallery Carousel ===== */
/* Inline horizontal slider. Reuses .gallery_grid (kept as the class) so the
   lightbox still auto-wires it; the wrapper just adds sliding + arrow controls. */
.gallery_carousel {
  position: relative;
}

.gallery_carousel .gallery_grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0;
}

.gallery_carousel .gallery_grid::-webkit-scrollbar {
  display: none;
}

.gallery_carousel .gallery_item {
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
}

.gallery_controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.gallery_arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(26, 25, 23, 0.18);
  background: #fff;
  color: #1A1917;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease, opacity 150ms ease;
}

.gallery_arrow:hover {
  border-color: var(--color-red);
  color: var(--color-red);
}

.gallery_arrow .vg_ico {
  width: 18px;
  height: 18px;
}

.gallery_arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

@media only screen and (max-width: 1024px) {
  .gallery_carousel .gallery_item {
    flex-basis: calc(50% - 12px);
  }
}

@media only screen and (max-width: 768px) {
  .gallery_carousel .gallery_item {
    flex-basis: 85%;
  }
}

/* ===== Gallery Lightbox ===== */
/* Full-screen popup carousel, built and reused by scripts/main.js. */
.gallery_lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 72px;
}

.gallery_lightbox.is_open {
  display: flex;
}

.has_lightbox_open {
  overflow: hidden;
}

.gallery_lightbox_backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.9);
  cursor: zoom-out;
}

.gallery_lightbox_figure {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery_lightbox_img {
  max-width: 90vw;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  display: block;
}

.gallery_lightbox_caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-24);
  width: 100%;
  margin-top: var(--space-16);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
}

.gallery_lightbox_counter {
  flex: none;
  color: var(--color-text-light);
  font-weight: 600;
}

/* Prev / next / close controls. */
.gallery_lightbox_nav,
.gallery_lightbox_close {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--transition-fast);
}

.gallery_lightbox_nav:hover,
.gallery_lightbox_close:hover,
.gallery_lightbox_nav:focus-visible,
.gallery_lightbox_close:focus-visible {
  background: var(--color-red);
  outline: none;
}

.gallery_lightbox_nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
}

.gallery_lightbox_prev { left: 12px; }
.gallery_lightbox_next { right: 12px; }

.gallery_lightbox_close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
}

.gallery_lightbox_nav svg { width: 26px; height: 26px; }
.gallery_lightbox_close svg { width: 22px; height: 22px; }

.section_model_build {
  background: #111110;
  padding: 90px 0;
}

.model_build_header {
  max-width: 640px;
  margin-bottom: 52px;
}

.model_build_label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B93338;
  margin-bottom: 14px;
}

.model_build_title {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0.03em;
  color: #fff;
}

.model_features_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: #2E2B28;
  border: 1px solid #2E2B28;
  border-radius: 8px;
  overflow: hidden;
}

.model_feature_item {
  background: #1A1917;
  padding: 30px 26px;
}

.model_feature_icon {
  width: 30px;
  height: 30px;
  color: #B93338;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.model_feature_name {
  font-family: 'Azonix', sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 16px 0 6px;
}

.model_feature_desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.section_model_video {
  background: #0A0908;
  padding: 90px 0;
}

.model_video_wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.model_video_inner {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  transition: opacity 150ms ease;
}

.model_video_inner:hover {
  opacity: 0.95;
}

.model_video_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.model_video_overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.35);
}

.model_video_play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(185, 51, 56, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.model_video_play .vg_ico {
  width: 34px;
  height: 34px;
  color: #fff;
  margin-left: 4px;
}

.model_video_label {
  position: absolute;
  bottom: 24px;
  left: 26px;
  color: #fff;
}

.model_video_iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.model_video_inner.is_playing .model_video_overlay,
.model_video_inner.is_playing .model_video_play,
.model_video_inner.is_playing .model_video_label {
  display: none;
}

.model_video_label_sub {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.model_video_label_title {
  font-family: 'Azonix', sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.section_model_interior {
  background: #fff;
  padding: 90px 0;
}

.model_interior_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
}

.model_interior_label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B93338;
  margin-bottom: 14px;
}

.model_interior_title {
  font-family: 'Azonix', sans-serif;
  font-size: 26px;
  letter-spacing: 0.05em;
  color: #0F0E0C;
  margin-bottom: 22px;
}

.model_feature_list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.model_feature_list_item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #2E2B28;
}

.model_feature_list_item .vg_ico {
  width: 20px;
  height: 20px;
  color: #B93338;
  flex-shrink: 0;
}

.section_model_sleep {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.model_sleep_bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.model_sleep_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(10, 9, 8, 0.5) 45%, rgba(10, 9, 8, 0.9) 100%);
}

.model_sleep_content {
  position: relative;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  justify-content: flex-end;
}

.model_sleep_inner {
  max-width: 460px;
  text-align: right;
}

.model_sleep_label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B93338;
  margin-bottom: 14px;
}

.model_sleep_title {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 18px;
}

.model_sleep_desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.section_model_specs {
  background: #F6F4F2;
  padding: 90px 0;
}

.specs_header {
  margin-bottom: 36px;
}

.specs_header_label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B93338;
  margin-bottom: 12px;
}

.specs_header_title {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: 0.04em;
  color: #0F0E0C;
}

.specs_table {
  background: #fff;
  border: 1px solid #D9D5D2;
  border-radius: 8px;
  overflow: hidden;
}

.specs_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 26px;
  border-bottom: 1px solid #EDEBE9;
}

.specs_row:last-child {
  border-bottom: none;
}

.specs_label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #918B86;
}

.specs_value {
  font-size: 16px;
  font-weight: 500;
  color: #0F0E0C;
}

.specs_note {
  margin-top: 16px;
  font-size: 12px;
  color: #918B86;
  line-height: 1.5;
}

.section_model_extras {
  background: #fff;
  padding: 90px 0;
}

.extras_header {
  margin-bottom: 28px;
}

.extras_header_label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B93338;
  margin-bottom: 12px;
}

.extras_header_title {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: 0.04em;
  color: #0F0E0C;
}

.extras_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.extra_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid #D9D5D2;
  border-radius: 6px;
  background: #F6F4F2;
}

.extra_name {
  font-size: 14px;
  font-weight: 500;
  color: #2E2B28;
}

.extra_price {
  font-size: 13px;
  font-weight: 600;
  color: #B93338;
}

.extras_cta {
  margin-top: 24px;
}

.section_model_eblicence {
  background: #B93338;
  padding: 70px 0;
  text-align: center;
}

.eblicence_icon {
  width: 40px;
  height: 40px;
  color: #fff;
  display: inline-flex;
  margin-bottom: 16px;
}

.eblicence_title {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(26px, 3.4vw, 44px);
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 14px;
}

.eblicence_desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.65;
}

.eblicence_hashtag {
  font-family: 'Azonix', sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #fff;
}

/* Model enquiry dark section */
.section_model_enquiry {
  background: #111110;
  padding: 80px 0;
}

.model_enquiry_header {
  text-align: center;
  margin-bottom: 34px;
}

.model_enquiry_label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B93338;
  margin-bottom: 12px;
}

.model_enquiry_title {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: 0.04em;
  color: #fff;
}

.model_enquiry_form_wrap {
  background: #fff;
  border: 1px solid #D9D5D2;
  border-radius: 8px;
  padding: 32px;
}

/* ========================= About Page ========================= */

.section_about_intro {
  background: #fff;
  padding: 90px 0;
  text-align: center;
}

.about_intro_text {
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 300;
  line-height: 1.5;
  color: #0F0E0C;
  max-width: 820px;
  margin: 0 auto;
}

.section_about_story {
  background: #F6F4F2;
  padding: 0 0 20px;
}

.about_split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
  padding: 56px 0;
}

.about_split_text h2 {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: 0.04em;
  color: #0F0E0C;
  margin-bottom: 18px;
}

.about_split_label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B93338;
  margin-bottom: 12px;
}

.about_split_text p {
  font-size: 16px;
  line-height: 1.75;
  color: #47423E;
}

.about_split img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.section_about_pillars {
  background: #111110;
  padding: 90px 0;
}

.about_pillars_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.about_pillar {
  background: #1A1917;
  border: 1px solid #2E2B28;
  border-radius: 8px;
  padding: 40px;
}

.about_pillar_icon {
  width: 34px;
  height: 34px;
  color: #B93338;
  display: inline-flex;
  margin-bottom: 18px;
}

.about_pillar_title {
  font-family: 'Azonix', sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 14px;
}

.about_pillar_text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.section_about_cta {
  position: relative;
  overflow: hidden;
}

/* ========================= Blog Page ========================= */

/* Blog listing / archive — light intro header */
body.blog,
body.archive {
  background: var(--color-off-white);
}

.blog_intro {
  padding: 128px 0 8px;
}

.blog_intro_inner {
  max-width: 720px;
}

.blog_intro_h1 {
  font-family: var(--font-brand);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: 0.03em;
  color: var(--color-dark-2);
  text-wrap: balance;
}

.blog_intro_desc {
  margin-top: 16px;
  max-width: 52ch;
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.blog_page_body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 40px 90px;
}

/* Pagination */
.blog_page_body .pagination {
  margin-top: 48px;
}

.blog_page_body .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-text-mid);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
}

.page-numbers:hover {
  border-color: var(--color-red);
  color: var(--color-red);
}

.page-numbers.current {
  background: var(--color-red);
  border-color: var(--color-red);
  color: #fff;
}

.page-numbers.dots {
  border: none;
  background: none;
}

.blog_featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  background: #fff;
  border: 1px solid #D9D5D2;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 44px;
  transition: box-shadow 250ms ease;
  text-decoration: none;
  display: grid;
}

.blog_featured:hover {
  box-shadow: 0 16px 40px rgba(10, 9, 8, 0.14);
}

.blog_featured_img {
  min-height: 320px;
  overflow: hidden;
}

.blog_featured_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog_featured_body {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog_featured_badge {
  background: #B93338;
  color: #fff;
  border-radius: 2px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog_featured_meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.blog_featured_date {
  font-size: 12px;
  color: #918B86;
}

.blog_featured_title {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: #0F0E0C;
  margin-bottom: 14px;
}

.blog_featured_excerpt {
  font-size: 16px;
  line-height: 1.7;
  color: #6B6560;
  margin-bottom: 22px;
}

.blog_featured_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #B93338;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog_featured_link .vg_ico {
  width: 15px;
  height: 15px;
}

.blog_posts_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

/* ========================= Single Post ========================= */

body.single {
  background: var(--color-off-white);
}

.article_intro {
  max-width: 720px;
  margin: 0 auto;
  padding: 118px 40px 0;
}

.article_back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  transition: color 150ms ease;
  text-decoration: none;
}

.article_back:hover {
  color: var(--color-red);
}

.article_back .vg_ico {
  width: 15px;
  height: 15px;
}

.article_cat_badge {
  background: #B93338;
  color: #fff;
  border-radius: 2px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article_meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 16px;
}

.article_meta_date {
  font-size: 13px;
  color: var(--color-text-muted);
}

.article_intro_h1 {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: var(--color-dark-2);
  text-wrap: balance;
}

.article_hero_figure {
  max-width: 960px;
  margin: 40px auto 0;
  padding: 0 40px;
}

.article_hero_figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.article_body {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 40px 90px;
}

.article_body p {
  font-size: 18px;
  line-height: 1.8;
  color: #2E2B28;
  margin-bottom: 28px;
}

.article_body h2 {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(24px, 2.8vw, 34px);
  letter-spacing: 0.03em;
  color: #0F0E0C;
  margin-bottom: 16px;
  margin-top: 48px;
}

.article_body h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0F0E0C;
  margin-bottom: 14px;
  margin-top: 36px;
}

.article_footer {
  margin-top: 24px;
  padding-top: 32px;
  border-top: 1px solid #EDEBE9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.article_hashtag {
  font-family: 'Azonix', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #B93338;
}

/* ========================= Contact Page ========================= */

.section_contact_body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.contact_info_card {
  background: #111110;
  border-radius: 10px;
  padding: 32px;
  margin-bottom: 20px;
}

.contact_info_title {
  font-family: 'Azonix', sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 22px;
}

.contact_info_item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 18px;
}

.contact_info_item:last-child {
  margin-bottom: 0;
}

.contact_info_item .vg_ico {
  width: 19px;
  height: 19px;
  color: #B93338;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact_info_item > div {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.contact_info_text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.contact_form_card {
  background: #fff;
  border: 1px solid #D9D5D2;
  border-radius: 10px;
  padding: 28px;
}

.contact_form_title {
  font-family: 'Azonix', sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #0F0E0C;
  margin-bottom: 20px;
}

.contact_map {
  position: relative;
  background: #1A1917;
  border-radius: 10px;
  overflow: hidden;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_map_overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(10, 9, 8, 0.85);
  border: 1px solid #2E2B28;
  border-radius: 6px;
  padding: 16px 20px;
}

.contact_map_overlay_title {
  font-family: 'Azonix', sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #fff;
}

.contact_map_overlay_sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.contact_map_legend {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(10, 9, 8, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid #2E2B28;
  border-radius: 6px;
  padding: 12px 16px;
}

.contact_map_legend_title {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.contact_map_legend_item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #fff;
  margin-bottom: 4px;
}

.contact_map_legend_item:last-child {
  margin-bottom: 0;
}

.contact_map_dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== Find a Dealer (map + list) ===== */
.dealers_section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 90px;
}

.dealers_title {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: 0.04em;
  color: #0F0E0C;
  margin-bottom: 12px;
}

.dealers_intro {
  max-width: 720px;
  font-size: 14px;
  line-height: 1.6;
  color: #6B655F;
  margin-bottom: 28px;
}

/* Layout: full-width map on top, dealer cards in a grid below. */
.dealers_layout {
  display: block;
}

/* Map */
.dealer_map_wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #D9D5D2;
  margin-bottom: 28px;
}

/* Explicit height: Leaflet needs a sized container at init. */
.dealer_map {
  width: 100%;
  height: 440px;
  background: #E8E5E2;
}

/* Greyscale the base tiles only; markers/popups stay full-contrast. */
.dealer_map .leaflet-tile-pane {
  filter: grayscale(1) contrast(0.95);
}

.dealer_map_legend {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 500;
  background: rgba(15, 14, 12, 0.85);
  border: 1px solid #2E2B28;
  border-radius: 6px;
  padding: 12px 14px;
  min-width: 130px;
  pointer-events: none;
}

.dealer_map_legend_title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.dealer_map_legend_item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 6px;
}

/* Cards grid: 3 per row on desktop. */
.dealer_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dealer_card {
  background: #fff;
  border: 1px solid #D9D5D2;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.dealer_card:hover {
  border-color: #B7B0AA;
}

.dealer_card.is_active {
  border-color: #B93338;
  box-shadow: 0 0 0 1px #B93338;
}

.dealer_card_media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #EDEAE7;
  overflow: hidden;
}

.dealer_card_photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* HQ uses the brand logo rather than a location photo. */
.dealer_card_media_logo {
  background: #0F0E0C;
}

.dealer_card_media_logo .dealer_card_photo {
  object-fit: contain;
  padding: 26px 32px;
}

.dealer_card_badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 9px;
  border-radius: 4px;
  background: rgba(15, 14, 12, 0.72);
}

.dealer_card_badge_hq { background: #B93338; }
.dealer_card_badge_dealer { background: #3E7C59; }
.dealer_card_badge_agent { background: #C67B2C; }

.dealer_card_body {
  padding: 20px 22px 22px;
}

.dealer_card_header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.dealer_card_name {
  font-family: 'Azonix', sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #0F0E0C;
}

.dealer_card_item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: #47423E;
  line-height: 1.5;
}

.dealer_card_item .vg_ico {
  width: 15px;
  height: 15px;
  color: #918B86;
  flex-shrink: 0;
  margin-top: 2px;
}

.dealer_card_link {
  color: #47423E;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.dealer_card_link:hover {
  color: #B93338;
  border-bottom-color: #B93338;
}

.dealer_card_directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #B93338;
  text-decoration: none;
}

.dealer_card_directions .vg_ico {
  width: 15px;
  height: 15px;
  color: #B93338;
}

.dealer_card_directions:hover {
  text-decoration: underline;
}

/* Coloured status dots (cards + legend + map pins share this key). */
.dealer_dot_dealer { background: #3E7C59; }
.dealer_dot_agent { background: #C67B2C; }

/* Leaflet marker pins colour-coded by type — round dots matching the legend. */
.dealer_pin {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
  box-sizing: border-box;
}

.dealer_pin_hq { background: #B93338; }
.dealer_pin_dealer { background: #3E7C59; }
.dealer_pin_agent { background: #C67B2C; }

.dealer_popup_title {
  font-weight: 700;
  color: #0F0E0C;
  margin-bottom: 3px;
}

.dealer_popup_addr {
  color: #6B655F;
  margin-bottom: 6px;
}

.dealer_popup_dir {
  color: #B93338;
  font-weight: 600;
  text-decoration: none;
}

/* ========================= Calculator Page ========================= */

.section_calc_hero {
  background: #0A0908;
  padding: 120px 0 56px;
}

.section_calc_body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 40px 90px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}

.calc_step_label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #918B86;
  margin-bottom: 14px;
}

.calc_model_section {
  margin-bottom: 32px;
}

.calc_model_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.calc_model_card {
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 2px solid #D9D5D2;
  transition: border-color 200ms ease;
}

.calc_model_card.is_selected {
  border-color: #B93338;
}

/* The model photos are portrait (3:4), so a short letterbox crops most of the
   camper away. Taller box + a slightly high crop keeps the van in frame. */
.calc_model_card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.calc_model_card_body {
  padding: 14px 16px;
  background: #fff;
}

.calc_model_name {
  font-family: 'Azonix', sans-serif;
  font-size: 17px;
  letter-spacing: 0.05em;
  color: #0F0E0C;
}

.calc_model_sub {
  font-size: 12px;
  color: #6B6560;
  margin-top: 2px;
}

.calc_extras {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
}

.calc_extra_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 6px;
  cursor: pointer;
  border: 1.5px solid #D9D5D2;
  background: #fff;
  transition: border-color 150ms ease, background 150ms ease;
}

.calc_extra_row.is_checked {
  border-color: #B93338;
  background: #fdf5f5;
}

.calc_extra_check {
  display: flex;
  align-items: center;
  gap: 14px;
}

.calc_extra_checkbox {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 2px solid #D9D5D2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 150ms ease, border-color 150ms ease;
}

.calc_extra_row.is_checked .calc_extra_checkbox {
  background: #B93338;
  border-color: #B93338;
}

.calc_extra_checkbox .vg_ico {
  width: 15px;
  height: 15px;
  color: #fff;
  opacity: 0;
  transition: opacity 150ms ease;
}

.calc_extra_row.is_checked .calc_extra_checkbox .vg_ico {
  opacity: 1;
}

.calc_extra_name {
  font-size: 15px;
  font-weight: 500;
  color: #2E2B28;
}

.calc_extra_price {
  font-size: 14px;
  font-weight: 600;
  color: #B93338;
}

.calc_sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 88px;
}

.calc_summary {
  background: #111110;
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(10, 9, 8, 0.2);
}

.calc_summary_label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B93338;
  margin-bottom: 6px;
}

.calc_summary_model {
  font-family: 'Azonix', sans-serif;
  font-size: 26px;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 22px;
}

.calc_summary_row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #2E2B28;
}

.calc_summary_row:last-of-type {
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.calc_summary_key {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.calc_summary_val {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.calc_total_row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}

.calc_total_label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.calc_total_val {
  font-family: 'Azonix', sans-serif;
  font-size: 30px;
  letter-spacing: 0.02em;
  color: #fff;
}

.calc_disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
}

.calc_form_card {
  background: #fff;
  border: 1px solid #D9D5D2;
  border-radius: 10px;
  padding: 28px;
}

.calc_form_step_label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B93338;
  margin-bottom: 6px;
}

.calc_form_title {
  font-family: 'Azonix', sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #0F0E0C;
  margin-bottom: 18px;
}

/* Form success states */
.form_success {
  text-align: center;
  padding: 40px 0;
}

.form_success_icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e6f4ec;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.form_success_icon_dark {
  background: rgba(255, 255, 255, 0.1);
}

.form_success_icon .vg_ico {
  width: 24px;
  height: 24px;
  color: #1a6636;
}

.form_success_icon_dark .vg_ico {
  color: #fff;
}

.form_success_title {
  font-family: 'Azonix', sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: #0F0E0C;
  margin-bottom: 6px;
}

.form_success_title_light {
  color: #fff;
}

.form_success_text {
  font-size: 13px;
  color: #6B6560;
  line-height: 1.5;
}

.form_success_text_light {
  color: rgba(255, 255, 255, 0.55);
}

/* ========================= 404 ========================= */

.section_404 {
  background: #111110;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.error_inner {
  max-width: 560px;
}

.error_code {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(80px, 15vw, 180px);
  line-height: 1;
  letter-spacing: 0.05em;
  color: #B93338;
  display: block;
}

.error_title {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(20px, 3vw, 36px);
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 16px;
}

.error_desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 32px;
  line-height: 1.65;
}

/* ========================= Footer ========================= */

.site_footer {
  background: #0A0908;
  border-top: 1px solid #1C1A18;
  padding: 60px 0 34px;
}

.footer_inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer_top {
  display: grid;
  grid-template-columns: minmax(200px, 1.4fr) repeat(3, 1fr);
  gap: 40px 32px;
  align-items: start;
  margin-bottom: 44px;
}

.footer_brand {
  min-width: 0;
}

.footer_logo img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}

.footer_tagline {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.42);
  max-width: 300px;
  margin-bottom: 20px;
}

.footer_social {
  display: flex;
  gap: 12px;
}

.footer_social_link {
  width: 38px;
  height: 38px;
  border: 1px solid #2E2B28;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: border-color 150ms ease, color 150ms ease;
}

.footer_social_link:hover {
  border-color: #B93338;
  color: #fff;
}

.footer_social_link .vg_ico {
  width: 18px;
  height: 18px;
}

.footer_col_label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B93338;
  margin-bottom: 16px;
}

.footer_col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 11px;
  text-decoration: none;
  transition: color 150ms ease;
}

.footer_col a:hover {
  color: #fff;
}

.footer_col a:last-child {
  margin-bottom: 0;
}

.footer_bottom {
  border-top: 1px solid #1C1A18;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer_copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
}

/* Brand slogan — sits as its own line above the copyright row. */
.footer_slogan {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 24px;
}

.footer_credit {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 150ms ease;
}

.footer_credit:hover {
  color: #B93338;
}

/* ========================= Reveal Animation ========================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is_visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================= Reduced Motion ========================= */

/* Freeze hero motion and show all content instantly for users who ask for it. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero_bg,
  .hero_bg_img {
    animation: none;
  }

  .testimonials_track {
    scroll-behavior: auto;
  }

  .card_video_btn:hover .card_video_play {
    transform: translate(-50%, -50%);
  }

  .hero_content_inner > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .form_section label.error {
    animation: none;
  }

  /* Sticky CTA appears/disappears outright, no slide. */
  .sticky_cta {
    transform: none;
    transition: none;
  }
}

/* ========================= Media Queries ========================= */

@media only screen and (max-width: 1450px) {
  .hero_h1 {
    font-size: clamp(42px, 5.5vw, 80px);
  }

  .model_hero_h1 {
    font-size: clamp(52px, 8vw, 100px);
  }
}

@media only screen and (max-width: 1200px) {
  .nav_links {
    gap: 20px;
  }

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

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

  .calc_sidebar {
    position: static;
  }

  .footer_brand {
    grid-column: span 1;
  }
}

@media only screen and (max-width: 1024px) {
  .card_testimonial {
    flex-basis: calc(50% - 12px);
  }

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

  .footer_brand {
    grid-column: 1 / -1;
    margin-bottom: 8px;
  }

  .nav_links {
    display: none;
  }

  .nav_hamburger {
    display: flex;
  }

  .nav_cta {
    display: none;
  }

  .hero_content {
    padding: 100px 24px 32px;
  }

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

  .section_contact_body {
    padding: 40px 24px 60px;
  }

  /* Tablets: 2 cards per row, shorter map. */
  .dealer_map {
    height: 360px;
  }

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

@media only screen and (max-width: 768px) {
  .section_hero {
    padding-bottom: 56px;
  }

  .container {
    padding: 0 24px;
  }

  .container_article {
    padding: 0 24px;
  }

  .model_intro_wrap,
  .model_specs_wrap,
  .model_extras_wrap,
  .model_video_wrap {
    padding: 0 24px;
  }

  /* Extras drop to a single column of hairline rows. */
  .model_extras_grid {
    grid-template-columns: 1fr;
  }

  .sticky_cta {
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  }

  .sticky_cta_inner {
    gap: 14px;
  }

  .nav_inner {
    padding: 0 24px;
  }

  .hero_bar_inner {
    padding: 16px 24px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
  }

  .enquiry_info {
    padding: 32px 24px;
  }

  .enquiry_form_wrap {
    padding: 28px 24px;
  }

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

  .promo_img_wrap img {
    height: 320px;
  }

  .lifestyle_content {
    padding: 60px 24px;
  }

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

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

  .about_split > *:first-child {
    order: 1;
  }

  .about_split > *:last-child {
    order: 2;
  }

  .card_post_img {
    height: 160px;
  }

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

  .blog_featured_img {
    min-height: 220px;
  }

  .blog_featured_body {
    padding: 28px 24px;
  }

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

  .hide_mobile {
    display: none;
  }

  .show_mobile {
    display: block;
  }

  .article_body {
    padding: 40px 24px 60px;
  }

  .article_intro {
    padding: 96px 24px 0;
  }

  .article_hero_figure {
    padding: 0 24px;
  }

  .model_hero_content {
    padding: 0 24px 48px;
  }

  .page_hero_content {
    padding: 0 24px 48px;
  }

  .cta_content {
    padding: 80px 24px;
  }

  .blog_page_body {
    padding: 16px 24px 60px;
  }

  .blog_intro {
    padding: 100px 0 4px;
  }

  .dealers_section {
    padding: 0 24px 60px;
  }

  .card_testimonial {
    flex-basis: 85%;
  }

  .section_model_body {
    padding: 0 24px;
  }

  .section_model_specs {
    padding: 60px 0;
  }

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

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

  .gallery_lightbox {
    padding: 20px;
  }

  .gallery_lightbox_nav {
    width: 44px;
    height: 44px;
  }

  .gallery_lightbox_prev { left: 8px; }
  .gallery_lightbox_next { right: 8px; }

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

  .section_calc_body {
    padding: 32px 24px 60px;
  }

  .section_calc_hero {
    padding: 100px 0 40px;
  }
}

@media only screen and (max-width: 480px) {
  .section_hero {
    padding-bottom: 44px;
  }

  .hero_h1 {
    font-size: clamp(36px, 10vw, 56px);
  }

  .model_hero_h1 {
    font-size: clamp(42px, 12vw, 80px);
  }

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

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

  .hero_price {
    display: none;
  }

  .cta_actions {
    flex-direction: column;
    align-items: center;
  }

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

  .hero_actions .btn_ghost {
    width: 100%;
    justify-content: center;
  }

  .hero_actions .btn_primary {
    width: 100%;
    justify-content: center;
  }

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

  .models_header {
    margin-bottom: 36px;
  }

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

  .card_model_footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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

  .about_prev_imgs img:last-child {
    margin-top: 0;
  }

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

  /* Phones: keep 2 cards per row (tighter spacing/padding for the narrow width). */
  .dealer_map {
    height: 260px;
  }

  .dealer_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .dealer_card_media {
    aspect-ratio: 16 / 10;
  }

  .dealer_card_body {
    padding: 14px 14px 16px;
  }

  .dealer_card_name {
    font-size: 13px;
  }

  .dealer_card_item {
    font-size: 12px;
    gap: 8px;
    margin-bottom: 8px;
  }

  .model_hero_actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .model_hero_price {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 16px;
  }
}

/* ========================= Page Dark Hero (Contact / Calculator) ========================= */

.section_page_dark_hero {
  background: #111110;
  padding: 120px 0 80px;
}

.page_dark_hero_inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.page_dark_hero_eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.page_dark_hero_line {
  width: 32px;
  height: 1px;
  background: #B93338;
}

.page_dark_hero_h1 {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 16px;
}

.page_dark_hero_desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  max-width: 680px;
}

/* ========================= Page Hero (image bg, About) ========================= */

.page_hero_eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.page_hero_eyebrow_line {
  width: 32px;
  height: 1px;
  background: #B93338;
}

.page_hero_h1 {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(40px, 6vw, 88px);
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
}

/* ========================= About Lead / Body / Values / CTA ========================= */

.section_about_lead {
  background: #fff;
  padding: 90px 0;
  text-align: center;
}

.about_lead_wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.about_lead_text {
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 300;
  line-height: 1.5;
  color: #0F0E0C;
}

.section_about_body {
  background: #F6F4F2;
  padding: 0 0 20px;
}

.about_row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
  padding: 56px 0;
}

.about_row_reverse {
  direction: rtl;
}

.about_row_reverse > * {
  direction: ltr;
}

.about_row img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.about_row_text {}

.about_row_label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B93338;
  margin-bottom: 12px;
}

.about_row_title {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: 0.04em;
  color: #0F0E0C;
  margin-bottom: 18px;
}

.about_row_desc {
  font-size: 16px;
  line-height: 1.75;
  color: #47423E;
}

.section_about_values {
  background: #111110;
  padding: 90px 0;
}

.about_values_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.about_value_card {
  background: #1A1917;
  border: 1px solid #2E2B28;
  border-radius: 8px;
  padding: 40px;
}

.about_value_ico {
  width: 34px;
  height: 34px;
  color: #B93338;
  display: inline-flex;
  margin-bottom: 18px;
}

.about_value_title {
  font-family: 'Azonix', sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 14px;
}

.about_value_desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.about_cta_bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.about_cta_overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.7);
}

.about_cta_content {
  position: relative;
  text-align: center;
  padding: 100px 40px;
}

.about_cta_title {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(30px, 4vw, 56px);
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 32px;
}

/* ========================= Contact Page ========================= */

.section_contact {
  background: #F6F4F2;
  padding: 60px 0 80px;
}

.contact_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 60px;
}

.contact_grid > * {
  min-width: 0;
}

.dealer_dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.dealer_dot_hq {
  background: #B93338;
}

/* ========================= Model Engineering Section ========================= */

.section_model_eng,
.section_model_engineering {
  background: #F6F4F2;
  padding: 90px 0;
}

.model_eng_header {
  margin-bottom: 36px;
}

.model_eng_label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B93338;
  margin-bottom: 12px;
}

.model_eng_title {
  font-family: 'Azonix', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: 0.04em;
  color: #0F0E0C;
}

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

.model_eng_item {
  background: #fff;
  border: 1px solid #D9D5D2;
  border-radius: 8px;
  padding: 28px 24px;
}

.model_eng_item .vg_ico {
  width: 28px;
  height: 28px;
  color: #B93338;
  margin-bottom: 14px;
}

.model_eng_item_name {
  font-size: 14px;
  font-weight: 600;
  color: #0F0E0C;
  margin-bottom: 6px;
}

.model_eng_item_desc {
  font-size: 13px;
  line-height: 1.6;
  color: #6B6560;
}

/* ========================= Model Intro Wrap / Body ========================= */

.model_intro_wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px;
}

.model_intro_body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.model_intro_body p {
  font-size: 16px;
  line-height: 1.75;
  color: #47423E;
}

/* ========================= Model Video label aliases ========================= */

.model_video_sub { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }
.model_video_title { font-family: 'Azonix', sans-serif; font-size: 20px; letter-spacing: 0.04em; margin-top: 4px; }
.model_video_inner { position: relative; }

/* ========================= Model Feature label/title (interior section) ========================= */

.model_feature_label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B93338;
  margin-bottom: 14px;
}

.model_feature_title {
  font-family: 'Azonix', sans-serif;
  font-size: 26px;
  letter-spacing: 0.05em;
  color: #0F0E0C;
  margin-bottom: 22px;
}

/* ========================= Model Specs / Extras (alias to shorter class names) ========================= */

.model_specs_wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.model_specs_header { margin-bottom: 36px; }
.model_specs_label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #B93338; margin-bottom: 12px; }
.model_specs_title { font-family: 'Azonix', sans-serif; font-size: clamp(26px, 3vw, 38px); letter-spacing: 0.04em; color: #0F0E0C; }
.model_specs_table { background: #fff; border: 1px solid #D9D5D2; border-radius: 8px; overflow: hidden; }
.model_spec_row { display: flex; justify-content: space-between; align-items: center; padding: 16px 26px; border-bottom: 1px solid #EDEBE9; }
.model_spec_row:last-child { border-bottom: none; }
.model_spec_key { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #918B86; }
.model_spec_val { font-size: 16px; font-weight: 500; color: #0F0E0C; }
.model_specs_note { margin-top: 16px; font-size: 12px; color: #918B86; line-height: 1.5; }

.model_extras_wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.model_extras_header { margin-bottom: 28px; }
.model_extras_label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #B93338; margin-bottom: 12px; }
.model_extras_title { font-family: 'Azonix', sans-serif; font-size: clamp(24px, 2.6vw, 34px); letter-spacing: 0.04em; color: #0F0E0C; }
/* Extras read as a price list, not cards — same hairline-row language as
   .model_spec_row above. A FIXED column count (not auto-fit) so a 2-item
   category lines up with a 14-item one instead of stretching to fill. */
.model_extras_group { margin-bottom: 24px; }
.model_extras_group_label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #918B86; margin-bottom: 4px; padding-bottom: 8px; border-bottom: 1px solid #D9D5D2; }
.model_extras_grid { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 48px; }
.model_extra_item { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 11px 0; border-bottom: 1px solid #EDEBE9; }
.model_extra_name { font-size: 14px; font-weight: 500; color: #2E2B28; line-height: 1.4; }
.model_extra_price { font-size: 13px; font-weight: 600; color: #B93338; white-space: nowrap; }
.model_extra_price.is_qor { color: #918B86; font-weight: 500; }
.model_extras_note { margin-top: 18px; margin-bottom: 4px; font-size: 12px; color: #918B86; line-height: 1.5; }

/* ===== Sticky Calculator CTA (model pages, extras section) ===== */
/* Hidden until JS sees the extras section enter the viewport. */
.sticky_cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  background: #111110;
  border-top: 1px solid #2E2B28;
  transform: translateY(110%);
  transition: transform 0.3s ease;
}

.sticky_cta.is_visible {
  transform: translateY(0);
}

.sticky_cta_inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sticky_cta_text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.sticky_cta_model {
  font-family: 'Azonix', sans-serif;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: #fff;
}

.sticky_cta_price {
  font-size: 12px;
  color: #B8B3AE;
}

.sticky_cta_btn {
  flex-shrink: 0;
}

/* ===== Model Colours (Rogue "Be Different") ===== */
.section_model_colours { background: #F6F4F2; padding: 90px 0; }
.model_colours_wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.model_colours_header { margin-bottom: 32px; }
.model_colours_label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #B93338; margin-bottom: 12px; }
.model_colours_title { font-family: 'Azonix', sans-serif; font-size: clamp(24px, 2.6vw, 34px); letter-spacing: 0.04em; color: #0F0E0C; margin-bottom: 14px; }
.model_colours_intro { max-width: 560px; font-size: 15px; line-height: 1.6; color: #4A453F; }
.model_colours_grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.model_colour { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border: 1px solid #D9D5D2; border-radius: 6px; background: #fff; font-size: 14px; font-weight: 500; color: #2E2B28; }
.model_colour_swatch { width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, 0.15); flex-shrink: 0; }
.model_colours_note { margin-top: 20px; font-size: 13px; color: #8A847D; }

/* ========================= EB Licence Band (alias) ========================= */

.section_licence { background: #B93338; padding: 70px 0; text-align: center; }
.licence_inner { max-width: 700px; margin: 0 auto; padding: 0 40px; }
.licence_ico { width: 40px; height: 40px; color: #fff; display: inline-flex; margin-bottom: 16px; }
.licence_title { font-family: 'Azonix', sans-serif; font-size: clamp(26px, 3.4vw, 44px); letter-spacing: 0.03em; color: #fff; margin-bottom: 14px; }
.licence_desc { font-size: 16px; font-weight: 300; color: rgba(255, 255, 255, 0.85); max-width: 560px; margin: 0 auto 24px; line-height: 1.65; }
.licence_hashtag { font-family: 'Azonix', sans-serif; font-size: 15px; letter-spacing: 0.1em; color: #fff; }

/* ========================= Model Enquiry Wrap ========================= */

.model_enquiry_wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ========================= Calculator ========================= */

.section_calc {
  background: #F6F4F2;
  padding: 60px 0 90px;
}

.calc_layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 40px;
  align-items: start;
}

.calc_layout > * {
  min-width: 0;
}

.calc_left {}

.calc_right {
  position: sticky;
  top: 100px;
}

.calc_step {
  background: #fff;
  border: 1px solid #D9D5D2;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
}

.calc_step_label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B93338;
  margin-bottom: 20px;
}

.calc_model_card_name {
  font-family: 'Azonix', sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #0F0E0C;
  margin-bottom: 4px;
}

.calc_model_card_price {
  font-size: 13px;
  color: #6B6560;
}

.calc_extra_checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid #D9D5D2;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 150ms ease, border-color 150ms ease;
}

.calc_extra_row.is_checked .calc_extra_checkbox {
  background: #B93338;
  border-color: #B93338;
}

.calc_extra_row.is_checked .calc_extra_checkbox .vg_ico {
  color: #fff;
}

.calc_extra_name {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #2E2B28;
}

.calc_extra_price {
  font-size: 13px;
  font-weight: 600;
  color: #B93338;
}

.calc_summary_label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #918B86;
  margin-bottom: 8px;
}

.calc_summary_model {
  font-family: 'Azonix', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #0F0E0C;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #D9D5D2;
}

.calc_summary_row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #6B6560;
  margin-bottom: 8px;
}

.calc_summary_total_row {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 2px solid #0F0E0C;
  font-size: 15px;
  font-weight: 600;
  color: #0F0E0C;
}

.calc_summary_total {
  font-family: 'Azonix', sans-serif;
  font-size: 20px;
  color: #B93338;
}

.calc_summary_qor {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #B93338;
}

.calc_summary_note {
  margin-top: 12px;
  font-size: 11px;
  color: #918B86;
  line-height: 1.5;
}

.calc_form_card {
  background: #fff;
  border: 1px solid #D9D5D2;
  border-radius: 8px;
  padding: 28px;
  margin-top: 20px;
}

.calc_form_label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B93338;
  margin-bottom: 10px;
}

.calc_form_title {
  font-family: 'Azonix', sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #0F0E0C;
  margin-bottom: 20px;
}

/* ========================= Form Label / Submit ========================= */

.form_label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B6560;
  margin-bottom: 6px;
}

.form_submit {
  width: 100%;
  margin-top: 8px;
}

/* ========================= Form Success (light variant) ========================= */

.form_success_light {
  text-align: center;
  padding: 40px 20px;
}

.form_success_icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #B93338;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form_success_icon .vg_ico {
  width: 24px;
  height: 24px;
  color: #fff;
}

.form_success_title {
  font-family: 'Azonix', sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: #0F0E0C;
  margin-bottom: 10px;
}

/* Body text sits on a light form card, so force a dark colour — otherwise it
   inherits the site-wide white body text and disappears. */
.form_success_light p {
  font-size: 14px;
  line-height: 1.6;
  color: #6B6560;
}

/* ========================= Footer Column / Contact ========================= */

.footer_col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer_contact_item {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ========================= Contact Links (tel: / mailto:) ========================= */

.contact_link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.contact_link:hover {
  color: #B93338;
  border-bottom-color: #B93338;
}

/* Footer contact links must not inherit the .footer_col a block layout */
.footer_col a.contact_link {
  display: inline;
  margin-bottom: 0;
  color: inherit;
}

.footer_col a.contact_link:hover {
  color: #B93338;
}

/* ========================= Enquiry Wrap ========================= */

.enquiry_wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  transform: translateY(-56px);
}

/* ========================= Blog all link ========================= */

.blog_all_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #B93338;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 150ms ease;
}

.blog_all_link:hover {
  gap: 12px;
}

.blog_all_link .vg_ico {
  width: 15px;
  height: 15px;
}

/* ========================= Responsive (new classes) ========================= */

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

  .calc_right {
    position: static;
  }

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

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

@media (max-width: 768px) {
  .page_dark_hero_inner {
    padding: 0 24px;
  }

  .about_lead_wrap {
    padding: 0 24px;
  }

  .about_cta_content {
    padding: 70px 24px;
  }

  .section_about_lead {
    padding: 60px 0;
  }

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

  .about_row_reverse {
    direction: ltr;
  }
}

/* ========================= Calculator Extras List ========================= */

.calc_extras_list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* One block per category; rows inside stack like the old flat list did. */
.calc_extra_group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc_extra_group[hidden],
.calc_extra_row[hidden] {
  display: none;
}

.calc_extra_group_label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #918B86;
  padding-bottom: 8px;
  border-bottom: 1px solid #D9D5D2;
}

.calc_extra_row {
  gap: 14px;
}

.calc_extra_price.is_qor {
  color: #918B86;
}

.calc_extras_note {
  margin-top: 18px;
  font-size: 12px;
  color: #918B86;
  line-height: 1.5;
}

.calc_extra_img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.calc_extra_text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.calc_extra_desc {
  font-size: 12px;
  font-weight: 400;
  color: #6B6560;
  line-height: 1.4;
}

/* =========================
   Landing Mode
========================= */

/* Nav CTA + hamburger group (replaces the old inline flex styles). */
.nav_actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Offset anchor jumps so the sticky nav never covers the form heading. */
#enquiry,
#models {
  scroll-margin-top: 100px;
}

/* Locked mode (?min=1): nav links and the mobile drawer are removed in PHP, so
   the bar holds only the logo and the enquiry CTA. */
.is_locked .nav_inner {
  justify-content: space-between;
}

.is_locked .nav_logo {
  cursor: default;
}

/* Footer loses its link columns, its social row and its contact column, so the
   brand block is all that's left of the top row — centre what remains rather
   than leave it hanging on the left. */
.is_locked .footer_top {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.is_locked .footer_logo img {
  margin-left: auto;
  margin-right: auto;
}

/* The tagline keeps its 300px measure, so it needs auto margins to sit centred
   inside the full-width brand block. */
.is_locked .footer_tagline {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.is_locked .footer_slogan {
  text-align: center;
}

.is_locked .footer_bottom {
  justify-content: center;
}

/* Locked mode (?min=1): the black info panel is removed in PHP, so the card
   becomes a single narrow column with the heading moved onto the white side. */
.is_locked .enquiry_wrap {
  max-width: 760px;
}

.is_locked .enquiry_card {
  grid-template-columns: 1fr;
}

.is_locked .enquiry_form_wrap {
  padding: 40px;
}

.enquiry_form_head {
  text-align: center;
  margin-bottom: 26px;
}

.enquiry_form_title {
  font-family: 'Azonix', sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #0F0E0C;
  margin-bottom: 10px;
}

.enquiry_form_intro {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #6B6560;
}

/* =========================
   Popular Extras
========================= */

/* "Most Popular" block at the top of the extras list. Warm sand outline so it
   reads as a separate, recommended set without borrowing the brand red that
   already means "selected" on the rows inside it. */
.calc_extra_group_popular {
  background: #FBF7F0;
  border: 1.5px solid #E3D6BF;
  border-radius: 8px;
  padding: 18px 18px 20px;
}

.calc_extra_group_popular .calc_extra_group_label {
  color: #A07C36;
  border-bottom-color: #E3D6BF;
}

/* Rows stay white so the red checked state still reads against the tint. */
.calc_extra_group_popular .calc_extra_row {
  background: #fff;
}

/* =========================
   About Preview (Light)
========================= */

/* Light variant of the About Preview, for pages where the section that follows
   is already dark (see page-models.php). */
.section_about_prev_light {
  background: #F6F4F2;
}

.section_about_prev_light .about_prev_title {
  color: #0F0E0C;
}

.section_about_prev_light .about_prev_text {
  color: #47423E;
}

/* =========================
   Mobile Form Fit
=========================

   The enquiry forms have to stay wider than 300px on a phone, because the
   Cloudflare Turnstile widget has a hard 300px minimum width of its own and
   would otherwise push the form past its card and get clipped.

   These rules live at the end of the file on purpose: .enquiry_wrap and
   .model_enquiry_wrap are declared further down than the 768px block above, so
   overrides placed there lose on source order. */

@media only screen and (max-width: 768px) {
  .enquiry_wrap {
    transform: translateY(-30px);
    padding: 0 24px;
  }

  .model_enquiry_wrap {
    padding: 0 24px;
  }

  /* Stack the paired fields: two ~120px columns are unusable on a phone. */
  .form_row_2 {
    grid-template-columns: minmax(0, 1fr);
  }

  /* 16px is the threshold below which iOS Safari zooms the viewport on focus. */
  .form_section input:not([type="submit"]),
  .form_section select,
  .form_section textarea {
    font-size: 16px;
    height: 48px;
  }

  .form_section textarea {
    height: auto;
  }

  /* Single column, so an error that wraps to two lines can push the layout
     instead of overlapping the field below it. */
  .form_section label.error {
    position: static;
  }

  .form_section form > div {
    margin-bottom: 14px;
  }
}

@media only screen and (max-width: 480px) {
  /* Trim the wrapper and card padding so the form's inner width clears the
     Turnstile minimum: 375 - 32 - 40 = 303px. */
  .container,
  .enquiry_wrap,
  .model_enquiry_wrap {
    padding: 0 16px;
  }

  .enquiry_form_wrap,
  .is_locked .enquiry_form_wrap,
  .model_enquiry_form_wrap,
  .contact_form_card,
  .calc_form_card {
    padding: 20px;
  }

  .enquiry_info {
    padding: 28px 20px;
  }
}

/* Below 375px the trimmed padding still leaves under 300px (320 - 32 - 40 =
   248px), so scale the widget down rather than let it overflow. 300 x 0.8 =
   240px, which fits from 320px up. The scale leaves a little slack below the
   widget, since the unscaled box still drives the layout height. */
@media only screen and (max-width: 374px) {
  .cf-turnstile {
    transform: scale(0.8);
    transform-origin: left top;
  }
}
