/* ─── T&T Travel Boutique — About Us Page ─── */
/* Loaded only on Template: About Us             */

/* ── CSS vars ── */
:root {
  --dark:         #0D1B2A;
  --light:        #F0ECE3;
  --heading-dark: #0D1B2A;
  --gold:         #B8843F;
  --gold-light:   #d4a96a;
  --transition:   0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Cursor fix ── */
body.tt-about-page,
body.tt-about-page * { cursor: auto !important; }
body.tt-about-page a,
body.tt-about-page button,
body.tt-about-page [role="button"] { cursor: pointer !important; }

/* ── Suppress Avada header/footer ── */
body.tt-about-page .fusion-tb-header,
body.tt-about-page .fusion-header-wrapper,
body.tt-about-page #fusion-header,
body.tt-about-page .fusion-footer,
body.tt-about-page .fusion-footer-widget-area,
body.tt-about-page .fusion-copyright-footer,
body.tt-about-page .fusion-tb-footer { display: none !important; }

/* ── Base ── */
body.tt-about-page {
  font-family: 'Jost', sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  margin: 0; padding: 0;
}
body.tt-about-page *, body.tt-about-page *::before, body.tt-about-page *::after { box-sizing: border-box; }
body.tt-about-page ::-webkit-scrollbar { width: 4px; }
body.tt-about-page ::-webkit-scrollbar-track { background: var(--dark); }
body.tt-about-page ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── Admin bar offset ── */
body.tt-about-page.admin-bar nav.tt-nav { top: 32px; }
@media screen and (max-width: 782px) {
  body.tt-about-page.admin-bar nav.tt-nav { top: 46px; }
}

/* ── Active nav link ── */
body.tt-about-page .tt-nav .nav-links a.active { opacity: 1; color: var(--gold); }
body.tt-about-page .tt-nav .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

/* ── Stagger (4 children) ── */
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.08s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.16s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.24s; }
.stagger.visible > *:nth-child(n+5) { opacity: 1; transform: none; transition-delay: 0.30s; }

/* ── Keyframes ── */
@keyframes fadeUp  { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes heroZoomOut { 0% { transform: scale(1.12); } 100% { transform: scale(1.0); } }

/* ── Buttons ── */
.btn-primary {
  display: inline-block; background: var(--gold); color: var(--dark);
  padding: 14px 36px; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 500; text-decoration: none; position: relative; overflow: hidden;
  transition: all 0.3s ease; border: none;
}
.btn-primary::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.15); transform: translateX(-100%); transition: transform 0.4s ease; }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(184,132,63,0.35); color: var(--dark); }

.btn-ghost-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 400; color: rgba(240,236,227,.65); text-decoration: none;
  padding-bottom: 4px; border-bottom: 1px solid rgba(240,236,227,.2);
  transition: all .3s ease;
}
.btn-ghost-outline:hover { color: var(--gold); border-color: var(--gold); gap: 14px; }

.btn-gold-outline {
  display: inline-block; border: 1px solid rgba(184,132,63,.4); color: var(--gold);
  padding: 14px 36px; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 400; text-decoration: none; position: relative; overflow: hidden; transition: all .35s ease;
}
.btn-gold-outline::before { content: ''; position: absolute; inset: 0; background: var(--gold); transform: translateY(100%); transition: transform .35s var(--transition); }
.btn-gold-outline span { position: relative; z-index: 1; }
.btn-gold-outline:hover { color: var(--dark); }
.btn-gold-outline:hover::before { transform: translateY(0); }

