/*!
Theme Name: bow_ties_tuxedo
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: bow_ties_tuxedo
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

bow_ties_tuxedo is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/* ═══════════════════════════════════════════════════════════
   Bow Ties Tuxedo — Shared Styles
   ═══════════════════════════════════════════════════════════ */

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

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {	scroll-behavior: smooth;	font-size: 16px;	overflow-x: hidden;}
body { font-family: 'Inter', system-ui, sans-serif; background: #F8F6F3; color: #1A1A1A; overflow-x: hidden; -webkit-font-smoothing: antialiased; padding-top: 118px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ─── Variables ─── */
:root {
  --navy: #1B2A4A;
  --black: #0A0A0A;
  --gold: #C9A96E;
  --off-white: #F8F6F3;
  --white: #FFFFFF;
  --charcoal: #1A1A1A;
  --gray-light: #E8E5E0;
  --gray-mid: #888;
  --gray-dark: #444;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --max-w: 1650px;
  --transition: 0.35s ease;
  --padding-section: 0 4rem;
}

@media (max-width: 768px) {
  :root {
    --padding-section: 0 2rem;
  }
}

::-webkit-scrollbar {
  width: 10px;               
  height: 10px;             
}

::-webkit-scrollbar-track {
  background: #f1f1f1;     
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #C9A96E;     
  border-radius: 10px;
  border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
  background: #b38f4d;      
}

* {
  scrollbar-width: thin;        
  scrollbar-color: #C9A96E #f1f1f1;
}




/* ─── Typography ─── */
.font-serif { font-family: var(--serif); }
.font-sans { font-family: var(--sans); }
.gold-label { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.section-headline { font-family: var(--serif); font-size: clamp(28px, 4vw, 42px); font-weight: 500; color: var(--charcoal); line-height: 1.25; }
.section-headline-white { font-family: var(--serif); font-size: clamp(28px, 4vw, 42px); font-weight: 500; color: var(--white); line-height: 1.25; }
.body-text { font-size: 16px; color: var(--gray-dark); line-height: 1.85; }
.tracking-wide { letter-spacing: 0.2em; }
.tracking-wider { letter-spacing: 0.3em; }
.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* ─── Layout ─── */
.container {
	max-width:var(--max-w);
	margin: 0 auto;
	padding: var(--padding-section);
}
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.gap-10 { gap: 40px; }
.gap-12 { gap: 48px; }
.gap-16 { gap: 64px; }
.gap-20 { gap: 80px; }
.w-full { width: 100%; }
.relative { position: relative; }
.absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }
.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

/* ─── Sections ─── */
/* .section { padding: 100px 0; } */
.section { padding: 70px 0; }
.section-sm { padding: 70px 0; }
/* .section-md { padding: 64px 0; }
 */.section-md { padding: 70px 0; }
.bg-white { background-color: var(--white); }
.bg-off-white { background-color: var(--off-white); }
.bg-navy { background-color: var(--navy); }
.bg-black { background-color: var(--black); }

/* ─── Section Label with Lines ─── */
.section-label-wrap { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 16px; }
.section-label-line { height: 1px; flex: 1; max-width: 60px; background: var(--gold); }

/* ─── Keyframes ─── */
@keyframes shimmer {
  0% { background-position: -400% center; }
  100% { background-position: 400% center; }
}
@keyframes kenBurns {
  from { transform: scale(1.0); }
  to { transform: scale(1.08); }
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(14px); opacity: 0.4; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes pulseGold {
  0%, 85%, 100% { box-shadow: 0 4px 24px rgba(201,169,110,0.35); }
  92% { box-shadow: 0 4px 32px rgba(201,169,110,0.7), 0 0 0 10px rgba(201,169,110,0.15); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes drawLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideFromLeft {
  from { opacity: 0; transform: translateX(-40px) rotate(-1.5deg); }
  to { opacity: 1; transform: translateX(0) rotate(0); }
}
@keyframes slideFromRight {
  from { opacity: 0; transform: translateX(40px) rotate(1.5deg); }
  to { opacity: 1; transform: translateX(0) rotate(0); }
}
@keyframes growHeight {
  from { height: 0%; }
  to { height: 100%; }
}

/* ─── Shimmer Gold Text ─── */
.shimmer-gold {
  background: linear-gradient(90deg, #C9A96E 20%, #F5E0A8 45%, #E8C87A 55%, #C9A96E 80%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s linear infinite;
}

/* ─── Ken Burns ─── */
.ken-burns { animation: kenBurns 15s ease-out forwards; }

/* ─── Floating CTA ─── */
.floating-cta { animation: pulseGold 8s ease-in-out infinite; }

/* ─── Scroll Reveal (JS toggles .revealed) ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

/* Stagger children */
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }
.stagger-6 { transition-delay: 0.48s; }

/* ─── Buttons ─── */
.btn-gold {
  display: inline-block; padding: 14px 32px; background: var(--gold); color: var(--black);
  border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; border: none; position: relative; overflow: hidden; z-index: 1;
  transition: transform 0.3s ease;
}
.btn-gold:hover { transform: scale(1.02); }
.btn-gold::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(255,255,255,0.15); transform: translateX(-101%);
  transition: transform 0.35s ease; z-index: -1;
}
.btn-gold:hover::before { transform: translateX(0); }

.btn-gold-dark::before { background: var(--black); }
.btn-gold-dark:hover { color: var(--white); }

.btn-outline {
  display: inline-block; padding: 14px 32px; background: transparent;
  border: 1px solid rgba(255,255,255,0.5); color: var(--white);
  border-radius: 999px; font-size: 12px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; transition: all 0.3s ease;
}
.btn-outline:hover { background: var(--white); color: var(--black); transform: scale(1.02); }

.btn-outline-dark {
  border-color: #D0CCC5; color: var(--charcoal);
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }

/* ─── Top Bar ─── */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 40px; background: var(--black); display: flex; align-items: center;
}
/* Top bar always stays visible — no .hidden behavior */
.top-bar-inner { max-width: var(--max-w); margin: 0 auto; padding: var(--padding-section); width: 100%; display: flex; align-items: center; justify-content: space-between; }
.top-bar-side { display: flex; align-items: center; gap: 8px; color: white; font-size: 11px; letter-spacing: 0.2em; }
.top-bar-center { font-size: 11px; letter-spacing: 0.2em; }

/* ─── Navigation ─── */
.main-nav {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 90;
  padding: 20px 0; transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
.main-nav.scrolled { background: var(--black); box-shadow: 0 2px 20px rgba(0,0,0,0.15); padding: 14px 0; }
.main-nav.scrolled .nav-logo { height: 34px; }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: var(--padding-section); display: flex; align-items: center; justify-content: space-between; }
.nav-logo { height: 38px; width: auto; transition: height 0.3s ease; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { color: white; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; transition: color 0.2s; position: relative; background: none; border: none;   padding: 5px 0; }
.nav-link:hover { color: var(--gold); }

/* Dropdown */
.nav-dropdown-wrap { position: relative;    margin-top: -5px; }
.nav-dropdown {
  position: absolute; top: 100%; left: 0; min-width: 184px;
  background: var(--black); border-top: 2px solid var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3); opacity: 0; pointer-events: none;
  transform: translateY(0); transition: all 0.2s ease; z-index: 100;
}
.nav-dropdown-wrap:hover .nav-dropdown { opacity: 1; transform: translateY(5px); pointer-events: auto; }
.nav-dropdown a { display: block; padding: 12px 20px; color: white; font-size: 11px; letter-spacing: 0.2em; transition: all 0.15s; }
.nav-dropdown a:hover { color: var(--gold); background: #1a1a1a; }

/* Nav CTA */
.nav-cta { padding: 8px 20px; background: var(--gold); color: var(--black); border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: 0.15em; }
.nav-cta:hover { transform: scale(1.02); }

/* Mobile Nav */
.nav-hamburger { display: none; background: none; border: none; color: white; padding: 4px; }
.mobile-menu {
  position: fixed; inset: 0; z-index: 200; background: var(--black);
  display: flex; flex-direction: column; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu-links { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: start; gap: 0; padding: 16px 24px; overflow-y: auto; }
.mobile-menu-link {
  display: block; padding: 16px 0; font-family: var(--serif); font-size: clamp(24px, 5vw, 34px);
  font-weight: 400; color: white; letter-spacing: 0.08em; text-align: center; width: 100%;
  background: none; border: none; transition: color 0.2s;
}
.mobile-menu-link:hover { color: var(--gold); }
.mobile-menu-divider { height: 1px; background: rgba(255,255,255,0.06); width: 40%; margin: 0 auto; }
.mobile-menu-footer { padding: 32px 24px; text-align: center; border-top: 1px solid rgba(255,255,255,0.08); }

/* ─── Hero ─── */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; margin-top: -118px; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform-origin: center top; }
.hero-overlay { position: absolute; inset: 0; }
.hero-content { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 120px 24px 60px; max-width: 860px;  min-height: 100vh; }
.hero-content.centered { align-items: center; text-align: center; max-width: 100%; }
.hero-headline { font-family: var(--serif); font-size: clamp(36px, 5.5vw, 64px); font-weight: 500; color: white; line-height: 1.15; margin-bottom: 24px; }
.hero-headline .line { overflow: hidden; padding-bottom: 4px; }
.hero-headline .line-inner { animation: slideUp 0.75s ease forwards; opacity: 0; }
.hero-headline .line-inner.d1 { animation-delay: 0.3s; }
.hero-headline .line-inner.d2 { animation-delay: 0.45s; }
.hero-headline .line-inner.d3 { animation-delay: 0.6s; }
.hero-sub { font-size: clamp(14px, 1.8vw, 17px); color: #C8C8C8; line-height: 1.75; max-width: 520px; margin-bottom: 40px; animation: fadeUp 0.7s ease 0.8s both; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; animation: fadeUp 0.7s ease 1.0s both; }
.hero-label { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; animation: fadeUp 0.6s ease 0.2s both; }
.hero-label-line { height: 1px; width: 40px; background: var(--gold); }
@media (max-width: 1200px) {
  .hero-content * {	justify-content: center;	text-align: center;   text-wrap: balance;}
  .hero-sub {	width: 100%;	max-width: 100%;}
  .hero-content {	padding: 0;}
}
/* Scroll indicator */
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.7; }
.scroll-indicator span { font-size: 10px; letter-spacing: 0.25em; color: white; text-transform: uppercase; }
.scroll-indicator-track { width: 1px; height: 40px; background: rgba(255,255,255,0.3); position: relative; }
.scroll-indicator-dot { position: absolute; top: 0; left: 0; width: 100%; height: 8px; background: var(--gold); border-radius: 2px; animation: scrollDot 2s ease-in-out infinite; }

/* ─── Inner Page Hero ─── */
.page-hero { position: relative; height: 70vh; min-height: 400px; overflow: hidden; margin-top: -118px; }
.page-hero .hero-content { align-items: center; text-align: center; max-width: 100%; padding-top: 100px; }
.page-hero .hero-sub { max-width: 540px; }

/* ─── Value Strip ─── */
.value-block { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; }
.value-block svg { margin-bottom: 16px; color: white; }
.value-block .value-accent { height: 1px; width: 20px; background: var(--gold); margin-bottom: 12px; transition: width 0.3s ease; }
.value-block:hover .value-accent { width: 32px; }
.value-block:hover svg { transform: scale(1.1); }
.value-block svg { transition: transform 0.3s ease; }
.value-stat { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--gold); margin-bottom: 4px;     transition: 400ms;}
.value-stat:hover {
    transform: scale(1.2);
    transition: 400ms;
}
.value-block:hover .tracking-wide {
    color: var(--gold)!important;
}
/* ─── Category Cards ─── */
.category-card {
  position: relative; overflow: hidden; border-radius: 4px; cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.category-card .card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.category-card:hover .card-bg { transform: scale(1.05); }
.category-card .card-overlay {
  position: absolute; inset: 0; transition: opacity 0.4s;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  opacity: 0.7;
}
.category-card:hover .card-overlay { opacity: 0.85; }
.category-card .card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
.category-card .card-name {
  font-family: var(--serif); font-size: 22px; font-weight: 500; color: white;
  transition: transform 0.3s ease; position: relative; display: inline-block;
}
.category-card .card-name::after {
  content: ''; display: block; height: 1px; background: var(--gold);
  width: 0; transition: width 0.3s ease; margin-top: 4px;
}
.category-card:hover .card-name { transform: translateY(-4px); }
.category-card:hover .card-name::after { width: 100%; }
.category-card .card-explore {
  font-size: 12px; letter-spacing: 0.2em; color: var(--gold); margin-top: 8px;
  opacity: 0; transform: translateY(8px); transition: all 0.3s ease;
}
.category-card:hover .card-explore { opacity: 1; transform: translateY(0); }

/* ─── Style Cards (Carousel) ─── */
.carousel-wrap { position: relative; overflow: hidden; }
.carousel-track { display: flex; gap: 16px; transition: transform 0.5s ease; }
.style-card { flex: 0 0 calc(25% - 12px); min-width: 0; cursor: pointer; }
.style-card .card-img-wrap { position: relative; overflow: hidden; border-radius: 4px; margin-bottom: 16px; aspect-ratio: 2/3; }
.style-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.style-card:hover img { transform: scale(1.05); }
.style-card .card-img-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.2); opacity: 0; transition: opacity 0.4s; }
.style-card:hover .card-img-overlay { opacity: 1; }
.style-card .view-btn {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%) translateY(8px);
  padding: 8px 20px; background: white; color: var(--black); font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; border: none; border-radius: 2px;
  opacity: 0; transition: all 0.3s ease;
}
.style-card:hover .view-btn { opacity: 1; transform: translateX(-50%) translateY(0); }
.style-name { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--charcoal); }
.style-price { font-size: 15px; color: var(--gold); font-weight: 500; }
.style-tag { padding: 2px 8px; font-size: 10px; letter-spacing: 0.15em; border-radius: 2px; color: white; }
#styles .swiper-pagination {	position: relative;	margin-top: 30px;}
/* Carousel arrows */
.carousel-arrow {
  position: absolute; top: 33%; transform: translateY(-50%); width: 40px!important; height: 40px!important;
  border-radius: 50%; border: 1px solid var(--gray-light); background: white; color: var(--charcoal);
  display: flex; align-items: center; justify-content: center; z-index: 2;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1); cursor: pointer; transition: all 0.2s;
}
.carousel-arrow:hover { background: var(--navy); color: white; transform: translateY(-50%) scale(1.1); }
.carousel-arrow.left { left: 0px; }
.carousel-arrow.right { right: 0px; }
.carousel-dots { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 32px; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 999px; border: 1px solid var(--gold);
  background: transparent; padding: 0; cursor: pointer; transition: all 0.3s;
}
.carousel-dot.active { width: 24px; background: var(--gold); }

