/* ============================================================
   TOP WATCH REPAIR — twr-style.css
   Premium craftsmanship aesthetic: dark, metallic, refined
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Josefin+Sans:wght@300;400;600&family=EB+Garamond:ital,wght@0,400;0,500;1,400&display=swap');

/* ── CSS Variables ── */
:root {
  --twr-black:       #0a0a0a;
  --twr-dark:        #111111;
  --twr-charcoal:    #1c1c1c;
  --twr-steel:       #2a2d35;
  --twr-mid:         #3d4148;
  --twr-gold:        #c9a84c;
  --twr-gold-light:  #e2c97e;
  --twr-gold-pale:   #f5e9c8;
  --twr-silver:      #9ea6b4;
  --twr-white:       #f4f2ee;
  --twr-off-white:   #e8e4dc;
  --twr-text:        #d4cfc6;
  --twr-text-muted:  #7a7d85;
  --twr-border:      rgba(201,168,76,0.18);
  --twr-font-display:'Cormorant Garamond', Georgia, serif;
  --twr-font-body:   'EB Garamond', Georgia, serif;
  --twr-font-ui:     'Josefin Sans', sans-serif;
  --twr-radius:      4px;
  --twr-radius-lg:   8px;
  --twr-transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --twr-shadow:      0 8px 40px rgba(0,0,0,0.45);
  --twr-shadow-gold: 0 4px 24px rgba(201,168,76,0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--twr-black);
  color: var(--twr-text);
  font-family: var(--twr-font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--twr-gold);
  color: var(--twr-black);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--twr-font-display);
  font-weight: 300;
  line-height: 1.15;
  color: var(--twr-white);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: 1.4rem; }

.twr-label {
  font-family: var(--twr-font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--twr-gold);
}

p { margin-bottom: 1.2rem; color: var(--twr-text); }
a { color: var(--twr-gold); text-decoration: none; transition: color var(--twr-transition); }
a:hover { color: var(--twr-gold-light); }

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

/* ── Layout ── */
.twr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.twr-section {
  padding: 100px 0;
}

.twr-section-sm {
  padding: 60px 0;
}

/* ── Gold Divider ── */
.twr-divider {
  width: 60px;
  height: 1px;
  background: var(--twr-gold);
  margin: 1.5rem 0;
}

.twr-divider-center {
  margin: 1.5rem auto;
}

/* ── Buttons ── */
.twr-btn {
  display: inline-block;
  font-family: var(--twr-font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid var(--twr-gold);
  color: var(--twr-gold);
  background: transparent;
  cursor: pointer;
  transition: all var(--twr-transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.twr-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--twr-gold);
  transform: translateX(-101%);
  transition: transform var(--twr-transition);
  z-index: 0;
}

.twr-btn:hover::before { transform: translateX(0); }
.twr-btn:hover { color: var(--twr-black); }

.twr-btn span { position: relative; z-index: 1; }

.twr-btn-solid {
  background: var(--twr-gold);
  color: var(--twr-black);
}

.twr-btn-solid::before { background: var(--twr-gold-light); }
.twr-btn-solid:hover { color: var(--twr-black); }

/* ── Navigation ── */
.twr-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}

.twr-nav.twr-nav-scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom-color: var(--twr-border);
}

.twr-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.twr-logo {
  font-family: var(--twr-font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--twr-white);
  letter-spacing: 0.05em;
  text-decoration: none;
  line-height: 1;
}

.twr-logo span {
  color: var(--twr-gold);
}

.twr-logo-sub {
  display: block;
  font-family: var(--twr-font-ui);
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--twr-silver);
  margin-top: 2px;
}

.twr-nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.twr-nav-menu li a {
  font-family: var(--twr-font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--twr-silver);
  padding: 8px 18px;
  display: block;
  transition: color var(--twr-transition);
}

.twr-nav-menu li a:hover,
.twr-nav-menu li a.twr-active {
  color: var(--twr-gold);
}

