@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --ink: #0e0f10;
  --ink-soft: #1b1c1e;
  --line: rgba(255, 255, 255, 0.16);
  --gold: #b79a5d;
  --paper: #f5f3ef;
  --panel: #1e2126; /* slightly lifted panel */
  --panel-hi: #2a2e35;
  --silver: #c9cdd3; /* brushed aluminum */
  --silver-dim: #7d828b;
  --burgundy: #b79a5d; /* heritage racing accent */
  --focus: #b79a5d;
  --ink-soft: #1b1c1e;
  --line: rgba(255, 255, 255, 0.16);
  --gallery-ink: #14161a;
  --gallery-panel: #1e2126;
  --gallery-text: #e8e9eb;
  --gallery-text-dim: #8a8e96;
  --gallery-accent: #b79a5d;
  --gallery-focus: #b79a5d;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
.brand-word {
  font-family: "Bebas Neue", sans-serif !important;
  letter-spacing: 2px;
}

p {
  color: #212529;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  padding-top: 0.35rem;
}
.header-top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.85rem 1.75rem 0.6rem;
  position: relative;
}
.header-top a img {
  width: 150px;
}
.icon-btn {
  background: none;
  border: 0;
  color: #fff;
  padding: 0.35rem;
  line-height: 1;
  cursor: pointer;
  display: none;
}
.icon-btn svg {
  width: 22px;
  height: 22px;
}

.header-nav {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  padding: 0.55rem 1rem 0.55rem;
  border-bottom: 1px solid var(--line);
}
.header-nav a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding-bottom: 0.3rem;
  transition: color 0.2s ease;
}
.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.header-nav a:hover {
  color: #fff;
}
.header-nav a:hover::after {
  width: 100%;
}

