/* 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 REFERENCE SPECIFICATION) */
  --ink: #2E3945;           /* Dark sections, footer, primary text */
  --steel-blue: #5F758E;    /* Interactive elements only (buttons, active states, focus rings) */
  --off-white: #EAE0C7;      /* Type and rules on dark grounds, hero solid CTA fill */
  --paper: #F6F1E6;          /* Page background for long reading */
  --line: #D9D1BE;           /* Hairline rules, card borders, dividers (1px) */
  --steel-blue-hover: #4d6177;
  --ink-light: #384654;

  /* 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 {
  content: "TAILOR-CUTTING-TABLE-PORTRAIT.WEBP";
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0,0,0,0.3);
  padding: 2px 8px;
}

/* 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 {
  position: absolute;
  bottom: 10px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #666;
}

.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: 2.5rem 1.5rem;
  border-right: var(--border-line);
  border-bottom: var(--border-line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: #334155;
  opacity: 0.6;
  transition: var(--transition);
  min-height: 100px;
}

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

.logo-cell:hover {
  opacity: 1;
  color: var(--steel-blue);
  background-color: #FAF6EE;
}

/* 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);
}

#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) {
  .desktop-only {
    display: none !important;
  }

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

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

  .container {
    padding: 0 1.25rem;
  }

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

  .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, .logo-grid, .locations-grid, .faq-section-grid, .steps-grid {
    grid-template-columns: 1fr !important;
  }

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

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

  .booking-modal-card {
    width: 94%;
    padding: 1.5rem;
    max-height: 92vh;
    overflow-y: auto;
  }
}

@media (max-width: 480px) {
  .site-logo-img {
    height: 36px;
  }

  .btn-steel, .btn-outline-ink {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.9rem 1rem;
    min-height: 48px;
  }

  .location-chips-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .chip-btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 0.5rem;
    font-size: 10px;
    min-height: 44px;
  }
}