.twr-nav-cta {
  font-family: var(--twr-font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--twr-black);
  background: var(--twr-gold);
  padding: 10px 22px;
  transition: background var(--twr-transition);
  text-decoration: none;
  margin-left: 16px;
}

.twr-nav-cta:hover {
  background: var(--twr-gold-light);
  color: var(--twr-black);
}

.twr-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.twr-hamburger span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--twr-white);
  transition: all 0.3s ease;
}

/* ── Mobile Nav ── */
@media (max-width: 991px) {
  .twr-hamburger { display: flex; }
  .twr-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 20px 0;
    border-top: 1px solid var(--twr-border);
  }
  .twr-nav-menu.twr-open { display: flex; }
  .twr-nav-menu li a { padding: 12px 32px; }
  .twr-nav-cta { margin: 10px 32px 0; display: inline-block; }
}

/* ── Hero ── */
.twr-hero-layered {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--twr-black);
}

.twr-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner.webp');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.18;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.twr-hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.twr-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.95) 0%,
    rgba(10,10,10,0.75) 50%,
    rgba(201,168,76,0.06) 100%
  );
}

.twr-hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
  max-width: 780px;
}

.twr-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.twr-hero-line {
  width: 50px;
  height: 1px;
  background: var(--twr-gold);
}

.twr-hero-h1 {
  margin-bottom: 8px;
  font-style: italic;
}

.twr-hero-h1 em {
  font-style: normal;
  color: var(--twr-gold);
}

.twr-hero-subtitle {
  font-size: 1.2rem;
  color: var(--twr-silver);
  margin: 24px 0 40px;
  max-width: 520px;
  line-height: 1.65;
}

.twr-hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.twr-hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--twr-font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--twr-text-muted);
}

.twr-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--twr-gold), transparent);
  animation: twr-scroll-pulse 2s ease-in-out infinite;
}

/* ── Stats Bar ── */
.twr-stats-bar {
  background: var(--twr-charcoal);
  border-top: 1px solid var(--twr-border);
  border-bottom: 1px solid var(--twr-border);
  padding: 40px 0;
}

.twr-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.twr-stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--twr-border);
}

.twr-stat-item:last-child { border-right: none; }

.twr-stat-number {
  font-family: var(--twr-font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--twr-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.twr-stat-label {
  font-family: var(--twr-font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--twr-text-muted);
}

@media (max-width: 767px) {
  .twr-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .twr-stat-item:nth-child(2) { border-right: none; }
  .twr-stat-item:nth-child(3) { border-right: 1px solid var(--twr-border); }
  .twr-stat-item:nth-child(1),
  .twr-stat-item:nth-child(2) { border-bottom: 1px solid var(--twr-border); padding-bottom: 32px; margin-bottom: 32px; }
}

/* ── Section Headers ── */
.twr-section-header {
  margin-bottom: 60px;
}

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

.twr-section-header-center .twr-divider {
  margin: 1.5rem auto;
}

/* ── Service Finder ── */
.twr-finder-section {
  background: var(--twr-charcoal);
  border-top: 1px solid var(--twr-border);
  border-bottom: 1px solid var(--twr-border);
}

.twr-finder-wrap {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.twr-finder-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 40px 0;
}

.twr-finder-btn {
  font-family: var(--twr-font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: 1px solid var(--twr-border);
  background: transparent;
  color: var(--twr-silver);
  cursor: pointer;
  transition: all var(--twr-transition);
  border-radius: var(--twr-radius);
}

.twr-finder-btn:hover,
.twr-finder-btn.twr-selected {
  border-color: var(--twr-gold);
  color: var(--twr-gold);
  background: rgba(201,168,76,0.06);
}

.twr-finder-result {
  background: var(--twr-steel);
  border: 1px solid var(--twr-border);
  border-radius: var(--twr-radius-lg);
  padding: 36px;
  margin-top: 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s ease;
  display: none;
}

.twr-finder-result.twr-visible {
  opacity: 1;
  transform: translateY(0);
  display: block;
}

.twr-finder-result h4 {
  font-size: 1.5rem;
  color: var(--twr-gold);
  margin-bottom: 12px;
}

/* ── Timeline ── */
.twr-timeline {
  position: relative;
  padding-left: 0;
}

.twr-timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--twr-gold), transparent);
}

