*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  height: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-off-white);
  color: var(--color-dark);
  padding-top: 80px;
  padding-bottom: 42px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 1px solid #E8DFD0;
  height: 80px;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--color-white);
  letter-spacing: 1px;
  white-space: nowrap;
}

.header-logo a { text-decoration: none; }

.header-nav {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

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

.nav-menu li a {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1a2744;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-menu li a:hover {
  color: var(--color-teal-primary);
}

.nav-menu li + li::before {
  content: '·';
  color: #1a2744;
  margin-right: 2rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: 1.5rem;
}

.lang-switcher {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 3px;
  color: #1a2744;
  text-decoration: none;
  border: none;
  padding: 0;
  transition: color 0.2s;
}

.lang-switcher:hover {
  color: var(--color-teal-primary);
}

.btn-login {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1a2744;
  background: transparent;
  padding: 0;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-login:hover {
  color: var(--color-teal-primary);
}

.btn-account {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1a2744;
  background: transparent;
  padding: 0;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-account:hover {
  color: var(--color-teal-primary);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a2744;
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .lang-switcher { display: none; }
}

.header-logo .custom-logo-link img,
.header-logo .custom-logo {
  height: 72px;
  width: auto;
  display: block;
}

.wow-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  overflow: hidden;
  background: var(--color-teal-dark);
}

.wow-canvas-wrap {
  position: absolute;
  inset: 0;
}

#wow-kaleidoscope {
  width: 100%;
  height: 100%;
  display: block;
}

.wow-overlay-text {
  position: absolute;
  bottom: 80px;
  right: 0;
  z-index: 10;
}

.wow-title {
  background: var(--color-teal-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-style: italic;
  font-size: 2.8rem;
  padding: 18px 32px;
  line-height: 1.1;
}

.wow-subtitle {
  background: var(--color-teal-dark);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 32px;
  text-align: center;
  border-top: 1px solid var(--color-mustard);
}

.wow-strip {
  width: 100%;
}

.wow-strip-top {
  background: var(--color-teal-primary);
  padding: 14px 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wow-strip-text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
  color: var(--color-white);
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

.wow-strip-sep {
  background: var(--color-mustard);
  height: 1px;
}

.wow-strip-bottom {
  background: var(--color-teal-dark);
  padding: 14px 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
}

.wow-strip-cta {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
}

.wow-strip-cta:hover {
  color: var(--color-mustard);
}

.wow-tagline {
  background: var(--color-teal-dark);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 32px;
  text-align: center;
}

.wow-test-section {
  background: #ffffff;
  padding: 4rem;
}

.wow-test-header {
  margin-bottom: 2.5rem;
  padding-left: 0;
  border-left: none;
  margin-top: 0;
}

.wow-test-title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-left: 3.5rem;
}

.wow-test-title-wrap svg {
  width: 44px;
  height: 44px;
  min-width: 44px;
}

.wow-test-title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  letter-spacing: 2px;
  color: #1a2744;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.wow-test-subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--color-stone);
}

.wow-test-body {
  display: grid;
  grid-template-columns: 360px 1fr 260px;
  gap: 1rem;
  align-items: center;
}

.wow-test-left {
  padding-left: 0;
  padding-top: 2rem;
}

.wow-test-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
  white-space: nowrap;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #1a2744;
  font-weight: bold;
  min-width: 30px;
}

.wow-test-step h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a2744;
  margin-bottom: 6px;
  white-space: nowrap;
}

.wow-test-step p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--color-stone);
}

.wow-thankyou {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1a2744;
  margin: 2rem 0 1.5rem;
}

.wow-test-logo img {
  height: 64px;
  width: auto;
}

.wow-test-center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 12rem;
}

.wow-test-center svg {
  max-width: 90%;
  width: 90%;
}

.interests-box {
  border: 1px solid #1a2744;
  padding: 1.5rem;
  width: 100%;
}

.wow-test-right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.wow-test-right h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1a2744;
  margin-bottom: 1.2rem;
  text-align: center;
  font-weight: bold;
}

