/* ============================================================
   OUTFIT TAILOR — Homepage · site-styles.css
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --burgundy:   #7A1A1A;
  --dark-red:   #561212;
  --charcoal:   #181818;
  --charcoal-2: #202020;
  --cream:      #F5EDD8;
  --gold:       #B8975A;
  --warm-grey:  #8A8480;
  --off-white:  #FAF8F3;
  --white:      #FAF8F3;
  --black:      #0E0E0E;
  --near-black: #0F0F0F;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', Helvetica, sans-serif;
  --font-thai:  'Noto Sans Thai', sans-serif;
  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 32px;
  --sp-lg: 64px;
  --sp-xl: 96px;
  --nav-h: 64px;
  --max-w: 1200px;
  --gold-line: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font-sans);
  background: var(--charcoal);
  color: var(--cream);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ── Utility ────────────────────────────────────────────────── */
.ot-container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-md); }
.ot-section { padding: var(--sp-xl) var(--sp-md); }

.ot-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.ot-eyebrow::before, .ot-eyebrow::after {
  content: ''; height: 1px; width: 26px;
  background: var(--gold); flex-shrink: 0;
}
.ot-eyebrow--dark { color: var(--burgundy); }
.ot-eyebrow--dark::before, .ot-eyebrow--dark::after { background: var(--burgundy); }

.ot-h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 50px); font-weight: 500;
  letter-spacing: 0.03em; line-height: 1.1;
  color: var(--cream); margin-bottom: var(--sp-sm);
}
.ot-h2--dark { color: var(--charcoal); }

.ot-h3 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 500;
  letter-spacing: 0.02em; line-height: 1.2;
  color: var(--cream); margin-bottom: 10px;
}
.ot-h3--dark { color: var(--charcoal); }

.ot-body {
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 300;
  color: var(--warm-grey); line-height: 1.9;
}
.ot-body--cream { color: rgba(245,237,216,0.68); }

.ot-gold-rule {
  width: 60px; height: 1px;
  background: var(--gold-line);
  margin: var(--sp-md) auto;
}
.ot-gold-rule--left { margin-left: 0; }

/* ── Buttons ────────────────────────────────────────────────── */
.ot-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 14px 30px; white-space: nowrap;
  cursor: pointer; border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}