.twr-timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}

.twr-timeline-item.twr-in-view {
  opacity: 1;
  transform: translateX(0);
}

.twr-timeline-marker {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border: 1px solid var(--twr-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: var(--twr-charcoal);
}

.twr-timeline-marker span {
  font-family: var(--twr-font-display);
  font-size: 1.4rem;
  color: var(--twr-gold);
}

.twr-timeline-body {
  padding-top: 12px;
}

.twr-timeline-body h4 { margin-bottom: 8px; font-size: 1.3rem; }
.twr-timeline-body p { color: var(--twr-text-muted); margin: 0; }

/* ── Service Cards ── */
.twr-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.twr-service-card {
  background: var(--twr-charcoal);
  border: 1px solid var(--twr-border);
  border-radius: var(--twr-radius-lg);
  overflow: hidden;
  transition: all var(--twr-transition);
  text-decoration: none;
  display: block;
}

.twr-service-card:hover {
  border-color: var(--twr-gold);
  transform: translateY(-4px);
  box-shadow: var(--twr-shadow-gold);
}

.twr-service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.8);
  transition: all var(--twr-transition);
}

.twr-service-card:hover .twr-service-card-img {
  filter: saturate(0.85) brightness(0.9);
}

.twr-service-card-body {
  padding: 28px;
}

.twr-service-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.twr-service-card-body p {
  font-size: 0.95rem;
  color: var(--twr-text-muted);
  margin: 0;
}

.twr-service-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--twr-font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--twr-gold);
}

/* ── Quiz Modules ── */
.twr-quiz-section {
  background: var(--twr-charcoal);
}

.twr-quiz-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--twr-border);
  flex-wrap: wrap;
}

.twr-quiz-tab-btn {
  font-family: var(--twr-font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: none;
  background: none;
  color: var(--twr-text-muted);
  cursor: pointer;
  transition: all var(--twr-transition);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.twr-quiz-tab-btn.twr-active,
.twr-quiz-tab-btn:hover {
  color: var(--twr-gold);
  border-bottom-color: var(--twr-gold);
}

.twr-quiz-panel { display: none; }
.twr-quiz-panel.twr-active { display: block; }

.twr-quiz-question {
  margin-bottom: 32px;
}

.twr-quiz-question p {
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: var(--twr-white);
}

.twr-quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.twr-quiz-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--twr-border);
  border-radius: var(--twr-radius);
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.95rem;
}

.twr-quiz-option:hover {
  border-color: var(--twr-gold);
  background: rgba(201,168,76,0.04);
}

.twr-quiz-option input[type="radio"] {
  accent-color: var(--twr-gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.twr-quiz-submit {
  margin-top: 24px;
}

.twr-quiz-result {
  margin-top: 32px;
  padding: 28px;
  border: 1px solid var(--twr-gold);
  border-radius: var(--twr-radius-lg);
  background: rgba(201,168,76,0.06);
  display: none;
}

.twr-quiz-result.twr-visible { display: block; }

.twr-quiz-result h4 {
  color: var(--twr-gold);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* ── Before/After ── */
.twr-ba-section {
  background: var(--twr-dark);
}

.twr-ba-container {
  max-width: 700px;
  margin: 0 auto;
}

.twr-ba-slider-wrap {
  position: relative;
  border-radius: var(--twr-radius-lg);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  border: 1px solid var(--twr-border);
}

.twr-ba-img-after {
  width: 100%;
  display: block;
  filter: saturate(0.3) brightness(0.65);
}

.twr-ba-img-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.twr-ba-img-before img {
  width: 200%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.95);
}

.twr-ba-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--twr-gold);
  z-index: 3;
}

