:root {

  --primary: #d92b1d;
  --primary-dark: #b92015;
  --primary-soft: #fff0ed;

  --black: #141111;
  --charcoal: #2d2827;

  --white: #ffffff;

  --surface: #f6f6f6;

  --text: #191919;
  --muted: #686868;

  --border: #e3e3e3;

  --container: 1180px;

  --shadow-sm:
    0 10px 30px rgba(20,17,17,0.08);

  --shadow-md:
    0 25px 60px rgba(20,17,17,0.14);

  --transition:
    180ms ease;

}


/* =====================================================
   RESET
===================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}


body {

  margin: 0;

  min-width: 320px;

  color: var(--text);

  background: var(--white);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.6;

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;

}


body.lightbox-open {
  overflow: hidden;
}


img {
  display: block;
  max-width: 100%;
}


a {
  color: inherit;
  text-decoration: none;
}


button {
  font: inherit;
}


button,
a {
  -webkit-tap-highlight-color: transparent;
}


button {
  cursor: pointer;
}


:focus-visible {

  outline:
    3px solid rgba(217,43,29,0.3);

  outline-offset: 3px;

}


.container {

  width:
    min(
      calc(100% - 32px),
      var(--container)
    );

  margin-inline: auto;

}


.section-pad {
  padding-block: 92px;
}



/* =====================================================
   SKIP LINK
===================================================== */

.skip-link {

  position: fixed;

  left: 10px;
  top: 10px;

  z-index: 9999;

  padding: 10px 14px;

  border-radius: 8px;

  background: var(--white);

  transform: translateY(-160%);

}


.skip-link:focus {
  transform: translateY(0);
}



/* =====================================================
   HEADER
===================================================== */

.utility-bar {

  color:
    rgba(255,255,255,0.82);

  background: var(--black);

  font-size: 0.83rem;

}


.utility-inner {

  min-height: 38px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 24px;

}


.utility-inner p {
  margin: 0;
}


.utility-links {

  display: flex;

  gap: 22px;

}


.site-header {

  position: sticky;

  top: 0;

  z-index: 1000;

  border-bottom:
    1px solid var(--border);

  background:
    rgba(255,255,255,0.96);

  backdrop-filter: blur(14px);

}


.nav-wrap {

  position: relative;

  min-height: 80px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 28px;

}


.brand {

  display: inline-flex;

  align-items: center;

  gap: 10px;

}


.brand img {

  width: 112px;

  height: auto;

}


.brand span {

  display: grid;

  line-height: 1.08;

}


.brand strong {

  color: var(--black);

  font-size: 1.08rem;

}


.brand small {

  margin-top: 4px;

  color: var(--muted);

}


.primary-nav {

  display: flex;

  align-items: center;

  gap: 24px;

  font-weight: 750;

}


.primary-nav > a:not(.btn) {

  transition:
    color var(--transition);

}


.primary-nav > a:not(.btn):hover {

  color: var(--primary);

}


.nav-toggle {

  display: none;

  width: 44px;
  height: 44px;

  border: 0;

  border-radius: 10px;

  background: transparent;

}


.nav-toggle span {

  width: 24px;
  height: 2px;

  display: block;

  margin: 5px auto;

  background: var(--black);

}



/* =====================================================
   BUTTONS
===================================================== */

.btn {

  min-height: 50px;

  padding-inline: 22px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  border:
    1px solid transparent;

  border-radius: 12px;

  font-weight: 800;

  line-height: 1.2;

  transition:
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition);

}


.btn:hover {
  transform: translateY(-2px);
}


.btn-primary {

  color: var(--white);

  background: var(--primary);

  box-shadow:
    0 12px 28px
    rgba(217,43,29,0.22);

}


.btn-primary:hover {
  background: var(--primary-dark);
}


.btn-outline {

  color: var(--white);

  border-color:
    rgba(255,255,255,0.35);

  background:
    rgba(255,255,255,0.05);

}


.btn-sm {

  min-height: 42px;

  padding-inline: 17px;

}


.btn-white {

  color: var(--black);

  background: var(--white);

}


.btn-ghost-white {

  color: var(--white);

  border-color:
    rgba(255,255,255,0.38);

}



/* =====================================================
   COMMON
===================================================== */