.ot-btn:hover { opacity: 0.82; }
.ot-btn--gold    { background: var(--gold); color: var(--charcoal); }
.ot-btn--gold:hover { background: #a07d48; opacity: 1; }
.ot-btn--outline { background: transparent; color: var(--cream); border: 1px solid rgba(245,237,216,0.45); }
.ot-btn--outline:hover { border-color: var(--cream); opacity: 1; }
.ot-btn--outline-dark { background: transparent; color: var(--charcoal); border: 1px solid rgba(24,24,24,0.3); }
.ot-btn--outline-dark:hover { border-color: var(--burgundy); color: var(--burgundy); opacity: 1; }
.ot-btn--burgundy { background: var(--burgundy); color: var(--cream); }
.ot-btn--burgundy:hover { background: var(--dark-red); opacity: 1; }
.ot-btn--wa { background: #1FAD54; color: #fff; }
.ot-btn--wa:hover { background: #178f43; opacity: 1; }
.ot-btn--sm { font-size: 9px; letter-spacing: 0.15em; padding: 10px 20px; }
.ot-btn-group { display: flex; gap: var(--sp-sm); flex-wrap: wrap; align-items: center; }

/* ── Photo Positioning Classes ──────────────────────────────── */
/* object-position: adjust when blue hour shopfront photo replaces atelier-1.jpg */
.photo-hero-split       { object-fit: cover; object-position: center center; }
.photo-master-tailor    { object-fit: cover; object-position: center 25%; }
.photo-atelier-2        { object-fit: cover; object-position: center center; }
.photo-client-7         { object-fit: cover; object-position: center 30%; height: 100%; }
.photo-dress-1          { object-fit: cover; object-position: center 40%; height: 100%; }
.photo-fabric           { object-fit: cover; object-position: center center; }
.photo-gallery-1        { object-fit: cover; object-position: center 20%; }
.photo-gallery-client-8 { object-fit: cover; object-position: center 25%; }
.photo-gallery-3        { object-fit: cover; object-position: center 20%; }
.photo-gallery-dress-2  { object-fit: cover; object-position: center 35%; }

/* ── Scroll animation ────────────────────────────────────────── */
.ot-fade { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.ot-fade.is-visible { opacity: 1; transform: translateY(0); }
.ot-fade-d1 { transition-delay: 0.1s; }
.ot-fade-d2 { transition-delay: 0.2s; }
.ot-fade-d3 { transition-delay: 0.3s; }

/* ════════════════════════════════════════════════════════════
   01. NAVBAR
   ════════════════════════════════════════════════════════════ */
.ot-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: var(--charcoal);
  border-bottom: 1px solid rgba(184,151,90,0.22);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--sp-md); gap: var(--sp-md);
}
.ot-nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.ot-nav-mono {
  width: 34px; height: 34px;
  border: 1px solid rgba(184,151,90,0.45);
  display: flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
}
.ot-nav-mono::after {
  content: ''; position: absolute; inset: 4px;
  border: 0.5px solid rgba(184,151,90,0.2);
}
.ot-nav-mono-text {
  font-family: var(--font-serif);
  font-size: 16px; font-weight: 600;
  color: var(--gold); letter-spacing: -0.03em;
  position: relative; z-index: 1;
}
.ot-nav-wordmark { display: flex; flex-direction: column; gap: 0; line-height: 1; }
.ot-nav-outfit {
  font-family: var(--font-serif);
  font-size: 14px; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--cream);
}
.ot-nav-tailor {
  font-family: var(--font-serif);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold);
}
.ot-nav-links {
  display: flex; gap: var(--sp-md); align-items: center;
  flex: 1; justify-content: center;
}
.ot-nav-links a {
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--warm-grey); transition: color 0.2s;
}
.ot-nav-links a:hover, .ot-nav-links a.is-active { color: var(--gold); }
.ot-nav-cta {
  background: transparent; border: 1px solid rgba(184,151,90,0.4);
  color: var(--gold); padding: 8px 22px;
  font-family: var(--font-sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  white-space: nowrap; flex-shrink: 0;
  display: flex; align-items: center; gap: 8px;
  transition: background 0.2s, color 0.2s;
}
.ot-nav-cta:hover { background: var(--gold); color: var(--charcoal); }
.ot-nav-burger {
  display: none; flex-direction: column; gap: 5px;
  width: 24px; cursor: pointer; padding: 4px; flex-shrink: 0;
}
.ot-nav-burger span {
  display: block; height: 1px; background: var(--cream);
  transition: transform 0.25s, opacity 0.25s;
}
.ot-nav-burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.ot-nav-burger.is-open span:nth-child(2) { opacity: 0; }
.ot-nav-burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.ot-mobile-menu {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--charcoal);
  flex-direction: column; align-items: center; justify-content: center;
  gap: var(--sp-md); z-index: 990;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.ot-mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.ot-mobile-menu a {
  font-family: var(--font-serif);
  font-size: clamp(24px, 5vw, 36px); font-weight: 300;
  letter-spacing: 0.1em; color: var(--cream); transition: color 0.2s;
}
.ot-mobile-menu a:hover { color: var(--gold); }
.ot-mobile-menu-wa {
  margin-top: var(--sp-sm); border: 1px solid rgba(184,151,90,0.3);
  padding: 12px 32px; font-family: var(--font-sans);
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}

/* ════════════════════════════════════════════════════════════
   02. HERO — split 50/50 burgundy / photo
   ════════════════════════════════════════════════════════════ */
.ot-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  height: 85vh; min-height: 700px;
}
.ot-hero-left {
  background: var(--burgundy);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 20px) 80px 60px;
}
.ot-hero-left::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(184,151,90,0.05) 60px, rgba(184,151,90,0.05) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(184,151,90,0.05) 60px, rgba(184,151,90,0.05) 61px);
  pointer-events: none;
}
.ot-hero-pre {
  font-family: var(--font-sans); font-size: 14px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
  position: relative; z-index: 1; margin-bottom: 40px;
  display: flex; align-items: center; gap: 16px;
}
.ot-hero-pre::before,
.ot-hero-pre::after {
  content: ''; width: 40px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.ot-hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5.5vw, 88px); font-weight: 400;
  letter-spacing: 0.015em; line-height: 1.1; color: var(--cream);
  position: relative; z-index: 1; margin-bottom: 32px;
}
.ot-hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.8vw, 22px); font-weight: 300; font-style: italic;
  color: var(--gold); line-height: 1.6;
  position: relative; z-index: 1; margin-bottom: 48px;
}
.ot-hero-ctas {
  position: relative; z-index: 1; margin-bottom: 60px;
}
.ot-hero-divider {
  height: 1px; background: rgba(184,151,90,0.3);
  margin-bottom: 32px; position: relative; z-index: 1;
}
.ot-hero-trust {
  display: flex; align-items: center; flex-wrap: wrap;
  row-gap: 6px; position: relative; z-index: 1;
}
.ot-hero-trust-pair {
  display: flex; align-items: center; flex-shrink: 0;
}
.ot-hero-trust-item {
  font-family: var(--font-sans); font-size: 12px; font-weight: 400;
  color: rgba(245,237,216,0.75); white-space: nowrap;
}
.ot-hero-trust-star { color: var(--gold); }
.ot-hero-trust-sep {
  font-family: var(--font-sans); font-size: 12px;
  color: rgba(184,151,90,0.45);
}
.ot-hero-micro {
  margin-top: 20px; position: relative; z-index: 1;
  font-family: var(--font-serif); font-size: clamp(12px, 1vw, 14px);
  font-weight: 400; font-style: italic; letter-spacing: 0.04em;
  color: rgba(245,237,216,0.65);
}
.ot-hero-right {
  position: relative; overflow: hidden;
}
.ot-hero-right img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.ot-hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(122,26,26,0.1);
}

/* ════════════════════════════════════════════════════════════
   03. TRUST BAR — 4 colonnes charcoal
   ════════════════════════════════════════════════════════════ */
