:root {
  --ink:          #0e0a04;
  --gold:         #b8860b;
  --gold-light:   #d4a843;
  --gold-pale:    #f5ecd4;
  --persian:      #6b1a3a;   /* Persian rose */
  --persian-mid:  #9a2850;
  --persian-light:#c85078;
  --persian-pale: #fdf0f5;
  --lapis:        #1a3a6b;   /* Lapis lazuli blue */
  --lapis-mid:    #2a5aab;
  --lapis-pale:   #edf2fc;
  --turquoise:    #0a7a7a;   /* Persian turquoise */
  --turq-pale:    #e8faf9;
  --sand:         #c8a96a;
  --sand-pale:    #faf5e8;
  --cream:        #f9f6f0;
  --warm-gray:    #5a5040;
  --border:       #e0d5c0;
  --white:        #ffffff;
}

/* ─── HERO ─── */
.tr-hero {
  min-height: 100vh; background: var(--ink);
  position: relative; display: flex; align-items: center; overflow: hidden; padding-top: 48px;
}

/* Persian tile mosaic overlay */
.tr-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 80% 35%, rgba(107,26,58,0.4) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 5% 75%, rgba(26,58,107,0.3) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 45% 0%, rgba(184,134,11,0.12) 0%, transparent 50%);
}

/* Arabesque pattern */
.arabesque {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8860b' fill-opacity='0.04'%3E%3Cpath d='M40 0C18 0 0 18 0 40s18 40 40 40 40-18 40-40S62 0 40 0zm0 4c19.9 0 36 16.1 36 36S59.9 76 40 76 4 59.9 4 40 20.1 4 40 4zm0 8c-15.5 0-28 12.5-28 28s12.5 28 28 28 28-12.5 28-28-12.5-28-28-28z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.hero-bg-text {
  position: absolute; right: 2%; top: 50%; transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(100px, 13vw, 200px); font-weight: 700; font-style: italic;
  color: rgba(107,26,58,0.08); line-height: 1.1;
  pointer-events: none; user-select: none;
  letter-spacing: -0.02em;
}

.tr-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 80px 48px;
  display: grid; grid-template-columns: 1fr 460px; gap: 80px; align-items: center; width: 100%;
}

.sector-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(184,134,11,0.1); border: 1px solid rgba(184,134,11,0.3);
  padding: 7px 18px 7px 12px; margin-bottom: 28px;
}
.badge-star {
  color: var(--gold-light); font-size: 16px; line-height: 1;
  animation: rotate-star 8s linear infinite;
}
@keyframes rotate-star { 0%{transform:rotate(0deg)} 100%{transform:rotate(360deg)} }
.sector-badge span { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; color: var(--gold-light); text-transform: uppercase; }

.tr-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4.2vw, 54px); font-weight: 400;
  color: var(--white); line-height: 1.4; letter-spacing: 0.01em; margin-bottom: 20px;
}
.tr-hero-title em { font-style: italic; }
.tr-hero-title strong {
  display: block; font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--persian-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.tr-hero-lead {
  font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.58); margin-bottom: 40px; max-width: 520px;
}
.tr-hero-lead strong { color: rgba(255,255,255,0.92); font-weight: 700; }

.tr-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-persian {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; background: var(--persian-mid); color: var(--white);
  font-family: 'Noto Sans JP', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.05em; text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-persian:hover { background: var(--persian-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(107,26,58,0.4); }

/* KPI */
.tr-kpi-panel {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(184,134,11,0.2);
  margin-top: 56px; border: 1px solid rgba(184,134,11,0.2);
}
.kpi-cell { background: rgba(255,255,255,0.03); padding: 22px 18px; text-align: center; transition: background 0.25s; }
.kpi-cell:hover { background: rgba(184,134,11,0.08); }
.kpi-val { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: 6px; }
.kpi-label { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; }

/* Hero visual */
.tr-hero-visual { position: relative; }
.tr-hero-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  filter: brightness(0.6) saturate(0.75);
  border: 1px solid rgba(184,134,11,0.2);
}
.tr-hero-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(107,26,58,0.5) 0%, rgba(26,58,107,0.3) 100%);
  border: 1px solid rgba(184,134,11,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 80px;
}