@media (max-width: 900px) {
  .header-nav {
    gap: 1.2rem;
    flex-wrap: wrap;
  }
  .header-nav a {
    font-size: 0.72rem;
  }
}
@media (max-width: 620px) {
  .icon-btn {
    display: block;
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* ===== NEW: Models dropdown ===== */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-item-caret {
  background: none;
  border: 0;
  padding: 0.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-top: -5px;
}
.nav-item-caret .caret {
  width: 6px;
  height: 6px;
  border-right: 1px solid rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.nav-item-caret[aria-expanded="true"] .caret {
  transform: rotate(-135deg);
}

.models-dropdown {
  display: none;
  background: rgba(12, 12, 12, 0.97);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  padding: 1.75rem;
}
.models-dropdown.show {
  display: block;
}

.models-dropdown-title {
  text-align: center;
  color: rgba(242, 239, 233, 0.55);
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}
.model-card {
  text-decoration: none;
  display: block;
}
.model-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0f0f0f;
}
.model-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.model-card:hover .model-card-img img {
  transform: scale(1.08);
}
.model-card-name {
  display: block;
  margin-top: 0.55rem;
  color: #f2efe9;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.model-card-btn {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0.3rem 0.75rem;
  transition: 0.25s ease;
}
.model-card:hover .model-card-btn {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}
@media (min-width: 621px) {
  .models-dropdown {
    position: absolute;
    top: calc(100% + 9px);
    left: 400%;
    transform: translateX(-50%);
    width: min(90vw, 100vw);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    z-index: 60;
  }
}
@media (max-width: 620px) {
  .header-nav-panel {
    display: none;
    background: rgba(10, 10, 10, 0.97);
  }
  .header-nav-panel.show {
    display: block;
  }
  .header-nav {
    flex-direction: column;
    gap: 0;
    border-bottom: none;
    padding: 0;
  }
  .header-nav > a,
  .nav-item {
    width: 100%;
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid var(--line);
    justify-content: space-between;
  }
  .models-dropdown {
    width: 100%;
    border-left: none;
    border-right: none;
    box-shadow: none;
  }
  .models-dropdown-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ===== Hero Slider (Swiper) ===== */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
}
.hero-carousel .swiper-wrapper,
.hero-carousel .swiper-slide {
  height: 100%;
}

.hero-slide {
  position: relative;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.15) 42%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.hero-slide.slide-1 {
  background: url(../images/aston-martin-db5/aston-martin-db5.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-slide.slide-2 {
  background: url(../images/mercedes-280-sl-pagoda/mercedes-280-sl-pagoda.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-slide.slide-3 {
  background: url(../images/jaguar-e-type/jaguar-e-type.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-slide.slide-video {
  background-color: #000;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem) clamp(3.5rem, 7vw, 5rem);
  max-width: 900px;
}
.hero-content .eyebrow {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 1.75rem;
  color: #fff;
}
.hero-content .btn-explore {
  background: #f2efe9;
  color: var(--ink);
  border: none;
  padding: 0.85rem 2.1rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0px;
  transition: 0.25s ease;
}
.hero-content .btn-explore:hover {
  background: var(--gold);
  color: #fff;
}

/* Nav arrows */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 6;
  width: 6%;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.hero-carousel .carousel-control-prev {
  left: 0;
}
.hero-carousel .carousel-control-next {
  right: 0;
}

.arrow-circle {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
  transition: 0.25s ease;
}
.arrow-circle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}
.arrow-circle svg {
  width: 20px;
  height: 20px;
}

/* Play/pause toggle */
.hero-carousel .carousel-toggle {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: 1.4rem;
  z-index: 6;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.hero-carousel .carousel-toggle .arrow-circle {
  width: 40px;
  height: 40px;
}
.hero-carousel .carousel-toggle svg {
  width: 16px;
  height: 16px;
}
.hero-carousel .hero-pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.6rem;
  z-index: 6;
  display: flex;
  gap: 0.4rem;
  width: auto;
}
.hero-carousel .hero-pagination .swiper-pagination-bullet {
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
  margin: 0;
  transition: background-color 0.25s ease;
}
.hero-carousel .hero-pagination .swiper-pagination-bullet-active {
  background-color: #f2efe9;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    width: 12%;
  }
  .arrow-circle {
    width: 38px;
    height: 38px;
  }
  .arrow-circle svg {
    width: 16px;
    height: 16px;
  }
  .hero-carousel .carousel-toggle .arrow-circle {
    width: 34px;
    height: 34px;
  }
  .hero-carousel .hero-pagination .swiper-pagination-bullet {
    width: 22px;
  }
}

@media (max-width: 480px) {
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    display: none;
  }
}

/* Model Section */

.model-section {
  padding-top: 70px;
}

.model-head h2 {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 500;
  line-height: 1.05;
}

.model-head p {
  font-size: 16px;
  padding-inline: 200px;
  line-height: 28px;
}

.showcase {
  padding: 0px 0 70px;
}

.showcase__kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 56px;
}
.showcase__kicker span {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--brass);
  white-space: nowrap;
}
.showcase__kicker::before,
.showcase__kicker::after {
  content: "";
  height: 1px;
  width: 64px;
  background: linear-gradient(90deg, transparent, var(--line));
}
.showcase__kicker::after {
  background: linear-gradient(90deg, var(--line), transparent);
}

/* ---- Card ---- */
.car-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 0.8;
  width: 100%;
  overflow: hidden;
  text-decoration: none;
  background: var(--panel);
  box-shadow: 0 24px 55px -22px rgba(202, 202, 202, 0.75);
  transition: box-shadow 0.5s ease;
}
.car-card:hover,
.car-card:focus-visible {
  box-shadow:
    0 30px 65px -18px rgba(0, 0, 0, 0.85),
    inset 0 0 0 1px var(--brass-soft);
}
.car-card:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 5px;
}

.car-card__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 1.15s cubic-bezier(0.16, 0.8, 0.24, 1);
  will-change: transform;
}
.car-card:hover .car-card__media,
.car-card:focus-visible .car-card__media {
  transform: scale(1.13);
}

/* legibility gradient, sits above the image */
.car-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.38) 0%,
    rgba(0, 0, 0, 0.05) 32%,
    rgba(0, 0, 0, 0.12) 55%,
    rgba(0, 0, 0, 0.48) 100%
  );
  transition: background 0.5s ease;
}
.car-card:hover::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.1) 32%,
    rgba(0, 0, 0, 0.18) 55%,
    rgba(0, 0, 0, 0.42) 100%
  );
}

.car-card__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 26px 26px;
}

.car-card__eyebrow {
  margin: 0;
  text-align: center;
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
}

.car-card__title {
  margin: 0;
  text-align: center;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1;
  color: #fff;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.55);
}

.car-card__cta {
  position: relative;
  align-self: center;
  padding-bottom: 3px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d1b67c;
  border-bottom: 1px solid #d1b67c;
}
.car-card__cta::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--brass);
  transform: translateX(-50%);
  transition: width 0.45s ease;
}
.car-card:hover .car-card__cta::after,
.car-card:focus-visible .car-card__cta::after {
  width: 48px;
}

