/* ============================================================
   MARAPOSH SIGNATURES — Complete Design System
   ============================================================ */

/* --- Design Tokens --- */
:root {
  --ivory: #FAF7F2;
  --white: #FFFFFF;
  --blush: #EDE0D4;
  --champagne: #FDF0DC;
  --gold: #C9A84C;
  --gold-dark: #B8922A;
  --charcoal: #1A1209;
  --grey: #4A3F35;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'DM Sans', sans-serif;
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--ivory);
  overflow-x: hidden;
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
button { cursor: pointer; }

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 40px;
  text-align: center;
}

/* --- Silk Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Page Transition Overlay --- */
.page-transition-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--ivory);
  z-index: 10000;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.page-transition-overlay.hidden {
  opacity: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(201,168,76,0.4);
  height: 72px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 4px 20px rgba(26,18,9,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold-dark);
  letter-spacing: 3px;
  font-weight: 400;
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-wa-btn {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
  padding: 10px 20px;
  transition: background 0.3s ease, color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.nav-wa-btn:hover {
  background: var(--gold);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  cursor: pointer;
  width: 30px;
  height: 24px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--gold-dark);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hamburger span:nth-child(1) { width: 30px; }
.hamburger span:nth-child(2) { width: 22px; }
.hamburger span:nth-child(3) { width: 30px; }

.hamburger:hover span:nth-child(2) { width: 30px; }

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 100%; height: 100vh;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transition: right 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--gold-dark);
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.open a:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu .nav-wa-btn {
  font-size: 14px;
  padding: 14px 32px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--blush);
  padding: 60px 24px 40px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--gold-dark);
  letter-spacing: 3px;
  margin-bottom: 6px;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--grey);
  margin-bottom: 28px;
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}
.footer-socials a {
  color: var(--gold-dark);
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer-socials a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}
.footer-socials svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-email {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 24px;
}
.footer-email a {
  color: var(--grey);
  text-decoration: none;
}
.footer-email a:hover {
  color: var(--gold-dark);
}
.footer-rule {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 20px;
  border: none;
  border-top: 1px solid rgba(201,168,76,0.3);
}
.footer-copyright {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--grey);
  margin-bottom: 8px;
}
.footer-crafted {
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: var(--grey);
  margin-bottom: 8px;
}
.footer-credit {
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(74,63,53,0.6);
}
.footer-credit a {
  color: rgba(74,63,53,0.6);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-credit a:hover {
  color: var(--gold-dark);
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(26,18,9,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.float-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(26,18,9,0.2);
}
.float-wa svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

/* ============================================================
   GOLD CURSOR DOT
   ============================================================ */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.2s ease;
  transform: translate(-50%, -50%);
}
.cursor-dot.active {
  opacity: 1;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: transparent;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  background: linear-gradient(to right, rgba(250,247,242,0), rgba(250,247,242,0.95), rgba(250,247,242,0));
  width: 100%;
  padding: 16px 0;
  margin-top: 20vh;
}
.hero-brand {
  font-family: var(--font-serif);
  font-size: clamp(42px, 7vw, 90px);
  font-weight: 600;
  letter-spacing: 6px;
  color: #000;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-tagline {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: 36px;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outlined {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 2px solid var(--gold);
  padding: 14px 28px;
  transition: background 0.3s ease, color 0.3s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-outlined:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-filled {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 14px 28px;
  transition: background 0.3s ease;
  display: inline-block;
  text-decoration: none;
  border: 1.5px solid var(--gold);
}
.btn-filled:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* Scroll Chevron */
.scroll-chevron {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: chevronBounce 2s infinite ease-in-out;
}
.scroll-chevron svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}
@keyframes chevronBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   BRAND INTRO STRIP
   ============================================================ */
.brand-intro {
  background: var(--champagne);
  padding: 100px 24px;
  text-align: center;
}
.brand-intro-inner {
  max-width: 700px;
  margin: 0 auto;
}
.brand-intro-rule {
  width: 60px;
  margin: 0 auto 32px;
  border: none;
  border-top: 1px solid var(--gold);
}
.brand-intro-rule.bottom {
  margin: 32px auto 0;
}
.brand-intro p {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.9;
  font-style: italic;
  color: var(--charcoal);
}

/* ============================================================
   PORTFOLIO PREVIEW
   ============================================================ */
.portfolio {
  background: var(--ivory);
  padding: 100px 24px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 1200px;
  margin: 0 auto;
}
.portfolio-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio-card .card-border {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 1.5px solid transparent;
  transition: border-color 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
.portfolio-card:hover .card-border {
  border-color: var(--gold);
}
.portfolio-card .card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(250,247,242,0.85);
  padding: 12px 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 2;
}
.portfolio-card:hover .card-label {
  transform: translateY(0);
}
.card-label span {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--gold-dark);
}

