/* =========================================================
   ABOUT PAGE — page-specific styles
   Loads after base.css. Uses the same design tokens
   (colors, spacing, type, radius) defined there.

   Load order: base.css -> about-us.css
   (base.css must be the canonical version — the one with
   the responsive --header-height overrides, the body
   padding-top/announcement-dismissed rule, and the [hidden]
   override. Do not swap in any other copy of base.css.)
   ========================================================= */

body {
  background-color: var(--color-bg-light);
}

@media (max-width: 899px) {
  .page-zoom-wrap {
    transform: scale(0.9);
    transform-origin: top center;
    width: 111.11%;
    margin-left: -5.555%;
  }
}

/* Shared image placeholder look — until real photos are dropped in,
   broken <img> tags will show this background so the layout still reads. */

.rule {
  display: block;
  width: 48px;
  height: 2px;
  background-color: var(--color-gold);
  margin-block: var(--space-sm);
}

.signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--color-gold);
  margin-top: var(--space-sm);
}

/* -----------------------------
   Hero
   ----------------------------- */
.about-hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: transparent;
  padding-block: var(--space-2xl);
}

/* Background photo — Ken Burns layer
   NOTE: path corrected to match the site convention
   (assets/aboutimage/[exact-file-name]). "hero.png" below
   is a placeholder — swap in the real file name once you
   confirm it (send over about-us.html and I'll wire up
   every image on the page, not just this one). */


/* Gold ribbon accent layer — extremely subtle drift */
.about-hero__ribbons {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.about-hero__ribbons svg {
  width: 100%;
  height: 100%;
}

.about-hero__ribbons .ribbon {
  animation: ribbonDrift 20s ease-in-out infinite;
  animation-play-state: paused;
  will-change: transform;
}

.about-hero__ribbons .ribbon--2 {
  animation-duration: 24s;
  animation-delay: -6s;
}

/* Dark scrim for text legibility */
.about-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.55) 0%, rgba(12, 12, 12, 0.75) 100%);
}

.about-hero__grid {
  position: relative;
  z-index: 3;
  max-width: 560px;
}

.about-hero__content .eyebrow-text {
  margin-bottom: var(--space-sm);
}

.about-hero__eyebrow {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0s forwards;
  animation-play-state: paused;
}

.about-hero__headline {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.08;
  color: var(--color-white);
}

.about-hero__headline .dot {
  color: var(--color-gold);
}

.about-hero__gold {
  color: var(--color-gold);
}

/* Staggered headline line reveal */
.about-hero__line {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(12px);
  animation: lineReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-play-state: paused;
  will-change: transform, opacity, filter;
}

.about-hero__line--1 { animation-delay: 0.3s; }
.about-hero__line--2 { animation-delay: 0.6s; }
.about-hero__line--3 { animation-delay: 0.9s; }

/* One-time gold shimmer sweep across the headline, after lines finish */
.about-hero__headline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    75deg,
    transparent 0%,
    rgba(255, 255, 255, 0.28) 45%,
    rgba(212, 175, 55, 0.45) 50%,
    transparent 100%
  );
  mix-blend-mode: overlay;
  opacity: 0;
  pointer-events: none;
  animation: shimmerSweep 1.4s ease-in-out 1.7s 1 forwards;
  animation-play-state: paused;
}

.about-hero__copy {
  margin-top: var(--space-md);
  max-width: 380px;
  font-size: 15px;
  color: var(--color-text-muted);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.9s forwards;
  animation-play-state: paused;
}

.about-hero__content .btn {
  margin-top: var(--space-lg);
}

.about-hero__cta {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.5s forwards;
  animation-play-state: paused;
}
.btn-outline--light {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn-outline--light:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: #1a1a1a;
}

/* Icon-wrap swap effect (progress icon -> arrow), same behavior as
   .btn-primary in base.css — mouse/trackpad only, static on touch */
@media (hover: hover) and (pointer: fine) {
  .btn-outline--light:hover .btn-icon-wrap {
    width: 26px;
  }

  .btn-outline--light:hover .btn-icon--bag {
    opacity: 0;
    transform: scale(0.6);
  }

  .btn-outline--light:hover .btn-icon--arrow {
    opacity: 1;
    transform: scaleX(1) translateX(0);
  }

  .btn-outline--light:hover .btn-text {
    transform: translateX(4px);
  }
}

/* Scroll cue */
.about-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: var(--space-lg);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 2.3s forwards;
  animation-play-state: paused;
}

.about-hero__scroll-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.about-hero__scroll-line {
  position: relative;
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.about-hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-gold);
  animation: scrollTravel 2.2s ease-in-out infinite;
  animation-play-state: paused;
}