/* ════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════ */
.tt-about-hero {
  min-height: 88vh; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 160px 80px 80px; position: relative; overflow: hidden;
}
.tt-about-hero .h-bg {
  position: absolute; inset: -4%; z-index: 0; width: 108%; height: 108%;
  background-size: cover; background-position: center 35%;
  animation: heroZoomOut 22s ease-out forwards; will-change: transform;
}
.tt-about-hero .h-ov {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(13,27,42,.88) 0%, rgba(13,27,42,.5) 55%, rgba(13,27,42,.15) 100%),
              linear-gradient(to top, rgba(13,27,42,.85) 0%, rgba(13,27,42,.15) 50%, transparent 100%);
}
.tt-about-hero .h-ov::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 70% at 30% 50%, transparent 40%, rgba(13,27,42,.35) 100%);
}
.tt-about-hero > *:not(.h-bg):not(.h-ov) { position: relative; z-index: 2; }
.tt-about-hero .h-tag {
  font-size: 11px; letter-spacing: 4.5px; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px; margin-bottom: 32px;
  opacity: 0; animation: fadeUp 1s .2s forwards;
}
.tt-about-hero .h-tag::before { content: ''; width: 28px; height: 1px; background: var(--gold); opacity: .6; }
.tt-about-hero .h-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(52px,6vw,88px);
  font-weight: 300; line-height: 1.08; color: var(--light); max-width: 800px;
  text-shadow: 0 2px 40px rgba(13,27,42,.4);
  opacity: 0; animation: fadeUp 1s .4s forwards; margin: 0;
}
.tt-about-hero .h-title em { font-style: italic; color: var(--gold-light); }
.tt-about-hero .h-sub {
  margin-top: 28px; font-size: 17px; font-weight: 200; line-height: 1.78;
  color: rgba(240,236,227,.7); max-width: 580px;
  opacity: 0; animation: fadeUp 1s .6s forwards;
}
.tt-about-hero .h-btns {
  display: flex; gap: 14px; margin-top: 44px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s .8s forwards;
}

/* ════════════════════════════════════════════════════
   STORY — DARK, 2-col big quote
   ════════════════════════════════════════════════════ */