/*--- Promise ---*/
@media (max-width: 1200px) {
  .reveal.revealed {	max-width: 100% !important;	justify-content: center;}
}
@media (max-width: 768px) {
  h2.reveal.revealed {font-size: clamp(28px, 4vw, 42px) !important;}
}
/*Tie colors*/
@media (max-width: 600px) {
  #tie-colors * {	text-align: center;	justify-content: center;}
  #tie-colors #swatches {	grid-template-columns: repeat(6, 1fr);}
}

/* ─── Split Sections ─── */
.split { display: flex; min-height: 550px; }
.split-img { width: 50%; position: relative; overflow: hidden; }
.split-img .bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.split-content { width: 50%; display: flex; flex-direction: column; justify-content: center; padding: 80px 72px; }
/* ─── How It Works ─── */
.step-circle {
  width: 64px; height: 64px; border-radius: 50%; border: 1px solid var(--gray-light);
  background: white; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06); position: relative; margin-bottom: 32px;
}
.step-ghost {
  position: absolute; top: -24px; right: -16px; font-family: var(--serif);
  font-size: 64px; font-weight: 700; color: rgba(201,169,110,0.15);
  line-height: 1; pointer-events: none; user-select: none;
}
.step-title { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--charcoal); margin-bottom: 12px; }
.step-desc { font-size: 14px; color: #666; line-height: 1.75; }
.steps-line {
  position: absolute; top: 32px; left: 12.5%; right: 12.5%; height: 1px;
  background: var(--gold); transform-origin: left; transform: scaleX(0);
  transition: transform 1.2s ease 0.4s;
}
.steps-line.revealed { transform: scaleX(1); }
section#steps .reveal.revealed:hover .step-circle {
    background: var(--gold);
    transition: 400ms;
}
section#steps .reveal.revealed .step-circle {
    transition: 400ms;
}
section#steps .reveal.revealed:hover h3.step-title {
    color: var(--gold);
}
/* ─── Swatches ─── */
.swatch {
  aspect-ratio: 1; border-radius: 3px; position: relative; cursor: pointer;
  transition: transform 0.2s ease;
}
.swatch:hover { transform: translateY(-4px); }
.swatch-color { width: 100%; height: 100%; border-radius: 3px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.swatch-tooltip {
  position: absolute; top: -28px; left: 50%; transform: translateX(-50%);
  padding: 2px 8px; background: var(--black); color: white; font-size: 10px;
  border-radius: 3px; white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.swatch:hover .swatch-tooltip { opacity: 1; }

/* ─── Review Cards ─── */
.review-card {
	padding: 44px 40px;
	background: white;
	border: 1px solid var(--gray-light);
	border-radius: 8px;
	box-shadow: 0 4px 24px rgba(0,0,0,0.05);
	transition: all 0.5s ease;
	cursor: pointer;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
	margin: 5px;
}
.review-card:hover {
	background: #ecd5ac;
	/* color: #fff; */
}
.review-card:hover svg {	fill: var(--navy);}
.review-logo { font-family: var(--serif); font-size: 22px; font-weight: 700; letter-spacing: 0.1em; }
.review-stars { display: flex; gap: 4px; margin-bottom: 24px; }
.review-quote {	font-family: var(--serif);	font-size: 18px;	font-weight: 400;	color: #2A2A2A;	line-height: 1.75;	font-style: italic;	margin-bottom: 24px;	height: 130px;overflow-y: auto;}
.review-name { font-size: 13px; color: #999; letter-spacing: 0.05em; }
.swiper-pagination-bullet {	background: #fff!important;	border: 1px solid var(--gold);	opacity: 1!important;}
.swiper-pagination-bullet.swiper-pagination-bullet-active {	width: 24px;	background: rgb(201, 169, 110)!important;	height: 8px;	border-radius: 5px;}
.review-card:hover .review-name, .review-card:hover .review-quote {	color: var(--navy);}
.review-card:hover .review-logo {	color: var(--navy)!important;}
#banner-home a{
	transition: 400ms all;
}
#banner-home a:hover {
	color: var(--gold) !important;
	transition: 400ms all;
}


@media (max-width: 768px) {
  #reviews h2 {	margin-bottom: 25px !important;}
}
/*banner*/
@media (max-width: 768px) {
  #banner-home div {	display: flex;	flex-direction: column;}
}
/* ─── Measurement Modal ─── */
.buttons-modal {
	background: #1B2A4A;
	padding: 15px;
	position: fixed;
	bottom: 0;
	width: 100%;
	bottom: 0;
}
#measurement-form select {
	width: 100%;
	height: 42px;
	background: #fff;
	border: none;
	border-bottom: 1px solid #d8d8d7;
	color: #999;
	font-size: 15px;
	font-family: var(--sans);
}
#measurement-form select:focus {    outline: none;    box-shadow: none;}
#measurement-form input::-webkit-input-placeholder {
	color: #999;
}
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 300; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 520px; max-width: 100%;
  background: white; z-index: 310; transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25,0.1,0.25,1);
  overflow-y: auto; box-shadow: -4px 0 40px rgba(0,0,0,0.2);
}
.modal-drawer.open { transform: translateX(0); }
.modal-header { position: sticky; top: 0; background: white; padding: 24px 32px; border-bottom: 1px solid var(--gray-light); display: flex; align-items: center; justify-content: space-between; z-index: 1; }
.modal-header h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; }
.modal-close { width: 36px; height: 36px; border-radius: 50%; border: none; background: transparent; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #666; transition: background 0.2s; }
.modal-close:hover { background: #f0f0f0; }
.modal-body { padding: 24px 32px 32px; }
.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 20px; }

.modal-content-product {	overflow-y: scroll;	height: 100vh;	padding-bottom: 100px;}
.acf-info-content strong {	color: var(--gold);	}

 .repeater-field-button-add { width:100%; padding:10px; background:#1B2A4A!important; color:white; border:none; border-radius:3px!important; font-size:11px; letter-spacing:0.15em; cursor:pointer; transition:background 0.2s; }
  .repeater-field-button-add:hover { background:#C9A96E!important; color:#0A0A0A; }
@media (max-width:768px) {
  .buttons-modal a, .buttons-modal button {
      font-size: 11px;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0px 5px;
  }
#measurement-modal-container, .modal-drawer {
	max-width: 100vw;
}
}
/* Floating Input */
.float-field { position: relative; padding-top: 20px; }
.float-field label { position: absolute; top: 28px; left: 0; font-size: 14px; color: #999; transition: all 0.2s; pointer-events: none; }
.float-field input, .float-field textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid #D8D5D0;
  padding: 4px 0 8px; font-size: 15px; color: var(--charcoal); outline: none;
  font-family: var(--sans); transition: border-color 0.25s;
}
.float-field textarea { resize: none; }
.float-field input:focus, .float-field textarea:focus { border-bottom-color: var(--gold); }
.float-field input:focus + label, .float-field input:not(:placeholder-shown) + label,
.float-field textarea:focus + label, .float-field textarea:not(:placeholder-shown) + label {
  top: 2px; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
}
.float-field input:focus + label, .float-field textarea:focus + label { color: var(--gold); }

/* ─── Floating CTA ─── */
.floating-cta-btn {
  position: fixed; bottom: 32px; right: 32px; z-index: 60;
  display: flex; align-items: center; gap: 8px; padding: 12px 18px;
  background: var(--gold); color: var(--black); border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  box-shadow: 0 4px 24px rgba(201,169,110,0.35);
  opacity: 0; transform: translateY(24px); pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.floating-cta-btn.visible { opacity: 1; transform: translateY(0); pointer-events: auto; animation: pulseGold 8s ease-in-out infinite; }

.floating-cta-btn.button-mobile{
    padding: 0;
}
.floating-cta-btn.button-mobile a.button-float_2 {
    background: var(--navy);
    color: #fff;
}
.floating-cta-btn.button-mobile a {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 40px;
}

@media (max-width: 768px) {
  .floating-cta-btn {
    width: 100%;
    left: 0!important;
    bottom: 0!important;
    border-radius: 0;
    text-align: center;
    justify-content: center;
  }
}
/* ─── Footer ─── */
.footer { background: var(--black); padding-top: 80px; }
.footer h4 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: white; margin-bottom: 20px; }
.footer a { font-size: 14px; color: #888; line-height: 1.5; transition: color 0.2s; }
.footer a:hover {	color: var(--gold) !important;}
.footer-social { width: 36px; height: 36px; border: 1px solid #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #999; transition: color 0.2s; }
.footer-social:hover { color: var(--gold); }
.footer-bottom {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 24px;
	margin-top: 64px;
	border-top: 1px solid #1E1E1E;
	text-align: center;
	display: flex;
	justify-content: space-between;
}.footer-bottom a {
	font-size: 12px;
	color: #444;
	font-weight: 700;
}
.footer-bottom p { font-size: 12px; color: #444; }
.footer-icon { color: var(--gold); flex-shrink: 0; }
.footer li {	list-style: none;}
.footer li a {	text-transform: capitalize !important;	letter-spacing: 0;}
.time-footer b {color: #C9A96E;}
@media (max-width: 634px) {
  .footer * {	text-align: center;	justify-content: center;}
  .footer .grid-4 {	display: flex;	flex-direction: column;	justify-content: center;	align-items: center;	text-align: center;}
  .footer-icon {	display: none;}
.footer-bottom {
	flex-direction: column-reverse;
	padding: 8px 0 0;
	gap: 5px;
}
}
/* ─── Contact Page Specific ─── */
.contact-method-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 32px; background: rgba(255,255,255,0.05); border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08); transition: all 0.5s ease;
}
.contact-method-card:hover { border-color: var(--gold); background: rgba(201,169,110,0.08); transform: translateY(-4px); }
.contact-method-icon {
  width: 56px; height: 56px; border-radius: 50%; border: 1px solid rgba(201,169,110,0.4);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: transform 0.3s;
}
.contact-method-card:hover .contact-method-icon { transform: scale(1.1); }

.info-card { padding: 20px; border-radius: 8px; border: 1px solid var(--gray-light); background: white; margin-bottom: 24px; }
@media (min-width:800px) {
  .info-card {
    margin-bottom: 0!important;
  }
}
.info-card-dark { background: var(--black); border: none; }
.hours-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #F0EDEA; }

#contact-form .btn-gold {
	width: 100%;
	margin-top: 35px;
}#contact-form {
	text-align: start;
}
.label-date {
	font-size: 11px !important;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-top: -5px !important;
}
#map a {
	display: flex;
}
@media (max-width: 992px) {
  #map div {	text-align: center;	margin: auto;	justify-content: center;}
}
@media(max-width: 768px) {
  #contact-form .grid.grid-3 {    grid-template-columns: 1fr;  }
  #quick-contact .grid.grid-4.gap-4 {	grid-template-columns: 1fr;	gap: 15px !important;}
  .info-card {	margin-bottom: 0;}
  #quick-contact h2 {    margin-bottom: 30px !important;  }
  .content-block-contact {	display: flex;	flex-direction: column-reverse;	text-align: center;}
  #contact .reveal-right.revealed {	width: 100% !important;	max-width: 100%;}
  #contact .container {	gap: 20px;}
  .location-information span , .hour-information span { display: none;}
  .location-information,.hour-information {	text-align: center;	display: flex;	justify-content: center;}
  .info-card a {	text-align: center;	display: flex;	justify-content: center;}
  #contact .reveal-right > div:nth-child(3) {    margin-top: 20px;  }
}
@media (max-width:425px) {
  #contact .reveal-left.revealed {	max-width: 100%;	width: 100%;	min-width: 100% !important;}


}
/* .split .reveal a {
	display: flex;
} */
.split-img iframe {
	width: 100%;
	height: 100%;
}
.info-card svg {
	width: 18px;
	height: 18px;
}
/* ─── About Page Specific ─── */
.value-grid-card {
  padding: 32px; background: var(--off-white); border-radius: 8px;
  border: 1px solid transparent; transition: all 0.5s ease;
}
.value-grid-card:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    background: var(--gold);
    color: #fff;
}
.value-grid-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--navy);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: transform 0.3s;
}
.value-grid-card:hover div {
    color: #fff!important;
}
.value-grid-card:hover .value-grid-icon { transform: scale(1.1); }
section#values-grid .container {
    width: 100%;
    min-width: 100%;
}
.we-are-image {
    max-height: 85vh;
    width: 100%;
}
.we-are-image img {
    width: 100%;
}
.timeline-dot {    transition: 400ms;}
.revealed:hover .timeline-dot {
    background: var(--navy);
    width: 25px;
    height: 25px;
    transition: 400ms;
}
@media (max-width: 768px) {
  #we-are {	text-align: center;}
  #we-are .reveal-left.revealed {	margin: 0 !important;	width: 100% !important;}

  #we-are .container {	gap: 40px;}
  .value-grid-card {	text-align: center;}
  .value-grid-icon {	margin: auto auto 20px;}
  #showroom .flex.items-center.gap-3 {	text-align: start;}
#timeline .revealed div:nth-child(2) {
	width: calc(100% - 40px) !important;
	padding-right: 0 !important;
	/* padding-left: 40px; */
	text-align: start;
	width: 100% !important;
}
  #timeline .revealed div:nth-child(2) div {	padding-left: 0;}
  #timeline .relative:nth-child(2n+1) > div {	padding-left: 0 !important;}
  .timeline-year {	padding-left: 36px;}
  #timeline .revealed .text-timeline {	padding-left: 36px!important;
}
#about .reveal-right.revealed {	width: 100% !important;	margin: 0;	min-width: 100%;}
}