/* signature: engraver's corner brackets, draw in on hover */
.car-card__corner {
  position: absolute;
  z-index: 2;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--brass);
  opacity: 0;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.car-card__corner--tl {
  top: 16px;
  left: 16px;
  border-right: none;
  border-bottom: none;
  transform: translate(-6px, -6px);
}
.car-card__corner--tr {
  top: 16px;
  right: 16px;
  border-left: none;
  border-bottom: none;
  transform: translate(6px, -6px);
}
.car-card__corner--bl {
  bottom: 16px;
  left: 16px;
  border-right: none;
  border-top: none;
  transform: translate(-6px, 6px);
}
.car-card__corner--br {
  bottom: 16px;
  right: 16px;
  border-left: none;
  border-top: none;
  transform: translate(6px, 6px);
}

.car-card:hover .car-card__corner,
.car-card:focus-visible .car-card__corner {
  opacity: 1;
  transform: translate(0, 0);
}
.car-card:hover .car-card__corner--tr,
.car-card:hover .car-card__corner--bl {
  transition-delay: 0.05s;
}
.car-card:hover .car-card__corner--br {
  transition-delay: 0.1s;
}

@media (max-width: 767px) {
  .showcase {
    padding: 0px 0 70px;
  }
  .showcase__kicker {
    margin-bottom: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .car-card__media,
  .car-card__cta::after,
  .car-card__corner,
  .car-card {
    transition: none !important;
  }
}

/* About Section */

.about-section {
  background: url(../images/about.webp);
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 90vh;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about h3 {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 500;
  line-height: 1.05;
  text-align: center;
  background: radial-gradient(
    199.88% 142.18% at 0 0,
    #dbbc78 19%,
    #f8db9b 46.5%,
    #dbbc78 95%
  );

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about p {
  color: #fff;
  padding-inline: 250px;
  line-height: 28px;
  font-size: 16px;
  letter-spacing: 1px;
}

/* Trust section */

.trust {
  padding-block: 70px;
}

.trust-card {
  min-height: 200px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  color: #fff;
  background: url(../images/trust-background.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.trust-card img {
  width: 20%;
}

.trust-card h4 {
  font-size: clamp(1.4rem, 2.2vw, 2.4rem);
  font-weight: 500;
  line-height: 1.05;
}

/* Kit section */

.kits-section {
  padding-top: 70px;
}

.kit-card h3 {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
}

.kit-card p {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 28px;
}

.kit-card a {
  background-color: var(--gold);
  color: #fff;
  text-decoration: none;
  border-style: none;
  border-color: currentcolor;
  border-image: none;
  padding: 0.85rem 2.1rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: 0.25s;
}

.kit-card a:hover {
  background-color: #d1b67c;
}

/* CTA section */

.cta-section {
  background-color: #f3f3f3;
  padding-block: 70px;
  color: #000;
}

.cta-white {
  background-color: #fff;
}

.cta h3 {
  font-size: clamp(1.4rem, 2.2vw, 2.4rem);
  font-weight: 500;
  line-height: 1.05;
}

.cta p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px !important;
}

.cta a {
  background-color: var(--gold);
  color: #fff;
  text-decoration: none;
  border-style: none;
  border-color: currentcolor;
  border-image: none;
  padding: 0.85rem 2.1rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: 0.25s;
}

.cta a:hover {
  background-color: #d1b67c;
  transition: 0.2s ease-in-out;
}

.social-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.social-links h3 {
  font-size: clamp(1.4rem, 2.2vw, 2.4rem);
  font-weight: 500;
  line-height: 1.05;
}

.social-links p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px !important;
  text-align: right;
}

.social-icons {
  display: flex;
  justify-content: space-between;
  width: 45%;
}

.social-icons span {
  padding: 10px 12px;
}

.social-icons span i {
  color: var(--gold);
  font-size: 25px;
  transition: 0.2s ease;
}

.social-icons span i:hover {
  color: #d1b67c;
  transition: 0.2s ease-in-out;
}

/* Footer section */

.footer {
  background-color: #000;
  padding-block: 70px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  width: 20%;
}

.footer-links ul {
  margin-top: 30px;
  padding-left: 0px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  list-style-type: none;
  border-bottom: 1px solid #4e4e4e;
  padding-bottom: 30px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 0.82rem;
  transition: 0.2s ease;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.06em;
}

.footer-links ul li a:hover {
  color: var(--gold);
  transition: 0.2s ease-in-out;
}

.footer-bottom p {
  margin-top: 30px;
  text-align: center;
  color: var(--paper);
  font-size: 16px;
  line-height: 28px;
}

/* Media Quries Css */

@media (max-width: 992px) {
  .about p {
    padding-inline: 0px;
  }

  .model-head p {
    padding-inline: 0px;
  }

  .footer-links ul li {
    padding: 10px 10px;
  }

  .footer-logo img {
    width: 35%;
  }
}

@media (max-width: 576px) {
  .social-icons {
    width: 70%;
  }

  .footer-logo img {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .social-links {
    align-items: flex-start;
  }

  .social-links p {
    text-align: left;
  }

  .social-icons {
    justify-content: flex-start;
    gap: 18px;
  }

  .cta-section {
    padding-block: 45px;
  }

  .cta a {
    display: block;
    /* width: 100%; */
    text-align: center;
    width: 50%;
  }

  .social-icons {
    gap: 12px;
  }
}

/* Permanent Floating Glass Disclaimer Box */
.glass-disclaimer-box {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  max-width: 340px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  /* Glassmorphism Effect */
  background: rgba(14, 15, 16, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(183, 154, 93, 0.45);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}

/* Icon Box */
.disclaimer-icon-wrap {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(183, 154, 93, 0.15);
  border: 1px solid #b79a5d;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.disclaimer-icon-wrap i {
  color: #b79a5d;
  font-size: 18px;
}

/* Content Area */
.disclaimer-content {
  flex-grow: 1;
}

.disclamer-head {
  display: flex;
  justify-content: space-between;
}

.disclamer-head button {
  border: none;
  padding: 0px 10px;
  margin-bottom: 5px;
  color: var(--gold);
}

.disclaimer-badge {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #b79a5d;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.disclaimer-text {
  font-size: 12px !important;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 !important;
}

.disclaimer-text strong {
  color: #ffffff;
  font-weight: 600;
}

/* Mobile Responsive Adjustments */
@media (max-width: 576px) {
  .glass-disclaimer-box {
    left: 15px;
    right: 15px;
    bottom: 15px;
    max-width: calc(100% - 30px);
    padding: 12px 14px;
  }
}

/* Model Page Css Starts */

.hero-banner {
  padding-block: 50px;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
}

.breadcrumb span {
  color: #fff;
  font-size: 15px;
}

.breadcrumb span a { 
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: 0.2s ease;
}

.breadcrumb span a:hover { 
  color: var(--gold);
  transition: 0.2s ease-in-out;
}

.hero-banner div h1 {
  color: #fff;
}

.overview {
  padding-block: 70px 55px;
}

.overview-head {
  margin-bottom: 20px;
}

.over-view-text h2 {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.05;
}

.over-view-text p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px;
}

.over-view-text a {
  background-color: var(--gold);
  color: #fff;
  text-decoration: none;
  border-style: none;
  border-color: currentcolor;
  border-image: none;
  padding: 0.85rem 2.1rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: 0.25s;
}

.over-view-text a:hover {
  background-color: #d1b67c;
  transition: 0.2s ease-in-out;
}

/* Image Gallery */

.gullwing-gallery {
  max-width: 1100px;
  margin: 0 auto;
}

.gullwing-gallery__eyebrow {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

.gullwing-gallery__eyebrow span {
  width: 22px;
  height: 1px;
  background: var(--burgundy);
  display: inline-block;
}

.gullwing-gallery h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(24px, 3.4vw, 34px);
  margin: 0 0 20px;
  color: var(--paper);
}

/* ---------- Responsive thumbnail grid ---------- */
.gullwing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: clamp(8px, 1.6vw, 16px);
}

.gullwing-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  border: none;
  padding: 0;
}

.gullwing-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease;
}

.gullwing-thumb:hover img,
.gullwing-thumb:focus-visible img {
  transform: scale(1.06);
}

.gullwing-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -40px 30px -20px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.gullwing-thumb__index {
  position: absolute;
  left: 8px;
  bottom: 6px;
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--paper);
  z-index: 1;
}

