/* STALLION BESPOKE DUBAI - DESIGN SYSTEM & STYLES (MATCHING S-01 to S-14 REFERENCE) */

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

:root {
  /* COLOR PALETTE (EXACT USER BRAND SPECIFICATION) */
  --ink: #404751;
  /* Dark Blue sections, footer, primary text */
  --ink-dark: #201B2E;
  /* Deep Offwhite/Dark Ink contrast accent */
  --steel-blue: #5F758E;
  /* Light blue interactive elements, buttons, active states, tags, borders */
  --off-white: #EAE0C7;
  /* Offwhite font, hero solid CTA fill, type & rules on dark grounds */
  --paper: #F4EEDC;
  /* Page background for long reading */
  --line: #D9D1BE;
  /* Hairline rules, card borders, dividers (1px) */
  --steel-blue-hover: #4d6177;
  --ink-light: #404751;

  /* TYPOGRAPHY */
  --font-display: 'Jost', sans-serif;
  /* Display & Section Headings: Jost 300 Light Uppercase */
  --font-body: 'Inter', sans-serif;
  /* Body: Inter 400 */
  --font-mono: 'Space Mono', monospace;
  /* Utility / Micro: Space Mono Caps */
  --font-accent: 'Caveat', cursive;
  /* Script Accent: Used ONLY TWICE on entire site */

  /* TRANSITIONS & BORDERS */
  --border-line: 1px solid var(--line);
  --border-ink-line: 1px solid rgba(234, 224, 199, 0.2);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--paper);
  color: var(--ink);
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink);
  background-color: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* TYPOGRAPHY UTILITIES */
.font-display {
  font-family: var(--font-display);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.font-mono {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.font-accent {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--steel-blue);
  display: inline-block;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* SECTION WITH LEFT SPINE LABEL */
.site-section {
  position: relative;
  padding: 5.5rem 0;
  border-bottom: var(--border-line);
}

.site-section.bg-ink {
  background-color: var(--ink);
  color: var(--off-white);
  border-bottom: 1px solid rgba(234, 224, 199, 0.15);
}

.site-section.bg-paper {
  background-color: var(--paper);
  color: var(--ink);
}

.section-grid-spine {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 2rem;
  position: relative;
}

.spine-container {
  position: relative;
  border-right: 1px solid var(--line);
  padding-right: 1rem;
}

.bg-ink .spine-container {
  border-right-color: rgba(234, 224, 199, 0.2);
}

.spine-label {
  position: sticky;
  top: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #8A99AD;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  padding: 1rem 0;
}

.bg-ink .spine-label {
  color: var(--off-white);
  opacity: 0.6;
}

.section-content {
  width: 100%;
}

/* HEADER & NAV */
.top-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--paper);
  border-bottom: var(--border-line);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.35rem;
  letter-spacing: 0.2em;
  color: var(--ink);
}

.brand-tagline {
  font-family: var(--font-mono);
  font-size: 9px;
  color: #7A899B;
  letter-spacing: 0.22em;
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.4rem 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--steel-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-steel {
  background-color: var(--steel-blue);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.8rem 1.6rem;
  border-radius: 0px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-steel:hover {
  background-color: var(--steel-blue-hover);
}

.btn-outline-ink {
  background-color: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.8rem 1.6rem;
  transition: var(--transition);
}

.btn-outline-ink:hover {
  background-color: var(--ink);
  color: var(--paper);
}

.btn-offwhite-hero {
  background-color: var(--off-white);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.95rem 1.8rem;
  border-radius: 0px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-offwhite-hero:hover {
  background-color: #f1e9d5;
}

.btn-outline-steel {
  border: 1px solid var(--steel-blue);
  color: var(--off-white);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.95rem 1.8rem;
  transition: var(--transition);
}

.btn-outline-steel:hover {
  background-color: rgba(95, 117, 142, 0.2);
}

/* S-01 HERO SECTION */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  background-color: var(--steel-blue);
  color: var(--off-white);
}

.hero-left-panel {
  padding: 4.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--steel-blue);
}

.hero-subhead {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  color: var(--off-white);
  opacity: 0.85;
  margin-bottom: 1.2rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  line-height: 1.15;
  color: var(--off-white);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--off-white);
  opacity: 0.9;
  max-width: 480px;
  margin-bottom: 2.2rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-rating {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--off-white);
  opacity: 0.75;
}