.eyebrow {

  display: inline-block;

  color: var(--primary);

  font-size: 0.77rem;

  font-weight: 850;

  letter-spacing: 0.13em;

  text-transform: uppercase;

}


.eyebrow-light {
  color: #f3aaa4;
}



/* =====================================================
   HERO
===================================================== */

.gallery-hero {

  position: relative;

  overflow: hidden;

  color: var(--white);

  background:
    linear-gradient(
      118deg,
      #141111 0%,
      #211a19 58%,
      #3d211e 100%
    );

}


.hero-grid-pattern {

  position: absolute;

  inset: 0;

  background-image:

    linear-gradient(
      rgba(255,255,255,0.03) 1px,
      transparent 1px
    ),

    linear-gradient(
      90deg,
      rgba(255,255,255,0.03) 1px,
      transparent 1px
    );

  background-size:
    34px 34px;

}


.hero-glow {

  position: absolute;

  border-radius: 50%;

  pointer-events: none;

}


.hero-glow-one {

  width: 480px;
  height: 480px;

  right: -90px;
  top: -170px;

  background:
    rgba(217,43,29,0.26);

  filter: blur(12px);

}


.hero-glow-two {

  width: 280px;
  height: 280px;

  left: -130px;
  bottom: -150px;

  background:
    rgba(255,255,255,0.06);

}


.gallery-hero-inner {

  position: relative;

  z-index: 2;

  min-height: 610px;

  padding-block: 78px;

  display: grid;

  grid-template-columns:
    minmax(0,1.08fr)
    minmax(340px,0.92fr);

  align-items: center;

  gap: 75px;

}


.breadcrumb {

  margin-bottom: 28px;

  display: flex;

  gap: 9px;

  color:
    rgba(255,255,255,0.6);

  font-size: 0.88rem;

}


.gallery-hero-copy h1 {

  max-width: 820px;

  margin: 13px 0 22px;

  font-size:
    clamp(3rem,6vw,5rem);

  line-height: 0.98;

  letter-spacing: -0.058em;

}


.gallery-hero-copy > p {

  max-width: 680px;

  margin: 0;

  color:
    rgba(255,255,255,0.7);

  font-size: 1.08rem;

}


.hero-actions {

  margin-top: 31px;

  display: flex;

  flex-wrap: wrap;

  gap: 12px;

}



/* HERO PREVIEW */

.gallery-hero-preview {

  position: relative;

  justify-self: end;

  width: min(100%,420px);

  overflow: hidden;

  border:
    1px solid
    rgba(255,255,255,0.14);

  border-radius: 26px;

  background:
    rgba(255,255,255,0.06);

  box-shadow:
    0 30px 80px
    rgba(0,0,0,0.26);

  backdrop-filter:
    blur(10px);

}


.preview-image {

  height: 300px;

  overflow: hidden;

}


.preview-image img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 700ms ease;

}


.gallery-hero-preview:hover
.preview-image img {

  transform:
    scale(1.04);

}


.preview-content {

  padding: 24px;

  display: grid;

  gap: 5px;

}


.preview-content span {

  color: #f3aaa4;

  font-size: 0.75rem;

  font-weight: 850;

  letter-spacing: 0.12em;

  text-transform: uppercase;

}


.preview-content strong {

  font-size: 1.35rem;

  line-height: 1.2;

}


.preview-stat {

  position: absolute;

  right: 18px;
  top: 18px;

  min-width: 110px;

  padding: 13px 16px;

  display: grid;

  border:
    1px solid
    rgba(255,255,255,0.22);

  border-radius: 14px;

  background:
    rgba(20,17,17,0.75);

  backdrop-filter: blur(10px);

}


.preview-stat strong {

  font-size: 1.25rem;

}


.preview-stat span {

  color:
    rgba(255,255,255,0.65);

  font-size: 0.72rem;

}



/* =====================================================
   INTRO
===================================================== */

.intro-grid {

  display: grid;

  grid-template-columns:
    0.85fr 1.15fr;

  gap: 85px;

}


.intro-grid h2 {

  margin:
    10px 0 0;

  font-size:
    clamp(2rem,4vw,3.3rem);

  line-height: 1.05;

  letter-spacing: -0.045em;

}