.twr-ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--twr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.twr-ba-handle i { color: var(--twr-black); font-size: 0.85rem; }

.twr-ba-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
}

.twr-ba-labels span {
  font-family: var(--twr-font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--twr-text-muted);
}

/* ── Reviews ── */
.twr-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.twr-review-card {
  background: var(--twr-charcoal);
  border: 1px solid var(--twr-border);
  border-radius: var(--twr-radius-lg);
  padding: 32px;
  transition: border-color var(--twr-transition);
}

.twr-review-card:hover {
  border-color: rgba(201,168,76,0.35);
}

.twr-review-stars {
  color: var(--twr-gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.twr-review-text {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--twr-text);
  margin-bottom: 20px;
}

.twr-reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.twr-reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--twr-steel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--twr-font-display);
  font-size: 1.1rem;
  color: var(--twr-gold);
  flex-shrink: 0;
}

.twr-reviewer-name {
  font-family: var(--twr-font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--twr-white);
}

.twr-reviewer-location {
  font-size: 0.82rem;
  color: var(--twr-text-muted);
}

/* ── Team ── */
.twr-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.twr-team-card {
  text-align: center;
}

.twr-team-img-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
}

.twr-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--twr-border);
  filter: grayscale(0.3);
  transition: all var(--twr-transition);
}

.twr-team-card:hover .twr-team-img {
  border-color: var(--twr-gold);
  filter: grayscale(0);
}

.twr-team-card h4 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.twr-team-role {
  font-family: var(--twr-font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--twr-gold);
  margin-bottom: 12px;
}

.twr-team-bio {
  font-size: 0.92rem;
  color: var(--twr-text-muted);
  line-height: 1.65;
}

/* ── Articles ── */
.twr-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.twr-article-card {
  text-decoration: none;
  display: block;
  group: true;
}

.twr-article-img-wrap {
  overflow: hidden;
  border-radius: var(--twr-radius-lg);
  margin-bottom: 20px;
  aspect-ratio: 16/10;
}

.twr-article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.8);
  transition: all var(--twr-transition);
}

.twr-article-card:hover .twr-article-img {
  transform: scale(1.04);
  filter: saturate(0.9) brightness(0.9);
}

.twr-article-meta {
  font-family: var(--twr-font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--twr-text-muted);
  margin-bottom: 10px;
}

.twr-article-card h3 {
  font-size: 1.25rem;
  color: var(--twr-white);
  margin-bottom: 10px;
  transition: color var(--twr-transition);
}

.twr-article-card:hover h3 { color: var(--twr-gold); }

.twr-article-excerpt {
  font-size: 0.9rem;
  color: var(--twr-text-muted);
  line-height: 1.65;
}

/* ── FAQ ── */
.twr-faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.twr-faq-item {
  border-bottom: 1px solid var(--twr-border);
}

.twr-faq-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  color: var(--twr-white);
  font-family: var(--twr-font-display);
  font-size: 1.1rem;
  font-weight: 400;
  transition: color var(--twr-transition);
}

.twr-faq-trigger:hover { color: var(--twr-gold); }

.twr-faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--twr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--twr-transition);
  color: var(--twr-gold);
  font-size: 0.75rem;
}

.twr-faq-item.twr-open .twr-faq-icon {
  background: var(--twr-gold);
  color: var(--twr-black);
  border-color: var(--twr-gold);
  transform: rotate(45deg);
}