@keyframes scrollTravel {
  0%   { top: -100%; }
  50%  { top: 100%; }
  100% { top: 100%; }
}

/* Animations start only once the section is in view (class toggled via JS) */
.about-hero--play .about-hero__bg-img,
.about-hero--play .about-hero__ribbons .ribbon,
.about-hero--play .about-hero__eyebrow,
.about-hero--play .about-hero__line,
.about-hero--play .about-hero__headline::after,
.about-hero--play .about-hero__copy,
.about-hero--play .about-hero__cta,
.about-hero--play .about-hero__scroll,
.about-hero--play .about-hero__scroll-line::after {
  animation-play-state: running;
}

@keyframes heroKenBurns {
  from { opacity: 0; transform: scale(1.08); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes ribbonDrift {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(14px); }
}

@keyframes lineReveal {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes shimmerSweep {
  0%   { left: -60%; opacity: 0; }
  15%  { opacity: 1; }
  70%  { opacity: 1; }
  100% { left: 120%; opacity: 0; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Respect reduced motion: show everything in its final state instantly */
@media (prefers-reduced-motion: reduce) {
  .about-hero__bg,
  .about-hero__ribbons .ribbon,
  .about-hero__eyebrow,
  .about-hero__line,
  .about-hero__copy,
  .about-hero__cta {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .about-hero__scroll {
    animation: none !important;
    opacity: 1 !important;
    transform: translateX(-50%) !important;
  }

  .about-hero__scroll-line::after {
    animation: none !important;
    display: none;
  }

  .about-hero__headline::after {
    animation: none !important;
    opacity: 0 !important;
  }
}

@media (max-width: 899px) {
  .about-hero {
    align-items: flex-end;
    min-height: 780px;
  }

  .about-hero__scroll {
    left: auto;
    right: var(--space-md);
    transform: none;
  }

  .about-hero__bg {
    object-position: center top;
  }
}

@media (min-width: 700px) and (max-width: 899px) {
  .about-hero__scroll {
    display: none;
  }

  .about-hero__grid {
    max-width: 820px;
    margin-right: auto;
    text-align: left;
  }

  .about-hero__copy {
    max-width: 520px;
    margin-right: auto;
  }

  .about-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 900px) {
  .about-hero {
    min-height: 650px;
    background-position: center -100%;
    padding-block: var(--space-2xl) var(--space-lg);
  }

  .about-hero__grid {
    max-width: 1500px;
    text-align: left;
  }

  .about-hero__scroll {
    display: none;
  }

  .about-hero__copy {
    max-width: 600px;
  }

  .about-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}


.about-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center -150%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transform: scale(1.08);
  animation: heroKenBurns 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-play-state: paused;
}

@media (min-width: 900px) {
  .about-hero__bg-img {
    object-position: center top;
  }
}


/* -----------------------------
   Our Story
   ----------------------------- */
.story {
  padding-block: var(--space-2xl);
  background-color: var(--color-bg-light);
  color: var(--color-bg-dark);
}
.story__badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-pill);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.story__grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.story__media {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}

.story__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.story__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.story__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.story__dots {
  position: absolute;
  z-index: 2;
  bottom: var(--space-sm);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.story__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color var(--transition-fast), width var(--transition-fast);
}

.story__dot:hover {
  background-color: rgba(212, 175, 55, 0.6);
}

.story__dot.is-active {
  width: 20px;
  border-radius: var(--radius-pill);
  background-color: var(--color-gold);
}

.story__content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 42px);
  margin-top: var(--space-xs);
}

.story__content p {
  font-size: 15px;
  color: var(--color-text-muted-light);
  max-width: 480px;
  margin-bottom: var(--space-sm);
}

@media (min-width: 700px) and (max-width: 899px) {
  .story__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .story__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* -----------------------------
   Stats bar
   ----------------------------- */
.stats-bar {
  background-color: var(--color-bg-dark);
  padding-block: var(--space-lg);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.stat__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xs);
}

.stat__icon {
  width: 30px;
  height: 30px;
  color: var(--color-gold);
}

.stat__icon-wrap--spin .stat__icon {
  animation: globeSpin 6s linear infinite;
}

@keyframes globeSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .stat__icon-wrap--spin .stat__icon {
    animation: none;
  }
}

.stat__number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-gold);
}

.stat__label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

@media (min-width: 700px) {
  .stats-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767.98px) {
  .stats-bar {
    padding-block: var(--space-md);
  }

  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg) var(--space-sm);
  }

  .stat__icon {
    width: 24px;
    height: 24px;
  }

  .stat__number {
    font-size: 14px;
  }

  .stat__label {
    font-size: 10px;
  }
}

