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

:root {
  --black: #0a0a0a;
  --white: #f5f3ef;
  --cream: #ede9e1;
  --warm-mid: #b8b0a3;
  --accent: #8b7355;
  --text: #1a1a1a;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', sans-serif;
  --nav-h: 72px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── COOKIE BANNER ── */
.cookie-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: var(--black);
  color: var(--white);
  padding: 16px 28px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-radius: 3px;
  white-space: nowrap;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  animation: slideUp 0.6s var(--ease) 1s both;
  display: none;
}

.cookie-bar.hidden {
  display: none;
}

.cookie-bar a {
  color: var(--warm-mid);
  text-decoration: underline;
}

.cookie-bar__btns {
  display: flex;
  gap: 12px;
}

.cookie-bar__btns button {
  background: none;
  border: 1px solid currentColor;
  color: var(--white);
  font: inherit;
  font-size: 12px;
  padding: 6px 16px;
  cursor: pointer;
  border-radius: 2px;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.cookie-bar__btns button:hover {
  background: rgba(255, 255, 255, 0.12);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background 0.4s;
  overflow: visible;
}

nav.scrolled {
  background: rgba(245, 243, 239, 0.92);
  backdrop-filter: blur(12px);
}
nav.scrolled .nav__logo, .nav-open .nav__logo {
  height: 50px;
}
nav.scrolled .nav__logo__type {
  opacity: 1;
}
.nav__logo__type {
  font-size: 0;
  width: 200px;
    height: auto;
    margin: 0;
    opacity: 0;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.nav__logo {
  font-size: 0;
  position: absolute;
  top: 10px;
  overflow: hidden;
  left: 0;
  right: 0;
  width: 110px;
  height: 110px;
  margin: 0 auto;
}
.nav__logo img, .nav__logo__type img{
  width: 100%;
  height: auto;
}
.nav__menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 499;
  height: calc(100dvh - var(--nav-h));
  max-height: calc(100dvh - var(--nav-h));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 48px;
  padding-bottom: max(48px, env(safe-area-inset-bottom));
  background: rgba(245, 243, 239, 0.98);
  backdrop-filter: blur(12px);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}

body.nav-menu-open .nav__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

body.nav-menu-open #mainNav {
  background: rgba(245, 243, 239, 0.98);
  backdrop-filter: blur(12px);
}

.nav__menu ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__menu > div {
  width: 100%;
}

.nav__menu li {
  margin: 0;
  padding: 0;
}

.nav__menu a {
  font-size: clamp(28px, 5vw, 48px);
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--text);
  text-transform: none;
  line-height: 1.1;
  position: relative;
  padding-bottom: 0;
}

.nav__menu a::after {
  display: none;
}

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

.nav__secondary a {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--warm-mid);
}

.nav__cta {
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--text);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.25s;
}

.nav__cta:hover {
  background: var(--accent);
}

.nav__hamburger {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 501;
}

.nav__hamburger span{
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cream);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

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

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

nav.nav-open .nav__hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
nav.scrolled .nav__hamburger span {
  background: var(--text);
}
.nav-open .nav__hamburger span {
  background: var(--text);
}
body.nav-menu-open {
  overflow: hidden;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://a.storyblok.com/f/287789457689273/3840x2560/d020c6a939/richmond-mood-13.jpg/m/3840x3296/filters:format(avif,webp):quality(80)') center/cover no-repeat;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.55) 35%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 48px 72px;
  color: var(--white);
}

.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 7vw, 70px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  animation: heroReveal 1.2s var(--ease) 0.3s both;
}

.hero__sub {
  font-size: 15px;
  font-weight: 300;
  max-width: 380px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 40px;
  animation: heroReveal 1s var(--ease) 0.6s both;
}

.hero__cta {
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: none;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 14px 32px;
  cursor: pointer;
  transition: all 0.3s;
  animation: heroReveal 1s var(--ease) 0.9s both;
  text-decoration: none;
}

.hero__cta:hover {
  background: var(--white);
  color: var(--text);
}

.hero__scroll {
  position: absolute;
  right: 48px;
  bottom: 72px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.4);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1)
  }

  50% {
    opacity: 1;
    transform: scaleY(0.6)
  }
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
}