.twr-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.twr-faq-body-inner {
  padding: 0 0 22px;
  color: var(--twr-text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ── CTA Banner ── */
.twr-cta-section {
  background: var(--twr-charcoal);
  border-top: 1px solid var(--twr-border);
  border-bottom: 1px solid var(--twr-border);
  text-align: center;
  padding: 80px 0;
}

.twr-cta-section h2 { margin-bottom: 16px; }
.twr-cta-section p { color: var(--twr-text-muted); max-width: 520px; margin: 0 auto 36px; }

/* ── Footer ── */
.twr-footer {
  background: var(--twr-charcoal);
  border-top: 1px solid var(--twr-border);
  padding: 72px 0 0;
}

.twr-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.twr-footer-brand p {
  font-size: 0.9rem;
  color: var(--twr-text-muted);
  margin-top: 18px;
  line-height: 1.7;
}

.twr-footer-col h5 {
  font-family: var(--twr-font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--twr-gold);
  margin-bottom: 20px;
  font-weight: 600;
}

.twr-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.twr-footer-links a {
  font-size: 0.9rem;
  color: var(--twr-text-muted);
  transition: color var(--twr-transition);
}

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

.twr-footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--twr-text-muted);
}

.twr-footer-contact-item i {
  color: var(--twr-gold);
  margin-top: 3px;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.twr-footer-bottom {
  border-top: 1px solid var(--twr-border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.twr-footer-bottom p {
  font-size: 0.8rem;
  color: var(--twr-text-muted);
  margin: 0;
}

.twr-footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.twr-footer-legal a {
  font-size: 0.78rem;
  color: var(--twr-text-muted);
}

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

@media (max-width: 991px) {
  .twr-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 575px) {
  .twr-footer-grid { grid-template-columns: 1fr; }
  .twr-footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Interior Pages ── */
.twr-page-hero {
  padding: 140px 0 80px;
  background: var(--twr-dark);
  border-bottom: 1px solid var(--twr-border);
  position: relative;
  overflow: hidden;
}

.twr-page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 50%;
}

.twr-breadcrumb {
  font-family: var(--twr-font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--twr-text-muted);
  margin-bottom: 24px;
}

.twr-breadcrumb a { color: var(--twr-text-muted); }
.twr-breadcrumb a:hover { color: var(--twr-gold); }
.twr-breadcrumb span { color: var(--twr-gold); }

/* ── Forms ── */
.twr-form-group {
  margin-bottom: 24px;
}

.twr-form-label {
  display: block;
  font-family: var(--twr-font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--twr-silver);
  margin-bottom: 10px;
}

.twr-form-control {
  width: 100%;
  background: var(--twr-steel);
  border: 1px solid var(--twr-border);
  border-radius: var(--twr-radius);
  padding: 14px 18px;
  color: var(--twr-white);
  font-family: var(--twr-font-body);
  font-size: 1rem;
  transition: border-color var(--twr-transition);
  outline: none;
}

.twr-form-control:focus {
  border-color: var(--twr-gold);
}

.twr-form-control::placeholder { color: var(--twr-text-muted); }

textarea.twr-form-control { resize: vertical; min-height: 130px; }

select.twr-form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23c9a84c' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.twr-form-error {
  font-size: 0.8rem;
  color: #e05c5c;
  margin-top: 6px;
  display: none;
}

.twr-form-error.twr-show { display: block; }

/* ── Cookie Banner ── */
.twr-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(28,28,28,0.97);
  border-top: 1px solid var(--twr-border);
  backdrop-filter: blur(12px);
  z-index: 9999;
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.twr-cookie-banner.twr-visible { transform: translateY(0); }

.twr-cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.twr-cookie-text {
  font-size: 0.88rem;
  color: var(--twr-text-muted);
  flex: 1;
  min-width: 220px;
}

.twr-cookie-text a { color: var(--twr-gold); }

.twr-cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.twr-cookie-accept,
.twr-cookie-decline {
  font-family: var(--twr-font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid;
  cursor: pointer;
  transition: all var(--twr-transition);
}

.twr-cookie-accept {
  background: var(--twr-gold);
  border-color: var(--twr-gold);
  color: var(--twr-black);
}

.twr-cookie-accept:hover { background: var(--twr-gold-light); }

.twr-cookie-decline {
  background: transparent;
  border-color: var(--twr-border);
  color: var(--twr-text-muted);
}

.twr-cookie-decline:hover { border-color: var(--twr-silver); color: var(--twr-silver); }

/* ── Article Content ── */
.twr-article-content {
  max-width: 760px;
  margin: 0 auto;
}

.twr-article-content h2 {
  font-size: 2rem;
  margin: 48px 0 18px;
}

.twr-article-content h3 {
  font-size: 1.4rem;
  margin: 36px 0 14px;
}

.twr-article-content p { margin-bottom: 1.4rem; }

.twr-article-content ul,
.twr-article-content ol {
  margin: 0 0 1.4rem 1.5rem;
  color: var(--twr-text);
}

.twr-article-content li { margin-bottom: 8px; }

.twr-article-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--twr-radius-lg);
  margin-bottom: 48px;
  filter: saturate(0.8) brightness(0.85);
}

/* ── Map ── */
.twr-map-wrap {
  border-radius: var(--twr-radius-lg);
  overflow: hidden;
  border: 1px solid var(--twr-border);
  filter: grayscale(1) brightness(0.7) contrast(1.1);
  transition: filter var(--twr-transition);
}

.twr-map-wrap:hover { filter: grayscale(0.3) brightness(0.85) contrast(1.05); }

/* ── Captcha ── */
.twr-captcha-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--twr-steel);
  border: 1px solid var(--twr-border);
  border-radius: var(--twr-radius);
}