.hero-right-visual {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 400px;
}

.hero-right-visual::after {
  display: none !important;
  content: none !important;
}

/* S-02 OUR STORY */
.story-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3.5rem;
  align-items: center;
}

.story-image-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: #D6CFBE;
  position: relative;
  overflow: hidden;
}

.story-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-label {
  display: none !important;
}

.story-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  color: #7A899B;
  margin-bottom: 0.8rem;
}

.section-h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.4rem;
  letter-spacing: 0.18em;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.story-text-content p {
  margin-bottom: 1.2rem;
  color: var(--ink);
}

.accent-quote-1 {
  font-family: var(--font-accent);
  font-size: 1.65rem;
  color: var(--steel-blue);
  margin-top: 1.5rem;
}

/* S-03 OUR HERITAGE (DARK INK SECTION) */
.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 3.5rem;
  align-items: center;
}

.heritage-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  color: #A0B0C0;
  margin-bottom: 0.8rem;
}

/* S-04 MISSION & VISION */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: var(--border-line);
  margin-bottom: 2.5rem;
}

.mv-card h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.15rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  color: var(--ink);
}

.mv-card p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.full-bleed-strip {
  width: 100%;
  height: 180px;
  background-color: #D6CFBE;
  position: relative;
  overflow: hidden;
}

.full-bleed-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* S-05 THE STALLION STANDARD */
.standard-sub {
  color: #667585;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: var(--border-line);
}

.standard-col {
  padding: 2.2rem 1.8rem;
  border-right: var(--border-line);
}

.standard-col:last-child {
  border-right: none;
}

.standard-col h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
  color: var(--ink);
}

.standard-col p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #4A5664;
}

/* S-06 TAILORED WITH INTENTION (THE 6 STEPS) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
  margin-bottom: 2.5rem;
}

.step-card {
  padding-bottom: 1.5rem;
  border-bottom: var(--border-line);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #8A99AD;
  margin-bottom: 0.5rem;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.step-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #4A5664;
}

.steps-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.accent-quote-2 {
  font-family: var(--font-accent);
  font-size: 1.65rem;
  color: var(--steel-blue);
}

/* S-07 WHAT WE MAKE */
.make-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: var(--border-line);
}

.make-card {
  padding: 2.2rem 2rem;
  border-right: var(--border-line);
  border-bottom: var(--border-line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  background-color: var(--paper);
  transition: var(--transition);
}

.make-card:nth-child(3n) {
  border-right: none;
}

.make-card:hover {
  background-color: #FAF6EE;
}

.make-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.make-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #4A5664;
  margin-bottom: 1.5rem;
}

.make-link {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--steel-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.make-link:hover {
  color: var(--ink);
}

/* S-08 OUR FABRICS (DARK INK) */
.fabrics-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 3.5rem;
  align-items: center;
}

.chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.mill-chip-static {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  padding: 0.6rem 1.1rem;
  border: 1px solid rgba(234, 224, 199, 0.3);
  color: var(--off-white);
  background-color: rgba(255, 255, 255, 0.03);
}

/* S-09 OUR JOURNEY (TIMELINE) */
.journey-timeline {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(234, 224, 199, 0.15);
  align-items: center;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--off-white);
}

.timeline-year small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  display: block;
  opacity: 0.6;
  margin-bottom: 2px;
}

.timeline-text {
  font-size: 1rem;
  color: var(--off-white);
  opacity: 0.9;
}

.today-box {
  background-color: var(--off-white);
  color: var(--ink);
  padding: 2.2rem 2.5rem;
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  margin-top: 2rem;
}

.today-label {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
}

.today-content h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  margin-bottom: 0.4rem;
}

.today-content p {
  font-size: 0.95rem;
  color: #4A5664;
}

/* S-10 WHO WE SERVE (LOGO GRID) */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: var(--border-line);
  margin-top: 2.5rem;
}

.logo-cell {
  padding: 1.8rem 1.25rem;
  border-right: var(--border-line);
  border-bottom: var(--border-line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: var(--transition);
  min-height: 100px;
  background-color: #FAF8F5;
}

.logo-cell img {
  max-width: 140px;
  max-height: 46px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.65);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-cell:nth-child(5n) {
  border-right: none;
}

.logo-cell:hover {
  background-color: #FFFFFF;
}

.logo-cell:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.06);
}

