/* =============================================
   RATTANCRAFT EXPORTS — MAIN STYLESHEET
   Design: Warm Luxury / Editorial Exporter
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* ── CSS VARIABLES ─────────────────────────── */
:root {
  --cream:     #F5F0E8;
  --cream-dk:  #EDE6D6;
  --sand:      #D4BC94;
  --tan:       #B8955A;
  --espresso:  #3D2B1F;
  --bark:      #5C3D2E;
  --forest:    #2D4A3E;
  --gold:      #C9933A;
  --gold-lt:   #E8B86D;
  --white:     #FDFAF5;
  --gray-100:  #F9F6F0;
  --gray-200:  #EDE8DF;
  --gray-400:  #9C9080;
  --gray-600:  #6B5F52;
  --gray-900:  #1E1512;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  32px;

  --shadow-sm: 0 2px 8px rgba(61,43,31,.06);
  --shadow-md: 0 8px 32px rgba(61,43,31,.10);
  --shadow-lg: 0 20px 60px rgba(61,43,31,.16);

  --transition: all .3s cubic-bezier(.25,.46,.45,.94);
}

/* ── RESET & BASE ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--espresso);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

/* ── TYPOGRAPHY ────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--espresso);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 400; }
h4 { font-size: 1.25rem; font-weight: 500; }

.display-serif {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
}

.label {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--tan);
}

/* ── NAVBAR ────────────────────────────────── */
#mainNav {
  background: rgba(253,250,245,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  padding: 1rem 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
}

#mainNav.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
  padding: .6rem 0;
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--espresso) !important;
  letter-spacing: -.02em;
}

.navbar-brand span { color: var(--gold); }

.navbar-brand .brand-sub {
  display: block;
  font-size: .55rem;
  font-family: var(--font-mono);
  letter-spacing: .18em;
  color: var(--gray-400);
  font-style: normal;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}

.navbar .nav-link {
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-600) !important;
  letter-spacing: .03em;
  padding: .5rem 1rem !important;
  position: relative;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 1rem; right: 1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--espresso) !important;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { transform: scaleX(1); }

.navbar-toggler {
  border: none;
  padding: 6px;
}

.navbar-toggler:focus { box-shadow: none; }

.nav-cta {
  background: var(--espresso) !important;
  color: var(--cream) !important;
  border-radius: 100px;
  padding: .45rem 1.2rem !important;
  font-size: .8rem !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--bark) !important; }

/* ── BUTTONS ───────────────────────────────── */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--espresso);
  color: var(--cream);
  border: none;
  border-radius: 100px;
  padding: .85rem 2rem;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary-custom:hover {
  background: var(--bark);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(61,43,31,.2);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: transparent;
  color: var(--espresso);
  border: 1.5px solid var(--espresso);
  border-radius: 100px;
  padding: .8rem 1.9rem;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  background: var(--espresso);
  color: var(--cream);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-radius: 100px;
  padding: .85rem 2rem;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .04em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

.btn-gold:hover {
  background: var(--tan);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,147,58,.35);
}

.btn-wa {
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  padding: .85rem 2rem;
  font-size: .875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

.btn-wa:hover {
  background: #1fba5a;
  color: #fff;
  transform: translateY(-1px);
}

/* ── SECTION UTILITIES ─────────────────────── */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 64px 0; }

.section-header { margin-bottom: 56px; }

.section-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
}

.section-line.center { margin-left: auto; margin-right: auto; }

.bg-cream { background: var(--cream); }
.bg-cream-dk { background: var(--cream-dk); }
.bg-espresso { background: var(--espresso); color: var(--cream); }
.bg-forest { background: var(--forest); color: var(--cream); }
.bg-gray { background: var(--gray-100); }

/* ── HERO ──────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--espresso) 0%, var(--bark) 40%, #7A5240 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9933A' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-img-wrap {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  overflow: hidden;
}

.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .35;
}

.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--espresso) 0%, transparent 60%);
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-desc {
  color: rgba(245,240,232,.7);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(245,240,232,.15);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--gold-lt);
  line-height: 1;
}

.hero-stat-label {
  font-size: .75rem;
  color: rgba(245,240,232,.5);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 4px;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(245,240,232,.4);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,147,58,.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── TRUST STRIP ────────────────────────────── */
.trust-strip {
  background: var(--cream-dk);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem 1.5rem;
  border-right: 1px solid var(--gray-200);
}

.trust-item:last-child { border-right: none; }

.trust-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: .85rem;
  flex-shrink: 0;
}

.trust-text strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--espresso);
}

.trust-text span {
  font-size: .7rem;
  color: var(--gray-400);
}

/* ── PRODUCT CARDS ──────────────────────────── */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream);
}

.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}

.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--espresso);
  color: var(--cream);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,43,31,.6), transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.product-card:hover .product-card-overlay { opacity: 1; }

.product-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.product-category {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tan);
  font-weight: 500;
  margin-bottom: .4rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: .5rem;
  line-height: 1.2;
}

.product-desc {
  font-size: .82rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.product-moq {
  font-size: .72rem;
  color: var(--gray-400);
  margin-bottom: .75rem;
}

.product-moq strong { color: var(--espresso); }

/* ── CATEGORY FILTER ────────────────────────── */
.filter-bar {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: transparent;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  border-radius: 100px;
  padding: .45rem 1.2rem;
  font-size: .8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--cream);
}

/* ── ABOUT PREVIEW ──────────────────────────── */
.about-img-stack {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

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

.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}

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