.interests-list {
  list-style: decimal;
  padding-left: 1.2rem;
}

.interests-list li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #1a2744;
  padding: 6px 0;
  border-bottom: 0.5px solid var(--color-sand);
}

#main-content {
  flex: 1 0 auto;
}

.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--color-teal-dark) !important;
  padding: 1.2rem 2rem !important;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
}

.footer-brand {
  color: var(--color-white);
}

.footer-label {
  color: var(--color-white);
}

.footer-dot {
  color: var(--color-mustard);
}

.footer-link {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--color-mustard);
}

.who-page {
  max-width: 100%;
  margin: 0;
  padding: 1.5rem 4rem 2rem;
  background: #0D1F3C;
  min-height: calc(100vh - 80px - 42px);
  display: flex;
  flex-direction: column;
}

.who-hero-title {
  margin-bottom: 2rem;
}

.who-hero-title h1 {
  font-family: var(--font-body);
  font-size: 2rem;
  color: var(--color-off-white);
  font-weight: normal;
  margin-bottom: 1rem;
}

.who-hero-title em {
  font-style: italic;
}

.who-hero-line {
  height: 1px;
  background: var(--color-mustard);
  width: 100%;
}

.who-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.who-left {
  display: flex;
  flex-direction: column;
}

.who-founder-header {
  background: var(--color-mustard);
  color: var(--color-teal-dark);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 10px 20px;
  text-align: center;
  font-weight: bold;
}

.who-founder-body {
  border: 1px solid var(--color-mustard);
  padding: 1rem;
  background: #0D1F3C;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.who-founder-top {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.who-photo img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 220px;
  object-fit: cover;
}

.who-bio p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-off-white);
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.who-quote {
  color: var(--color-mustard) !important;
  font-style: italic;
  font-size: 1rem !important;
}

.who-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.who-timeline-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-off-white);
}

.who-year {
  background: var(--color-mustard);
  color: #0D1F3C;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 11px 18px;
  min-width: 78px;
  text-align: center;
  font-weight: bold;
}

.who-right {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.who-box {
  background: #0D1F3C;
  border: 1px solid #00858F;
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: stretch;
  flex: 1;
  gap: 0;
}

.who-box-icon {
  font-size: 1.8rem;
  color: #ffffff;
  text-align: center;
  background: #00858F;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

.who-box-content {
  padding: 1rem 1.2rem;
}

.who-box-content h3 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--color-mustard);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.who-box-content p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
}

.why-page {
  background: #003E46;
  min-height: calc(100vh - 80px - 42px);
  padding: 1.5rem 4rem 2rem;
  display: flex;
  flex-direction: column;
}

.why-hero-title {
  margin-bottom: 2rem;
}

.why-hero-title h1 {
  font-family: var(--font-body);
  font-size: 2rem;
  color: var(--color-off-white);
  font-weight: normal;
  margin-bottom: 1rem;
  font-style: italic;
}

.why-hero-line {
  height: 1px;
  background: var(--color-mustard);
  width: 100%;
}

.why-opening {
  background: #0D1F3C;
  border: 1px solid var(--color-mustard);
  padding: 1.2rem 2rem;
  text-align: center;
  margin-bottom: 0.8rem;
}

.why-opening-text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--color-mustard);
}

.why-opening-symbol {
  display: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.why-box {
  background: #0D1F3C;
  border: 1px solid var(--color-mustard);
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: stretch;
  gap: 0;
  min-height: 0;
}

.why-box-icon {
  font-size: 1.5rem;
  color: #0D1F3C;
  background: var(--color-mustard);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-box-content {
  padding: 1.2rem 1.2rem;
}

.why-box-content h3 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--color-mustard);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.why-box-content p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-off-white);
  line-height: 1.6;
}

.why-closing {
  background: var(--color-mustard);
  padding: 0.8rem 2rem;
  text-align: center;
}

.why-closing p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: #003E46;
}