/* S-11 LOCATIONS & CONTACT */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
  margin-top: 2.5rem;
}

.location-col h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.8rem;
}

.location-col p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #4A5664;
  margin-bottom: 0.8rem;
  min-height: 60px;
}

.map-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #C5A059;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.map-link-btn:hover {
  color: #1B2A38;
  text-decoration: underline;
  transform: translateY(-1px);
}

.contact-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2.5rem;
  border-top: var(--border-line);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--ink);
  flex-wrap: wrap;
  gap: 1rem;
}

/* FOOTER BAR */
.site-footer {
  background-color: var(--ink);
  color: var(--off-white);
  padding: 2.5rem 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  border-top: 1px solid rgba(234, 224, 199, 0.15);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 1.8rem;
}

.footer-links a:hover {
  color: var(--off-white);
  text-decoration: underline;
}

/* S-12 BOOK AN APPOINTMENT (CONVERSION VIEW / MODAL) */
/* PRELOADER STYLES */
body.loading {
  overflow: hidden !important;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #EFE9DB;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  animation: cssAutoDismissPreloader 0.4s ease 1.8s forwards;
}

@keyframes cssAutoDismissPreloader {
  0% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  background-color: #EFE9DB;
}

.preloader-gif-img {
  max-width: 520px;
  width: 90vw;
  max-height: 85vh;
  height: auto;
  object-fit: contain;
  background-color: #EFE9DB;
}

.preloader-loader-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #C5A059, #D4AF37, #F3E9D2);
  animation: preloaderFill 2.2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.preloader-subtext {
  font-family: var(--font-mono, monospace);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: #C5A059;
  text-transform: uppercase;
  opacity: 0.85;
}

@keyframes preloaderFloat {
  0% {
    transform: translateY(0);
    opacity: 0.9;
  }

  100% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

@keyframes preloaderFill {
  0% {
    width: 0%;
  }

  50% {
    width: 70%;
  }

  100% {
    width: 100%;
  }
}

/* BRAND PNG LOGO STYLES */
.site-logo-img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: var(--transition);
}

.brand-logo:hover .site-logo-img {
  opacity: 0.88;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(46, 57, 69, 0.85);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-card {
  background-color: var(--paper);
  border: var(--border-line);
  width: 92%;
  max-width: 940px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 3.5rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-container-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
}

.booking-meta-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.booking-meta-col h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  margin-top: 0.5rem;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.booking-meta-col p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #4A5664;
  margin-bottom: 1.5rem;
}

.booking-rating {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: #64748B;
  padding-bottom: 1.5rem;
  border-bottom: var(--border-line);
  margin-bottom: 1.5rem;
}

.whatsapp-talk-link {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--steel-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.booking-form-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.location-chips-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.chip-btn {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 0.6rem 1rem;
  border: 1px solid var(--line);
  background-color: #FFFFFF;
  color: var(--ink);
  transition: var(--transition);
}

.chip-btn.active,
.chip-btn:hover {
  background-color: var(--steel-blue);
  color: #FFFFFF;
  border-color: var(--steel-blue);
}

.form-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background-color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: var(--transition);
}

.form-field:focus {
  border-color: var(--steel-blue);
  box-shadow: 0 0 0 2px rgba(95, 117, 142, 0.2);
}

textarea.form-field {
  resize: vertical;
  min-height: 80px;
}

/* S-13 SERVICE PAGE TEMPLATE */
.service-view-wrapper {
  padding: 4rem 0;
  display: none;
}

.service-view-wrapper.active-view {
  display: block;
}

.breadcrumbs {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: #8A99AD;
  margin-bottom: 1.5rem;
}

.breadcrumbs a:hover {
  color: var(--steel-blue);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.service-tag-chips {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.tag-chip {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: #64748B;
}

.faq-section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: var(--border-line);
}

.faq-card h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  margin-bottom: 0.8rem;
}

.faq-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #4A5664;
}

/* S-14 BOUTIQUE PAGE TEMPLATE (DARK INK VARIANT) */
.boutique-view-wrapper {
  background-color: var(--ink);
  color: var(--off-white);
  padding: 4.5rem 0;
  display: none;
  min-height: 80vh;
}

.boutique-view-wrapper.active-view {
  display: block;
}

.boutique-content-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.boutique-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  color: #A0B0C0;
  margin-bottom: 1rem;
}