/* Swap Card */
.swap-card {
  position: relative;
}
.swap-card .swap-v1,
.swap-card .swap-v2 {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}
.swap-card .swap-v1 { opacity: 1; z-index: 1; }
.swap-card .swap-v2 { opacity: 0; z-index: 1; }
.swap-card:hover .swap-v1 { opacity: 0; }
.swap-card:hover .swap-v2 { opacity: 1; }
.swap-icon {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 8px;
  color: var(--gold);
  z-index: 3;
  font-family: var(--font-sans);
}

/* View All Link */
.portfolio-link {
  text-align: right;
  max-width: 1200px;
  margin: 24px auto 0;
}
.portfolio-link a {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--gold-dark);
  position: relative;
  padding-bottom: 2px;
}
.portfolio-link a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.portfolio-link a:hover::after {
  transform: scaleX(1);
}

/* ============================================================
   SERVICES STRIP (Home)
   ============================================================ */
.services-strip {
  background: var(--white);
  padding: 100px 24px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-tile {
  border-top: 1px solid var(--gold);
  padding-top: 28px;
}
.service-tile .tile-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--gold);
}
.service-tile .tile-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.service-tile h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--charcoal);
  font-weight: 400;
  margin-bottom: 10px;
}
.service-tile p {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.7;
  color: var(--grey);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--blush);
  padding: 100px 24px;
}
.testimonials-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  min-height: 260px;
}
.testimonial-item {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.testimonial-item.active {
  opacity: 1;
  position: relative;
}
.testimonials-quote-mark {
  font-family: var(--font-serif);
  font-size: 120px;
  line-height: 0;
  color: rgba(201,168,76,0.4);
  position: absolute;
  top: -10px;
  left: 0;
  pointer-events: none;
  user-select: none;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 24px;
  font-style: italic;
  line-height: 1.8;
  color: var(--charcoal);
  padding-top: 30px;
}
.testimonial-author {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 20px;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.testimonial-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,0.4);
  cursor: pointer;
  transition: background 0.3s ease;
}
.testimonial-dots .dot.active {
  background: var(--gold);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--gold);
  padding: 80px 24px;
}
.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--charcoal);
  font-weight: 300;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.btn-cta {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
  padding: 14px 24px;
  transition: background 0.3s ease, color 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-cta:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ============================================================
   COLLECTIONS PAGE
   ============================================================ */
.page-header {
  text-align: center;
  padding: 60px 24px 40px;
}
.page-header h1 {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.page-header .page-sub {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--grey);
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 0 24px 50px;
  flex-wrap: wrap;
}
.filter-tabs button {
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--grey);
  background: none;
  border: none;
  padding-bottom: 4px;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
}
.filter-tabs button::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.filter-tabs button:hover::after,
.filter-tabs button.active::after {
  transform: scaleX(1);
}
.filter-tabs button.active {
  color: var(--gold-dark);
}

/* Masonry Grid */
.masonry-grid {
  columns: 3;
  column-gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 100px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}
.masonry-item:hover img {
  transform: scale(1.05);
}
.masonry-item .card-border {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 1.5px solid transparent;
  transition: border-color 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
.masonry-item:hover .card-border {
  border-color: var(--gold);
}
.masonry-item .card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(250,247,242,0.85);
  padding: 10px 14px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 2;
}
.masonry-item:hover .card-label {
  transform: translateY(0);
}
.masonry-item .card-label span {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--gold-dark);
}
.masonry-item.hidden {
  display: none;
}

