/** Shopify CDN: Minification failed

Line 319:2 Unexpected "100%"
Line 320:0 Unexpected "}"

**/
/* ═══════════════════════════════════════
   TINSTALE UK — THEME CSS
   Red · Silver · Gold · Dark
═══════════════════════════════════════ */

:root {
  --red: #8B1A1A;
  --red-dark: #5A0808;
  --red-light: #B22020;
  --red-glow: rgba(139,26,26,0.6);
  --silver: #C0C8D0;
  --silver-light: #E8EEF2;
  --silver-dark: #9AA8B0;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --cream: #F5EDD8;
  --dark: #080203;
  --dark-2: #100505;
  --dark-3: #180808;
  --white: #FEFCF8;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

.ts-body {
  background: var(--dark);
  color: var(--silver-light);
  font-family: 'Cormorant Garamond', Georgia, serif;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.ts-cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--red-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s;
  mix-blend-mode: screen;
}
.ts-cursor-trail {
  position: fixed;
  width: 30px; height: 30px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  opacity: 0.5;
}

/* ── MIST ── */
.ts-mist-wrap {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.ts-mist {
  position: absolute;
  width: 200%;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.025) 0%, transparent 70%);
  border-radius: 50%;
  animation: mistDrift linear infinite;
}
.ts-mist-1 { top: 20%; animation-duration: 25s; animation-delay: 0s; width: 150%; }
.ts-mist-2 { top: 55%; animation-duration: 35s; animation-delay: -12s; opacity: 0.6; }
.ts-mist-3 { top: 75%; animation-duration: 20s; animation-delay: -7s; opacity: 0.4; width: 180%; }
@keyframes mistDrift {
  0% { transform: translateX(-60%); }
  100% { transform: translateX(20%); }
}

/* ── PROJECTOR BEAM ── */
.ts-projector-beam {
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 100vh;
  background: linear-gradient(to bottom, rgba(201,168,76,0.08) 0%, rgba(139,26,26,0.04) 40%, transparent 100%);
  clip-path: polygon(35% 0%, 65% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
  z-index: 1;
  animation: beamPulse 6s ease-in-out infinite;
}
@keyframes beamPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ── THISTLES ── */
.ts-thistle-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}
.ts-thistle {
  position: absolute;
  animation: thistleFloat linear infinite;
  pointer-events: all;
  cursor: pointer;
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(139,26,26,0.4));
  transition: transform 0.3s, filter 0.3s;
}
.ts-thistle:hover {
  filter: drop-shadow(0 0 16px rgba(139,26,26,0.9));
  transform: scale(1.3) rotate(15deg) !important;
}
@keyframes thistleFloat {
  0% { transform: translateY(110vh) rotate(-10deg); opacity: 0; }
  5% { opacity: 0.55; }
  95% { opacity: 0.55; }
  100% { transform: translateY(-15vh) rotate(10deg); opacity: 0; }
}