.tt-about-story { background: var(--dark); position: relative; overflow: hidden; }
.story-strip {
  padding: 96px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative;
}
.story-strip::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,132,63,.35) 30%, var(--gold) 50%, rgba(184,132,63,.35) 70%, transparent);
}
.story-label {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 24px; display: flex; align-items: center; gap: 12px;
}
.story-label::after { content: ''; flex: 1; height: 1px; background: rgba(184,132,63,.25); max-width: 48px; }
.story-quotemark {
  font-family: 'Cormorant Garamond', serif; font-size: 100px; line-height: .7;
  color: rgba(184,132,63,.22); margin-bottom: 12px; display: block;
}
.story-quote {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(22px,2.4vw,32px);
  font-weight: 300; font-style: italic; line-height: 1.65; color: var(--light);
}
.story-quote em { color: var(--gold-light); font-style: italic; }
.story-gold-rule { width: 36px; height: 1px; background: var(--gold); margin: 32px 0; }
.story-inline-img {
  margin-top: 8px; position: relative; overflow: hidden; border-radius: 4px;
  border: 1px solid rgba(184,132,63,.15);
}
.story-inline-img img {
  width: 100%; height: auto; display: block;
  filter: brightness(.85) saturate(.9);
  transition: transform 1s ease, filter .6s ease;
}
.story-inline-img:hover img { transform: scale(1.03); filter: brightness(.75) saturate(1); }
.story-inline-caption {
  display: block; padding: 12px 16px;
  font-size: 11px; letter-spacing: 1px; font-style: italic;
  color: rgba(240,236,227,.4); background: rgba(13,27,42,.6);
}
.story-para { font-size: 16px; line-height: 1.9; font-weight: 300; color: rgba(240,236,227,.58); margin-bottom: 18px; }
.story-sig {
  display: flex; align-items: center; gap: 14px; margin-top: 8px;
  padding-top: 28px; border-top: 1px solid rgba(184,132,63,.15);
}
.story-sig-diamond { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
.story-sig-text { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.story-portrait {
  display: flex; align-items: center; gap: 20px;
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(184,132,63,.12);
}
.story-portrait-img {
  width: 172px; height: 172px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 1px solid rgba(184,132,63,.3); cursor: pointer !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.story-portrait-img:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(184,132,63,0.2);
  border-color: rgba(184,132,63,.5);
}
.story-portrait-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 15%;
  filter: brightness(.88) saturate(.88);
}
.story-portrait-name {
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400;
  font-style: italic; color: rgba(240,236,227,.85); line-height: 1.3;
}
.story-portrait-role { font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(184,132,63,.6); margin-top: 4px; }

/* ════════════════════════════════════════════════════
   WHAT WE DO — LIGHT, 400px + 2×2 grid
   ════════════════════════════════════════════════════ */
.tt-about-what { background: var(--light); position: relative; overflow: hidden; }
.tt-about-what::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(150deg,rgba(184,132,63,.04) 0%,transparent 55%),
              radial-gradient(ellipse 55% 70% at 95% 30%,rgba(184,132,63,.05) 0%,transparent 60%);
  pointer-events: none;
}
.what-inner { display: grid; grid-template-columns: 400px 1fr; position: relative; z-index: 1; }
.what-left {
  padding: 96px 72px 96px 80px; display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(184,132,63,.12); position: relative; overflow: hidden;
}
.what-left::after {
  content: '2'; font-family: 'Cormorant Garamond', serif; font-size: 320px; font-weight: 300; line-height: 1;
  color: rgba(184,132,63,.07); position: absolute; bottom: -40px; right: -30px; z-index: 0; user-select: none;
}
.what-left > * { position: relative; z-index: 1; }
.what-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 16px; display: flex; align-items: center; gap: 12px;
}
.what-eyebrow::after { content: ''; flex: 1; height: 1px; background: rgba(184,132,63,.25); max-width: 48px; }
.what-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(28px,3vw,42px);
  font-weight: 300; line-height: 1.25; color: var(--heading-dark); margin: 0;
}
.what-title em { font-style: italic; color: var(--gold); }
.what-rule { width: 32px; height: 1px; background: var(--gold); margin: 24px 0; }
.what-text { font-size: 16px; line-height: 1.9; font-weight: 300; color: rgba(30,44,56,.62); margin: 0; }
.what-right { display: grid; grid-template-columns: 1fr 1fr; }
.wf {
  padding: 52px 48px; border-bottom: 1px solid rgba(184,132,63,.1); border-right: 1px solid rgba(184,132,63,.1);
  position: relative; overflow: hidden; transition: background .4s ease;
}
.wf:nth-child(2n) { border-right: none; }
.wf:nth-child(3), .wf:nth-child(4) { border-bottom: none; }
.wf::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--transition);
}
.wf:hover::before { transform: scaleX(1); }
.wf:hover { background: rgba(184,132,63,.04); }
.wf-num {
  font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300;
  line-height: 1; color: rgba(184,132,63,.25); margin-bottom: 20px; transition: color .4s ease;
}
.wf:hover .wf-num { color: rgba(184,132,63,.55); }
.wf-title {
  font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 400;
  color: var(--heading-dark); line-height: 1.25; margin-bottom: 10px; transition: color .35s ease;
}
.wf:hover .wf-title { color: var(--gold); }
.wf-desc { font-size: 15px; line-height: 1.75; font-weight: 300; color: rgba(30,44,56,.55); margin: 0; }

/* ════════════════════════════════════════════════════
   OUR TEAM — DARK, 1fr + 520px stats
   ════════════════════════════════════════════════════ */