.founded-tag {
  position: absolute;
  top: 1.5rem; left: -1rem;
  background: var(--gold);
  color: var(--white);
  padding: .75rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.founded-tag .year {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  display: block;
}

.founded-tag .est {
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
}

/* ── PROCESS STEPS ──────────────────────────── */
.process-step {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}

.process-step:hover {
  border-color: var(--sand);
  box-shadow: var(--shadow-md);
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  min-width: 48px;
  flex-shrink: 0;
}

.step-icon {
  width: 48px; height: 48px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tan);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── VIDEO SECTION ──────────────────────────── */
.video-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--espresso);
  cursor: pointer;
}

.video-wrap iframe {
  width: 100%; height: 100%;
  border: none;
}

.video-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(135deg, var(--espresso), var(--bark));
}

.play-btn {
  width: 80px; height: 80px;
  background: rgba(201,147,58,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: var(--transition);
  border: 3px solid rgba(255,255,255,.3);
}

.video-wrap:hover .play-btn {
  transform: scale(1.1);
  background: var(--gold);
}

/* ── CERT GALLERY ───────────────────────────── */
.cert-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}

.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cert-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: contain;
  padding: 1rem;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}

/* ── COUNTRY FLAGS MARQUEE ──────────────────── */
.marquee-wrap {
  overflow: hidden;
  padding: 1rem 0;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.country-chip {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: .5rem 1rem;
  white-space: nowrap;
  font-size: .8rem;
  font-weight: 500;
  color: var(--gray-600);
}

.country-flag { font-size: 1.2rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── CTA BANNER ─────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--espresso) 0%, var(--bark) 60%, #6B3D28 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,147,58,.15) 0%, transparent 70%);
}

.cta-banner::after {
  content: '"';
  position: absolute;
  bottom: -2rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(201,147,58,.06);
  line-height: 1;
  font-weight: 300;
}

/* ── CONTACT FORM ───────────────────────────── */
.form-control-custom {
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: .85rem 1.1rem;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--espresso);
  width: 100%;
  transition: var(--transition);
  outline: none;
}

.form-control-custom:focus {
  border-color: var(--tan);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,147,58,.1);
}

.form-control-custom::placeholder { color: var(--gray-400); }

.form-label-custom {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: .4rem;
  display: block;
}

.form-group-custom { margin-bottom: 1.25rem; }

.form-error {
  font-size: .75rem;
  color: #c0392b;
  margin-top: .3rem;
  display: none;
}

.form-control-custom.is-invalid { border-color: #c0392b; }
.form-control-custom.is-invalid + .form-error { display: block; }

/* ── INFO CARD ──────────────────────────────── */
.info-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.info-icon {
  width: 44px; height: 44px;
  background: var(--espresso);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-lt);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── FAQ ────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.5rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--espresso);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.faq-question:hover { color: var(--tan); }

.faq-icon {
  width: 28px; height: 28px;
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--tan);
}

.faq-item.open .faq-icon {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--cream);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-bottom: 1.5rem;
  color: var(--gray-600);
  font-size: .9rem;
  line-height: 1.75;
}

.faq-item.open .faq-answer { display: block; }

/* ── TEAM CARD ──────────────────────────────── */
.team-card { text-align: center; }

.team-img {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--cream-dk);
}

/* ── GALLERY LIGHTBOX ───────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61,43,31,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(30,21,18,.95);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,.15);
  border: none;
  color: white;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover { background: rgba(255,255,255,.25); }

/* ── FOOTER ─────────────────────────────────── */
footer {
  background: var(--gray-900);
  color: rgba(245,240,232,.6);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--cream);
}

.footer-brand span { color: var(--gold); }

.footer-desc {
  font-size: .85rem;
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  color: rgba(245,240,232,.5);
}

.footer-title {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-link {
  display: block;
  font-size: .85rem;
  color: rgba(245,240,232,.5);
  padding: .3rem 0;
  transition: var(--transition);
}

.footer-link:hover { color: var(--cream); transform: translateX(4px); }

.footer-bottom {
  border-top: 1px solid rgba(245,240,232,.08);
  padding: 1.25rem 0;
  font-size: .75rem;
  color: rgba(245,240,232,.3);
}

.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(245,240,232,.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,240,232,.5);
  font-size: .85rem;
  transition: var(--transition);
}

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

/* ── ANIMATIONS ─────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
.fade-up-delay-4 { transition-delay: .4s; }

/* ── FLOATING WA BUTTON ─────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9998;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.1);
  color: white;
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}

/* ── PAGE HERO ──────────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--espresso) 0%, var(--bark) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9933A' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 { color: var(--cream); font-weight: 300; }
.page-hero .lead { color: rgba(245,240,232,.65); font-size: 1.1rem; max-width: 560px; }

/* ── BREADCRUMB ─────────────────────────────── */
.breadcrumb-custom {
  display: flex;
  gap: .5rem;
  align-items: center;
  font-size: .75rem;
  margin-bottom: 1rem;
  color: rgba(245,240,232,.4);
}

.breadcrumb-custom a { color: rgba(245,240,232,.5); }
.breadcrumb-custom a:hover { color: var(--gold-lt); }
.breadcrumb-sep { color: rgba(245,240,232,.25); }
.breadcrumb-current { color: var(--gold-lt); }

/* ── MAP ────────────────────────────────────── */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  border: 1px solid var(--gray-200);
}

.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── SUCCESS TOAST ──────────────────────────── */
.toast-custom {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  background: var(--forest);
  color: var(--cream);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 99999;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  transform: translateX(120%);
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
}

.toast-custom.show { transform: translateX(0); }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-img-wrap { width: 100%; opacity: .15; }
  .hero-img-wrap::before { background: linear-gradient(to bottom, var(--espresso), rgba(61,43,31,.8)); }
  .about-img-accent { right: 0; bottom: -1rem; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 64px 0; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .about-img-stack { margin-bottom: 3rem; }
}

@media (max-width: 575.98px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