.ot-trust {
  background: var(--charcoal);
  border-top: 1px solid rgba(184,151,90,0.15);
  border-bottom: 1px solid rgba(184,151,90,0.15);
}
.ot-trust-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(184,151,90,0.08);
}
.ot-trust-col {
  background: var(--charcoal); padding: 40px 24px;
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; text-align: center; min-height: 180px; justify-content: center;
}
.ot-trust-icon { color: var(--gold); }
.ot-trust-label {
  font-family: var(--font-sans); font-size: 14px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream);
}
.ot-trust-sub {
  font-family: var(--font-serif); font-size: clamp(15px, 1.4vw, 17px); font-weight: 300;
  font-style: italic; color: var(--gold);
}

/* ════════════════════════════════════════════════════════════
   03. WHY CHOOSE US — TAILOR'S NOTEBOOK
   ════════════════════════════════════════════════════════════ */
.ot-reasons {
  background: var(--cream);
  padding: 120px var(--sp-md);
}
.ot-reasons-inner {
  max-width: var(--max-w); margin: 0 auto; text-align: center;
}
.ot-reasons-eyebrow {
  display: flex; align-items: center; justify-content: center;
  gap: 20px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.ot-reasons-rule {
  display: block; width: 60px; height: 1px;
  background: var(--gold); opacity: 0.6; flex-shrink: 0;
}
.ot-reasons-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 38px); font-weight: 400; font-style: italic;
  color: var(--burgundy); margin-bottom: 80px; line-height: 1.2;
}
/* Notebook block */
.ot-notebook {
  position: relative;
  max-width: 980px; margin: 0 auto;
  padding: 80px;
  background: var(--cream);
  background-image: repeating-linear-gradient(
    135deg,
    transparent, transparent 2px,
    rgba(184,151,90,0.018) 2px, rgba(184,151,90,0.018) 4px
  );
  text-align: left;
}
/* Corner brackets — notebook block */
.ot-notebook-corner {
  position: absolute;
  width: 32px; height: 32px;
}
.ot-notebook-corner--tl { top: 12px; left: 12px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.ot-notebook-corner--tr { top: 12px; right: 12px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.ot-notebook-corner--bl { bottom: 12px; left: 12px; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.ot-notebook-corner--br { bottom: 12px; right: 12px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }
/* Each argument row */
.ot-notebook-row {
  display: flex; align-items: flex-start; gap: 48px;
  padding: 40px 0;
}
.ot-notebook-row:hover .ot-nb-num {
  background: rgba(184,151,90,0.05);
}
.ot-notebook-sep {
  height: 1px; background: var(--gold); opacity: 0.3;
}
/* Roman numeral frame */
.ot-nb-num {
  position: relative;
  width: 80px; height: 80px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.4s ease;
}
/* Mini corner brackets on numeral frame */
.nb-bracket {
  position: absolute;
  width: 14px; height: 14px;
}
.nb-bracket--tl { top: 0; left: 0; border-top: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.nb-bracket--tr { top: 0; right: 0; border-top: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }
.nb-bracket--bl { bottom: 0; left: 0; border-bottom: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.nb-bracket--br { bottom: 0; right: 0; border-bottom: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }
.nb-numeral {
  font-family: var(--font-serif); font-style: italic;
  font-size: 32px; font-weight: 500;
  color: var(--gold); position: relative; z-index: 1;
}
/* Argument content */
.ot-nb-content { flex: 1; }
.ot-nb-label {
  font-family: var(--font-sans);
  font-size: 16px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--burgundy); margin-bottom: 16px;
}
.ot-nb-desc {
  font-family: var(--font-serif); font-style: italic;
  font-size: 18px; font-weight: 400;
  line-height: 1.7; color: var(--charcoal);
  max-width: 580px;
}

/* ════════════════════════════════════════════════════════════
   04. STORY — split 50/50
   ════════════════════════════════════════════════════════════ */
.ot-story {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 680px; overflow: hidden;
}
.ot-story-photo {
  position: relative; overflow: hidden; min-height: 600px;
}
.ot-story-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.ot-story-text {
  background: var(--cream);
  padding: 80px; display: flex;
  flex-direction: column; justify-content: center; gap: 0;
}
.ot-story-eyebrow {
  font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--sp-md);
}
.ot-story-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 56px); font-weight: 500;
  color: var(--burgundy); line-height: 1.1;
  margin-bottom: var(--sp-md);
}
.ot-story-body { margin-bottom: var(--sp-md); }
.ot-story-body p {
  font-family: var(--font-sans); font-size: 17px; font-weight: 300;
  color: #3a3530; line-height: 1.8; margin-bottom: var(--sp-sm);
}
.ot-story-body p:last-child { margin-bottom: 0; }
.ot-story-quote {
  font-family: var(--font-serif); font-style: italic;
  font-size: 20px; color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: var(--sp-md);
  margin-bottom: var(--sp-sm);
  line-height: 1.5;
}
.ot-story-sig {
  font-family: var(--font-serif); font-size: 22px;
  color: #3a3530; font-style: normal;
}

/* ════════════════════════════════════════════════════════════
   05. SERVICES — 4 cartes 2×2
   ════════════════════════════════════════════════════════════ */
.ot-services { background: var(--off-white); padding: 100px var(--sp-md); }
.ot-services-inner { max-width: var(--max-w); margin: 0 auto; }
.ot-services-header { text-align: center; margin-bottom: var(--sp-lg); }
.ot-services-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px); font-weight: 500;
  color: var(--burgundy); margin-bottom: 12px; line-height: 1.1;
}
.ot-services-sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: 22px; color: var(--gold);
}
.ot-svc2-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
/* Card base */
.ot-svc2-card {
  padding: 50px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 380px;
}
.ot-svc2-card--burgundy { background: var(--burgundy); }
.ot-svc2-card--cream    { background: var(--cream); }
.ot-svc2-card--charcoal { background: var(--charcoal); align-items: center; text-align: center; }
/* Split card (photo + text) */
.ot-svc2-card--split {
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 0; min-height: 380px;
}
.ot-svc2-photo {
  position: relative; overflow: hidden;
}
.ot-svc2-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.ot-svc2-text {
  padding: 50px; display: flex;
  flex-direction: column; gap: 16px; background: var(--cream);
}
.ot-svc2-text--burgundy { background: var(--burgundy); }
.ot-svc2-text--charcoal { background: var(--charcoal); }
.ot-svc2-numeral {
  font-family: var(--font-serif); font-style: italic;
  font-size: 32px; color: var(--gold);
}
.ot-svc2-name {
  font-family: var(--font-serif); font-size: 32px; font-weight: 500;
  line-height: 1.1;
}
.ot-svc2-name--cream    { color: var(--cream); }
.ot-svc2-name--burgundy { color: var(--burgundy); }
.ot-svc2-name--charcoal { color: var(--charcoal); }
.ot-svc2-desc {
  font-family: var(--font-sans); font-size: 15px; font-weight: 300;
  line-height: 1.7; flex: 1;
}
.ot-svc2-desc--cream    { color: rgba(245,237,216,0.85); }
.ot-svc2-desc--charcoal { color: #3a3530; }
.ot-svc2-desc--grey     { color: var(--warm-grey); }
.ot-svc2-cta {
  font-family: var(--font-serif); font-style: italic;
  font-size: 14px; color: var(--gold);
  text-decoration: none; margin-top: auto;
  align-self: flex-start; transition: opacity 0.2s;
}
.ot-svc2-cta:hover { opacity: 0.65; }

/* ════════════════════════════════════════════════════════════
   06. FABRICS — fond burgundy, 3 photos 4:5
   ════════════════════════════════════════════════════════════ */
.ot-fabrics {
  background: var(--burgundy); padding: 100px var(--sp-md);
  position: relative; overflow: hidden;
}
.ot-fabrics::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg,
    transparent, transparent 60px,
    rgba(245,237,216,0.015) 60px, rgba(245,237,216,0.015) 61px);
  pointer-events: none;
}
.ot-fabrics-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.ot-fabrics-header { text-align: center; margin-bottom: 60px; }
.ot-fabrics-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 500;
  letter-spacing: 0.03em; color: var(--cream);
  line-height: 1.05; margin-bottom: 12px;
}
.ot-fabrics-sub {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 300; font-style: italic;
  color: var(--gold);
}
.ot-fabrics-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(245,237,216,0.1);
}
.ot-fabric-item { background: rgba(0,0,0,0.2); overflow: hidden; }
.ot-fabric-photo {
  aspect-ratio: 4/5; position: relative;
}
.ot-fabric-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  border: 1px solid rgba(184,151,90,0.3);
}
.ot-fabric-info {
  padding: var(--sp-md);
  border-top: 1px solid rgba(184,151,90,0.2);
}
.ot-fabric-name {
  font-family: var(--font-serif); font-size: 18px; font-style: italic;
  color: var(--cream); margin-bottom: 0;
}
.ot-fabrics-text-below {
  text-align: center; max-width: 680px; margin: 60px auto 0;
  font-family: var(--font-sans); font-size: 15px; font-weight: 300;
  color: rgba(245,237,216,0.68); line-height: 1.85;
}
.ot-fabrics-link {
  display: block; text-align: center;
  font-family: var(--font-serif); font-style: italic; font-size: 16px;
  color: rgba(245,237,216,0.5); margin-top: var(--sp-sm);
  transition: color 0.2s;
}
.ot-fabrics-link:hover { color: var(--gold); }