/* Destination tags */
.dest-tags {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--ink); border: 1px solid rgba(184,134,11,0.4);
  padding: 18px 22px; min-width: 160px;
}
.dest-tag {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: rgba(255,255,255,0.65); margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.dest-tag:last-child { margin-bottom: 0; }
.dest-tag::before { content: '★'; color: var(--gold); font-size: 10px; }

50%{opacity:1} }

/* ─── SNAPSHOT ─── */
.snapshot-strip {
  background: var(--lapis); padding: 72px 48px; position: relative; overflow: hidden;
}
.snapshot-strip::before {
  content: '?'; position: absolute; right: 60px; bottom: -40px;
  font-size: 280px; color: rgba(255,255,255,0.03); pointer-events: none; user-select: none;
  font-family: 'Playfair Display', serif;
}
.snapshot-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.1); position: relative; z-index: 1; }
.snap-item { background: rgba(26,58,107,0.3); padding: 40px 36px; transition: background 0.25s; }
.snap-item:hover { background: rgba(42,90,171,0.4); }
.snap-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.snap-item h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.snap-item p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.8; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #3d5468;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: #3d5468;
  flex-shrink: 0;
}

.tr-h2 strong { color: var(--persian); }

/* ─── DESTINATIONS (OPP CARDS) ─── */
.dest-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border); }
.dest-card {
  background: var(--white); padding: 44px 40px;
  position: relative; overflow: hidden; transition: all 0.3s ease;
}
.dest-card:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(107,26,58,0.08); }
.dest-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--persian-mid), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.dest-card:hover::before { transform: scaleX(1); }
.dest-num { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 700; color: rgba(107,26,58,0.07); line-height: 1; margin-bottom: 8px; font-style: italic; }
.dest-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.dest-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.dest-list li { font-size: 13px; color: var(--warm-gray); padding-left: 18px; position: relative; line-height: 1.7; }
.dest-list li::before { content: '?'; position: absolute; left: 0; color: var(--gold); font-size: 8px; top: 5px; }

/* ─── HERITAGE SECTION ─── */
.heritage-section {
  background: var(--ink); padding: 96px 48px; position: relative; overflow: hidden;
}
.heritage-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 80% 30%, rgba(107,26,58,0.25) 0%, transparent 55%),
              radial-gradient(ellipse 50% 50% at 10% 80%, rgba(26,58,107,0.2) 0%, transparent 50%);
}
.heritage-section .arabesque { opacity: 0.5; }
.heritage-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

.heritage-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 40px); font-weight: 400; font-style: italic;
  color: var(--white); line-height: 1.7;
  border-left: 2px solid var(--gold); padding-left: 32px;
  margin-bottom: 64px; max-width: 700px;
}
.heritage-quote strong { font-style: normal; font-weight: 700; color: var(--gold-light); }

/* Journey stages */
.journey-stages {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.06); margin-bottom: 64px;
}
.journey-stage {
  background: rgba(255,255,255,0.03); padding: 36px 28px;
  text-align: center; transition: all 0.3s ease; position: relative;
}
.journey-stage:hover { background: rgba(184,134,11,0.08); }
.journey-stage::after {
  content: ''; position: absolute; bottom: 0; left: 10%; right: 10%; height: 1px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.4s ease;
}
.journey-stage:hover::after { transform: scaleX(1); }
.stage-num {
  font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; font-style: italic;
  color: rgba(184,134,11,0.2); line-height: 1; margin-bottom: 12px;
}
.journey-stage h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; letter-spacing: 0.05em; }
.journey-stage p { font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.7; }