/* -----------------------------
   Why choose
   ----------------------------- */
.why-choose {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-2xl);
  background-color: #0D0D0D;
  color: var(--color-white);
  border-top: 1px solid rgba(200, 169, 106, 0.18);
}

/* Floating gold particles */
.why-choose__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.why-choose__particle {
  position: absolute;
  border-radius: 50%;
  background-color: #C8A96A;
  opacity: 0.1;
  animation: whyParticleDrift 20s ease-in-out infinite;
  animation-play-state: paused;
  will-change: transform;
}

@keyframes whyParticleDrift {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(18px, -24px); }
}

.why-choose__heading,
.why-choose__grid {
  position: relative;
  z-index: 1;
}

.why-choose__heading {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.why-choose__heading h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 42px);
  color: var(--color-white);
  margin-top: var(--space-xs);
}

.why-choose__grid {
  display: grid;
  gap: var(--space-md);
}

.why-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  background-color: #0D0D0D;
  opacity: 0;
  transform: translateY(40px);
  animation: whyCardReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-play-state: paused;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              background-color 0.4s ease,
              box-shadow 0.4s ease,
              border-color 0.4s ease;
  will-change: transform, opacity;
}

.why-card:nth-child(1) { animation-delay: 0s; }
.why-card:nth-child(2) { animation-delay: 0.15s; }
.why-card:nth-child(3) { animation-delay: 0.3s; }
.why-card:nth-child(4) { animation-delay: 0.45s; }

@keyframes whyCardReveal {
  to { opacity: 1; transform: translateY(0); }
}

.why-card:hover {
  transform: translateY(-8px) scale(1.03);
  background-color: #141414;
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 24px 48px -12px rgba(212, 175, 55, 0.28);
}

.why-card__icon-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-bottom: var(--space-sm);
}

.why-card__icon-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(75deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
  animation: whyIconShimmer 6s ease-in-out infinite;
  animation-play-state: paused;
  pointer-events: none;
}

@keyframes whyIconShimmer {
  0%   { left: -150%; }
  18%  { left: 150%; }
  100% { left: 150%; }
}

.why-card__icon {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  color: var(--color-gold);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-card:hover .why-card__icon {
  transform: scale(1.1) rotate(5deg);
}

.why-card h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
  transition: color 0.4s ease;
}

.why-card:hover h3 {
  color: #C8A96A;
}

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

.why-card__line {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1), left 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-card:hover .why-card__line {
  width: 100%;
  left: 0;
}

/* Start reveal + ambient animations once the section is in view (class toggled via JS) */
.why-choose--play .why-card,
.why-choose--play .why-card__icon-wrap::after,
.why-choose--play .why-choose__particle {
  animation-play-state: running;
}

@media (prefers-reduced-motion: reduce) {
  .why-card,
  .why-choose__particle,
  .why-card__icon-wrap::after {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .why-card:hover {
    transform: none;
  }

  .why-card:hover .why-card__icon {
    transform: none;
  }

  .why-card:hover .why-card__line {
    width: 0;
  }
}

@media (min-width: 900px) {
  .why-choose__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 700px) and (max-width: 899px) {
  .why-choose__grid {
    display: flex;
    overflow-x: auto;
    gap: var(--space-md);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: var(--space-xs);
  }

  .why-choose__grid::-webkit-scrollbar {
    display: none;
  }

  .why-card {
    flex: 0 0 60%;
    scroll-snap-align: start;
  }
}

/* -----------------------------
   Craftsmanship process
   ----------------------------- */
.craft {
  background-color: var(--color-bg-dark);
  padding-block: var(--space-2xl);
  overflow: hidden;
}

.craft__grid {
  display: grid;
  gap: var(--space-xl);
}

.craft__strip-wrap {
  min-width: 0;
}

.craft__content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 40px);
  color: var(--color-white);
  margin-top: var(--space-xs);
}

.craft__content p {
  font-size: 15px;
  max-width: 380px;
  margin-block: var(--space-md);
}
.eyebrow-text-craft {
  color: var(--color-gold);
}

.craft__strip {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  overflow-x: auto;
  padding-bottom: var(--space-md);

  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) transparent;
}

/* Chrome, Edge, Safari */
.craft__strip::-webkit-scrollbar {
  height: 4px;
}

.craft__strip::-webkit-scrollbar-track {
  background: var(--color-border-dark);
  border-radius: var(--radius-pill);
}

.craft__strip::-webkit-scrollbar-thumb {
  background-color: var(--color-gold);
  border-radius: var(--radius-pill);
}

.craft__strip::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-gold-light);
}

.craft__step {
  flex: 0 0 auto;
  width: 130px;
}