.where-page {
  background: #0D1F3C;
  min-height: calc(100vh - 80px - 42px);
  padding: 2rem 4rem 2rem;
  display: flex;
  flex-direction: column;
}

.where-hero-title {
  margin-bottom: 2rem;
}

.where-hero-title h1 {
  font-family: var(--font-body);
  font-size: 2rem;
  color: var(--color-off-white);
  font-weight: normal;
  font-style: italic;
  margin-bottom: 1rem;
}

.where-hero-line {
  height: 1px;
  background: var(--color-mustard);
  width: 100%;
}

.where-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
}

.where-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
}

.where-intro-title {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--color-mustard);
  margin-bottom: 0.8rem;
}

.where-intro-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-off-white);
  line-height: 1.7;
  margin-bottom: 0;
}

.where-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  padding-top: 1rem;
}

.where-stat-box {
  border: 1px solid var(--color-mustard);
  padding: 0;
  overflow: hidden;
}

.where-stat-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0D1F3C;
  background: var(--color-mustard);
  margin-bottom: 0;
  text-align: center;
  padding: 0.6rem 0.8rem;
  border-bottom: none;
  font-weight: bold;
}

.where-stat-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-off-white);
  line-height: 1.6;
  text-align: center;
  padding: 0.8rem;
}

.where-right {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.where-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.where-card {
  background: #003E46;
  border: 1px solid var(--color-mustard);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0;
  min-height: 130px;
}

.where-card-custom {
  background: #3B2A1A;
}

.where-card-num {
  background: var(--color-mustard);
  color: #0D1F3C;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
}

.where-card-content {
  padding: 1rem;
}

.where-card-content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-off-white);
  margin-bottom: 0.4rem;
  font-weight: normal;
}

.where-card-content p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-teal-pale);
  margin-bottom: 0.8rem;
}

.where-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.where-tag {
  background: var(--color-teal-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
}

.where-discover {
  background: var(--color-mustard);
  color: #0D1F3C;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  text-decoration: none;
  transition: background 0.2s;
}

.where-discover:hover {
  background: var(--color-white);
}

.where-filters {
  background: var(--color-teal-primary);
  padding: 0.6rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  grid-column: 1 / -1;
  margin-top: auto;
}

.where-filters-sep {
  color: var(--color-mustard);
  font-size: 1rem;
}

.what-page {
  background: #0D1F3C;
  min-height: calc(100vh - 80px - 42px);
  padding: 1.5rem 4rem 2rem;
  display: flex;
  flex-direction: column;
}

.what-hero-title {
  margin-bottom: 2rem;
}

.what-hero-title h1 {
  font-family: var(--font-body);
  font-size: 2.6rem;
  color: var(--color-off-white);
  font-weight: normal;
  font-style: italic;
  margin-bottom: 1rem;
}

.what-hero-line {
  height: 2px;
  background: var(--color-mustard);
  width: 100%;
}

.what-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  border: none;
  margin-bottom: 1.5rem;
}

.what-section-label {
  font-family: var(--font-heading);
  font-weight: bold;
  font-size: 0.875rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-mustard);
  margin-bottom: 1.2rem;
  padding-bottom: 0;
  border-bottom: none;
}

.what-left {
  padding: 1.5rem;
  border: 1px solid #00858F;
  background: #003E46;
}

.what-left p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--color-off-white);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.what-closing-quote {
  color: var(--color-mustard) !important;
  font-size: 1.2rem !important;
  font-style: italic;
}

.what-center {
  padding: 0;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.what-center-top {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: 1px solid var(--color-mustard);
  padding: 1rem;
  background: #0A1628;
}

.what-center-header {
  font-family: var(--font-heading);
  font-weight: bold;
  font-size: 0.875rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-mustard);
  text-align: center;
  margin-bottom: 0.5rem;
}

.what-section-label.center-label {
  background: #0D1F3C;
  color: var(--color-mustard);
  padding: 0;
  margin: 0 0 1rem 0;
  border-bottom: 2px solid var(--color-mustard);
  text-align: center;
}