/* ════════════════════════════════════════════════════════════
   07. PROCESS
   ════════════════════════════════════════════════════════════ */
.ot-process { background: var(--cream); padding: var(--sp-xl) var(--sp-md); }
.ot-process-inner { max-width: var(--max-w); margin: 0 auto; }
.ot-process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(122,26,26,0.1);
  margin-top: var(--sp-lg); position: relative;
}
.ot-process-steps::before {
  content: ''; position: absolute;
  top: 38px; left: 0; right: 0; height: 1px;
  background: var(--gold-line); z-index: 0;
}
.ot-process-step {
  background: var(--cream); padding: var(--sp-md);
  display: flex; flex-direction: column; gap: var(--sp-sm);
  position: relative; z-index: 1;
}
.ot-process-num {
  font-family: var(--font-serif); font-size: 44px; font-weight: 300;
  color: var(--burgundy); line-height: 1; letter-spacing: -0.02em;
  display: flex; align-items: center; gap: var(--sp-sm);
}
.ot-process-num::after { content: ''; flex: 1; height: 1px; background: rgba(122,26,26,0.15); }
.ot-process-icon {
  width: 36px; height: 36px; border: 1px solid rgba(122,26,26,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--burgundy);
}
.ot-process-title {
  font-family: var(--font-sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--burgundy); margin-bottom: 4px;
}
.ot-process-desc {
  font-family: var(--font-sans); font-size: 13px; font-weight: 300;
  color: #5a5450; line-height: 1.8;
}
.ot-process-time {
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; color: var(--gold);
  margin-top: auto; padding-top: var(--sp-sm);
  border-top: 1px solid rgba(122,26,26,0.1);
}