.twr-captcha-check {
  width: 22px;
  height: 22px;
  border: 2px solid var(--twr-border);
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--twr-transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.twr-captcha-check.twr-checked {
  background: var(--twr-gold);
  border-color: var(--twr-gold);
}

.twr-captcha-check.twr-checked::after {
  content: '✓';
  color: var(--twr-black);
  font-size: 0.8rem;
  font-weight: bold;
}

.twr-captcha-label {
  font-size: 0.88rem;
  color: var(--twr-text-muted);
}

/* ── Thank You ── */
.twr-thankyou {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.twr-thankyou-icon {
  width: 80px;
  height: 80px;
  border: 1px solid var(--twr-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 1.8rem;
  color: var(--twr-gold);
}

/* ── Legal Content ── */
.twr-legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.twr-legal-content h2 { font-size: 1.8rem; margin: 48px 0 14px; }
.twr-legal-content h3 { font-size: 1.3rem; margin: 32px 0 12px; }
.twr-legal-content p { color: var(--twr-text-muted); }
.twr-legal-content ul { margin: 0 0 1.4rem 1.5rem; color: var(--twr-text-muted); }
.twr-legal-content li { margin-bottom: 8px; }

/* ── Service Detail ── */
.twr-service-detail p { font-size: 1.05rem; line-height: 1.85; }
.twr-service-detail h3 { margin: 40px 0 16px; }

.twr-service-process {
  background: var(--twr-charcoal);
  border-radius: var(--twr-radius-lg);
  padding: 40px;
  border: 1px solid var(--twr-border);
  margin: 40px 0;
}

.twr-process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.twr-process-step:last-child { margin-bottom: 0; }

.twr-process-num {
  font-family: var(--twr-font-display);
  font-size: 2rem;
  color: var(--twr-gold);
  line-height: 1;
  min-width: 36px;
}

.twr-process-body h5 { font-size: 1.1rem; margin-bottom: 4px; }
.twr-process-body p { color: var(--twr-text-muted); font-size: 0.9rem; margin: 0; }

/* ── Responsive ── */
@media (max-width: 767px) {
  .twr-section { padding: 60px 0; }
  .twr-hero-actions { flex-direction: column; align-items: flex-start; }
  .twr-timeline::before { left: 24px; }
  .twr-timeline-marker { width: 48px; height: 48px; }
  .twr-timeline-item { gap: 24px; }
}
.logo{
  max-width: 200px;
  object-fit: contain;
}
html{
  overflow-x: hidden;
}

.twr-nav-cta{
  color: #fff!important;
}