/* Masonry swap-card */
.masonry-item.swap-card .swap-v1,
.masonry-item.swap-card .swap-v2 {
  width: 100%;
  display: block;
}
.masonry-item.swap-card .swap-v2 {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.masonry-item.swap-card .swap-v1 {
  transition: opacity 0.5s ease;
}
.masonry-item.swap-card:hover .swap-v1 { opacity: 0; }
.masonry-item.swap-card:hover .swap-v2 { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(250,247,242,0.97);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  display: flex;
  opacity: 1;
}
.lightbox-img {
  max-height: 90vh;
  max-width: 90vw;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 32px;
  color: var(--gold-dark);
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1;
  z-index: 5010;
  transition: color 0.3s ease;
}
.lightbox-close:hover {
  color: var(--gold);
}
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 5010;
  color: var(--gold-dark);
  transition: color 0.3s ease;
}
.lightbox-arrow:hover {
  color: var(--gold);
}
.lightbox-arrow svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-section {
  padding: 80px 24px;
}
.service-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-section.reverse .service-section-inner {
  direction: rtl;
}
.service-section.reverse .service-section-inner > * {
  direction: ltr;
}
.service-img-wrap {
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}
.service-section-inner:hover .service-img-wrap img {
  transform: scale(1.04);
}

/* Fabric Marquee Gallery */
.fabric-marquee-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}
.fabric-marquee {
  display: flex;
  width: fit-content;
  animation: marquee 25s linear infinite;
}
.fabric-marquee:hover {
  animation-play-state: paused;
}
.fabric-marquee-content {
  display: flex;
  gap: 12px;
  padding-right: 12px;
}
.fabric-marquee-content img {
  width: 160px;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.06));
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.fabric-marquee-content img:hover {
  transform: scale(1.03);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.service-content {
  padding: 20px 0;
}
.service-content h2 {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.service-content p {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.85;
  color: var(--grey);
  margin-bottom: 28px;
}
.service-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}
.service-meta-item {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.5px;
}
.service-meta-item strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 4px;
  font-weight: 500;
}
.service-separator {
  border: none;
  border-top: 1px solid rgba(201,168,76,0.3);
  margin: 0;
}

/* International Callout */
.intl-callout {
  background: var(--blush);
  border: 1.5px solid var(--gold);
  padding: 40px;
  max-width: 800px;
  margin: 60px auto 0;
  text-align: center;
}
.intl-callout .section-label { margin-bottom: 20px; }
.intl-callout p {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 28px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: var(--ivory);
  min-height: 100vh;
}
.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 100vh;
}
.about-portrait {
  position: relative;
  overflow: hidden;
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-portrait::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 1.5px;
  height: 100%;
  background: var(--gold);
}
.about-story {
  padding: 80px 60px;
}
.about-story .section-label {
  text-align: left;
  margin-bottom: 20px;
}
.about-story h1 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 36px;
}
.about-story p {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.9;
  color: var(--grey);
  margin-bottom: 24px;
}

/* Stat Tiles */
.stat-tiles {
  background: var(--white);
  padding: 80px 24px;
}
.stat-tiles-rule {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border: none;
  border-top: 1px solid var(--gold);
}
.stat-tiles-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  padding: 60px 0;
}
.stat-tile .stat-number {
  font-family: var(--font-serif);
  font-size: 64px;
  color: var(--gold-dark);
  margin-bottom: 10px;
  font-weight: 300;
  line-height: 1;
}
.stat-tile .stat-label {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
}

/* Mission Pull-Quote */
.mission-quote {
  background: var(--blush);
  padding: 100px 24px;
}
.mission-quote-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.mission-quote-mark {
  font-family: var(--font-serif);
  font-size: 160px;
  line-height: 0;
  color: rgba(201,168,76,0.3);
  position: absolute;
  top: -10px; left: 0;
  pointer-events: none;
  user-select: none;
}
.mission-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 36px);
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
  padding: 20px 40px 0;
}
.mission-quote-author {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 28px;
}

/* ============================================================
   SIZE GUIDE
   ============================================================ */
.size-guide-intro {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--grey);
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
}
.size-guide-intro a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.body-diagram {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.body-diagram svg {
  width: 280px;
  height: auto;
}
.size-table-section {
  max-width: 1100px;
  margin: 0 auto 50px;
  padding: 0 24px;
}
.size-table-section .table-caption {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 16px;
  text-align: center;
}
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.size-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(201,168,76,0.4);
}
.size-table thead th {
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 16px;
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
}
.size-table tbody td {
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--grey);
  text-align: center;
  border: 1px solid rgba(201,168,76,0.4);
}
.size-table tbody td:first-child {
  color: var(--charcoal);
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
}
.size-table tbody tr:nth-child(odd) {
  background: var(--ivory);
}
.size-table tbody tr:nth-child(even) {
  background: var(--white);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  padding: 0 24px 80px;
  align-items: start;
}