/* Process callout — travel dates CTA */
.ot-process-callout {
  margin-top: var(--sp-lg);
  background: var(--dark-red);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  flex-wrap: wrap;
}
.ot-process-callout-text {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  flex: 1;
  min-width: 260px;
}
@media (max-width: 600px) {
  .ot-process-callout { padding: 32px var(--sp-md); flex-direction: column; align-items: flex-start; }
  .ot-process-callout-text { font-size: 19px; }
  .ot-process-callout .ot-btn { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════════════════════════
   08. MEASUREMENT GUIDE TEASER — split 60/40
   ════════════════════════════════════════════════════════════ */
.ot-guide-teaser {
  display: grid; grid-template-columns: 3fr 2fr;
  min-height: 480px;
}
.ot-guide-teaser-text {
  background: var(--cream);
  padding: 80px; display: flex;
  flex-direction: column; justify-content: center; gap: var(--sp-md);
}
.ot-guide-teaser-eyebrow {
  font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
}
.ot-guide-teaser-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 56px); font-weight: 500;
  color: var(--burgundy); line-height: 1.1;
}
.ot-guide-teaser-body {
  font-family: var(--font-sans); font-size: 17px; font-weight: 300;
  color: #3a3530; line-height: 1.8;
}
.ot-guide-teaser-panel {
  background: var(--burgundy); padding: 60px;
  display: flex; flex-direction: column;
  justify-content: center; gap: 20px;
}
.ot-guide-teaser-dim {
  display: flex; align-items: center; gap: 16px;
  border-left: 2px solid var(--gold); padding-left: 16px;
}
.ot-guide-teaser-dim-text {
  font-family: var(--font-sans); font-size: 14px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream);
}

/* ════════════════════════════════════════════════════════════
   09. GALLERY — 2×2, aspect-ratio 4:5
   ════════════════════════════════════════════════════════════ */
.ot-gallery { background: var(--off-white); padding: 100px var(--sp-md); }
.ot-gallery-inner { max-width: var(--max-w); margin: 0 auto; }
.ot-gallery-header { text-align: center; margin-bottom: var(--sp-lg); }
.ot-gallery-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px); font-weight: 500;
  color: var(--burgundy); margin-bottom: 12px;
}
.ot-gallery-sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: 22px; color: var(--gold);
}
.ot-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 24px;
}
.ot-gallery-item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: none;
  padding: 0;
  background: var(--charcoal);
  cursor: pointer;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}
.ot-gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.ot-gallery-item:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.ot-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease-out;
}
.ot-gallery-item:hover img { transform: scale(1.05); }

/* ════════════════════════════════════════════════════════════
   9b. LIGHTBOX
   ════════════════════════════════════════════════════════���═══ */
.ot-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  pointer-events: none;
}
.ot-lightbox:not([hidden]) {
  display: flex;
  animation: ot-lightbox-fade-in 0.25s ease-out forwards;
  pointer-events: auto;
}
@keyframes ot-lightbox-fade-in {
  to { opacity: 1; }
}
.ot-lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}
.ot-lightbox__close,
.ot-lightbox__prev,
.ot-lightbox__next {
  position: absolute;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  font-size: 40px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease-out;
  opacity: 0.7;
}
.ot-lightbox__close:hover,
.ot-lightbox__prev:hover,
.ot-lightbox__next:hover,
.ot-lightbox__close:focus-visible,
.ot-lightbox__prev:focus-visible,
.ot-lightbox__next:focus-visible { opacity: 1; }
.ot-lightbox__close { top: 16px; right: 16px; font-size: 32px; }
.ot-lightbox__prev { left: 16px; top: 50%; transform: translateY(-50%); }
.ot-lightbox__next { right: 16px; top: 50%; transform: translateY(-50%); }
.ot-lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-size: 14px;
  letter-spacing: 0.05em;
  opacity: 0.6;
}
@media (max-width: 600px) {
  .ot-lightbox { padding: 16px; }
  .ot-lightbox__close { top: 8px; right: 8px; }
  .ot-lightbox__prev, .ot-lightbox__next { font-size: 32px; width: 48px; height: 48px; }
}