.gullwing-thumb:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

/* ---------- Modal / lightbox ---------- */
.gullwing-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 11, 13, 0.96);
}

.gullwing-modal.is-open {
  display: flex;
  flex-direction: column;
}

.gullwing-modal__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px clamp(14px, 3vw, 28px);
  color: var(--silver-dim);
  font-size: 12px;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.gullwing-modal__count {
  font-variant-numeric: tabular-nums;
  color: var(--paper);
}

.gullwing-close {
  background: none;
  border: none;
  color: var(--paper);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}

.gullwing-close:hover,
.gullwing-close:focus-visible {
  color: var(--focus);
}

.gullwing-modal__stage {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0 clamp(8px, 3vw, 24px);
}

.gullwing-modal__stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-select: none;
}

.gullwing-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(20, 22, 26, 0.55);
  border: 1px solid rgba(201, 205, 211, 0.25);
  color: var(--paper);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.2s ease;
}

.gullwing-nav:hover,
.gullwing-nav:focus-visible {
  background: var(--burgundy);
}
.gullwing-nav--prev {
  left: clamp(4px, 2vw, 18px);
}
.gullwing-nav--next {
  right: clamp(4px, 2vw, 18px);
}

.gullwing-modal__caption {
  text-align: center;
  padding: 12px 16px 6px;
  font-size: 13px;
  color: var(--silver);
  flex-shrink: 0;
}

