﻿/* =============================================
   THE WALL CHRONICLES – styles.css
   ============================================= */


/* ---------- Accessibility: Screen-reader only ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Accessibility: Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: #1a1a1a;
  color: #fff;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #FAF7F2;
  line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: 'Josefin Sans', sans-serif; line-height: 1.25; font-weight: 500; }

h2 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); font-weight: 500; letter-spacing: 0.01em; }

h3 { font-size: clamp(1.1rem, 1.8vw, 1.5rem); font-weight: 500; }

h4 { font-size: 0.95rem; font-weight: 600; letter-spacing: 0.05em; }

/* ---------- Section base ---------- */
.section { padding: 56px 12px; }

.section-head { text-align: center; margin-bottom: 32px; }

.section-rule {
  display: block;
  width: 60px;
  height: 1px;
  background: #C4B5A5;
  margin: 14px auto 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  border: none;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.btn-outline-light:hover { background: #fff; color: #1a1a1a; }

.btn-dark {
  background: #2C2520;
  color: #fff;
  border: 1.5px solid #2C2520;
}
.btn-dark:hover { background: transparent; color: #2C2520; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 88px;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid #e8e3dc;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.07); }

.nav-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.nav-logo {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #2c3e3e;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.06);
  opacity: 0.92;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #2a2a2a;
}

.nav-links > li > a {
  position: relative;
  padding: 4px 0;
  color: #2a2a2a;
  transition: color 0.2s;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: #3a2e26;
  transition: width 0.25s;
}
.nav-links > li > a:hover { color: #3a2e26; }
.nav-links > li > a:hover::after,
.nav-links > li > a:focus::after { width: 100%; }

/* Legacy selector kept for compatibility */
.nav-links a::after { display: none; }
.nav-links > li > a::after { display: block; }

.arrow { font-size: 0.6rem; margin-left: 2px; opacity: 0.7; }

/* Mega Menu */
.has-mega { position: relative; }

.mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 700px;
  background: #fff;
  border: 1px solid #e8e4de;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  padding: 36px 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-6px);
}
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.mega-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 6px;
  margin-bottom: 12px;
}

.mega-col ul li { margin-bottom: 6px; }
.mega-col ul a {
  font-size: 0.82rem;
  color: #444;
  transition: color 0.2s;
}
.mega-col ul a:hover { color: #1a1a1a; }

/* Mega Menu Dropdown */
.nav-dropdown { position: static; }

/* Make dropdown <li> fill full navbar height so there's no gap to the mega menu */
.nav-has-mega {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle { display: flex; align-items: center; gap: 4px; cursor: pointer; }

.nav-mega {
  position: fixed;
  top: 106px;
  left: 0;
  right: 0;
  background: #FAF7F2;
  border-top: 1px solid #E0D8CE;
  border-bottom: 1px solid #E0D8CE;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  padding: 36px 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0s 0.25s;
  z-index: 999;
}

.nav-has-mega:hover .nav-mega,
.nav-has-mega.mega-open .nav-mega,
.nav-has-mega:focus-within .nav-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.18s ease, visibility 0s 0s;
}

.nav-mega-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-mega-col {
  padding: 0 40px 0 0;
  border-right: 1px solid #E0D8CE;
  margin-right: 40px;
}
.nav-mega-col:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.nav-mega-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 8px;
  margin-bottom: 14px;
}

.nav-mega-col ul li { margin-bottom: 8px; }

.nav-mega-col ul a {
  font-size: 0.84rem;
  color: #5A5048;
  letter-spacing: 0.02em;
  transition: color 0.18s;
}
.nav-mega-col ul a:hover { color: #1a1a1a; }
.nav-mega-col ul a::after { display: none; }

/* Services mega – single column variant */
.nav-mega-inner--single {
  grid-template-columns: 1fr !important;
  max-width: 280px;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider {
  position: relative;
  height: 82vh;
  max-height: 600px;
  min-height: 460px;
  overflow: hidden;
  margin-top: 80px;
}

/* TWC logo badge – removed from hero, now in nav */
.hero-logo-badge { display: none; }

.slides-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Fallback gradient backgrounds per slide */
.slide-1 { background: linear-gradient(135deg, #e8e0d5 0%, #c9bfb0 100%); }
.slide-2 { background: linear-gradient(135deg, #f0e8dc 0%, #d4c4b0 100%); }
.slide-3 { background: linear-gradient(135deg, #e0d5c5 0%, #c0b098 100%); }
.slide-4 { background: linear-gradient(135deg, #d8d0c5 0%, #b8afa0 100%); }
.slide-5 { background: linear-gradient(135deg, #d5ddd0 0%, #a8b8a0 100%); }

.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
.slide-overlay--bottom {
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
}

.slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 680px;
  padding: 0 0 0 6vw;
  text-align: left;
  margin: 0;
}

.slide-content--left {
  text-align: left;
  margin: 0;
}

.slide-content--bottom-left {
  position: absolute;
  bottom: 100px;
  left: 0;
  text-align: left;
}

.slide-content--center {
  position: absolute;
  bottom: 80px;
  left: 0; right: 0;
  text-align: center;
  margin: 0 auto;
}

.slide-content h1,
.slide-content h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.slide-text-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.slide-text-link:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}
.slide-text-link::after { display: none; }

.headline-large {
  font-size: clamp(2rem, 4.5vw, 3.8rem) !important;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: 0.04em;
}

.slide-tag {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.9;
}

.slide-sub {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0.9;
}

/* Slider controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.slider-btn:hover { background: rgba(255,255,255,0.3); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}
.dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* =============================================
   COLLECTION LISTING
   ============================================= */
.collection-listing { background: #F2EDE6; }

.collection-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.col-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.col-group ul li { margin-bottom: 8px; }
.col-group ul a {
  font-size: 0.88rem;
  color: #444;
  transition: color 0.2s;
}
.col-group ul a:hover { color: #1a1a1a; text-decoration: underline; }

/* =============================================
   FOUR-COLUMN GRID (Home Decor & Gallery)
   ============================================= */
.four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Product cards */
.product-card, .gallery-card {
  overflow: hidden;
  cursor: pointer;
}

.product-img, .gallery-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
  background: #d4c9b8; /* fallback */
}
.product-card:hover .product-img,
.gallery-card:hover .gallery-img { transform: scale(1.04); }

figcaption {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  padding: 10px 0 4px;
  color: #6B5F54;
}

/* Alternate gallery section */
.gallery-alt { background: #F2EDE6; }

/* =============================================
   NEW COLLECTION
   ============================================= */
.new-collection-section {
  background: #fff;
  padding-bottom: 60px;
}

/* Legacy fallback – kept in case referenced elsewhere */
.new-collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Carousel wrapper */
.nc-carousel-wrap {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.nc-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}
.nc-carousel-track .nc-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: calc((100% - 40px) / 3);
}
.nc-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.nc-dot {
  width: 28px;
  height: 3px;
  background: #d0cbc4;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}
.nc-dot.active {
  background: #1a1a1a;
  width: 44px;
}

.nc-card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  border-radius: 2px;
}

.nc-img-wrap {
  height: 460px;
  overflow: hidden;
}

.nc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.nc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,14,10,0.65) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  transition: background 0.3s;
}

.nc-card:hover .nc-overlay {
  background: linear-gradient(to top, rgba(20,14,10,0.75) 0%, rgba(20,14,10,0.1) 70%);
}

.nc-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}

.nc-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  display: block;
  transition: color 0.2s;
}

.nc-card:hover .nc-cta {
  color: #C4B5A5;
}

/* Responsive */
@media (max-width: 900px) {
  .new-collection-grid { grid-template-columns: 1fr 1fr; }
  .nc-img-wrap { height: 340px; }
}
@media (max-width: 540px) {
  .new-collection-grid { grid-template-columns: 1fr; gap: 14px; }
  .nc-img-wrap { height: 280px; }
}

/* =============================================
   SERVICES
   ============================================= */
.services-section { background: #FAF7F2; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  border: 1px solid #e0dbd4;
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.3s;
  display: block;
  color: inherit;
  text-decoration: none;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }

.service-img-wrap { height: 340px; overflow: hidden; background: #c8bfb5; }

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover .service-img { transform: scale(1.04); }

.service-desc {
  font-size: 0.88rem;
  color: #555;
  padding: 20px 20px 8px;
  line-height: 1.6;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 500;
  padding: 0 20px 24px;
  line-height: 1.3;
}

/* =============================================
   VIDEO BANNER
   ============================================= */
.video-banner {
  width: 100%;
  line-height: 0;
}

.video-banner video {
  width: 100%;
  height: 420px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .video-banner video {
    height: auto;
    object-fit: contain;
  }
  /* Global: prevent landscape videos from cropping sides on mobile */
  video {
    max-width: 100%;
  }
}

/* =============================================
   HOW WE WORK
   ============================================= */
.process-section { background: #F2EDE6; }

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

.process-step { text-align: left; }

.step-num {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2.5rem;
  color: #ccc;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.process-step h4 {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
}

.process-img-wrap { height: 300px; overflow: hidden; background: #c5bdb0; }

.process-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.process-step:hover .process-img { transform: scale(1.04); }

/* =============================================
   PROJECTS
   ============================================= */
.projects-section { background: #FAF7F2; }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.project-item {
  overflow: hidden;
  height: 360px;
  background: #c8c0b5;
}
.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.project-item:hover img { transform: scale(1.04); }

.project-wide {
  grid-column: span 2;
}

/* ── Homepage press band ── */
.press-band {
  background: #FAF7F2;
  border-top: 1px solid #E0D8CE;
  border-bottom: 1px solid #E0D8CE;
  padding: 28px 20px;
  text-align: center;
}
.press-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.press-band-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8B7355;
  padding-right: 32px;
  margin-right: 32px;
  border-right: 1px solid #C4B5A5;
  white-space: nowrap;
}
.press-band-name {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
  font-style: italic;
  color: #1a1a1a;
  padding: 6px 28px;
  position: relative;
  white-space: nowrap;
}
.press-band-name + .press-band-name::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: #C4B5A5;
}
@media (max-width: 640px) {
  .press-band-label { border-right: none; margin-right: 0; padding-right: 0; margin-bottom: 14px; width: 100%; }
  .press-band-inner { flex-direction: column; gap: 4px; }
  .press-band-name + .press-band-name::before { display: none; }
  .press-band-name { padding: 4px 0; }
}

/* =============================================
   FEATURED IN
   ============================================= */
.featured-in-section {
  background: #FAF7F2;
  padding-bottom: 20px;
}

.instagram-section {
  padding-top: 28px;
}

.fi-logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px 52px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.fi-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fi-logo {
  height: 46px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(0%) opacity(1);
  transition: opacity 0.3s ease;
}

.fi-logo:hover {
  opacity: 0.75;
}

@media (max-width: 640px) {
  .fi-logos-row { gap: 28px 36px; }
  .fi-logo { height: 36px; }
}

/* =============================================
   CONTACT
   ============================================= */
.contact-section { background: #F2EDE6; }

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.contact-sub {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 36px;
}

.contact-form { display: flex; flex-direction: column; gap: 14px; text-align: left; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d8d4ce;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: #1a1a1a; }

.contact-form textarea { resize: vertical; }

.contact-form .btn { align-self: center; margin-top: 6px; }

/* =============================================
   INSTAGRAM
   ============================================= */
.instagram-section { background: #FAF7F2; }

.insta-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.insta-icon {
  width: 32px;
  height: 32px;
  color: #1a1a1a;
  flex-shrink: 0;
}

.insta-handle {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #888;
  margin-top: 8px;
  transition: color 0.2s;
}
.insta-handle:hover { color: #1a1a1a; }

/* Instagram carousel */
.insta-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.insta-track-outer {
  overflow: hidden;
  flex: 1;
}

.insta-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.insta-post {
  position: relative;
  overflow: hidden;
  flex: 0 0 20%;          /* 5 visible on desktop */
  aspect-ratio: 4 / 5;
  background: #d4c9b8;
  display: block;
}

.insta-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.insta-post:hover img { transform: scale(1.06); }

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.insta-post:hover .insta-overlay { opacity: 1; }

.insta-overlay svg {
  width: 32px;
  height: 32px;
}

/* Arrow buttons */
.insta-arrow {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #E0D8CE;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  color: #3a2e26;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.insta-arrow svg { width: 20px; height: 20px; }
.insta-arrow:hover { background: #3a2e26; color: #fff; border-color: #3a2e26; }
.insta-arrow:disabled { opacity: 0.3; cursor: default; pointer-events: none; }

.insta-arrow--prev { margin-right: 14px; }
.insta-arrow--next { margin-left: 14px; }

.insta-cta { text-align: center; }

@media (max-width: 900px) {
  .insta-post { flex: 0 0 25%; }
}
@media (max-width: 600px) {
  .insta-post { flex: 0 0 33.333%; }
  .insta-arrow { width: 34px; height: 34px; }
  .insta-arrow--prev { margin-right: 8px; }
  .insta-arrow--next { margin-left: 8px; }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: image-set(url('images/footer-bg.webp') type("image/webp"), url('images/footer-bg.jpg') type("image/jpeg")) center / cover no-repeat;
  color: #1a1a1a;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1.3fr 1fr 1.3fr 1.5fr;
  gap: 24px 32px;
  padding: 36px 40px 28px;
  max-width: 1320px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.footer-desc {
  font-size: 0.79rem;
  color: #3a3a3a;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-about-links {
  display: flex;
  gap: 20px;
  margin: 14px 0 4px;
}
.footer-about-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-about-links a:hover { color: #C4964A; }

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 10px;
  border-bottom: 1px solid #c4b5a5;
  padding-bottom: 6px;
}

.footer-col ul li { margin-bottom: 5px; }

.footer-col ul a {
  font-size: 0.79rem;
  color: #3a3a3a;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #000; }

.footer-contact-item {
  font-size: 0.79rem;
  color: #3a3a3a;
  margin-bottom: 5px;
  line-height: 1.5;
}
.footer-contact-item a { color: #3a3a3a; transition: color 0.2s; }
.footer-contact-item a:hover { color: #000; }

.footer-btn-consult {
  display: block;
  margin-top: 10px;
  background: #1a1a1a;
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  text-align: center;
  transition: background 0.2s;
}
.footer-btn-consult:hover { background: #3a2e26; }

.footer-btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 6px;
  background: #25D366;
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 12px;
  transition: background 0.2s;
  text-align: center;
}
.footer-btn-whatsapp:hover { background: #1fba5a; }

.footer-bottom {
  border-top: 1px solid #c4b5a5;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.75rem;
  color: #1a1a1a;
}

.footer-policies {
  font-size: 0.72rem;
  color: #5a5048;
  margin-top: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-policies a {
  color: #5a5048;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-policies a:hover { color: #1a1a1a; }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}
.footer-social a { color: #3a3a3a; transition: color 0.2s; display: flex; }
.footer-social a:hover { color: #000; }

.footer-social--about {
  justify-content: flex-start;
  margin-top: 18px;
}

/* =============================================
   INTRO SECTION
   ============================================= */
.intro-section {
  background: #FAF7F2;
  padding: 28px 12px 20px;
}

.intro-inner {
  max-width: 960px;
  margin: 0 auto;
}

.intro-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.intro-tagline {
  font-family: 'Josefin Sans', sans-serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  text-align: center;
  color: #6B5F54;
  margin-bottom: 40px;
}

.intro-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 0;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.intro-body p {
  font-size: 0.92rem;
  color: #5A5048;
  line-height: 1.85;
}

.intro-quote {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(0.82rem, 1.15vw, 1.05rem) !important;
  font-style: italic;
  color: #3a2e26 !important;
  line-height: 1.7 !important;
  text-align: center;
  position: relative;
  padding: 0 12px;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .intro-quote {
    white-space: normal;
    font-size: clamp(0.8rem, 2.8vw, 0.95rem) !important;
  }
}

.intro-cta {
  text-align: right;
}

.intro-cta a {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.intro-cta a:hover { opacity: 0.6; }

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
  background: #F2EDE6;
  padding: 64px 12px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 900px;
  margin: 0 auto;
}
.stats-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 700px;
}
.stat-number small {
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-left: 2px;
  vertical-align: baseline;
}

.stat-item {
  text-align: center;
  padding: 20px 24px;
  border-right: 1px solid #C4B5A5;
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6B5F54;
}

/* =============================================
   COMPANIES SECTION
   ============================================= */
.companies-section {
  background: #FAF7F2;
  padding: 64px 20px;
}

/* ---- Brand Logos Scrolling Ticker ---- */
.brands-ticker-wrap {
  margin-top: 40px;
  border-top: 1px solid #E0D8CE;
  border-bottom: 1px solid #E0D8CE;
  background: #fff;
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}

/* soft fade masks on left & right edges */
.brands-ticker-wrap::before,
.brands-ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.brands-ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.brands-ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.brands-ticker {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: brands-run 28s linear infinite;
}

.brands-ticker-wrap:hover .brands-ticker {
  animation-play-state: paused;
}

.brands-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 1;
  transition: filter 0.3s, opacity 0.3s;
  flex-shrink: 0;
}

.brands-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes brands-run {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   TWO-COLUMN FEATURE SECTION
   ============================================= */
.feature-section {
  background: #FAF7F2;
  padding: 80px 12px;
}

.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 960px;
  margin: 0 auto;
}

.feature-col h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #C4B5A5;
  color: #1a1a1a;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  font-size: 0.88rem;
  color: #5A5048;
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 1px;
  background: #C4B5A5;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .collection-cols { grid-template-columns: repeat(2, 1fr); }
  .mega-menu-inner { grid-template-columns: repeat(2, 1fr); }
  .mega-menu { min-width: 500px; }
}

@media (max-width: 900px) {
  .four-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .project-wide { grid-column: span 2; }
  .footer-inner { grid-template-columns: repeat(3, 1fr); gap: 20px 24px; padding: 32px 20px 24px; }
}

@media (max-width: 768px) {
  .section { padding: 40px 10px; }

  /* Nav */
  .navbar { height: 63px; padding: 0 16px; }
  .nav-logo-img { height: 47px; }
  .hero-slider { margin-top: 63px; }
  /* Hamburger: always above page content and fully tappable */
  .nav-toggle { display: flex; z-index: 1001; position: relative; }

  .nav-links {
    position: fixed;
    top: 63px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 6vw;
    gap: 0;
    border-top: 1px solid #e8e4de;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.3s;
    pointer-events: none;
    z-index: 998; /* below navbar (1000) but above all page content */
    max-height: calc(100vh - 63px);
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { width: 100%; border-bottom: 1px solid #f0ece6; }
  .nav-links li a { display: block; padding: 12px 0; font-size: 0.95rem; }

  /* Mega menu on mobile */
  .nav-mega {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: #F2EDE6;
    padding: 8px 0 8px 16px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-dropdown.open .nav-mega { display: block; }
  .nav-mega-inner { grid-template-columns: 1fr; gap: 16px; }
  .nav-mega-col { border-right: none; padding-right: 0; margin-right: 0; border-bottom: 1px solid #E0D8CE; padding-bottom: 12px; margin-bottom: 4px; }
  .nav-mega-col:last-child { border-bottom: none; }
  .nav-mega-col ul a { padding: 4px 0; display: block; font-size: 0.82rem; }

  /* Mega menu – simplified on mobile */
  .mega-menu {
    position: static;
    transform: none;
    min-width: 0;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }
  .has-mega.open .mega-menu { display: block; }
  .mega-menu-inner { grid-template-columns: 1fr 1fr; gap: 16px; padding: 16px 0; }

  /* Hero */
  .slide-content { padding: 0 6vw; }
  .slide-content--left { padding: 0 6vw; }
  .slide-content--bottom-left { padding: 0 6vw; bottom: 80px; }
  .slide-content--center { padding: 0 6vw; bottom: 60px; }

  /* Grids */
  .collection-cols { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; max-width: 480px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .intro-body { grid-template-columns: 1fr; gap: 20px; }
  .intro-cta { text-align: left; }
  .feature-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 540px) {
  .four-grid { grid-template-columns: 1fr; }
  .collection-cols { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }

  .project-wide { grid-column: span 1; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 18px 20px; padding: 28px 16px 20px; }
  .slider-btn { display: none; }
  .slide-content h1, .slide-content h2 { font-size: 1.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid #C4B5A5; }
}

/* =============================================
   MOBILE – comprehensive phone fixes (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
  /* Footer: 2 columns on tablet */
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
    padding: 32px 16px 24px;
  }

  /* Projects grid: 1 col on mobile */
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .project-wide { grid-column: span 1; }
  .project-item { height: 260px; }

  /* Process grid: 1 col on mobile */
  .process-grid { grid-template-columns: 1fr; }
  .process-img-wrap { height: 220px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Stats: 2 col on mobile */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-section { padding: 40px 12px; }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid #C4B5A5; }

  /* Contact form: single column */
  .form-row { grid-template-columns: 1fr; }
  .contact-form input,
  .contact-form textarea {
    padding: 12px 14px;
    font-size: 1rem; /* prevent iOS zoom on focus */
  }
  .contact-section { padding: 40px 16px; }

  /* Companies / brands ticker */
  .companies-section { padding: 40px 16px; }

  /* Intro section */
  .intro-section { padding: 24px 16px 16px; }

  /* Feature section */
  .feature-section { padding: 48px 16px; }

  /* Four-grid: 2 col on mobile */
  .four-grid { grid-template-columns: repeat(2, 1fr); }

  /* Collection cols: 2 col on mobile already, keep */

  /* Experience center */
  .idx-experience-section { padding: 48px 16px; }
}

/* =============================================
   MOBILE – small phones (≤ 420px)
   ============================================= */
@media (max-width: 420px) {
  /* Footer: single column on tiny phones */
  .footer-inner { grid-template-columns: 1fr; gap: 16px 0; }
  .footer-about-links { flex-wrap: wrap; gap: 12px; }

  /* Four-grid: 1 col */
  .four-grid { grid-template-columns: 1fr; }

  /* Hero content text */
  .slide-content h1, .slide-content h2 { font-size: 1.3rem; }

  /* Stats: 2×2 stays fine */

  /* Contact */
  .contact-inner { padding: 0 4px; }
}


/* =============================================
   ANIMATION SYSTEM – editorial / art-site feel
   Inspired by nookatyou.com aesthetic
   ============================================= */

/* ── Keyframes ── */
@keyframes twcFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes twcFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes twcZoomIn {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

/* ── Navbar glass refinement ── */
.navbar {
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  background: rgba(255, 255, 255, 0.90) !important;
  border-bottom: 1px solid rgba(232, 227, 220, 0.7);
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease !important;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 6px 24px rgba(0,0,0,0.04) !important;
  border-bottom-color: #e8e3dc;
}

/* ── Nav links – refined hover ── */
.nav-links > li > a {
  transition: color 0.22s ease, opacity 0.22s ease;
  letter-spacing: 0.04em;
}
.nav-links > li > a:hover { color: #1a1a1a; opacity: 0.65; }
.nav-links > li > a::after {
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  height: 1px;
  background: #1a1a1a;
}

/* ── Button micro-lift on hover ── */
.btn {
  transition: background 0.28s cubic-bezier(0.22,1,0.36,1),
              color 0.28s cubic-bezier(0.22,1,0.36,1),
              border-color 0.28s cubic-bezier(0.22,1,0.36,1),
              transform 0.22s ease,
              box-shadow 0.22s ease !important;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}
.btn:active { transform: translateY(0); box-shadow: none; }

/* ── Hero entry animations ── */
.slide-content h1,
.slide-content h2 {
  animation: twcFadeUp 0.95s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.15s;
}
.slide-tag {
  animation: twcFadeUp 0.95s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.28s;
}
.slide-sub {
  animation: twcFadeUp 0.95s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.28s;
}
.slide-content .btn {
  animation: twcFadeUp 0.95s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.42s;
}
.slide-bg {
  animation: twcZoomIn 1.6s cubic-bezier(0.22,1,0.36,1) both;
}

/* ── Smoother image hover scale ── */
.nc-card:hover .nc-img-wrap img { transition: transform 0.65s cubic-bezier(0.22,1,0.36,1); transform: scale(1.06); }
.product-card:hover .product-img { transition: transform 0.65s cubic-bezier(0.22,1,0.36,1); transform: scale(1.06); }
.gallery-card:hover .gallery-img { transition: transform 0.65s cubic-bezier(0.22,1,0.36,1); transform: scale(1.06); }
.service-card:hover .service-img { transition: transform 0.65s cubic-bezier(0.22,1,0.36,1); transform: scale(1.06); }
.project-item:hover img { transition: transform 0.65s cubic-bezier(0.22,1,0.36,1); transform: scale(1.06); }
.cat-card:hover .cat-card-img img { transition: transform 0.65s cubic-bezier(0.22,1,0.36,1); transform: scale(1.06); }

/* ── Scroll-reveal system ── */
/* Only active when JS adds .twc-animations to <body> */
.twc-animations .twc-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s cubic-bezier(0.22,1,0.36,1),
              transform 0.72s cubic-bezier(0.22,1,0.36,1);
}
.twc-animations .twc-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays for grid children */
.twc-animations .twc-stagger > *:nth-child(1) { transition-delay: 0s; }
.twc-animations .twc-stagger > *:nth-child(2) { transition-delay: 0.07s; }
.twc-animations .twc-stagger > *:nth-child(3) { transition-delay: 0.14s; }
.twc-animations .twc-stagger > *:nth-child(4) { transition-delay: 0.21s; }
.twc-animations .twc-stagger > *:nth-child(5) { transition-delay: 0.28s; }
.twc-animations .twc-stagger > *:nth-child(6) { transition-delay: 0.35s; }
.twc-animations .twc-stagger > *:nth-child(7) { transition-delay: 0.42s; }
.twc-animations .twc-stagger > *:nth-child(8) { transition-delay: 0.49s; }
.twc-animations .twc-stagger > *:nth-child(n+9) { transition-delay: 0.56s; }

/* ── Mega menu – smoother drop ── */
.nav-has-mega:hover .nav-mega,
.nav-has-mega.mega-open .nav-mega,
.nav-has-mega:focus-within .nav-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.18s ease, visibility 0s 0s;
}
/* ---- Experience Center (landing page) ---- */
.idx-experience-section {
  background: #fff;
  padding: 80px 20px;
}
.idx-experience-section .idx-exp-head {
  text-align: center;
  margin-bottom: 36px;
}
.idx-experience-section .idx-exp-head h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 14px;
}
.idx-experience-section .idx-exp-rule {
  width: 60px;
  height: 1px;
  background: #C4B5A5;
  margin: 0 auto 14px;
}
.idx-experience-section .idx-exp-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #8B7355;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.idx-exp-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.idx-exp-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 460px;
}
.idx-exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.idx-exp-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.idx-exp-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #6B5F54;
  line-height: 1.85;
}
@media (max-width: 900px) {
  .idx-exp-layout { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .idx-exp-grid { grid-template-columns: 1fr 1fr; }
  .idx-exp-grid img { height: 140px; }
}

/* ===== BROWSE BY SECTION ===== */
.browse-section { padding: 56px 40px; }
.browse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.browse-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.browse-img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
}
.browse-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.browse-card:hover .browse-img-wrap img { transform: scale(1.05); }
.browse-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #2C2419;
  border-bottom: 1px solid #e0d9d0;
}
.browse-arrow {
  font-size: 1.1rem;
  color: #7C5C3E;
  transition: transform 0.25s ease;
}
.browse-card:hover .browse-arrow { transform: translateX(5px); }
@media (max-width: 768px) {
  .browse-section { padding: 40px 16px; }
  .browse-grid { grid-template-columns: 1fr; gap: 24px; }
  .browse-img-wrap { aspect-ratio: 4/3; }
}
