/* ============================================
   Fashion Labels — Custom Styles
   Deep Navy (#1C3A5E) + Warm Gold (#D4A843)
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --navy: #1C3A5E;
  --navy-light: #2A4F7A;
  --navy-dark: #132B47;
  --gold: #D4A843;
  --gold-light: #E8C46D;
  --gold-dark: #B8912E;
  --cream: #FDF8F0;
  --cream-dark: #F5EDE0;
  --warm-white: #FFFBF5;
  --text-dark: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #6B6B6B;
  --text-on-dark: #F5F0E8;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(28, 58, 94, 0.06);
  --shadow-md: 0 4px 20px rgba(28, 58, 94, 0.1);
  --shadow-lg: 0 8px 40px rgba(28, 58, 94, 0.12);
  --shadow-gold: 0 4px 20px rgba(212, 168, 67, 0.25);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Labels --- */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: var(--gold);
}

/* --- Section Titles --- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-label {
  padding-left: 0;
}

.section-header.center .section-label::before {
  display: none;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 168, 67, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--warm-white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 168, 67, 0.35);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-dark);
  border: 2px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28, 58, 94, 0.06);
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(253, 248, 240, 0.97);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--gold-dark);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav-toggle-bar {
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  padding: 100px 0 60px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(212, 168, 67, 0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(28, 58, 94, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 540px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(28, 58, 94, 0.06);
  border: 1px solid rgba(28, 58, 94, 0.1);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  align-items: center;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(28, 58, 94, 0.12);
}

/* Hero Image Column */
.hero-image-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.hero-img-primary {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 500/650;
}

.hero-img-secondary {
  width: 280px;
  aspect-ratio: 320/400;
  margin-top: -40px;
  margin-left: -24px;
  border: 4px solid var(--cream);
  position: relative;
  z-index: 1;
}

.hero-accent-card {
  position: absolute;
  bottom: 60px;
  left: -40px;
  background: var(--navy);
  color: var(--text-on-dark);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  max-width: 260px;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  background: var(--navy);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--warm-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 560/620;
}

.about-img-accent {
  position: absolute;
  bottom: -32px;
  right: -24px;
  width: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--warm-white);
  box-shadow: var(--shadow-md);
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 260/300;
}

.about-experience-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-gold);
  z-index: 1;
}

.about-exp-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.about-exp-text {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 4px;
}

.about-content {
  padding: 8px 0;
}

.about-body {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.about-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-value-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(212, 168, 67, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-value strong {
  display: block;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 2px;
}

.about-value span {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--cream);
}

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

.service-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(28, 58, 94, 0.04);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card-body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================
   CONSIGNMENT
   ============================================ */
.consignment {
  padding: 100px 0;
  background: var(--warm-white);
}

.consignment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.consignment-content {
  padding: 8px 0;
}

.consignment-body {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
}

.consignment-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.consignment-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.consignment-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}

.consignment-step strong {
  display: block;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 2px;
}

.consignment-step span {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Consignment Visual */
.consignment-visual {
  position: relative;
}

.consignment-img-stack {
  position: relative;
  height: 540px;
}

.consignment-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.consignment-img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 420/500;
}

.consignment-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 220px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 4px solid var(--warm-white);
  box-shadow: var(--shadow-md);
}

.consignment-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 300/360;
}

.consignment-quote {
  position: absolute;
  bottom: 80px;
  left: -20px;
  background: var(--navy);
  color: var(--text-on-dark);
  padding: 24px;
  border-radius: var(--radius-lg);
  max-width: 300px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.consignment-quote p {
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
  color: rgba(245, 240, 232, 0.9);
}

.consignment-quote span {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  font-style: normal;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--cream);
}

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

.testimonial-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(28, 58, 94, 0.04);
  transition: all var(--transition);
}

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

.testimonial-card-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-light);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(212, 168, 67, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-content {
  flex: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-title em {
  font-style: italic;
  color: var(--gold);
}

.cta-text {
  font-size: 17px;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.7;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ============================================
   VISIT / CONTACT
   ============================================ */
.visit {
  padding: 100px 0;
  background: var(--warm-white);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.visit-info {
  padding: 8px 0;
}

.visit-body {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.visit-detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(212, 168, 67, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visit-detail strong {
  display: block;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 4px;
}

.visit-detail a {
  font-size: 15px;
  color: var(--navy-light);
  transition: color var(--transition);
  display: block;
  line-height: 1.6;
}

.visit-detail a:hover {
  color: var(--gold-dark);
}

.visit-detail span {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
  display: block;
}

.visit-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px;
  border: 4px solid var(--warm-white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  color: var(--text-on-dark);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-dark);
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--warm-white);
}

.footer-tagline {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.7;
  max-width: 300px;
}

.footer-links strong,
.footer-contact strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 15px;
  color: rgba(245, 240, 232, 0.6);
  padding: 6px 0;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact a {
  display: block;
  font-size: 15px;
  color: rgba(245, 240, 232, 0.6);
  padding: 6px 0;
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-contact span {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.6;
  display: block;
  margin-top: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.4);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(28, 58, 94, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: var(--cream);
  padding: 80px 32px 40px;
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.active .mobile-menu-inner {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: var(--navy);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}

.mobile-menu-close:hover {
  background: rgba(28, 58, 94, 0.06);
}

.mobile-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  padding: 12px 0;
  border-bottom: 1px solid rgba(28, 58, 94, 0.06);
  transition: color var(--transition);
}

.mobile-link:hover {
  color: var(--gold-dark);
}

.mobile-menu-contact {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(28, 58, 94, 0.06);
}

.mobile-menu-contact p {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.mobile-menu-contact a {
  color: var(--navy-light);
  transition: color var(--transition);
}

.mobile-menu-contact a:hover {
  color: var(--gold-dark);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-col {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-accent-card {
    left: -10px;
    bottom: 40px;
  }

  .about-grid,
  .consignment-grid,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-content,
  .consignment-content,
  .visit-info {
    order: 1;
  }

  .about-image-wrap,
  .consignment-visual,
  .visit-map {
    order: 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-text {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-headline {
    font-size: clamp(28px, 6vw, 40px);
  }

  .hero-img-secondary {
    width: 200px;
    margin-left: -16px;
    margin-top: -24px;
  }

  .hero-accent-card {
    display: none;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .consignment-img-stack {
    height: 400px;
  }

  .consignment-img-1 {
    width: 200px;
  }

  .consignment-img-2 {
    width: 160px;
  }

  .consignment-quote {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 20px;
    max-width: 100%;
  }

  .about-img-accent {
    width: 160px;
    right: -12px;
  }

  .about-experience-badge {
    right: 20px;
    padding: 14px;
  }

  .about-exp-number {
    font-size: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .visit-map {
    height: 320px;
  }

  .cta-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 90px 0 48px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

  .hero-img-secondary {
    display: none;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .about,
  .services,
  .consignment,
  .testimonials,
  .visit {
    padding: 64px 0;
  }

  .cta-banner {
    padding: 56px 0;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .marquee-track {
    animation: none;
  }
}