/* ── POPUP ── */
.ts-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,2,3,0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  backdrop-filter: blur(16px);
}
.ts-popup-overlay.active { opacity: 1; pointer-events: all; }
.ts-popup-box {
  background: linear-gradient(135deg, #1a0303, #2a0808);
  border: 1px solid var(--red-light);
  border-top: 3px solid var(--gold);
  padding: 48px 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s;
  box-shadow: 0 40px 80px rgba(139,26,26,0.5), 0 0 60px rgba(201,168,76,0.1);
}
.ts-popup-overlay.active .ts-popup-box { transform: translateY(0) scale(1); }
.ts-popup-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none; border: none;
  color: var(--silver); font-size: 20px;
  cursor: pointer; transition: color 0.3s;
  font-family: inherit;
}
.ts-popup-close:hover { color: var(--red-light); }
.ts-popup-eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; letter-spacing: 5px;
  color: var(--gold); margin-bottom: 14px;
  text-transform: uppercase;
}
.ts-popup-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px; color: var(--white);
  margin-bottom: 10px;
}
.ts-popup-sub { font-size: 14px; color: #AABBCC; margin-bottom: 24px; line-height: 1.6; }
.ts-popup-input {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(139,26,26,0.5);
  color: var(--white);
  font-size: 15px; margin-bottom: 12px;
  outline: none; font-family: inherit;
  transition: border-color 0.3s;
}
.ts-popup-input:focus { border-color: var(--red-light); }
.ts-popup-btn {
  width: 100%; padding: 13px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border: none;
  color: var(--silver-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; cursor: pointer;
  transition: all 0.3s; text-transform: uppercase;
}
.ts-popup-btn:hover { background: var(--red-light); }

/* ── NAVIGATION ── */
.ts-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: linear-gradient(to bottom, rgba(8,2,3,0.97), transparent);
  transition: background 0.3s;
}
.ts-nav.scrolled { background: rgba(8,2,3,0.98); }
.ts-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--silver-light);
  letter-spacing: 2px; text-decoration: none;
}
.ts-logo span { color: var(--red-light); font-style: italic; }
.ts-nav-links { display: flex; gap: 28px; list-style: none; }
.ts-nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; letter-spacing: 3px;
  color: var(--silver-dark); text-decoration: none;
  transition: color 0.3s; text-transform: uppercase;
}
.ts-nav-links a:hover { color: var(--red-light); }
.ts-nav-links .ts-nav-cta { color: var(--red-light); }
@media(max-width: 768px) { .ts-nav-links { display: none; } }

/* ── HERO ── */
.ts-hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 40% 60%, rgba(139,26,26,0.2) 0%, var(--dark) 70%);
}
.ts-hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,26,26,0.2), transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: heroGlow 6s ease-in-out infinite;
  z-index: 0;
}
@keyframes heroGlow {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.4; }
  50% { transform: translate(-50%,-50%) scale(1.2); opacity: 0.8; }
}
.ts-hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; letter-spacing: 8px;
  color: var(--silver-dark);
  margin-bottom: 14px; position: relative; z-index: 2;
  animation: fadeUpIn 1s ease both;
  text-transform: uppercase;
}
.ts-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(54px, 11vw, 110px);
  font-weight: 900; line-height: 0.85;
  color: var(--white);
  position: relative; z-index: 2;
  animation: fadeUpIn 1s 0.2s ease both;
}
.ts-hero-title em { color: var(--red-light); font-style: italic; }
.ts-hero-title .ts-glitch {
  position: relative;
  animation: glitchText 8s 3s infinite;
}
@keyframes glitchText {
  0%, 94%, 100% { clip-path: none; transform: none; }
  95% { clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%); transform: translateX(-3px); }
  96% { clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%); transform: translateX(3px); }
  97% { clip-path: none; transform: none; }
}
.ts-hero-sub {
  font-size: 18px; color: var(--silver-dark);
  margin-top: 18px; font-style: italic;
  position: relative; z-index: 2;
  animation: fadeUpIn 1s 0.4s ease both;
}