.what-engine-box {
  background: #003E46;
  border: 1px solid var(--color-teal-mid);
  padding: 1rem;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--color-off-white);
  text-transform: uppercase;
}

.what-engine-box span {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-teal-pale);
  margin-top: 6px;
}

.what-engine-arrow {
  text-align: center;
  color: var(--color-mustard);
  font-size: 0.7rem;
  line-height: 0.5;
}

.what-engine-highlight {
  background: var(--color-mustard);
  color: #0D1F3C;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 1rem;
  text-align: center;
  font-weight: bold;
}

.what-serendipity {
  border: 1px solid var(--color-mustard);
  padding: 1rem;
  background: #0A1628;
}

.what-serendipity-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 2px;
  color: var(--color-mustard);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.what-serendipity p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-off-white);
  font-style: italic;
  line-height: 1.7;
}

.what-reviews {
  border: 1px solid #00858F;
  padding: 1rem;
  background: #003E46;
  flex: 1;
}

.what-reviews-title {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--color-mustard);
  margin-bottom: 0.6rem;
  font-style: italic;
}

.what-reviews p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-off-white);
}

.what-right {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border: 1px solid #00858F;
  background: #0A1628;
}

.what-right .what-section-label {
  font-size: 1rem;
  letter-spacing: 3px;
}

.what-hub-box {
  background: #003E46;
  border: 1px solid var(--color-teal-mid);
  padding: 1rem;
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.what-hub-box p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-off-white);
  line-height: 1.6;
}

.what-hub-premium {
  background: #003E46;
  opacity: 0.7;
}

.what-hub-filters {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: var(--color-teal-pale);
  text-align: center;
  text-transform: uppercase;
  padding-top: 0.5rem;
}

.why-tmi-section {
  background: #0D1F3C;
  padding: 2rem 4rem;
}

.why-tmi-hero-title {
  margin-bottom: 0;
}

.why-tmi-hero-title h1 {
  font-family: var(--font-body);
  font-size: 2rem;
  color: var(--color-off-white);
  font-weight: normal;
  font-style: italic;
  margin-bottom: 1rem;
}

.why-tmi-hero-line {
  height: 1px;
  background: var(--color-mustard);
  width: 100%;
}

.why-tmi-unified {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0.8rem;
  padding-top: 1.5rem;
  align-items: start;
}

.why-tmi-span2 {
  grid-column: span 2;
  margin-bottom: 0;
}

.why-tmi-unified .where-stat-box {
  min-height: 130px;
  display: flex;
  flex-direction: column;
}

.faq-wrap {
  display: flex;
  min-height: calc(100vh - 80px - 42px);
  background: #ffffff;
}

.faq-content {
  flex: 0 0 50%;
  padding: 3rem 4rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.faq-image {
  flex: 0 0 50%;
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px - 42px);
  overflow: hidden;
}

.faq-image img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.faq-title {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 4rem;
  color: #0A0A0A;
  font-weight: normal;
  line-height: 1.1;
  margin-bottom: 2.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--color-mustard);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a2744;
  text-align: left;
  gap: 1rem;
}

.faq-question[aria-expanded="true"] {
  color: var(--color-mustard);
}

.faq-icon {
  font-size: 1.4rem;
  font-family: serif;
  color: var(--color-mustard);
  flex-shrink: 0;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-stone);
  font-style: italic;
  line-height: 1.8;
  padding-bottom: 1.2rem;
}

.photo-strip {
  background: #ffffff;
  display: flex;
  align-items: stretch;
  width: 100%;
}

.photo-strip-left {
  flex: 0 0 20%;
  max-width: 20%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-strip-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-strip-right {
  flex: 1;
  background: #ffffff;
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.5rem;
}

.photo-strip-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-box {
  flex: 0 0 220px;
  border: 1px solid var(--color-mustard);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-content: center;
}

.contact-sep {
  height: 1px;
  background: var(--color-mustard);
  margin: 0.7rem 0;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-item-cta {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a2744;
  font-weight: bold;
  text-align: center;
}

.contact-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-mustard);
  font-weight: bold;
}