.tt-about-team { background: var(--dark); padding: 96px 80px; position: relative; overflow: hidden; }
.tt-about-team::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 65% 55% at 60% 50%, rgba(184,132,63,.05) 0%, transparent 65%);
  pointer-events: none;
}
.team-inner { display: grid; grid-template-columns: 1fr 520px; gap: 96px; align-items: center; position: relative; z-index: 1; }
.team-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 16px; display: flex; align-items: center; gap: 12px;
}
.team-eyebrow::after { content: ''; flex: 1; height: 1px; background: rgba(184,132,63,.25); max-width: 48px; }
.team-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(30px,3vw,44px);
  font-weight: 300; line-height: 1.2; color: var(--light); margin: 0;
}
.team-title em { font-style: italic; color: var(--gold-light); }
.team-rule { width: 32px; height: 1px; background: var(--gold); margin: 24px 0; }
.team-text { font-size: 16px; line-height: 1.9; font-weight: 300; color: rgba(240,236,227,.58); margin-bottom: 14px; }
.team-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.ts {
  background: rgba(255,255,255,.03); border: 1px solid rgba(184,132,63,.1);
  padding: 36px 32px; position: relative; overflow: hidden; transition: all .4s ease;
}
.ts:hover { background: rgba(184,132,63,.06); border-color: rgba(184,132,63,.28); }
.ts::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--transition);
}
.ts:hover::before { transform: scaleX(1); }
.ts-num { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.ts-label { font-size: 13px; letter-spacing: 1.5px; color: rgba(240,236,227,.4); font-weight: 300; line-height: 1.5; }

/* ════════════════════════════════════════════════════
   TESTIMONIALS — LIGHT bg, dark 2×2 cards
   ════════════════════════════════════════════════════ */
.tt-about-testi { background: var(--light); padding: 96px 80px; position: relative; overflow: hidden; }
.tt-about-testi::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(220deg, rgba(184,132,63,.04) 0%, transparent 55%);
  pointer-events: none;
}
.testi-header-about { text-align: center; margin-bottom: 64px; position: relative; z-index: 1; }
.testi-eyebrow-about {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 500;
  margin-bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 12px;
}
.testi-eyebrow-about::before, .testi-eyebrow-about::after { content: ''; flex: 1; height: 1px; background: rgba(184,132,63,.25); max-width: 56px; }
.testi-title-about {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(30px,3.5vw,48px);
  font-weight: 300; line-height: 1.2; color: var(--heading-dark); margin: 0;
}
.testi-title-about em { font-style: italic; color: var(--gold); }
.testi-grid-about { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; position: relative; z-index: 1; }
.tca {
  padding: 52px 44px; background: var(--heading-dark);
  position: relative; overflow: hidden; transition: all .5s var(--transition);
}
.tca::before {
  content: '\201C'; font-family: 'Cormorant Garamond', serif; font-size: 130px;
  line-height: 1; font-weight: 300; color: rgba(184,132,63,.1);
  position: absolute; top: -8px; left: 20px; pointer-events: none; transition: color .4s ease;
}
.tca:hover::before { color: rgba(184,132,63,.22); }
.tca::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--transition);
}
.tca:hover::after { transform: scaleX(1); }
.tca:hover { background: #243748; transform: translateY(-5px); box-shadow: 0 24px 48px rgba(0,0,0,.18); }
.tca-stars { font-size: 14px; color: var(--gold); letter-spacing: 3px; margin-bottom: 22px; position: relative; z-index: 1; }
.tca-text {
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300;
  font-style: italic; line-height: 1.78; color: rgba(240,236,227,.82);
  margin-bottom: 26px; position: relative; z-index: 1;
}
.tca-rule { width: 24px; height: 1px; background: var(--gold); margin-bottom: 14px; opacity: .55; }
.tca-author { font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 500; color: var(--light); position: relative; z-index: 1; }
.tca-role { font-size: 13px; color: rgba(240,236,227,.3); margin-top: 4px; font-weight: 300; position: relative; z-index: 1; }

/* ════════════════════════════════════════════════════
   FOUNDER — 50/50 photo + dark text
   ════════════════════════════════════════════════════ */
.tt-about-founder { display: grid; grid-template-columns: 1fr 1fr; min-height: 800px; }
.founder-photo { position: relative; overflow: hidden; }
.founder-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 15%;
  filter: brightness(.75) saturate(.88); transition: transform 1.2s ease, filter .8s ease;
}
.tt-about-founder:hover .founder-photo img { transform: scale(1.04); filter: brightness(.65) saturate(1); }
.founder-photo::before, .founder-photo::after {
  content: ''; position: absolute; z-index: 2; width: 48px; height: 48px;
  transition: all .5s ease; pointer-events: none;
}
.founder-photo::before { top: 32px; left: 32px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); opacity: .8; }
.founder-photo::after  { bottom: 32px; right: 32px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); opacity: .8; }
.tt-about-founder:hover .founder-photo::before,
.tt-about-founder:hover .founder-photo::after { width: 64px; height: 64px; }
.founder-photo-ov {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, transparent 55%, rgba(13,27,42,.6) 100%),
              linear-gradient(to top, rgba(13,27,42,.7) 0%, transparent 40%);
}
.founder-body {
  background: var(--dark); padding: 96px 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.founder-body::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 60% at 0% 50%, rgba(184,132,63,.06) 0%, transparent 60%);
  pointer-events: none;
}
.founder-body > * { position: relative; z-index: 1; }
.founder-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 16px; display: flex; align-items: center; gap: 12px;
}
.founder-eyebrow::after { content: ''; flex: 1; height: 1px; background: rgba(184,132,63,.25); max-width: 48px; }
.founder-name {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(40px,4vw,60px);
  font-weight: 300; line-height: 1.1; color: var(--light); margin: 0;
}
.founder-name em { font-style: italic; color: var(--gold-light); display: block; }
.founder-rule { width: 36px; height: 1px; background: var(--gold); margin: 28px 0; }
.founder-text { font-size: 16px; line-height: 1.9; font-weight: 300; color: rgba(240,236,227,.58); margin-bottom: 14px; }
.founder-creds { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.founder-cred {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(240,236,227,.4); padding: 7px 14px;
  border: 1px solid rgba(184,132,63,.18); font-weight: 300;
}
.founder-links { display: flex; gap: 20px; margin-top: 36px; flex-wrap: wrap; }
.founder-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 500; color: var(--gold); text-decoration: none;
  padding-bottom: 4px; border-bottom: 1px solid rgba(184,132,63,.3);
  transition: gap .3s ease, border-color .3s ease;
}
.founder-link:hover { gap: 14px; border-color: var(--gold); }