/* ── SECTIONS GENERAL ── */
section {
  padding: 120px 48px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-mid);
  margin-bottom: 20px;
  font-family: var(--font-sans);
}

.section-title, h2 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.section-title strong, h2 strong {
  font-weight: 600;
}
.section-body, p {
  font-size: 15px;
  line-height: 1.75;
  color: #4a4540;
  max-width: 480px;
  margin-top: 24px;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-stagger.visible > * {
  opacity: 1;
  transform: none;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.65s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.75s; }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── ABOUT SECTION ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--cream);
}

.about__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

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

.about__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  margin-top: 36px;
}

.about__link::after {
  content: '→';
  transition: transform 0.3s;
}

.about__link:hover::after {
  transform: translateX(6px);
}

/* ── COLLECTION ── */
.collection {
  background: var(--white);
}

.collection__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.collection__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}

.collection__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.collection__item-fallback {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.02)),
    var(--cream);
}

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

.collection__item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
  padding: 80px 20px 20px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: 300;
  transform: translateY(10px);
  opacity: 1;
  transition: transform 0.4s var(--ease), opacity 0.4s;
}

.collection__item:hover .collection__item-label {
  transform: none;
  opacity: 1;
}

/* ── SHOWROOM ── */
.showroom {
  position: relative;
  overflow: hidden;
  padding: 0;
  height: 85vh;
  display: flex;
  align-items: flex-end;
  background: var(--black);
}

.showroom__bg {
  position: absolute;
  inset: 0;
  background: url('../design/canaan-inspira.jpg') center/cover no-repeat;
  opacity: 0.55;
  transition: transform 0.6s var(--ease);
}

.showroom:hover .showroom__bg {
  transform: scale(1.02);
}

.showroom__content {
  position: relative;
  z-index: 1;
  padding: 80px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.showroom__address {
  font-size: 14px;
  opacity: 0.65;
  line-height: 1.8;
}

.showroom__link {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 4px;
  transition: border-color 0.3s;
}

.showroom__link:hover {
  border-color: var(--white);
}

/* ── PROJECTS ── */
.projects {
  background: var(--cream);
}

.projects__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 580/728;
  cursor: pointer;
  display: block;
  color: inherit;
  text-decoration: none;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-card__info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.4s;
}

.project-card:hover .project-card__info {
  opacity: 1;
}

.project-card__title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 8px;
}

.project-card__tags {
  font-size: 11px;
  opacity: 0.7;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

/* ── MOOD PAIR ── */
.mood-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 0;
}

.mood-pair img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 70vh;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--white);
  padding: 120px 48px;
}

.testimonials__inner {
  max-width: 900px;
  margin: 0 auto;
}

.testimonials__count {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--warm-mid);
  margin-bottom: 48px;
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 48px;
  position: relative;
}

.testimonial__quote::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: -30px;
  font-size: 80px;
  color: var(--cream);
  font-family: Georgia;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.testimonial__name {
  font-weight: 500;
  font-size: 14px;
}

.testimonial__role {
  font-size: 12px;
  color: var(--warm-mid);
  margin-top: 2px;
}

.testimonials__nav {
  display: flex;
  gap: 12px;
  margin-top: 48px;
}

.testimonials__nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--warm-mid);
  background: none;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials__nav button:hover {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
}

.testimonials__google {
  margin-top: 48px;
  font-size: 13px;
  color: var(--warm-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  color: #fbbc04;
  letter-spacing: 2px;
}

/* ── CTA SECTION ── */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 160px 48px;
  text-align: center;
  background: var(--black);
  color: var(--white);
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background: url('../design/canaan-contact.jpg') center/cover;
  opacity: 0.25;
}

.cta-section__content {
  position: relative;
  z-index: 1;
}

.cta-section__title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 20px;
}

.cta-section__sub {
  font-size: 14px;
  opacity: 0.65;
  margin-bottom: 48px;
}

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

.btn-primary,
.btn-secondary {
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--white);
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  border-color: var(--white);
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 48px 48px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  align-items: start;
}

.footer__col h2 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-mid);
  margin-bottom: 20px;
}

.footer__col p,
.footer__col li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--white);
}

.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__col li + li {
  margin-top: 8px;
}

.footer__col a {
  color: var(--warm-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--white);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
}