.craft__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.craft__step-label {
  margin-top: var(--space-xs);
  font-size: 12px;
  color: var(--color-text-muted);
}

.craft__step-num {
  color: var(--color-gold);
  font-weight: 600;
  margin-right: 4px;
}

.craft__arrow {
  flex: 0 0 auto;
  color: var(--color-gold);
  font-size: 22px;
}

@media (min-width: 700px) and (max-width: 999px) {
  .craft__grid {
    grid-template-columns: 280px 1fr;
    align-items: center;
  }
}

@media (min-width: 1000px) {
  .craft__grid {
    grid-template-columns: 340px 1fr;
    align-items: center;
  }
}

/* -----------------------------
   Gallery
   ----------------------------- */
.gallery {
  padding-block: var(--space-2xl);
  background-color: var(--color-bg-light);
  color: var(--color-bg-dark);
}

.gallery__heading {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.gallery__heading h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 38px);
  margin-top: var(--space-xs);
}

.gallery__row {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
}

.gallery__img {
  flex: 0 0 auto;
  width: 140px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

@media (min-width: 700px) {
  .gallery__heading {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* -----------------------------
   Testimonials
   ----------------------------- */
.testimonials {
  background-color: var(--color-bg-dark);
  padding-block: var(--space-2xl);
}

.testimonials__heading {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.testimonials__heading h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 38px);
  color: var(--color-white);
  margin-top: var(--space-xs);
}

.testimonials__row {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

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

.testimonial-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  background-color: var(--color-bg-dark-alt);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

@media (min-width: 700px) {
  .testimonial-card {
    flex: 0 0 400px;
    scroll-snap-align: start;
  }
}

.testimonial-card__stars {
  color: var(--color-gold);
  letter-spacing: 2px;
  margin-bottom: var(--space-xs);
}

.testimonial-card__quote {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 13px;
  color: var(--color-white);
}

.testimonial-card__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.testimonials__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border-dark);
  color: var(--color-white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials__arrow:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* -----------------------------
   Founder message
   ----------------------------- */
.founder {
  padding-block: var(--space-2xl);
  background-color: var(--color-bg-light);
  color: var(--color-bg-dark);
}
.founder__content .eyebrow-text {
  color: var(--color-gold);
}

.founder__grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.founder__media {
  aspect-ratio: 4 / 5;
  max-width: 320px;
}

.founder__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 6px solid white;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.founder__content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 42px);
  margin-top: var(--space-xs);
}

.founder__content p {
  font-size: 15px;
  color: var(--color-text-muted-light);
  max-width: 440px;
  margin-bottom: var(--space-sm);
}

.founder__title {
  font-size: 13px;
  color: var(--color-text-muted-light);
  margin-top: var(--space-xs);
}

.founder__title-bold {
  font-weight: 700;
  color: #000;
}

.founder__title-gold {
  color: var(--color-gold);
}

@media (min-width: 700px) and (max-width: 899px) {
  .founder__grid {
    grid-template-columns: auto 1fr;
  }
}

@media (min-width: 900px) {
  .founder__grid {
    grid-template-columns: auto 1fr;
  }
}

/* -----------------------------
   CTA
   ----------------------------- */
.about-cta {
  background-color: var(--color-bg-dark);
  padding-block: var(--space-2xl);
}

.about-cta__inner {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

.about-cta__inner h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--color-white);
}

.about-cta__inner p {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-block: var(--space-sm) var(--space-lg);
}

/* Craft Lightbox */
.craft-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.craft-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.craft-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  background: var(--color-gold);
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s ease, color 0.2s ease;
}

.craft-lightbox__close:hover {
  background: transparent;
  color: var(--color-gold);
}

.craft-lightbox__close svg {
  width: 20px;
  height: 20px;
  transition: transform 0.4s ease;
}

.craft-lightbox__close:hover svg {
  transform: rotate(90deg);
}
.craft-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.5);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.craft-lightbox__arrow:hover {
  border-color: var(--color-gold);
  background: var(--color-gold);
  color: #1a1a1a;
}

.craft-lightbox__arrow svg {
  width: 24px;
  height: 24px;
}

.craft-lightbox__arrow--prev {
  left: 20px;
}

.craft-lightbox__arrow--next {
  right: 20px;
}

.craft-lightbox__image-wrap {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.craft-lightbox__image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
}

.craft-lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
}

@media (max-width: 640px) {
  .craft-lightbox__arrow {
    width: 40px;
    height: 40px;
  }
  
  .craft-lightbox__arrow--prev {
    left: 10px;
  }
  
  .craft-lightbox__arrow--next {
    right: 10px;
  }
  
  .craft-lightbox__close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }
}