/* ════════════════════════════════════════════════════
   LEGAL — LIGHT bg, dark 3-col cards
   ════════════════════════════════════════════════════ */
.tt-about-legal { background: var(--light); padding: 96px 80px; position: relative; overflow: hidden; }
.tt-about-legal::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(200deg, rgba(184,132,63,.04) 0%, transparent 55%);
  pointer-events: none;
}
.tt-about-legal .inner { position: relative; z-index: 1; }
.legal-header { margin-bottom: 56px; }
.legal-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 16px; display: flex; align-items: center; gap: 12px;
}
.legal-eyebrow::after { content: ''; flex: 1; height: 1px; background: rgba(184,132,63,.25); max-width: 48px; }
.legal-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(28px,3vw,42px);
  font-weight: 300; line-height: 1.2; color: var(--heading-dark); margin: 0;
}
.legal-title em { font-style: italic; color: var(--gold); }
.legal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.lcard {
  background: var(--heading-dark); padding: 44px 40px;
  position: relative; overflow: hidden; transition: background .4s ease;
}
.lcard:hover { background: #243748; }
.lcard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--transition);
}
.lcard:hover::before { transform: scaleX(1); }
.lcard-title {
  font-size: 11px; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 24px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(184,132,63,.15);
}
.lcard p, .lcard li { font-size: 15px; line-height: 1.85; font-weight: 300; color: rgba(240,236,227,.5); margin-bottom: 6px; }
.lcard strong { color: rgba(240,236,227,.82); font-weight: 500; display: block; margin-bottom: 2px; }
.lcard a { color: var(--gold-light); text-decoration: none; transition: color .3s; }
.lcard a:hover { color: var(--gold); text-decoration: underline; }
.lcard ul { list-style: none; margin: 0; padding: 0; }
.lcard ul li { display: flex; align-items: baseline; gap: 8px; }
.lcard ul li::before { content: '→'; color: var(--gold); opacity: .55; flex-shrink: 0; font-size: 10px; }

/* ════════════════════════════════════════════════════
   CTA — full photo
   ════════════════════════════════════════════════════ */