.timeline-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: #D8D5D0; transform: translateX(-0.5px); }
.timeline-line-fill { width: 100%; background: var(--gold); height: 0%; transition: height 2s ease 0.3s; }
.timeline-line-fill.revealed { height: 100%; }
.timeline-dot {
  position: absolute; left: 50%; top: 4px; width: 20px; height: 20px;
  border-radius: 50%; background: var(--gold); border: 3px solid var(--off-white);
  transform: translateX(-50%); z-index: 2;
}
.timeline-year { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--gold); }
@media (max-width: 468px) {
  #banner-about a {	width: 100%;}

  section#we-are .container {
      display: flex;
      flex-direction: column-reverse;
  }
  section#values-grid {
      padding: 50px 0;
  }


}
/* ─── Form Success ─── */
.form-success { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 64px 32px; background: white; border-radius: 8px; border: 1px solid var(--gray-light); }


/**/
.check-policies {
	margin-top: 15px;
}
.check-policies input {
	accent-color: var(--gold);
}
.check-policies p {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
}
.check-link {
	color: var(--gold);
	padding-left: 3px;
}
 .wpcf7-not-valid-tip {
	font-size: 13px;
}
.check-policies .wpcf7-not-valid-tip {
	position: absolute;
	width: 100%;
	display: flex;
	max-width: 100%;
	font-size: 13px;
}
@media (max-width:768px) {
  .check-policies p {
    align-items: end;
    font-size: 12px;
  }
}