/* ════════════════════════════════════════════════════════════
   10. TESTIMONIALS — 3 cartes, fond cream
   ════════════════════════════════════════════════════════════ */
.ot-testimonials {
  background: var(--cream); padding: 100px var(--sp-md);
  border-top: 1px solid rgba(122,26,26,0.08);
}
.ot-testimonials-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.ot-testimonials-header { margin-bottom: var(--sp-lg); }
.ot-testimonials-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px); font-weight: 500;
  color: var(--burgundy); margin-bottom: 12px;
}
.ot-testimonials-sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: 22px; color: var(--gold);
}
.ot-testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.ot-testimonial-card {
  background: var(--off-white); padding: 40px;
  border: 1px solid rgba(184,151,90,0.3);
  text-align: left; display: flex; flex-direction: column; gap: 12px;
}
.ot-testimonial-stars { color: var(--gold); font-size: 15px; letter-spacing: 3px; }
.ot-testimonial-quote {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: 18px; line-height: 1.6; color: var(--charcoal); flex: 1;
}
.ot-testimonial-name {
  font-family: var(--font-sans); font-size: 14px; font-weight: 700;
  color: var(--burgundy); text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: auto;
}
.ot-testimonial-country {
  font-family: var(--font-serif); font-style: italic;
  font-size: 13px; color: var(--gold);
}
.ot-testimonials-ctas {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  margin-top: var(--sp-lg);
}
.ot-testimonials-link {
  font-family: var(--font-serif); font-style: italic; font-size: 17px;
  color: rgba(122,26,26,0.45); display: inline-block;
  transition: color 0.2s;
}
.ot-testimonials-link:hover { color: var(--gold); }
.ot-testimonials-link--write { color: rgba(122,26,26,0.3); }

/* ════════════════════════════════════════════════════════════
   11. VISIT
   ════════════════════════════════════════════════════════════ */
.ot-visit { background: var(--charcoal); padding: var(--sp-xl) var(--sp-md); }
.ot-visit-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl); align-items: stretch;
}
.ot-visit-map { min-height: 500px; border: 1px solid rgba(184,151,90,0.18); overflow: hidden; }
.ot-visit-map iframe { width: 100%; height: 100%; border: none; display: block; min-height: 500px; }
.ot-visit-info { display: flex; flex-direction: column; gap: var(--sp-md); justify-content: center; }
.ot-visit-info-row {
  display: flex; align-items: flex-start; gap: var(--sp-sm);
  padding-bottom: var(--sp-md); border-bottom: 1px solid rgba(184,151,90,0.1);
}
.ot-visit-info-row:last-of-type { border-bottom: none; }
.ot-visit-info-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.ot-visit-info-label {
  font-family: var(--font-sans); font-size: 9px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.ot-visit-info-val {
  font-family: var(--font-sans); font-size: 14px; font-weight: 300;
  color: var(--cream); line-height: 1.7;
}
.ot-visit-info-val a:hover { color: var(--gold); }
.ot-visit-btns { display: flex; gap: var(--sp-sm); flex-wrap: wrap; }
.ot-visit-intro {
  font-family: var(--font-serif); font-style: italic;
  font-size: 18px; color: rgba(245,237,216,0.65); line-height: 1.65;
  margin-bottom: var(--sp-md); max-width: 480px;
}

/* ════════════════════════════════════════════════════════════
   12. CONTACT FORM
   ════════════════════════════════════════════════════════════ */
.ot-contact {
  background: var(--black); padding: var(--sp-xl) var(--sp-md);
  border-top: 1px solid rgba(184,151,90,0.15);
}
.ot-contact-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 400px 1fr;
  gap: var(--sp-xl); align-items: start;
}
.ot-contact-header { padding-top: var(--sp-sm); }
.ot-contact-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 56px); font-weight: 500;
  color: var(--cream); margin-bottom: 12px; line-height: 1.1;
}
.ot-contact-sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: 22px; color: var(--gold); margin-bottom: var(--sp-lg);
}
.ot-contact-note {
  font-family: var(--font-sans); font-size: 12px; font-weight: 300;
  color: var(--warm-grey); line-height: 1.7;
  padding: var(--sp-md); border: 1px solid rgba(184,151,90,0.15);
  background: rgba(184,151,90,0.04);
}
.ot-contact-note a { color: var(--gold); }
.ot-contact-note a:hover { text-decoration: underline; }
.ot-form { display: flex; flex-direction: column; gap: 20px; }
.ot-honeypot { display: none; }
.ot-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-sm); }
.ot-form-field { display: flex; flex-direction: column; gap: 6px; }
.ot-form-label {
  font-family: var(--font-sans); font-size: 9px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
}
.ot-form-input,
.ot-form-textarea {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(184,151,90,0.22);
  color: var(--cream); padding: 12px 16px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 300;
  width: 100%; outline: none; transition: border-color 0.2s;
}
.ot-form-input::placeholder, .ot-form-textarea::placeholder { color: var(--warm-grey); opacity: 0.6; }
.ot-form-input:focus, .ot-form-textarea:focus { border-color: var(--gold); }
.ot-form-textarea { resize: vertical; min-height: 120px; }
.ot-form-submit-row { display: flex; align-items: center; gap: var(--sp-md); flex-wrap: wrap; }
.ot-form-wa-note {
  font-family: var(--font-serif); font-style: italic; font-size: 15px;
  color: var(--gold); text-align: center; margin-top: var(--sp-sm);
}
.ot-form-wa-note a { color: var(--gold); text-decoration: underline; }
.ot-form-success {
  margin-top: 32px; padding: 48px 32px;
  background: var(--burgundy); color: var(--cream);
  border-radius: 4px; text-align: center;
}
.ot-form-success-title {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(22px, 2.5vw, 28px); color: var(--gold);
  margin-bottom: 16px;
}
.ot-form-success-text {
  font-size: 15px; line-height: 1.6; margin-bottom: 28px; opacity: 0.9;
}