/* Filmstrip thumbnail rail */
.gullwing-rail {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px clamp(14px, 3vw, 28px) clamp(14px, 3vw, 24px);
  overflow-x: auto;
  flex-shrink: 0;
  scrollbar-width: thin;
}

.gullwing-rail img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  flex-shrink: 0;
  opacity: 0.5;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    opacity 0.2s ease,
    border-color 0.2s ease;
}

.gullwing-rail img:hover {
  opacity: 0.85;
}

.gullwing-rail img.is-active {
  opacity: 1;
  border-color: var(--burgundy);
}

@media (max-width: 560px) {
  .gullwing-nav {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
  .gullwing-rail img {
    width: 48px;
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gullwing-thumb img {
    transition: none;
  }
}

/* Image Gallery 2 */

.gallery {
  width: 100%;
  padding-bottom: 70px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: clamp(8px, 1.6vw, 16px);
}

.gallery__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
}

.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery__thumb:hover img,
.gallery__thumb:focus-visible img {
  transform: scale(1.06);
}

.gallery__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -40px 30px -20px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.gallery__thumb-index {
  position: absolute;
  left: 8px;
  bottom: 6px;
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gallery-text);
  z-index: 1;
}

.gallery__thumb:focus-visible {
  outline: 2px solid var(--gallery-focus);
  outline-offset: 2px;
}

.gallery__modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(6, 7, 8, 0.96);
}

.gallery__modal.is-open {
  display: flex;
  flex-direction: column;
}

.gallery__modal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px clamp(14px, 3vw, 28px);
  color: var(--gallery-text-dim);
  font-size: 12px;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.gallery__count {
  font-variant-numeric: tabular-nums;
  color: var(--gallery-text);
}

.gallery__close {
  background: none;
  border: none;
  color: var(--gallery-text);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}

.gallery__close:hover,
.gallery__close:focus-visible {
  color: var(--gallery-focus);
}

.gallery__stage {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0 clamp(8px, 3vw, 24px);
}

.gallery__stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-select: none;
}

.gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--gallery-text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.2s ease;
}

.gallery__nav:hover,
.gallery__nav:focus-visible {
  background: var(--gallery-accent);
}
.gallery__nav--prev {
  left: clamp(4px, 2vw, 18px);
}
.gallery__nav--next {
  right: clamp(4px, 2vw, 18px);
}

.gallery__caption {
  text-align: center;
  padding: 12px 16px 6px;
  font-size: 13px;
  color: var(--gallery-text-dim);
  flex-shrink: 0;
}

.gallery__rail {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px clamp(14px, 3vw, 28px) clamp(14px, 3vw, 24px);
  overflow-x: auto;
  flex-shrink: 0;
  scrollbar-width: thin;
}

.gallery__rail img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  flex-shrink: 0;
  opacity: 0.5;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    opacity 0.2s ease,
    border-color 0.2s ease;
}

.gallery__rail img:hover {
  opacity: 0.85;
}
.gallery__rail img.is-active {
  opacity: 1;
  border-color: var(--gallery-accent);
}

.gallery__data {
  display: none;
}

@media (max-width: 560px) {
  .gallery__nav {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
  .gallery__rail img {
    width: 48px;
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery__thumb img {
    transition: none;
  }
}


/* Shipping Section */

.shipping {
  padding-bottom: 70px;
}

.shipping-text h3 {
  font-size: clamp(3.4rem, 3.2vw, 3.4rem);
  font-weight: 500;
  line-height: 1.05;
}

.shipping-text p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0px;
}

@media (max-width: 576px) {
  .hero-banner {
    min-height: 350px;
    padding-block: 30px;
  } 
}