.intro-copy {

  color: var(--muted);

}


.intro-copy p {

  margin: 0 0 16px;

}



/* =====================================================
   GALLERY
===================================================== */

.gallery-section {

  background: var(--surface);

}


.gallery-heading {

  margin-bottom: 32px;

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 35px;

}


.gallery-heading h2 {

  margin:
    8px 0 0;

  font-size:
    clamp(2rem,4vw,3.2rem);

  line-height: 1.05;

  letter-spacing: -0.045em;

}


.gallery-heading p {

  margin: 0;

  color: var(--muted);

}



/* FILTERS */

.gallery-filters {

  margin-bottom: 30px;

  display: flex;

  flex-wrap: wrap;

  gap: 9px;

}


.filter-btn {

  min-height: 42px;

  padding:
    8px 16px;

  border:
    1px solid var(--border);

  border-radius:
    999px;

  color: #444;

  background:
    var(--white);

  font-size:
    0.85rem;

  font-weight: 750;

  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition);

}


.filter-btn:hover,
.filter-btn.active {

  color: var(--white);

  border-color:
    var(--primary);

  background:
    var(--primary);

}



/* GRID */

.gallery-grid {

  display: grid;

  grid-template-columns:
    repeat(3,minmax(0,1fr));

  gap: 18px;

}


.gallery-card {

  position: relative;

  aspect-ratio: 4 / 3;

  padding: 0;

  overflow: hidden;

  border: 0;

  border-radius: 20px;

  background: #ddd;

  box-shadow:
    0 5px 18px
    rgba(20,17,17,0.04);

  text-align: left;

  transition:
    transform 260ms ease,
    box-shadow 260ms ease;

}


.gallery-card:hover {

  transform:
    translateY(-5px);

  box-shadow:
    var(--shadow-md);

}


.gallery-card.hidden {

  display: none;

}


.gallery-card img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 650ms
    cubic-bezier(0.22,1,0.36,1);

}


.gallery-card:hover img {

  transform:
    scale(1.055);

}


.gallery-overlay {

  position: absolute;

  inset: 0;

  padding: 22px;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  color: var(--white);

  background:

    linear-gradient(
      180deg,
      transparent 38%,
      rgba(10,8,8,0.84) 100%
    );

}


.gallery-overlay small {

  margin-bottom: 4px;

  color:
    rgba(255,255,255,0.68);

  font-size: 0.75rem;

  font-weight: 750;

  text-transform: uppercase;

  letter-spacing: 0.08em;

}


.gallery-overlay strong {

  padding-right: 46px;

  font-size: 1.18rem;

  line-height: 1.2;

}


.gallery-overlay b {

  position: absolute;

  right: 20px;
  bottom: 20px;

  width: 38px;
  height: 38px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color: var(--black);

  background: var(--white);

  font-size: 1rem;

  transition:
    transform var(--transition);

}


.gallery-card:hover
.gallery-overlay b {

  transform:
    rotate(8deg)
    translateY(-2px);

}



/* =====================================================
   TRUST
===================================================== */

.gallery-trust {

  padding-block: 36px;

  color: var(--white);

  background: var(--black);

}


.trust-grid {

  display: grid;

  grid-template-columns:
    repeat(4,1fr);

}


.trust-grid > div {

  padding: 18px 26px;

  display: grid;

  gap: 3px;

  border-right:
    1px solid
    rgba(255,255,255,0.12);

}


.trust-grid > div:last-child {
  border-right: 0;
}


.trust-grid > div > span {

  margin-bottom: 6px;

  color: #f3aaa4;

  font-size: 0.72rem;

  font-weight: 850;

}


.trust-grid strong {

  font-size: 1.05rem;

}


.trust-grid small {

  color:
    rgba(255,255,255,0.56);

}



/* =====================================================
   CTA
===================================================== */

.cta-band {

  padding-block: 58px;

  color: var(--white);

  background: var(--primary);

}


.cta-inner {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 45px;

}


.cta-eyebrow {

  color:
    rgba(255,255,255,0.7);

}


.cta-inner h2 {

  margin:
    8px 0 0;

  font-size:
    clamp(1.8rem,3vw,2.55rem);

  line-height: 1.12;

}