.heritage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.heritage-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(184,134,11,0.12);
  padding: 32px 28px; transition: all 0.3s ease;
}
.heritage-card:hover { border-color: rgba(184,134,11,0.4); background: rgba(184,134,11,0.06); }
.heritage-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.heritage-card h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.heritage-card p { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.8; }

/* ─── RISK ─── */
.risk-section { background: var(--persian-pale); padding: 96px 48px; }
.risk-inner { max-width: 1200px; margin: 0 auto; }

.risk-notice {
  margin-top: 32px; background: var(--white);
  border: 1px solid rgba(107,26,58,0.15); border-left: 3px solid var(--persian-mid); padding: 20px 24px;
}

.risk-notice strong { color: var(--persian); }

/* ─── SUPPORT ─── */
.support-section { background: var(--cream); padding: 96px 48px; }
.support-inner { max-width: 1200px; margin: 0 auto; }

.support-step:hover 

.step-duration { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: var(--persian-mid); background: var(--persian-pale); padding: 3px 10px; margin-bottom: 12px; }

/* ─── REPORT ─── */
.report-section {
  background: linear-gradient(135deg, var(--persian) 0%, #1a0410 50%, var(--lapis) 100%);
  padding: 96px 48px; position: relative; overflow: hidden;
}
.report-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8860b' fill-opacity='0.04'%3E%3Cpath d='M30 0L0 30l30 30 30-30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.report-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

/* ─── CONTACT ─── */
.contact-section { background: var(--white); padding: 96px 48px; }
.contact-inner { max-width: 1200px; margin: 0 auto; }

.contact-callout { background: var(--ink); padding: 24px 28px; position: relative; overflow: hidden; }
.contact-callout::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold); }
.contact-callout strong { display: block; font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700; color: var(--gold-light); margin-bottom: 8px; }

.contact-form-box { background: var(--sand-pale); border: 1px solid var(--border); padding: 48px 44px; }

.form-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--persian-mid); text-transform: uppercase; margin-bottom: 8px; }
.form-input { width: 100%; padding: 14px 16px; border: 1px solid var(--border); background: var(--white); font-family: 'Noto Sans JP', sans-serif; font-size: 14px; color: var(--ink); outline: none; transition: border-color 0.2s ease; }
.form-input:focus { border-color: var(--persian-mid); background: var(--white); box-shadow: 0 0 0 3px rgba(107,26,58,0.06); }

/* ─── FOOTER ─── */
.tr-footer-strip {
  background: var(--ink); padding: 32px 48px; text-align: center;
  border-top: 1px solid rgba(184,134,11,0.15);
}
.tr-footer-strip .footer-ornament {
  font-family: 'Playfair Display', serif; font-size: 20px;
  color: rgba(184,134,11,0.3); margin-bottom: 12px; letter-spacing: 0.3em;
}
.tr-footer-strip p { font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 0.05em; }

/* ─── GOLD DIVIDER ─── */
.ornament-divider {
  text-align: center; padding: 20px; background: var(--ink);
  font-size: 16px; color: rgba(184,134,11,0.3); letter-spacing: 0.4em;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .tr-hero-inner { grid-template-columns: 1fr; padding: 80px 24px 60px; gap: 40px; }
  .tr-hero-visual { display: none; }
  .snapshot-inner, .heritage-grid, 
  .journey-stages { grid-template-columns: repeat(2, 1fr); }
  
  
  .dest-grid { grid-template-columns: 1fr; }
  
  
  .snapshot-strip, .heritage-section, .risk-section, .support-section, .report-section, .contact-section { padding: 60px 24px; }
  
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.risk-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--purple-mid);
  padding: 32px 28px;
}
.risk-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 12px 0 10px;
}
.risk-card p {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.8;
}
.risk-icon {
  font-size: 28px;
  display: block;
}
.risk-notice p {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.8;
  margin: 0;
}

.hearing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.hearing-list li {
  padding: 12px 0 12px 24px;
  position: relative;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  line-height: 1.7;
}
.hearing-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--amber);
  font-weight: 700;
}