/* ════════════════════════════════════════════════════════════
   13. FOOTER
   ════════════════════════════════════════════════════════════ */
.ot-footer {
  background: var(--near-black);
  border-top: 1px solid rgba(184,151,90,0.2);
  padding: var(--sp-lg) var(--sp-md) var(--sp-md);
}
.ot-footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-xl); padding-bottom: var(--sp-lg);
  border-bottom: 1px solid rgba(184,151,90,0.12);
}
.ot-footer-logo-row { display: flex; align-items: center; gap: var(--sp-sm); margin-bottom: var(--sp-sm); }
.ot-footer-wordmark {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase;
}
.ot-footer-wordmark span { font-weight: 700; color: var(--gold); }
.ot-footer-tagline {
  font-family: var(--font-serif); font-size: 13px; font-weight: 300;
  font-style: italic; color: var(--warm-grey); line-height: 1.6;
  margin-bottom: var(--sp-sm);
}
.ot-footer-address {
  font-family: var(--font-sans); font-size: 12px; font-weight: 300;
  color: rgba(138,132,128,0.7); line-height: 1.8;
}
.ot-footer-col-title {
  font-family: var(--font-sans); font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--sp-md);
}
.ot-footer-links { display: flex; flex-direction: column; gap: 10px; }
.ot-footer-links a {
  font-family: var(--font-sans); font-size: 13px; font-weight: 300;
  color: var(--warm-grey); transition: color 0.2s;
}
.ot-footer-links a:hover { color: var(--cream); }
.ot-footer-socials { display: flex; flex-direction: column; gap: var(--sp-sm); }
.ot-footer-social-link {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-sans); font-size: 12px; font-weight: 400;
  color: var(--warm-grey); transition: color 0.2s;
}
.ot-footer-social-link:hover { color: var(--gold); }
.ot-footer-social-icon { color: var(--gold); flex-shrink: 0; }
.ot-footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding-top: var(--sp-md);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--sp-sm);
}
.ot-footer-legal {
  font-family: var(--font-serif); font-style: italic;
  font-size: 12px; color: var(--gold);
}
.ot-footer-thai {
  font-family: var(--font-thai); font-size: 12px; font-weight: 300;
  color: rgba(138,132,128,0.25); letter-spacing: 0.05em;
}

/* ════════════════════════════════════════════════════════════
   INTER-SECTION CTAs
   ════════════════════════════════════════════════════════════ */
.ot-mid-cta {
  padding: 72px var(--sp-md);
  text-align: center;
}
.ot-mid-cta--cream { background: var(--cream); }
.ot-mid-cta-lead {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  margin: 0 auto 32px;
  max-width: 680px;
}
.ot-mid-cta--cream .ot-mid-cta-lead { color: var(--charcoal); }

/* ════════════════════════════════════════════════════════════
   FLOATING WHATSAPP FAB
   ════════════════════════════════════════════════════════════ */