.contact-value {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #1a2744;
  line-height: 1.4;
}

.photo-strip-title {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 4rem;
  color: #0A0A0A;
  font-weight: normal;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.photo-strip-subtitle {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0A0A0A;
  margin-bottom: 1.2rem;
}

.photo-strip-text {
  font-family: var(--font-body);
  font-size: 1.6rem;
  color: var(--color-stone);
  font-style: italic;
  line-height: 1.7;
}

/* ── CONTACTS PAGE ──────────────────────────────────────── */
.contacts-page {
  background: #0D1F3C;
  min-height: calc(100vh - 80px - 42px);
  padding: 1.5rem 4rem 2rem;
  display: flex;
  flex-direction: column;
}
.contacts-hero-title { margin-bottom: 2rem; }
.contacts-hero-title h1 {
  font-family: var(--font-body);
  font-size: 2rem;
  color: var(--color-off-white);
  font-weight: normal;
  margin-bottom: 1rem;
}
.contacts-hero-title em { font-style: italic; }
.contacts-hero-line { height: 1px; background: var(--color-mustard); width: 100%; }

.contacts-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  flex: 1;
}

/* Form */
.contacts-left { display: flex; flex-direction: column; gap: 0.8rem; }
.contacts-form-header {
  background: var(--color-mustard);
  color: var(--color-teal-dark);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 10px 20px;
  text-align: center;
  font-weight: bold;
}
.contacts-form-body {
  border: 1px solid var(--color-mustard);
  padding: 1.5rem 1.8rem;
  background: #0D1F3C;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-mustard);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: #0A1628;
  border: 1px solid var(--color-teal-mid);
  color: var(--color-off-white);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-teal-pale);
  font-style: italic;
  opacity: 0.6;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--color-mustard); }
.form-group select {
  cursor: pointer;
  color: var(--color-teal-pale);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8952A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group select option { background: #0D1F3C; color: var(--color-off-white); }
.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.form-interests { display: flex; flex-direction: column; gap: 0.4rem; }
.form-interests-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-mustard);
}
.interests-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.interest-tag {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--color-teal-mid);
  color: var(--color-teal-pale);
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
}
.interest-tag:hover,
.interest-tag.selected {
  background: var(--color-mustard);
  border-color: var(--color-mustard);
  color: #0D1F3C;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--color-teal-mid);
}
.form-privacy {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-teal-pale);
  font-style: italic;
  line-height: 1.5;
}
.form-privacy a { color: var(--color-mustard); text-decoration: none; }
.btn-submit {
  background: var(--color-mustard);
  color: #0D1F3C;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-submit:hover { background: var(--color-white); color: #0D1F3C; }

/* Info */
.contacts-right { display: flex; flex-direction: column; gap: 0.8rem; }
.contacts-cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.cta-block {
  border: 1px solid var(--color-mustard);
  background: #0A1628;
  padding: 1.5rem 1.2rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}
.cta-block:hover { background: #003E46; }
.cta-block-symbol { font-size: 1.4rem; color: var(--color-mustard); }
.cta-block-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-mustard);
}
.cta-block-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-teal-pale);
  font-style: italic;
}

.contacts-info-header {
  background: var(--color-teal-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 10px 20px;
  text-align: center;
}
.contacts-info-body {
  border: 1px solid var(--color-teal-mid);
  background: #003E46;
  display: flex;
  flex-direction: column;
}
.info-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--color-teal-mid);
}
.info-item:last-child { border-bottom: none; }
.info-icon {
  background: var(--color-teal-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-white);
  padding: 1rem 0;
}
.info-content { padding: 1rem 1.2rem; }
.info-label {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-mustard);
  margin-bottom: 0.3rem;
}
.info-value {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-off-white);
  line-height: 1.5;
}
.info-value a { color: var(--color-off-white); text-decoration: none; transition: color 0.2s; }
.info-value a:hover { color: var(--color-mustard); }