.cta-actions {

  display: flex;

  flex-wrap: wrap;

  gap: 12px;

}



/* =====================================================
   LIGHTBOX
===================================================== */

.gallery-lightbox {

  position: fixed;

  inset: 0;

  z-index: 3000;

  padding: 40px;

  display: flex;

  align-items: center;

  justify-content: center;

  visibility: hidden;

  opacity: 0;

  background:
    rgba(12,10,10,0.94);

  backdrop-filter:
    blur(14px);

  transition:
    opacity 220ms ease,
    visibility 220ms ease;

}


.gallery-lightbox.open {

  visibility: visible;

  opacity: 1;

}


.lightbox-content {

  width:
    min(1050px,82vw);

  max-height:
    88vh;

  overflow: hidden;

  border-radius: 22px;

  background: var(--black);

  box-shadow:
    0 40px 100px
    rgba(0,0,0,0.45);

}


.lightbox-content img {

  width: 100%;

  max-height:
    74vh;

  object-fit: contain;

  background: #0d0b0b;

}


.lightbox-caption {

  padding:
    18px 22px;

  display: grid;

  color: var(--white);

}


.lightbox-caption span {

  color: #f3aaa4;

  font-size: 0.73rem;

  text-transform: uppercase;

  letter-spacing: 0.1em;

}


.lightbox-caption strong {

  margin-top: 3px;

  font-size: 1.1rem;

}


.lightbox-close {

  position: absolute;

  top: 22px;
  right: 25px;

  width: 48px;
  height: 48px;

  border:
    1px solid
    rgba(255,255,255,0.2);

  border-radius: 50%;

  color: var(--white);

  background:
    rgba(255,255,255,0.08);

  font-size: 2rem;

}


.lightbox-arrow {

  position: absolute;

  top: 50%;

  width: 52px;
  height: 52px;

  border:
    1px solid
    rgba(255,255,255,0.2);

  border-radius: 50%;

  color: var(--white);

  background:
    rgba(255,255,255,0.07);

  transform:
    translateY(-50%);

  font-size: 2rem;

}


.lightbox-prev {
  left: 28px;
}


.lightbox-next {
  right: 28px;
}



/* =====================================================
   FOOTER
===================================================== */

.site-footer {

  padding:
    64px 0 100px;

  color:
    rgba(255,255,255,0.7);

  background: var(--black);

}


.footer-grid {

  display: grid;

  grid-template-columns:
    1.4fr repeat(3,1fr);

  gap: 50px;

}


.brand-footer img {
  width: 128px;
}


.brand-footer strong,
.footer-grid h3 {
  color: var(--white);
}


.footer-brand > p {
  max-width: 350px;
}


.footer-contact {

  display: grid;

  gap: 6px;

  color: var(--white);

  font-weight: 700;

}


.footer-grid >
div:not(.footer-brand) {

  display: grid;

  align-content: start;

  gap: 10px;

}


.footer-bottom {

  margin-top: 50px;

  padding-top: 24px;

  display: flex;

  justify-content: space-between;

  gap: 24px;

  border-top:
    1px solid
    rgba(255,255,255,0.1);

  font-size: 0.86rem;

}


.footer-bottom p {
  margin: 0;
}


.footer-bottom div {

  display: flex;

  gap: 18px;

}


.mobile-actions {
  display: none;
}



/* =====================================================
   SCROLL ANIMATION
===================================================== */

[data-reveal] {

  opacity: 0;

  transition:

    opacity 0.68s ease,

    transform 0.68s
    cubic-bezier(0.22,1,0.36,1);

  transition-delay:
    var(--delay,0ms);

}


[data-reveal="up"] {
  transform: translateY(25px);
}


[data-reveal="left"] {
  transform: translateX(-30px);
}


[data-reveal="right"] {
  transform: translateX(30px);
}


[data-reveal="scale"] {
  transform: scale(0.97);
}


[data-reveal].is-visible {

  opacity: 1;

  transform: none;

}



/* =====================================================
   TABLET
===================================================== */