.boutique-rating {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: #A0B0C0;
  margin-bottom: 2rem;
}

.map-embed-placeholder {
  width: 100%;
  height: 240px;
  background-color: #425263;
  border: 1px solid rgba(234, 224, 199, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--off-white);
  margin-bottom: 1.5rem;
}

.boutique-hours {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  line-height: 2;
  color: var(--off-white);
}

.make-here-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

/* RESPONSIVE DESIGN FOR MOBILE S-06 LAYOUT */
@media (max-width: 992px) {
  .section-grid-spine {
    grid-template-columns: 1fr;
  }

  .spine-container {
    border-right: none;
    border-bottom: var(--border-line);
    padding-bottom: 0.5rem;
  }

  .spine-label {
    writing-mode: horizontal-tb;
    transform: none;
    position: static;
  }

  .hero-layout,
  .story-grid,
  .heritage-grid,
  .fabrics-grid,
  .service-hero-grid,
  .boutique-content-grid,
  .booking-container-inner {
    grid-template-columns: 1fr;
  }

  .standard-grid,
  .make-grid,
  .logo-grid,
  .locations-grid,
  .faq-section-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .standard-col,
  .make-card,
  .logo-cell {
    border-right: none;
    border-bottom: var(--border-line);
  }

  .hero-headline {
    font-size: 2.4rem;
  }

  .form-group-grid {
    grid-template-columns: 1fr;
  }
}

/* --- MOBILE NAVIGATION DRAWER & TOGGLE --- */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--border-ink-line);
  border-radius: 6px;
  cursor: pointer;
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--off-white);
  transition: var(--transition);
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 9990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-panel {
  position: fixed;
  top: 0;
  right: -340px;
  width: 310px;
  max-width: 85vw;
  height: 100vh;
  background-color: var(--ink);
  color: var(--off-white);
  z-index: 9995;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.75rem 1.5rem;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer-panel.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(234, 224, 199, 0.15);
  padding-bottom: 1rem;
}

.mobile-drawer-close {
  font-size: 1.5rem;
  color: var(--off-white);
  background: transparent;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.mobile-drawer-link {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--off-white);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(234, 224, 199, 0.08);
}

.mobile-drawer-actions {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(234, 224, 199, 0.15);
}