.contacts-map {
  border: 1px solid var(--color-teal-mid);
  overflow: hidden;
  flex: 1;
  min-height: 180px;
  background: #001a20;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: repeating-linear-gradient(45deg, #001a20, #001a20 12px, #002a32 12px, #002a32 24px);
}
.map-pin { font-size: 2rem; color: var(--color-mustard); }
.map-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-teal-pale);
  text-align: center;
}
.map-address {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-off-white);
  font-style: italic;
  text-align: center;
}

/* Responsive */
@media (max-width: 1200px) {
  .contacts-page { padding: 1.5rem 2rem 2rem; }
}
@media (max-width: 900px) {
  .contacts-body { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contacts-page { padding: 1.5rem 1rem 2rem; }
  .contacts-hero-title h1 { font-size: 1.5rem; }
}

/* ---------------------------------------------------------------
 * RESPONSIVE – tablet ≤ 1200px
 * ------------------------------------------------------------- */
@media (max-width: 1440px) {
  /* Header nav */
  .nav-menu { gap: 0.8rem; }
  .nav-menu li a { font-size: 0.8rem; letter-spacing: 1.5px; }
  .nav-menu li + li::before { margin-right: 1rem; }
  .header-actions { gap: 0.8rem; margin-left: 0.8rem; }
  .lang-switcher { font-size: 0.8rem; letter-spacing: 1.5px; }
  .header-inner { gap: 1rem; padding: 0 1.2rem; }

  /* WHAT page */
  .what-hero-title h1 { font-size: 1.8rem; }
  .what-page { padding: 1.2rem 2rem 2rem; }

  /* WOW test section */
  .wow-test-section { padding: 2.5rem 2rem; }
  .wow-test-body { grid-template-columns: 280px 1fr 220px; }
  .wow-test-center { padding-left: 4rem; }
  .wow-test-title { font-size: 1.4rem; }
  .wow-test-subtitle { font-size: 1rem; }
  .step-num { font-size: 1.2rem; }
  .wow-test-step h3 { font-size: 1rem; }
  .wow-test-step p { font-size: 0.95rem; }
  .wow-test-title-wrap { padding-left: 1rem; }
}

@media (max-width: 1200px) {
  .why-tmi-unified {
    grid-template-columns: 1fr 1fr;
  }
  .why-tmi-span2 {
    grid-column: span 2;
  }
  .why-tmi-section { padding: 2rem 2rem; }

  /* Riordino: titolo sx + 6 stat-box, poi titolo dx + 6 card */
  .why-tmi-unified > :nth-child(1)  { order: 1; }   /* "Access inherited" title */
  .why-tmi-unified > :nth-child(3)  { order: 2; }   /* stat 30-Year */
  .why-tmi-unified > :nth-child(4)  { order: 3; }   /* stat 130+ */
  .why-tmi-unified > :nth-child(7)  { order: 4; }   /* stat Thousands */
  .why-tmi-unified > :nth-child(8)  { order: 5; }   /* stat Hundreds */
  .why-tmi-unified > :nth-child(11) { order: 6; }   /* stat Historic */
  .why-tmi-unified > :nth-child(12) { order: 7; }   /* stat Serendipity */
  .why-tmi-unified > :nth-child(2)  { order: 8; }   /* "Italy, where else?" title */
  .why-tmi-unified > :nth-child(5)  { order: 9; }   /* card 01 */
  .why-tmi-unified > :nth-child(6)  { order: 10; }  /* card 02 */
  .why-tmi-unified > :nth-child(9)  { order: 11; }  /* card 03 */
  .why-tmi-unified > :nth-child(10) { order: 12; }  /* card 04 */
  .why-tmi-unified > :nth-child(13) { order: 13; }  /* card 05 */
  .why-tmi-unified > :nth-child(14) { order: 14; }  /* card 06 */
}

/* ---------------------------------------------------------------
 * RESPONSIVE – mobile ≤ 768px
 * ------------------------------------------------------------- */
@media (max-width: 768px) {

  body { padding-top: 70px; }
  .site-header { height: 70px; }
  .header-inner { padding: 0 1rem; gap: 0.5rem; }
  .header-logo .custom-logo-link img,
  .header-logo .custom-logo { height: 44px; }
  .header-nav { display: none !important; }
  .header-actions .lang-switcher { display: none; }
  .hamburger { display: flex !important; }

  .wow-hero {
    width: 100vw;
    height: 100vw;
    max-height: 500px;
  }

  .wow-overlay-text {
    bottom: 60px;
    right: 0;
    left: 0;
  }

  .wow-title { font-size: 1.4rem; padding: 10px 14px; }
  .wow-subtitle { font-size: 0.65rem; padding: 8px 14px; }

  .wow-test-section { padding: 1.5rem 1rem; overflow: hidden; }

  .wow-test-body {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 2rem;
  }

  .wow-test-left {
    width: 100% !important;
    padding-top: 0 !important;
  }

  .wow-test-header {
    margin-top: 0 !important;
  }

  .wow-test-step {
    white-space: normal !important;
  }

  .wow-test-step h3 {
    white-space: normal !important;
    font-size: 1rem !important;
  }

  .wow-test-center {
    width: 100% !important;
    padding-left: 0 !important;
    display: flex;
    justify-content: center;
  }

  .wow-test-center svg {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .wow-test-right {
    width: 100% !important;
  }

  .interests-box { width: 100%; box-sizing: border-box; }

  .who-page { height: auto !important; padding: 1.5rem 1rem; }
  .who-body { display: flex !important; flex-direction: column !important; }
  .who-founder-top { grid-template-columns: 120px 1fr; }
  .who-right { width: 100%; }

  .why-page { height: auto !important; padding: 1.5rem 1rem; }
  .why-grid { display: flex !important; flex-direction: column !important; }

  .what-page { height: auto !important; padding: 1.5rem 1rem; }
  .what-body { display: flex !important; flex-direction: column !important; }

  .where-page { height: auto !important; min-height: unset !important; padding: 1.5rem 1rem 2rem; }
  .where-body { display: flex !important; flex-direction: column !important; }
  .where-right { display: flex !important; flex-direction: column !important; min-height: unset !important; }
  .where-stats-grid { display: flex !important; flex-direction: column !important; }
  .where-cards-grid { grid-template-columns: 1fr !important; }
  .where-filters { margin-bottom: 1rem; }

  .why-tmi-section { padding: 1.5rem 1rem; }
  .why-tmi-unified { grid-template-columns: 1fr !important; }
  .why-tmi-span2 { grid-column: span 1 !important; }
  .wow-strip-bottom { padding: 14px 1rem; gap: 2rem; }
  .wow-strip-top { padding: 14px 1rem; }

  .footer-inner {
    font-size: 0.55rem;
    gap: 0.3rem;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .photo-strip { flex-direction: column; }
  .photo-strip-left {
    flex: unset;
    max-width: 100%;
    width: 100%;
    max-height: 260px;
  }
  .photo-strip-left img { object-fit: contain; max-height: 260px; width: 100%; }
  .photo-strip-right {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 2rem 1.2rem;
    gap: 1.5rem;
  }
  .photo-strip-title { font-size: 2.4rem; }
  .photo-strip-subtitle { font-size: 1rem; }
  .photo-strip-text { font-size: 1.1rem; }
  .contact-box { flex: unset !important; width: 100%; box-sizing: border-box; }
}

/* HAMBURGER MENU */
.nav-mobile-open .header-nav {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 1.5rem 2rem;
  z-index: 9999;
  border-bottom: 2px solid var(--color-mustard);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-mobile-open .nav-menu {
  flex-direction: column !important;
  gap: 1.2rem;
  align-items: flex-start;
}

.nav-mobile-open .nav-menu li::before { display: none; }