@media
(max-width: 900px) {


  .utility-bar {
    display: none;
  }


  .nav-toggle {
    display: block;
  }


  .primary-nav {

    position: absolute;

    top:
      calc(100% + 8px);

    right: 0;
    left: 0;

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding: 10px;

    border:
      1px solid var(--border);

    border-radius: 16px;

    background: var(--white);

    box-shadow: var(--shadow-md);

  }


  .primary-nav.open {
    display: flex;
  }


  .primary-nav a {

    padding:
      12px 10px;

  }


  .gallery-hero-inner {

    min-height: auto;

    grid-template-columns: 1fr;

    gap: 40px;

  }


  .gallery-hero-preview {

    justify-self: start;

  }


  .intro-grid {

    grid-template-columns: 1fr;

    gap: 25px;

  }


  .gallery-grid {

    grid-template-columns:
      repeat(2,minmax(0,1fr));

  }


  .trust-grid {

    grid-template-columns:
      repeat(2,1fr);

  }


  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }


  .footer-grid {

    grid-template-columns:
      repeat(2,1fr);

  }

}



/* =====================================================
   MOBILE
===================================================== */

@media
(max-width: 640px) {


  body {
    padding-bottom: 64px;
  }


  .container {

    width:
      min(
        calc(100% - 24px),
        var(--container)
      );

  }


  .section-pad {
    padding-block: 64px;
  }


  .nav-wrap {
    min-height: 68px;
  }


  .brand img {
    width: 82px;
  }


  .brand strong {

    max-width: 175px;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

    font-size: 0.91rem;

  }


  .gallery-hero-inner {
    padding-block: 55px;
  }


  .gallery-hero-copy h1 {

    font-size:
      clamp(2.65rem,13vw,4rem);

  }


  .hero-actions {

    width: 100%;

  }


  .hero-actions .btn {

    flex: 1 1 100%;

  }


  .gallery-hero-preview {

    width: 100%;

  }


  .preview-image {
    height: 245px;
  }


  .gallery-heading {

    align-items: flex-start;

    flex-direction: column;

    gap: 8px;

  }


  .gallery-filters {

    flex-wrap: nowrap;

    overflow-x: auto;

    padding-bottom: 6px;

    scrollbar-width: none;

  }


  .gallery-filters::-webkit-scrollbar {
    display: none;
  }


  .filter-btn {

    flex: 0 0 auto;

  }


  .gallery-grid {

    grid-template-columns: 1fr;

    gap: 14px;

  }


  .gallery-card {

    border-radius: 16px;

  }


  .gallery-overlay {
    padding: 18px;
  }


  .trust-grid {
    grid-template-columns: 1fr;
  }


  .trust-grid > div {

    border-right: 0;

    border-bottom:
      1px solid
      rgba(255,255,255,0.12);

  }


  .cta-inner {

    flex-direction: column;

    align-items: flex-start;

  }


  .cta-actions {

    width: 100%;

  }


  .cta-actions .btn {

    flex: 1 1 100%;

  }


  .lightbox-content {

    width: 94vw;

  }


  .gallery-lightbox {
    padding: 14px;
  }


  .lightbox-arrow {

    width: 42px;
    height: 42px;

  }


  .lightbox-prev {
    left: 10px;
  }


  .lightbox-next {
    right: 10px;
  }


  .lightbox-close {

    top: 12px;
    right: 12px;

  }


  .footer-grid {

    grid-template-columns: 1fr;

  }


  .footer-bottom {

    flex-direction: column;

  }


  .mobile-actions {

    position: fixed;

    right: 0;
    bottom: 0;
    left: 0;

    z-index: 1200;

    height: 64px;

    display: grid;

    grid-template-columns:
      repeat(3,1fr);

    color: var(--white);

    background: var(--black);

    box-shadow:
      0 -8px 24px
      rgba(0,0,0,0.16);

  }


  .mobile-actions a {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    border-right:
      1px solid
      rgba(255,255,255,0.12);

    font-size: 0.82rem;

    font-weight: 800;

  }


  .mobile-actions a:last-child {

    border-right: 0;

    background:
      var(--primary);

  }

}



/* =====================================================
   REDUCED MOTION
===================================================== */

@media
(prefers-reduced-motion: reduce) {


  html {
    scroll-behavior: auto;
  }


  *,
  *::before,
  *::after {

    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;

  }


  [data-reveal] {

    opacity: 1 !important;

    transform: none !important;

  }

}