.ot-fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 18px;
  background: var(--burgundy);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(122,26,26,0.45);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, box-shadow 0.25s ease;
  min-height: 48px;
}
.ot-fab-whatsapp.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.ot-fab-whatsapp:hover {
  box-shadow: 0 8px 28px rgba(122,26,26,0.6);
  transform: translateY(-2px);
}
.ot-fab-whatsapp:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
  box-shadow: 0 8px 28px rgba(122,26,26,0.6);
  transform: translateY(-2px);
}
/* Green presence dot — WhatsApp "online" micro-indicator */
.ot-fab-whatsapp::after {
  content: '';
  position: absolute;
  top: 5px;
  right: 5px;
  width: 9px;
  height: 9px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(37,211,102,0.65);
  pointer-events: none;
}
.ot-fab-whatsapp__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.ot-fab-whatsapp__label { white-space: nowrap; }
@media (max-width: 600px) {
  .ot-fab-whatsapp {
    bottom: 16px;
    right: 16px;
    padding: 14px;
    width: 52px;
    height: 52px;
    min-height: unset;
    justify-content: center;
    border-radius: 50%;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
  }
  .ot-fab-whatsapp__icon { width: 20px; height: 20px; }
  .ot-fab-whatsapp__label { display: none; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — 1100px
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .ot-notebook { padding: 60px; }
  .ot-guide-teaser { grid-template-columns: 1fr; }
  .ot-guide-teaser-text { padding: 60px var(--sp-md); }
  .ot-guide-teaser-panel { padding: 40px var(--sp-md); flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .ot-contact-inner { grid-template-columns: 1fr; gap: var(--sp-lg); }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — 900px
   ════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .ot-nav-links { display: none; }
  .ot-nav-cta   { display: none; }
  .ot-nav-burger { display: flex; }
  .ot-mobile-menu { display: flex; }

  .ot-hero { grid-template-columns: 1fr; height: auto; min-height: auto; }
  .ot-hero-left { padding: calc(var(--nav-h) + 40px) var(--sp-md) 60px; }
  .ot-hero-right { min-height: 55vw; }
  .ot-hero-ctas { margin-bottom: 0; }
  .ot-trust-grid { grid-template-columns: 1fr 1fr; }

  .ot-reasons { padding: 80px var(--sp-md); }
  .ot-reasons-title { margin-bottom: 48px; }
  .ot-notebook { padding: 40px; }
  .ot-notebook-row { flex-direction: column; align-items: center; gap: 24px; padding: 32px 0; }
  .ot-nb-num { width: 60px; height: 60px; }
  .ot-nb-content { text-align: center; }
  .ot-nb-desc { max-width: 100%; font-size: 16px; }

  .ot-story { grid-template-columns: 1fr; }
  .ot-story-photo { min-height: 360px; }
  .ot-story-text { padding: var(--sp-lg) var(--sp-md); }

  .ot-svc2-grid { grid-template-columns: 1fr; }
  .ot-svc2-card--split { grid-template-columns: 1fr; }
  .ot-svc2-photo { aspect-ratio: 4 / 5; width: 100%; max-height: 480px; }
  /* Card IV (craft-alteration.jpg) is landscape — shallower crop */
  .ot-svc2-grid .ot-svc2-card:nth-child(4) .ot-svc2-photo { aspect-ratio: 3 / 2; max-height: 320px; }

  .ot-fabrics-grid { grid-template-columns: 1fr 1fr; }

  .ot-process-steps { grid-template-columns: 1fr 1fr; }
  .ot-process-steps::before { display: none; }
  #process .ot-btn--outline-dark {
    white-space: normal;
    line-height: 1.5;
    text-align: center;
    padding: 16px 24px;
    letter-spacing: 0.12em;
  }

  .ot-gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }

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

  .ot-visit-grid { grid-template-columns: 1fr; }
  .ot-visit-map { min-height: 320px; }
  .ot-visit-map iframe { min-height: 320px; }
  .ot-footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-lg); }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — 768px (hero full-bleed mobile)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .ot-hero-left {
    background-color: var(--burgundy);
    background-image: url('photos/couloir-hero.jpeg');
    background-size: cover;
    background-position: center;
    align-items: center;
    text-align: center;
    min-height: 100svh;
  }
  .ot-hero-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(122, 26, 26, 0.85);
    pointer-events: none;
  }
  .ot-hero-pre { justify-content: center; }
  .ot-hero-trust { justify-content: center; }
  .ot-hero-right { display: none; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — 600px
   ════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  :root { --sp-xl: 64px; --sp-lg: 40px; }

  .ot-hero-pre::before, .ot-hero-pre::after { display: none; }
  .ot-hero-pre { gap: 0; }
  .ot-hero-micro { margin-top: 16px; font-size: 12px; }
  .ot-hero-h1 { font-size: clamp(36px, 9vw, 56px); }
  .ot-hero-sub { font-size: 18px; }
  .ot-hero-trust { flex-direction: column; align-items: flex-start; row-gap: 4px; }
  .ot-hero-trust-sep--mid { display: none; }
  .ot-trust-grid { grid-template-columns: 1fr; }

  .ot-nb-label { font-size: 13px; }
  .ot-fabrics-grid { grid-template-columns: 1fr; }
  .ot-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 0 16px; }
  .ot-process-steps { grid-template-columns: 1fr; }
  .ot-footer-grid { grid-template-columns: 1fr; gap: var(--sp-md); }
  .ot-footer-bottom { flex-direction: column; text-align: center; }
  footer.ot-footer { padding-bottom: 100px; }
  .ot-form-row { grid-template-columns: 1fr; }
  .ot-btn-group { flex-direction: column; align-items: center; }
  .ot-hero-ctas .ot-btn { width: 100%; justify-content: center; }
  .ot-story-text { padding: var(--sp-md); }
  .ot-svc2-card { padding: 32px; }
  .ot-svc2-text { padding: 32px; }
  .ot-guide-teaser-text { padding: 40px var(--sp-md); }
  .ot-guide-teaser-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; padding: 24px 20px; }
  .ot-guide-teaser-dim { padding: 6px 0 6px 10px; }
  .ot-guide-teaser-dim-text { font-size: 11px; letter-spacing: 0.08em; line-height: 1.2; }
  .ot-mid-cta { padding: 48px var(--sp-md); }
  .ot-mid-cta .ot-btn { width: 100%; justify-content: center; }
  .ot-btn { white-space: normal; padding: 14px 20px; text-align: center; line-height: 1.3; }
  .ot-process-callout .ot-btn { width: 100%; justify-content: center; box-sizing: border-box; }
}