.button-mobile {
  display: none;
}
/* ─── Responsive ─── */
@media (max-width: 1023px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .split { flex-direction: column; }
  .split-img, .split-content { width: 100%; }
  .split-img { min-height: 280px; }
/*   .split-content { padding: 52px 28px; text-align: center; }
 */  .split-content {
    padding: 50px 2rem;
    text-align: center;
  }
  .style-card { flex: 0 0 calc(50% - 8px); }
  .carousel-arrow.left { left: -8px; }
  .carousel-arrow.right { right: -8px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .top-bar-side { display: none; }
  .top-bar-inner {	justify-content: center;}
  .page-hero { height: 60vh; }
  .steps-line { display: none; }
  .timeline-line { left: 24px; }
  .timeline-dot { left: 24px; }
  .footer .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
  
  .hero { min-height: 500px; }
  .hero-label-line {	display: none;}
  .hero-content {  padding-top: 90px;}
  .section { padding: 50px 0; }
  .section-sm { padding: 50px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .style-card { flex: 0 0 100%; }
  #about .reveal-left.revealed {	text-align: center;}
  #about .reveal-right.revealed {	margin: auto;}
  .modal-row { grid-template-columns: 1fr; }
  .scroll-indicator { display: none; }
  .floating-cta-btn { bottom: 24px; right: 16px; }
  .page-hero { height: 55vh; min-height: 380px; }
  .button-destokp {
    display: none;
  }
  
  .carousel-arrow {
    position: relative!important;
  }
  .swiper-pagination {	display: none;}

  .buttons-carousel {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }


  .button-mobile {
    display: flex;
  }
}
