/*
Theme Name: AnnDy Extreme
Theme URI: 
Author: AnnDy Extreme Wypożyczalnia
Author URI: 
Description: Niestandardowy motyw Brutalist Poster dla wypożyczalni quadów i skuterów śnieżnych.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: anndy-extreme
*/

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@700&f[]=satoshi@400,500,700&display=swap');

:root {
  --base: #E4E2DD;
  --primary: #1E1E1E;
  --accent-red: #C22026;
  --accent-blue: #1A4FBA;

  --font-headings: 'Clash Display', sans-serif;
  --font-body: 'Satoshi', sans-serif;

  --transition-smooth: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::selection {
  background-color: var(--accent-red);
  color: #fff;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--base);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-red);
}

body {
  background-color: var(--base);
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.75;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-up {
  animation: slideUp var(--transition-smooth) forwards;
}

/* Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: background 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease;
}

/* Blend on nav links/icons but NOT on logo */
.nav-links a,
.icon-btn,
.lang-switch {
  mix-blend-mode: difference;
  color: #fff;
}

.brand-logo {
  mix-blend-mode: normal;
}

/* Solid on mobile, Glassmorphism on desktop */
.site-header.scrolled {
  background: var(--base);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 1.5rem;
}

@media (min-width: 768px) {
  .site-header.scrolled {
    background: rgba(228, 226, 221, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem 2rem;
  }
}

.site-header.scrolled .nav-links a,
.site-header.scrolled .icon-btn,
.site-header.scrolled .lang-switch {
  mix-blend-mode: normal;
  color: var(--primary);
}

@media (max-width: 767px) {
  .site-header {
    padding: 1rem 1.5rem;
  }
}

.brand-logo a {
  font-family: var(--font-headings);
  font-size: 2rem;
  line-height: 1;
  /* Fixes tall line-height if it wraps naturally */
  text-transform: none;
  font-weight: 700;
  text-shadow: 0 4px 24px rgba(255, 255, 255, 0.6), 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
}

@media (max-width: 767px) {
  .brand-logo a {
    font-size: 1.5rem;
    line-height: 0.85;
    /* Makes wrapped logo much tighter, saving vertical space */
  }
}

.site-header.scrolled .brand-logo a {
  text-shadow: none;
  /* remove shadow when solid background is present */
}

.nav-links {
  display: none;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    gap: 2rem;
  }
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.lang-switch {
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.lang-switch:hover {
  color: var(--accent-red);
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  display: flex;
}

/* Mobile Menu Toggle Button visibility */
@media (min-width: 768px) {
  #menuToggle {
    display: none !important;
  }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--base);
  color: var(--primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active {
  transform: translateY(0);
}

.close-menu {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  transition: transform 0.3s;
}

.close-menu:hover {
  transform: rotate(90deg);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-link {
  font-family: var(--font-headings);
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
  transition: color 0.3s, transform 0.3s;
}

.mobile-link:hover {
  color: var(--accent-red);
  transform: scale(1.05);
}

/* Hero Section — Split Screen */
.hero-split {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: block;
  overflow: hidden;
}

.hero-half {
  position: absolute;
  top: 0;
  height: 100%;
  overflow: hidden;
}

.hero-half--winter {
  left: 0;
  width: 55%;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10vw) 100%, 0 100%);
  z-index: 1;
}

.hero-half--summer {
  right: 0;
  width: 55%;
  clip-path: polygon(10vw 0, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

@media (max-width: 767px) {
  .hero-half--winter {
    width: 100%;
    height: 100%;
    clip-path: none;
  }

  .hero-half--summer {
    width: 100%;
    height: 60%;
    top: auto;
    bottom: 0;
    clip-path: polygon(0 15vh, 100% 0, 100% 100%, 0 100%);
  }
}

.hero-half-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1);
}

.hero-half-img.active {
  opacity: 1;
  animation: kenBurns 12s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.08) translate(-1%, -1%);
  }
}

.hero-half-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-half--winter .hero-half-overlay {
  background: linear-gradient(135deg, rgba(26, 79, 186, 0.45) 0%, rgba(30, 30, 30, 0.55) 100%);
}

.hero-half--summer .hero-half-overlay {
  background: linear-gradient(225deg, rgba(194, 32, 38, 0.4) 0%, rgba(30, 30, 30, 0.55) 100%);
}

.hero-half-label {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-half-label .lucide-icon {
  width: 16px;
  height: 16px;
}

/* Centered Hero Content */
.hero-center-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  pointer-events: none;
}

.hero-center-content>* {
  pointer-events: auto;
}

/* Glowing divider removed for clean diagonal cut */

/* Hero entrance stagger */
.hero-split .hero-title-line-1 {
  animation: heroTitleIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-split .hero-title-line-2 {
  animation: heroTitleIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-split .hero-subtext {
  animation: heroTitleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.hero-split .hero-actions {
  animation: heroTitleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}

@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Season labels entrance */
.hero-half-label {
  animation: labelFadeIn 1s ease 1.5s both;
}

@keyframes labelFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.hero-split .hero-title {
  font-size: clamp(3rem, 10vw, 130px);
  margin-bottom: 2rem;
  line-height: 0.9;
  text-transform: none;
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 2px 10px rgba(0, 0, 0, 0.4);
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .hero-split .hero-title {
    font-size: clamp(4rem, 12vw, 160px);
  }
}

.hero-split .hero-title-line-1 {
  display: block;
}

.hero-split .hero-title-line-2 {
  display: block;
}

.hero-split .hero-subtext {
  max-width: 600px;
  font-size: 1.1rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  font-weight: 500;
}

.hero-split .hero-actions {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-split .btn-primary {
  background-color: #fff;
  color: var(--primary);
}

.hero-split .btn-primary:hover {
  background-color: var(--primary);
  color: #fff;
}

.hero-split .btn-secondary {
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.char-red {
  color: var(--accent-red);
}

.char-green {
  color: var(--accent-green);
}

.char-yellow {
  color: var(--accent-yellow);
}

.char-blue {
  color: var(--accent-blue);
}

/* Hero crossfade animation */
@keyframes heroFade {

  0%,
  30% {
    opacity: 1;
  }

  33%,
  97% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Interactive CTA Button */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background-color: var(--primary);
  color: var(--base);
  font-weight: 700;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  overflow: hidden;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease-out;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform: translateX(-100%);
  transition: transform 0.3s ease-out;
  z-index: 0;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary:hover {
  color: var(--accent-red);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  color: var(--accent-red);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-secondary svg {
  transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
  transform: translateX(4px);
}

/* Base Sections Wrapper */
.base-section {
  padding: 6rem 5vw;
}

/* Product Grid */
.product-grid-section {
  position: relative;
  z-index: 10;
}

.products-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px 16px;
  position: relative;
}

@media (min-width: 768px) {
  .products-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  display: block;
  cursor: pointer;
}

.product-image-cont {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background-color: #d9d6d0;
  position: relative;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.product-card:hover .product-title {
  color: var(--accent-blue);
}

.product-price {
  font-family: var(--font-body);
  color: #444444;
  font-size: 14px;
}

/* Category Divider */
.category-divider {
  padding: 128px 5vw;
  background: radial-gradient(circle at center, rgba(26, 79, 186, 0.15) 0%, transparent 60%);
  display: flex;
  align-items: center;
}

.divider-title {
  font-size: clamp(4rem, 12vw, 250px);
  line-height: 0.8;
  opacity: 0.9;
  color: var(--primary);
}

/* Campaign Block */
.campaign-block {
  background-color: #D9D6D0;
  padding: 8rem 5vw;
  position: relative;
}

.campaign-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 992px) {
  .campaign-grid {
    grid-template-columns: 8fr 4fr;
    gap: 2rem;
  }
}

.campaign-headline {
  font-size: clamp(2rem, 5vw, 48px);
  line-height: 1;
  max-width: 700px;
}

@media (min-width: 992px) {
  .campaign-headline {
    font-size: clamp(2.5rem, 3.5vw, 56px);
  }
}

.campaign-links {
  display: flex;
  flex-direction: column;
}

.campaign-link-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(30, 30, 30, 0.2);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.2rem;
  transition: padding-left 0.3s ease;
}

.campaign-link-item:hover {
  padding-left: 1rem;
}

.circle-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s, color 0.3s;
}

.campaign-link-item:hover .circle-icon {
  background-color: var(--primary);
  color: var(--base);
}

/* Footer Section */
.site-footer {
  background-color: var(--primary);
  color: var(--base);
  padding: 6rem 5vw 2rem;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  position: relative;
  z-index: 10;
  margin-bottom: 6rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-col .brand-logo {
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: rgba(228, 226, 221, 0.5);
  /* mutated base */
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 16px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  z-index: 10;
}

.massive-year {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-headings);
  font-size: clamp(10rem, 35vw, 600px);
  color: rgba(255, 255, 255, 0.03);
  z-index: 1;
  pointer-events: none;
  line-height: 0.75;
}

.copyright {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(228, 226, 221, 0.5);
  position: relative;
  z-index: 10;
}

/* Video Section */
.video-section {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--base);
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -2;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 30, 0.6);
  z-index: -1;
}

.video-content {
  text-align: center;
  max-width: 800px;
  padding: 0 5vw;
}

.video-headline {
  font-size: clamp(3rem, 8vw, 120px);
  margin-bottom: 2rem;
  color: var(--base);
}

.video-subtext {
  font-size: 1.25rem;
  line-height: 1.6;
}

/* Accordion (FAQ in Campaign) */
.accordion-wrapper {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.brutalist-accordion {
  border: 3px solid var(--primary);
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.brutalist-accordion[open] {
  background-color: var(--primary);
  color: var(--base);
}

.brutalist-accordion summary {
  padding: 1.5rem 2rem;
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  /* hide default arrow */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brutalist-accordion summary::-webkit-details-marker {
  display: none;
}

.brutalist-accordion summary::after {
  content: '+';
  font-size: 2rem;
  transition: transform 0.3s;
}

.brutalist-accordion[open] summary::after {
  transform: rotate(45deg);
  content: '+';
}

.brutalist-accordion:hover:not([open]) {
  background-color: rgba(30, 30, 30, 0.05);
}

.accordion-content {
  padding: 0 2rem 2rem 2rem;
  border-top: 3px solid var(--primary);
}

.brutalist-accordion[open] .accordion-content {
  border-top-color: var(--base);
}

.accordion-content p {
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Brutalist Contact Section */
.contact-block {
  background-color: var(--base);
  padding: 8rem 5vw;
}

.contact-grid-brutal {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .contact-grid-brutal {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
}

.contact-brutal-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-form-wrapper {
  min-width: 0;
}

.contact-title {
  font-size: clamp(3rem, 6vw, 80px);
  line-height: 0.9;
  color: var(--primary);
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.contact-details-brutal {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cd-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cd-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-red);
  letter-spacing: 0.1em;
}

.cd-item p,
.cd-item a {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  color: var(--primary);
  line-height: 1.2;
}

.cd-item a.hover-red {
  transition: color 0.3s;
}

.cd-item a.hover-red:hover {
  color: var(--accent-red);
}

.form-brutal-card {
  background-color: var(--base);
  border: 4px solid var(--primary);
  padding: 3rem;
  box-shadow: 15px 15px 0px var(--primary);
}

.brutalist-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--base);
  border: 2px solid var(--primary);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--primary);
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--accent-red);
}

/* Price Lists in Modals */
.price-list {
  margin-top: 1.5rem;
  list-style-type: none;
  padding: 0;
  font-size: 1.2rem;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(228, 226, 221, 0.2);
}

.price-list li:last-child {
  border-bottom: none;
}

.rules-text {
  font-size: 0.9rem !important;
  opacity: 0.8;
  margin-top: 2rem !important;
}

/* Modals for Product Grid */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 30, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.modal-content-box {
  background-color: var(--base);
  border: 4px solid var(--primary);
  width: 100%;
  max-width: 600px;
  padding: 3rem 2rem;
  position: relative;
  display: none;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.modal-content-box.active {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  transition: transform 0.3s;
}

.close-modal:hover {
  transform: rotate(90deg) scale(1.1);
}

.modal-content-box h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.modal-content-box p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--primary);
  color: var(--base);
  padding: 8rem 5vw;
}

.gallery-header {
  margin-bottom: 4rem;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-red);
  display: block;
  margin-bottom: 1rem;
}

.gallery-title {
  font-size: clamp(3rem, 6vw, 80px);
  line-height: 0.9;
  color: var(--base);
}

.accent-red {
  color: var(--accent-red);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (min-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item-overlay .lucide-icon {
  width: 32px;
  height: 32px;
  color: var(--base);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-empty {
  font-family: var(--font-body);
  font-size: 1.2rem;
  opacity: 0.6;
  text-align: center;
  padding: 4rem 0;
}

.gallery-item-hidden {
  display: none;
}

.gallery-grid.gallery-expanded .gallery-item-hidden {
  display: block;
}

.gallery-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.btn-gallery-more {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 2px solid var(--base);
  color: var(--base);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-gallery-more:hover {
  background: var(--base);
  color: var(--primary);
}

.btn-gallery-more svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-gallery-more.expanded svg {
  transform: rotate(180deg);
}

/* Gallery Lightbox */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  transition: opacity 0.2s ease;
  user-select: none;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
  z-index: 10;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: #fff;
  transform: scale(1.15);
}

.lightbox-close {
  top: 2rem;
  right: 2rem;
}

.lightbox-close svg {
  width: 32px;
  height: 32px;
}

.lightbox-prev {
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev svg,
.lightbox-next svg {
  width: 40px;
  height: 40px;
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.15);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.15);
}

@media (max-width: 767px) {

  .lightbox-prev,
  .lightbox-next {
    display: none;
  }

  .lightbox-img {
    max-width: 95vw;
    max-height: 80vh;
  }
}

/* Photo Strip */
.photo-strip-section {
  overflow: hidden;
  background-color: var(--primary);
  padding: 0;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

@media (max-width: 991px) {
  .photo-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

.photo-strip-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-strip-item:hover img {
  transform: scale(1.06);
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--base);
  padding: 8rem 5vw;
}

.testimonials-header {
  margin-bottom: 4rem;
}

.testimonials-title {
  font-size: clamp(3rem, 6vw, 80px);
  line-height: 0.9;
  color: var(--primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .testimonials-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.testimonial-card {
  border: 3px solid var(--primary);
  padding: 2.5rem 2rem;
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card:hover {
  background-color: var(--primary);
  color: var(--base);
}

.testimonial-stars {
  color: #E8A500;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 2px solid currentColor;
  padding-top: 1.25rem;
}

.testimonial-author strong {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.testimonial-author span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Portrait Showcase */
.portrait-showcase {
  background-color: var(--primary);
  color: #fff;
  padding: 8rem 5vw;
}

.portrait-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .portrait-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.portrait-title {
  font-size: clamp(3rem, 6vw, 80px);
  margin-bottom: 2rem;
  line-height: 0.9;
}

.portrait-desc {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.6;
  opacity: 0.9;
}

.portrait-showcase .btn-primary {
  background-color: var(--base);
  color: var(--primary);
}

.portrait-showcase .btn-primary:hover {
  color: var(--base);
}

.portrait-showcase .btn-primary::before {
  background-color: var(--accent-red);
}

.portrait-right {
  position: relative;
  z-index: 1;
}

.portrait-img {
  width: 100%;
  height: auto;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
  border: 4px solid var(--base);
  box-shadow: 15px 15px 0px var(--accent-red);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portrait-img:hover {
  transform: translate(-5px, -5px);
  box-shadow: 20px 20px 0px var(--accent-red);
}

/* Routes Showcase Section */
.routes-showcase {
  background-color: var(--base);
  padding: 8rem 5vw;
}

.routes-header {
  margin-bottom: 4rem;
  max-width: 800px;
}

.routes-title {
  font-size: clamp(3rem, 6vw, 80px);
  line-height: 0.9;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.routes-desc {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--primary);
}

.routes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .routes-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.route-card {
  position: relative;
  border: 4px solid var(--primary);
  padding: 1rem;
  background-color: var(--primary);
  color: var(--base);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.route-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: 15px 15px 0px var(--accent-red);
}

.route-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  border: 2px solid var(--primary);
  filter: grayscale(20%);
  transition: filter 0.4s ease;
}

.route-card:hover img {
  filter: grayscale(0%);
}

.route-caption {
  padding-top: 1rem;
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
}