/* TIN STAGE */
.ts-tin-stage {
  position: relative;
  width: 260px; height: 310px;
  margin: 28px auto 0;
  z-index: 2;
  animation: fadeUpIn 1s 0.3s ease both;
}
.ts-tin-light-cone {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-top: 80px solid rgba(201,168,76,0.12);
  filter: blur(20px);
  animation: conePulse 4s ease-in-out infinite;
}
@keyframes conePulse { 0%,100%{opacity:0.5;} 50%{opacity:1;} }


  100% { transform: translateY(420px); opacity: 0; }
}
.ts-tin-img {
  width: 260px; height: 300px;
  object-fit: contain;
  position: absolute; top: 0; left: 0;
  opacity: 0;
  animation: tinReveal 0.8s 3.2s ease forwards,
             tinFloat 4.5s 4s ease-in-out infinite,
             tinShimmer 8s 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(139,26,26,0.6));
}
/* No cloth version — tin shows immediately */
.ts-tin-img.ts-tin-visible {
  opacity: 1;
  animation: tinFloat 4.5s 0.5s ease-in-out infinite,
             tinShimmer 8s 0.5s ease-in-out infinite;
}
@keyframes tinReveal {
  0% { opacity:0; transform:scale(0.8) translateY(20px); }
  100% { opacity:1; transform:scale(1) translateY(0); }
}
@keyframes tinFloat {
  0%,100% { transform:translateY(0); }
  50% { transform:translateY(-18px); }
}
@keyframes tinShimmer {
  0%,100% { filter:drop-shadow(0 20px 40px rgba(139,26,26,0.6)) brightness(1); }
  50% { filter:drop-shadow(0 30px 60px rgba(139,26,26,0.8)) brightness(1.06); }
}
.ts-tin-hologram-rings {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  pointer-events: none;
  opacity: 0;
  animation: ringsReveal 0.5s 3.8s ease forwards;
}
@keyframes ringsReveal { to { opacity: 1; } }
.ts-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  animation: ringExpand 3s 4s ease-out infinite;
}
.ts-ring-1 { width: 80px; height: 20px; border-color: rgba(139,26,26,0.5); animation-delay: 4s; }
.ts-ring-2 { width: 140px; height: 35px; border-color: rgba(201,168,76,0.3); animation-delay: 4.4s; }
.ts-ring-3 { width: 200px; height: 50px; border-color: rgba(139,26,26,0.2); animation-delay: 4.8s; }
@keyframes ringExpand {
  0% { opacity: 0.8; transform: translate(-50%,-50%) scaleX(1); }
  100% { opacity: 0; transform: translate(-50%,-50%) scaleX(1.3); }
}
.ts-tin-scan-line {
  position: absolute;
  left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-light), transparent);
  opacity: 0;
  z-index: 6;
  animation: scanLine 2s 3.5s ease-out forwards;
}
@keyframes scanLine {
  0% { top: 0; opacity: 0.8; }
  100% { top: 100%; opacity: 0; }
}
.ts-tin-glow-floor {
  position: absolute;
  bottom: -12px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 20px;
  background: radial-gradient(ellipse, rgba(139,26,26,0.7), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  animation: glowReveal 0.5s 3.5s ease forwards, glowPulse 4s 4s ease-in-out infinite;
}
.ts-tin-glow-floor.ts-tin-glow-visible {
  opacity: 1;
  animation: glowPulse 4s 0.5s ease-in-out infinite;
}
@keyframes glowReveal { to { opacity: 1; } }
@keyframes glowPulse {
  0%,100% { width:200px; opacity:0.5; }
  50% { width:240px; opacity:1; }
}

.ts-cta-row {
  display: flex; gap: 14px;
  margin-top: 30px;
  position: relative; z-index: 2;
  animation: fadeUpIn 1s 0.8s ease both;
  flex-wrap: wrap; justify-content: center;
}
.ts-btn-primary {
  padding: 14px 34px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--silver-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 4px; text-decoration: none;
  border: 1px solid rgba(192,200,208,0.15);
  cursor: pointer; transition: all 0.3s;
  display: inline-block; text-transform: uppercase;
  position: relative; overflow: hidden;
}
.ts-btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.4s;
}
.ts-btn-primary:hover::before { left: 100%; }
.ts-btn-primary:hover { background: var(--red-light); transform: translateY(-2px); color: var(--white); }
.ts-btn-secondary {
  padding: 14px 34px;
  background: transparent;
  color: var(--silver-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 4px; text-decoration: none;
  border: 1px solid var(--silver-dark);
  cursor: pointer; transition: all 0.3s;
  display: inline-block; text-transform: uppercase;
}
.ts-btn-secondary:hover { background: rgba(192,200,208,0.08); transform: translateY(-2px); color: var(--white); border-color: var(--silver-light); }
.ts-scroll-hint {
  position: absolute; bottom: 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; letter-spacing: 4px;
  color: var(--silver-dark); opacity: 0.6;
  animation: bounce 2.5s infinite, fadeUpIn 1s 1.2s ease both;
  text-transform: uppercase;
}
@keyframes bounce { 0%,100%{transform:translateY(0);} 50%{transform:translateY(10px);} }
@keyframes fadeUpIn { from{opacity:0;transform:translateY(40px);} to{opacity:1;transform:translateY(0);} }

/* ── SECTIONS BASE ── */
.ts-section { padding: 100px 32px; }
.ts-section-inner { max-width: 1100px; margin: 0 auto; }
.ts-eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; letter-spacing: 6px;
  color: var(--red-light); margin-bottom: 12px;
  text-transform: uppercase;
}
.ts-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 52px);
  color: var(--white); margin-bottom: 18px;
  line-height: 1.1;
}
.ts-title-center { text-align: center; }
.ts-gold-line { width: 54px; height: 3px; background: linear-gradient(90deg, var(--red), var(--red-light)); margin: 0 0 36px; }
.ts-gold-line-center { margin: 0 auto 36px; }