.footer__social {
  display: flex;
  gap: 20px;
}

.footer__social a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__social a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--warm-mid);
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  color: var(--warm-mid);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__craft a {
  color: var(--warm-mid);
  text-decoration: none;
}

.footer__craft a:hover {
  color: var(--white);
}

/* ── SERVICE SINGLE ── */
.fluid-service {
  background: var(--white);
}

.service-hero__bg {
  background-size: cover;
  background-position: center;
  animation: heroReveal 1.4s var(--ease) both;
}

.service-intro {
  padding: 120px 48px;
  background: var(--white);
}

.service-intro__inner {
  max-width: 720px;
}

.service-intro__title {
  margin-bottom: 24px;
}

.service-intro__subtitle {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 480px;
  color: var(--text);
  opacity: 0.85;
  margin-bottom: 40px;
}

.service-intro__cta {
  color: var(--text);
  border-color: rgba(26, 26, 26, 0.35);
}

.service-intro__cta:hover {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

.service-body {
  padding: 80px 48px 120px;
  background: var(--white);
}

.service-body__inner {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
}

.service-body__inner > * + * {
  margin-top: 1.25em;
}

.service-body__inner h2,
.service-body__inner h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  margin-top: 2em;
  margin-bottom: 0.75em;
}

.service-body__inner h2 {
  font-size: clamp(28px, 4vw, 40px);
}

.service-body__inner h3 {
  font-size: clamp(22px, 3vw, 28px);
}

.service-body__inner ul,
.service-body__inner ol {
  padding-left: 1.25em;
}

.service-body__inner li + li {
  margin-top: 0.5em;
}

.service-body__inner strong {
  font-weight: 500;
}

.service-body__inner img,
.service-body__inner figure {
  display: block;
  width: 100%;
}

.service-intro__cta-wrap {
  margin-top: 8px;
}

.cta-section__content.reveal-stagger > * {
  transition-duration: 0.9s;
}

/* ── PROJECT GALLERY ── */
.fluid-project {
  background: var(--white);
}

.project-gallery {
  padding: 0 48px 120px;
  background: var(--white);
}

.project-gallery__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.project-gallery__main {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--cream);
}

.project-gallery__main .swiper-slide {
  aspect-ratio: 16 / 10;
}

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

.project-gallery__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(10, 10, 10, 0.35);
  color: var(--white);
  transition: background 0.25s, border-color 0.25s;
}

.project-gallery__arrow::after {
  font-size: 14px;
  font-weight: 700;
}

.project-gallery__arrow:hover {
  background: rgba(10, 10, 10, 0.65);
  border-color: var(--white);
}

.project-gallery__pagination {
  bottom: 20px !important;
}

.project-gallery__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  transition: transform 0.25s, background 0.25s;
}

.project-gallery__pagination .swiper-pagination-bullet-active {
  background: var(--white);
  transform: scale(1.15);
}

.project-gallery__thumbs {
  margin-top: 16px;
  overflow: hidden;
}

.project-gallery__thumbs .swiper-slide {
  width: 96px;
  height: 72px;
  opacity: 0.55;
  cursor: pointer;
  transition: opacity 0.25s;
  border-radius: 2px;
  overflow: hidden;
}

.project-gallery__thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  section {
    padding: 80px 24px;
  }

  nav {
    padding: 0 24px;
  }

  .nav__cta {
    display: none;
  }

  .nav__menu {
    padding: 48px 24px 40px;
  }

  .nav__menu a {
    font-size: clamp(28px, 7vw, 40px);
  }

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

  .service-intro {
    padding: 80px 24px;
  }

  .service-body {
    padding: 64px 24px 80px;
  }

  .project-gallery {
    padding: 0 24px 80px;
  }

  .project-gallery__thumbs .swiper-slide {
    width: 72px;
    height: 56px;
  }

  .hero__scroll {
    display: none;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .mood-pair {
    grid-template-columns: 1fr;
  }

  .mood-pair img {
    height: 50vw;
  }

  .showroom__content {
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  footer {
    padding: 48px 24px 40px;
  }

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

  .footer__top {
    flex-direction: column;
    gap: 32px;
  }

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

@media (max-width: 600px) {

  .collection__grid,
  .projects__grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 100px 24px;
  }
}