.tt-about-cta { position: relative; overflow: hidden; padding: 180px 80px; text-align: center; }
.tt-about-cta .cta-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center 40%;
  filter: brightness(.28) saturate(.65);
}
.tt-about-cta::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(13,27,42,.72) 0%, rgba(13,27,42,.35) 50%, rgba(13,27,42,.88) 100%),
              radial-gradient(ellipse 80% 60% at 50% 50%, rgba(184,132,63,.08) 0%, transparent 70%);
}
.tt-about-cta > * { position: relative; z-index: 2; }
.cta-tag-about {
  font-size: 11px; letter-spacing: 4.5px; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 20px;
}
.cta-tag-about::before, .cta-tag-about::after { content: ''; width: 40px; height: 1px; background: var(--gold); opacity: .5; }
.cta-title-about {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(38px,5vw,68px);
  font-weight: 300; line-height: 1.12; color: var(--light); margin: 0;
}
.cta-title-about em { font-style: italic; color: var(--gold-light); }
.cta-rule-about { display: flex; align-items: center; gap: 14px; justify-content: center; margin: 28px auto; max-width: 240px; }
.cta-rule-about::before, .cta-rule-about::after { content: ''; flex: 1; height: 1px; background: rgba(184,132,63,.4); }
.cta-diamond-about { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }
.cta-text-about { font-size: 17px; font-weight: 200; color: rgba(240,236,227,.55); max-width: 480px; margin: 0 auto 48px; line-height: 1.8; }
.cta-btns-about { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note-about { margin-top: 32px; font-size: 13px; color: rgba(240,236,227,.28); letter-spacing: .5px; }
.cta-note-about a { color: rgba(184,132,63,.55); text-decoration: none; transition: color .3s; }
.cta-note-about a:hover { color: var(--gold); }

/* ── Photo popup ── */
.tt-photo-popup-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(13,27,42,0.85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s ease; cursor: pointer;
}
.tt-photo-popup-overlay.visible { opacity: 1; }
.tt-photo-popup-wrap { position: relative; display: inline-block; }
.tt-photo-popup-overlay img {
  max-width: 680px; max-height: 80vh; width: auto; height: auto;
  border-radius: 6px; border: 2px solid rgba(184,132,63,0.3);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  transform: scale(0.85); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.tt-photo-popup-overlay.visible img { transform: scale(1); }
.tt-popup-close {
  position: absolute; top: -16px; right: -16px; z-index: 1;
  width: 44px; height: 44px; border: 1px solid rgba(240,236,227,0.25);
  background: rgba(13,27,42,0.6); backdrop-filter: blur(8px);
  color: #F0ECE3; font-size: 28px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer !important; border-radius: 50%;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.tt-popup-close:hover { background: rgba(184,132,63,0.3); border-color: var(--gold); transform: rotate(90deg); }

/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .story-strip { grid-template-columns: 1fr; gap: 48px; padding: 72px 56px; }
  .what-inner { grid-template-columns: 1fr; }
  .what-left { padding: 72px 56px 48px; border-right: none; border-bottom: 1px solid rgba(184,132,63,.12); }
  .team-inner { grid-template-columns: 1fr; gap: 56px; }
  .tt-about-founder { grid-template-columns: 1fr; min-height: auto; }
  .founder-photo { min-height: 500px; }
  .founder-body { padding: 72px 56px; }
  .legal-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .tt-about-hero { padding: 120px 24px 64px; }
  .story-strip { padding: 56px 24px; }
  .tt-about-team { padding: 72px 24px; }
  .tt-about-testi { padding: 72px 24px; }
  .testi-grid-about { grid-template-columns: 1fr; }
  .what-right { grid-template-columns: 1fr; }
  .wf:nth-child(2n) { border-right: 1px solid rgba(184,132,63,.1); }
  .wf:nth-child(3) { border-bottom: 1px solid rgba(184,132,63,.1); }
  .wf { padding: 40px 32px; }
  .founder-body { padding: 56px 24px; }
  .tt-about-legal { padding: 72px 24px; }
  .tt-about-cta { padding: 100px 24px; }
}