/* ── SCROLL REVEAL ── */
.ts-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.ts-reveal.visible { opacity: 1; transform: translateY(0); }
.ts-reveal-delay-1 { transition-delay: 0.1s; }
.ts-reveal-delay-2 { transition-delay: 0.2s; }
.ts-reveal-delay-3 { transition-delay: 0.3s; }
.ts-reveal-delay-4 { transition-delay: 0.4s; }
.ts-reveal-delay-5 { transition-delay: 0.5s; }

/* ── WHY CARDS ── */
.ts-why-bg { background: linear-gradient(to bottom, var(--dark), var(--dark-2)); }
.ts-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2px; margin-top: 44px;
}
.ts-why-card {
  background: rgba(139,26,26,0.08);
  border: 1px solid rgba(139,26,26,0.2);
  padding: 36px 28px;
  transition: all 0.4s;
  position: relative; overflow: hidden;
}
.ts-why-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(to bottom, var(--gold), var(--red-light));
  transition: height 0.4s;
}
.ts-why-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, rgba(139,26,26,0.1), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.ts-why-card:hover { background: rgba(139,26,26,0.14); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(139,26,26,0.2); }
.ts-why-card:hover::before { height: 100%; }
.ts-why-card:hover::after { opacity: 1; }
.ts-why-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px; color: rgba(139,26,26,0.2);
  margin-bottom: 12px; display: block;
  transition: color 0.4s;
}
.ts-why-card:hover .ts-why-num { color: rgba(201,168,76,0.4); }
.ts-why-card h3 { font-size: 19px; color: var(--silver-light); margin-bottom: 10px; font-family: 'Playfair Display', serif; }
.ts-why-card p { font-size: 13px; color: #9BB8C8; line-height: 1.8; }

/* ── CIRCULAR ── */
.ts-circ-bg { background: var(--dark-2); }
.ts-life-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  margin-top: 44px;
}
@media(max-width: 768px) { .ts-life-grid { grid-template-columns: 1fr; } }
.ts-step {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(139,26,26,0.12);
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.6s, transform 0.6s;
}
.ts-step.visible { opacity: 1; transform: translateX(0); }
.ts-step:last-child { border-bottom: none; }
.ts-step-line {
  width: 2px; height: 40px;
  background: linear-gradient(to bottom, var(--red-light), transparent);
  margin: 0 auto;
  opacity: 0; transition: opacity 0.6s 0.3s;
}
.ts-step.visible + .ts-step-line { opacity: 1; }
.ts-step-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.ts-step h4 { font-size: 16px; color: var(--silver-light); margin-bottom: 4px; font-family: 'Playfair Display', serif; }
.ts-step p { font-size: 12px; color: #9BB8C8; line-height: 1.7; }
.ts-circ-badge {
  background: radial-gradient(ellipse, rgba(139,26,26,0.15), rgba(8,2,3,0.95));
  border: 1px solid rgba(139,26,26,0.3);
  border-radius: 50%;
  width: 260px; height: 260px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; margin: 0 auto;
  position: relative;
  box-shadow: 0 0 60px rgba(139,26,26,0.2), inset 0 0 40px rgba(139,26,26,0.05);
}
.ts-circ-badge::before {
  content: '';
  position: absolute; inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(139,26,26,0.3);
  animation: rotateSlow 20s linear infinite;
}
.ts-circ-badge::after {
  content: '';
  position: absolute; inset: 16px;
  border-radius: 50%;
  border: 1px dashed rgba(201,168,76,0.15);
  animation: rotateSlow 30s linear infinite reverse;
}
@keyframes rotateSlow { to { transform: rotate(360deg); } }
.ts-circ-num { font-family: 'Playfair Display', serif; font-size: 56px; color: var(--red-light); }
.ts-circ-label { font-family: 'Montserrat', sans-serif; font-size: 9px; letter-spacing: 3px; color: var(--silver-dark); text-transform: uppercase; }
.ts-circ-sub { font-size: 12px; color: #5A7080; font-style: italic; padding: 0 20px; margin-top: 10px; line-height: 1.5; }

/* ── EXPERIENCES ── */
.ts-exp-bg { background: #060101; padding: 100px 0; }
.ts-exp-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.ts-exp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px; margin-top: 44px;
  perspective: 1000px;
}
@media(max-width: 900px) { .ts-exp-grid { grid-template-columns: 1fr 1fr; } }
.ts-exp-card {
  position: relative;
  height: 220px;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.ts-exp-card:hover { transform: rotateY(180deg); }
.ts-exp-front, .ts-exp-back {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 24px 16px; text-align: center;
  backface-visibility: hidden;
}
.ts-exp-front {
  background: rgba(139,26,26,0.08);
  border: 1px solid rgba(139,26,26,0.18);
  transition: background 0.4s;
}
.ts-exp-back {
  background: linear-gradient(135deg, var(--red-dark), #3a0505);
  border: 1px solid var(--red-light);
  transform: rotateY(180deg);
  box-shadow: inset 0 0 30px rgba(139,26,26,0.3);
}
.ts-exp-icon { font-size: 32px; margin-bottom: 12px; display: block; }
.ts-exp-num { font-family: 'Montserrat', sans-serif; font-size: 8px; letter-spacing: 3px; color: var(--red-light); margin-bottom: 6px; display: block; text-transform: uppercase; }
.ts-exp-name { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--white); }
.ts-exp-desc { font-size: 12px; color: #BBCCDD; line-height: 1.7; }
.ts-exp-back .ts-exp-name { color: var(--gold); margin-bottom: 10px; }

/* ── AR SECTION ── */
.ts-ar-section { padding: 100px 32px; background: radial-gradient(ellipse at center, rgba(139,26,26,0.1), var(--dark)); }
.ts-ar-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.ts-ar-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.ts-phone-wrap { position: relative; width: 140px; height: 280px; flex-shrink: 0; }
.ts-phone {
  width: 140px; height: 280px;
  background: linear-gradient(135deg, #1a1428, #0d0d20);
  border-radius: 24px;
  border: 2px solid var(--silver-dark);
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 40px rgba(139,26,26,0.2);
  transform: translateX(-200px);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.2,0.8,0.2,1), opacity 1.2s ease;
}
.ts-phone.in { transform: translateX(0); opacity: 1; }
.ts-phone-notch {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 6px;
  background: var(--dark);
  border-radius: 3px;
}
.ts-phone-screen {
  position: absolute;
  inset: 10px 7px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1220, #151525);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}
.ts-phone-welcome {
  position: absolute;
  top: 8px; left: 6px; right: 6px;
  background: rgba(139,26,26,0.95);
  border-radius: 8px; padding: 7px;
  text-align: center;
  opacity: 0;
  animation: welcomeIn 0.6s 4s ease forwards;
  border: 1px solid rgba(201,168,76,0.3);
}
@keyframes welcomeIn { to { opacity: 1; } }
.ts-phone-welcome-txt {
  font-family: 'Montserrat', sans-serif;
  font-size: 5.5px; letter-spacing: 1px;
  color: var(--white); line-height: 1.6;
}
.ts-scan-beam {
  position: absolute;
  left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-light), transparent);
  top: 30%;
  box-shadow: 0 0 10px var(--red-light);
  animation: scanBeam 1.5s ease-in-out infinite;
}
@keyframes scanBeam {
  0%, 100% { top: 20%; opacity: 0.8; }
  50% { top: 80%; opacity: 1; }
}
.ts-qr-box {
  width: 48px; height: 48px;
  border: 2px solid var(--red-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px; padding: 4px;
  animation: qrPulse 2s 1s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(139,26,26,0.4);
}
@keyframes qrPulse {
  0%, 100% { border-color: var(--red-light); box-shadow: 0 0 10px rgba(139,26,26,0.4); }
  50% { border-color: var(--silver-light); box-shadow: 0 0 20px rgba(139,26,26,0.8); }
}
.ts-qr-c { background: var(--red-light); border-radius: 1px; }
.ts-qr-c.ts-qr-empty { background: transparent; }
.ts-scan-txt {
  font-family: 'Montserrat', sans-serif;
  font-size: 6px; letter-spacing: 2px;
  color: var(--silver-dark); text-transform: uppercase;
}
.ts-holo-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 200px; height: 200px;
  flex-shrink: 0;
}
.ts-holo-castle {
  font-size: 80px;
  filter: drop-shadow(0 0 30px rgba(139,26,26,1));
  animation: holoIn 0.8s 3s ease both, holoFloat 4s 3.8s ease-in-out infinite;
  opacity: 0;
}
@keyframes holoIn { to { opacity: 1; } }
@keyframes holoFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); filter: drop-shadow(0 0 30px rgba(139,26,26,0.8)); }
  50% { transform: translateY(-14px) rotate(2deg); filter: drop-shadow(0 0 50px rgba(139,26,26,1)); }
}
.ts-holo-grid {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: repeating-linear-gradient(
    0deg, rgba(139,26,26,0.15) 0, rgba(139,26,26,0.15) 1px, transparent 1px, transparent 20px
  ),
  repeating-linear-gradient(
    90deg, rgba(139,26,26,0.15) 0, rgba(139,26,26,0.15) 1px, transparent 1px, transparent 20px
  );
  perspective: 200px;
  transform: rotateX(40deg);
  transform-origin: bottom;
  animation: holoIn 0.8s 3s ease both;
  opacity: 0;
}
.ts-holo-rings-wrap {
  position: absolute;
  bottom: 10px;
  left: 50%; transform: translateX(-50%);
  width: 160px; height: 40px;
}
.ts-holo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(139,26,26,0.4);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  animation: holoRingPulse 2s 3s ease-in-out infinite;
  opacity: 0;
}
.ts-holo-ring:nth-child(1) { width: 60px; height: 20px; animation-delay: 3s; }
.ts-holo-ring:nth-child(2) { width: 100px; height: 35px; animation-delay: 3.3s; border-color: rgba(201,168,76,0.3); }
.ts-holo-ring:nth-child(3) { width: 150px; height: 50px; animation-delay: 3.6s; }
@keyframes holoRingPulse {
  0% { opacity: 0.8; }
  100% { opacity: 0; transform: translate(-50%,-50%) scaleX(1.4); }
}
.ts-ar-text { max-width: 280px; text-align: left; }
.ts-ar-text h3 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--white); margin-bottom: 14px; line-height: 1.2; }
.ts-ar-text p { font-size: 13px; color: #9BB8C8; line-height: 1.8; margin-bottom: 10px; }
.ts-ar-text .ts-highlight { color: var(--red-light); font-style: italic; }

/* ── STORY BOOK ── */
.ts-book-bg { background: rgba(139,26,26,0.03); padding: 100px 32px; text-align: center; }
.ts-book-inner { max-width: 1100px; margin: 0 auto; }
.ts-book-hint { font-size: 13px; color: #6A8090; font-style: italic; margin-top: 10px; }
.ts-book-scene {
  position: relative;
  width: 300px; height: 420px;
  margin: 56px auto 0;
  perspective: 1400px;
}
.ts-book-cover {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #3a0505, #200303, #3a0505);
  border: 2px solid var(--gold);
  border-radius: 2px 14px 14px 2px;
  z-index: 10; cursor: pointer;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: transform 0.9s cubic-bezier(0.645,0.045,0.355,1);
  transform-origin: left center;
  box-shadow: 10px 10px 50px rgba(0,0,0,0.9), 2px 0 10px rgba(139,26,26,0.3);
}
.ts-book-cover.open { transform: rotateY(-168deg); }
.ts-book-cover-spine {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 20px;
  background: linear-gradient(to right, #1a0303, #3a0808);
  border-radius: 2px 0 0 2px;
}
.ts-cover-title { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--gold); text-align: center; padding: 0 24px; line-height: 1.3; }
.ts-cover-deco { width: 50px; height: 1px; background: var(--gold); margin: 14px auto; }
.ts-cover-sub { font-size: 11px; color: var(--silver-dark); font-style: italic; }
.ts-book-page {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #F2E8D5, #E8D8BC);
  border: 1px solid var(--gold);
  border-radius: 2px 14px 14px 2px;
  transition: transform 0.9s cubic-bezier(0.645,0.045,0.355,1);
  transform-origin: left center;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 28px; text-align: center;
  box-shadow: 5px 5px 25px rgba(0,0,0,0.6);
}
.ts-book-page.flipped { transform: rotateY(-168deg); }
.ts-page-num { font-family: 'Montserrat', sans-serif; font-size: 8px; letter-spacing: 4px; color: var(--red-light); margin-bottom: 8px; text-transform: uppercase; }
.ts-page-title { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--red-dark); margin-bottom: 8px; line-height: 1.3; }
.ts-page-preview { font-size: 11px; color: #5A4030; line-height: 1.7; margin-bottom: 14px; }
.ts-page-btn {
  padding: 9px 20px;
  background: var(--red-dark); color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 8px; letter-spacing: 3px;
  border: none; cursor: pointer;
  transition: all 0.3s; text-transform: uppercase;
}
.ts-page-btn:hover { background: var(--red-light); }
.ts-book-nav { display: flex; gap: 12px; justify-content: center; margin-top: 22px; }
.ts-book-btn {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--red-light);
  color: var(--red-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; letter-spacing: 3px;
  cursor: pointer; transition: all 0.3s; text-transform: uppercase;
}
.ts-book-btn:hover { background: var(--red-light); color: var(--white); }

/* BLOG MODAL */
.ts-blog-modal {
  position: fixed; inset: 0;
  background: rgba(8,2,3,0.97);
  z-index: 2000;
  display: flex; align-items: flex-start; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
  overflow-y: auto; padding: 50px 16px;
  backdrop-filter: blur(16px);
}
.ts-blog-modal.active { opacity: 1; pointer-events: all; }
.ts-blog-content {
  background: linear-gradient(135deg, #180303, #120202);
  border: 1px solid rgba(139,26,26,0.25);
  border-top: 3px solid var(--gold);
  max-width: 700px; width: 100%;
  padding: 56px 48px; position: relative;
}
.ts-blog-close {
  position: absolute; top: 18px; right: 22px;
  background: none; border: none;
  color: var(--silver); font-size: 26px;
  cursor: pointer; font-family: inherit;
  transition: color 0.3s;
}
.ts-blog-close:hover { color: var(--red-light); }
.ts-blog-content h2 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--white); margin-bottom: 8px; line-height: 1.2; }
.ts-blog-content h3 { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--gold); margin: 28px 0 10px; }
.ts-blog-content p { font-size: 15px; color: #B0C8D0; line-height: 1.9; margin-bottom: 14px; }
.ts-blog-content em { color: #C8E0E8; font-style: italic; }

/* ── ABOUT ── */
.ts-about-bg { background: linear-gradient(135deg, var(--dark-2), var(--dark)); }
.ts-about-wrap { max-width: 560px; margin: 0 auto; text-align: center; }
.ts-about-quote {
  border-left: 3px solid var(--red-light);
  padding-left: 22px; text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 20px; color: var(--cream);
  font-style: italic; line-height: 1.5;
  margin: 36px 0 28px;
  position: relative;
}
.ts-about-quote::before {
  content: '"';
  position: absolute; top: -20px; left: 10px;
  font-size: 80px; color: rgba(139,26,26,0.15);
  font-family: Georgia, serif; line-height: 1;
}
.ts-about-wrap p { font-size: 15px; color: #9BB8C8; line-height: 1.9; margin-bottom: 14px; }
.ts-about-tags { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 24px; }
.ts-about-tag {
  padding: 7px 18px;
  border: 1px solid rgba(139,26,26,0.25);
  font-family: 'Montserrat', sans-serif;
  font-size: 8px; letter-spacing: 3px;
  color: var(--silver-dark); text-transform: uppercase;
  transition: all 0.3s;
}
.ts-about-tag:hover { border-color: var(--red-light); color: var(--silver-light); }

/* ── SOCIAL ── */
.ts-social-bg { background: #060101; border-top: 1px solid rgba(139,26,26,0.12); padding: 80px 32px; text-align: center; }
.ts-social-inner { max-width: 1100px; margin: 0 auto; }
.ts-social-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }
.ts-social-card {
  display: flex; align-items: center; gap: 12px;
  padding: 17px 30px;
  border: 1px solid rgba(192,200,208,0.12);
  text-decoration: none; color: var(--silver-light);
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
  position: relative; overflow: hidden;
}
.ts-social-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(139,26,26,0.1), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.ts-social-card:hover { border-color: var(--red-light); transform: translateY(-4px); color: var(--white); }
.ts-social-card:hover::before { opacity: 1; }
.ts-social-icon { font-size: 20px; }
.ts-social-handle { margin-top: 24px; font-family: 'Montserrat', sans-serif; font-size: 8px; letter-spacing: 5px; color: #2A3040; text-transform: uppercase; }

/* ── CTA ── */
.ts-cta-section {
  text-align: center; padding: 120px 32px;
  background: radial-gradient(ellipse at center, rgba(139,26,26,0.18), var(--dark));
  border-top: 1px solid rgba(139,26,26,0.18);
  position: relative; overflow: hidden;
}
.ts-cta-section::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 100%;
  background: linear-gradient(to bottom, rgba(201,168,76,0.06), transparent);
  clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
}
.ts-cta-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }

/* ── FOOTER ── */
.ts-footer { background: var(--dark); border-top: 1px solid rgba(139,26,26,0.18); padding: 48px 32px; text-align: center; }
.ts-footer-logo { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--silver-light); }
.ts-footer-logo span { color: var(--red-light); font-style: italic; }
.ts-footer-line { width: 52px; height: 1px; background: var(--red); margin: 14px auto; }
.ts-footer-sub { font-family: 'Montserrat', sans-serif; font-size: 8px; letter-spacing: 4px; color: #3A5060; text-transform: uppercase; }
.ts-footer-copy { margin-top: 14px; font-family: 'Montserrat', sans-serif; font-size: 8px; color: #1A2030; }

/* ── UTILITIES ── */
@media(max-width: 768px) {
  .ts-section { padding: 70px 20px; }
  .ts-exp-grid { grid-template-columns: 1fr 1fr; }
  .ts-life-grid { grid-template-columns: 1fr; }
  .ts-ar-stage { flex-direction: column; align-items: center; }
  .ts-ar-text { text-align: center; }
}

/* ── HERO VIDEO ── */
.ts-hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.ts-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  pointer-events: none;
}
.ts-hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,2,3,0.45) 0%,
    rgba(8,2,3,0.15) 40%,
    rgba(8,2,3,0.7) 100%
  );
}

/* ── MOBILE NAV ── */
.ts-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}
.ts-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ts-silver);
  transition: all 0.3s;
}
.ts-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ts-hamburger.open span:nth-child(2) { opacity: 0; }
.ts-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .ts-hamburger { display: flex; }
  .ts-nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(8,2,3,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    padding: 90px 30px 40px;
    gap: 28px;
    transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 100;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .ts-nav-links.open { transform: translateY(0); }
  .ts-nav-links li a { font-size: 13px; letter-spacing: 4px; }
}