/* Inquiry Form */
.inquiry-form-wrap {
  background: var(--ivory);
  padding: 60px;
}
.form-group {
  position: relative;
  margin-bottom: 32px;
}
.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grey);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--charcoal);
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid var(--blush);
  background: transparent;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold);
}
.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label {
  color: var(--gold-dark);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234A3F35' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
}
.btn-submit {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  border: none;
}
.btn-submit:hover {
  background: var(--gold-dark);
}
.btn-submit.sent {
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
}

/* Contact Card */
.contact-card {
  background: var(--blush);
  border: 1.5px solid var(--gold);
  padding: 50px 40px;
  position: sticky;
  top: 100px;
}
.contact-card .section-label {
  text-align: left;
  margin-bottom: 28px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-row svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.contact-row a,
.contact-row span {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--grey);
}
.contact-row a:hover {
  color: var(--gold-dark);
}
.contact-wa-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 16px;
  margin-top: 32px;
  transition: background 0.3s ease;
}
.contact-wa-btn:hover {
  background: var(--gold-dark);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section {
  background: var(--white);
  padding: 80px 24px;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
}
.faq-question span {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--charcoal);
  flex: 1;
  padding-right: 20px;
}
.faq-icon {
  font-size: 24px;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--grey);
  padding-bottom: 24px;
}

/* ============================================================
   PAGE NAVIGATION (Inter-page links)
   ============================================================ */
.page-nav {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  gap: 24px;
}
.page-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 32px;
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.3);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  flex: 0 1 auto;
  max-width: 48%;
}
.page-nav-link:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.12);
}
.page-nav-link span {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--gold-dark);
  transition: color 0.3s ease;
}
.page-nav-link:hover span {
  color: var(--charcoal);
}
.page-nav-link svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.page-nav-link.prev:hover svg {
  transform: translateX(-4px);
}
.page-nav-link.next:hover svg {
  transform: translateX(4px);
}
.page-nav-link.next {
  margin-left: auto;
  text-align: right;
}
.page-nav-link.prev {
  margin-right: auto;
  text-align: left;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid { columns: 2; }
  .service-section-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-section.reverse .service-section-inner { direction: ltr; }
  .about-hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .about-portrait { height: 60vh; }
  .about-portrait::after { display: none; }
  .about-story { padding: 50px 40px; }
  .stat-tiles-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-card { position: static; }
  .cta-inner { flex-direction: column; text-align: center; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav { height: auto; min-height: 60px; display: flex; padding: 10px 0; align-items: center; }
  .nav-inner { flex-direction: row; gap: 16px; align-items: center; justify-content: flex-start; }
  .nav-logo { flex-shrink: 0; }
  .hamburger { display: none; }
  .nav-links { 
    display: flex; 
    width: auto; 
    flex: 1;
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch; 
    padding: 0 0 2px; 
    gap: 16px;
    justify-content: flex-start;
    align-items: center;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .hero-bg { top: 0; height: 100%; }
  .hero-content { margin-top: 10vh; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 1; }
  .hero-brand { letter-spacing: 3px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .brand-intro p { font-size: 19px; }
  .testimonial-text { font-size: 20px; }
  .page-header h1 { font-size: 40px; }
  .service-content h2 { font-size: 32px; }
  .about-story h1 { font-size: 36px; }
  .about-story { padding: 40px 24px; }
  .stat-tiles-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-tile .stat-number { font-size: 48px; }
  .inquiry-form-wrap { padding: 40px 24px; }
  .contact-card { padding: 40px 24px; }
  .filter-tabs { gap: 20px; }
  .intl-callout { margin: 40px 24px 0; padding: 32px 24px; }
  .mission-quote-text { padding: 20px 10px 0; }
  .cta-buttons { flex-direction: column; }
  /* Page Nav — stack vertically on mobile */
  .page-nav {
    flex-direction: column;
    padding: 40px 24px;
    gap: 16px;
  }
  .page-nav-link {
    max-width: 100%;
    padding: 20px 24px;
  }
  .page-nav-link.next {
    margin-left: 0;
  }
  .page-nav-link.prev {
    margin-right: 0;
  }
  .fabric-marquee-content img {
    width: 110px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .hero-tagline { font-size: 11px; letter-spacing: 3px; }
  .testimonials-quote-mark { font-size: 80px; }
  .mission-quote-mark { font-size: 100px; }
}