/* ENHANCED MOBILE RESPONSIVENESS FOR ALL DEVICES */
@media (max-width: 992px) {

  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    position: relative !important;
  }

  .site-section,
  .container,
  .section-grid-spine {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .section-grid-spine {
    grid-template-columns: 1fr !important;
  }

  .spine-container {
    display: none !important;
  }

  .contact-info-row {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.75rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .footer-inner {
    flex-direction: column !important;
    gap: 1.25rem !important;
    text-align: center !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .footer-links {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.75rem 1.25rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .site-logo-img {
    height: 42px;
  }

  .container {
    padding: 0 1.25rem;
  }

  .hero-left-panel {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .hero-headline {
    font-size: clamp(1.8rem, 6vw, 2.75rem);
    line-height: 1.2;
    text-align: center !important;
  }

  .hero-subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-cta-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    gap: 1rem !important;
  }

  .btn-offwhite-hero,
  .btn-outline-steel {
    width: 100% !important;
    max-width: 320px !important;
    text-align: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  .hero-rating {
    text-align: center !important;
    width: 100% !important;
  }

  .hero-layout,
  .story-grid,
  .heritage-grid,
  .fabrics-grid,
  .service-hero-grid,
  .boutique-content-grid,
  .booking-container-inner {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .standard-grid,
  .make-grid,
  .locations-grid,
  .faq-section-grid,
  .steps-grid {
    grid-template-columns: 1fr !important;
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .form-group-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .form-group-grid>div {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .form-group-grid .form-field,
  .form-group-grid input[type="date"],
  .form-group-grid input[type="time"],
  input[type="date"].form-field,
  input[type="time"].form-field {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    min-height: 46px !important;
    padding: 0.75rem 0.85rem !important;
    font-family: inherit !important;
    font-size: 13px !important;
    color: #1E293B !important;
    background-color: #FFFFFF !important;
    border: 1px solid #CBD5E1 !important;
    border-radius: 0 !important;
    -webkit-appearance: none !important;
    appearance: none !important;
  }

  .comparison-table-wrapper,
  .table-card {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .booking-modal-card {
    width: 95% !important;
    max-width: 500px !important;
    padding: 1.5rem 1.25rem 2.5rem 1.25rem !important;
    margin: 1rem auto !important;
    max-height: none !important;
    box-sizing: border-box !important;
    position: relative !important;
    z-index: 10001 !important;
  }

  .modal-overlay.active {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding: 1rem 0.5rem 3rem 0.5rem !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    z-index: 10000 !important;
    background: rgba(15, 23, 42, 0.85) !important;
    backdrop-filter: blur(6px) !important;
  }

  #btn-submit-booking,
  #lp-submit-btn,
  .booking-form-col button[type="submit"] {
    width: 100% !important;
    min-height: 50px !important;
    position: relative !important;
    z-index: 10 !important;
    margin-top: 1.25rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  /* MOBILE TESTIMONIAL CAROUSEL FIX */
  .testimonial-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* CLIENT TESTIMONIALS SLIDER CAROUSEL - BRAND OFF-WHITE THEME */
.testimonial-slider-viewport {
  overflow: hidden !important;
  width: 100% !important;
  position: relative;
  padding: 0.5rem 0 1rem 0;
  box-sizing: border-box !important;
}

.testimonial-slider-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 1.5rem !important;
  transition: transform 0.4s ease-out !important;
  will-change: transform;
  width: 100%;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  width: calc(33.333% - 1rem);
  min-width: calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem);
  background: #FFFFFF !important;
  border: 1px solid #D9D1BE !important;
  border-radius: 8px;
  padding: 1.85rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: #5F758E !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.testimonial-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
}

.testimonial-stars {
  color: #D4AF37;
  font-size: 15px;
  letter-spacing: 0.15em;
}

.testimonial-g-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 10px;
  color: #404751;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: #FAF8F5;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  border: 1px solid #EAE0C7;
}

.testimonial-quote {
  color: #404751;
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-card-footer {
  border-top: 1px solid #EAE0C7;
  padding-top: 1rem;
}

.testimonial-client-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #404751;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.testimonial-client-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #5F758E;
  letter-spacing: 0.12em;
}

.btn-testimonial-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #5F758E;
  color: #404751;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-testimonial-nav:hover {
  background: #404751;
  color: #EAE0C7;
}

.testimonial-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: #EAE0C7 !important;
  width: 24px !important;
  border-radius: 10px !important;
}

.testimonial-slider-viewport {
  overflow: hidden !important;
  width: 100% !important;
  position: relative;
  padding: 0.5rem 0 1rem 0;
  box-sizing: border-box !important;
  touch-action: pan-y;
}

@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem) !important;
    width: calc(50% - 0.75rem) !important;
    min-width: calc(50% - 0.75rem) !important;
    max-width: calc(50% - 0.75rem) !important;
    padding: 1.5rem 1.25rem !important;
  }
}

@media (max-width: 640px) {
  .testimonial-slider-track {
    gap: 1rem !important;
  }

  .testimonial-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    padding: 1.35rem 1.15rem !important;
    border-radius: 8px !important;
  }

  .testimonial-quote {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.1rem !important;
  }

  .testimonial-client-name {
    font-size: 0.98rem !important;
  }

  .testimonial-client-meta {
    font-size: 9px !important;
  }

  .btn-testimonial-nav {
    width: 38px !important;
    height: 38px !important;
    font-size: 16px !important;
  }

  .testimonial-pagination {
    margin-top: 1.25rem !important;
  }
}

/* FABRIC BRAND PARTNERS SECTION */
.fabric-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.fabric-brand-card {
  background: rgba(30, 40, 51, 0.78) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(234, 224, 199, 0.35);
  border-radius: 6px;
  padding: 1.85rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.fabric-brand-card:hover {
  transform: translateY(-4px);
  background: rgba(46, 57, 69, 0.92) !important;
  border-color: #EAE0C7;
  box-shadow: 0 14px 35px rgba(234, 224, 199, 0.3);
}

.fabric-brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #F8FAFC;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.fabric-brand-origin {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #EAE0C7;
  letter-spacing: 0.15em;
  font-weight: 600;
}

@media (max-width: 640px) {
  .fabric-brands-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
  }
  .fabric-brand-card {
    padding: 1.35rem 1rem;
  }
  .fabric-brand-name {
    font-size: 1.05rem;
  }
}