/* =========================================================
   TRAVERSING THE TAPESTRY — DESIGN TOKENS
   ========================================================= */
:root{
  /* Palette */
  --tt-ivory:        #F3E7C9;
  --tt-sand:         #D9BD8A;
  --tt-terracotta:   #C1512D;
  --tt-maroon:       #5E1A1F;
  --tt-gold:         #B8860B;
  --tt-charcoal:     #2A2118;
  --tt-forest:       #2F4A3C;
  --tt-cream:        #FBF6E9;

  /* Type */
  --tt-font-script: 'Alex Brush', cursive;
  --tt-font-body:   'Archivo Narrow', sans-serif;

  /* Rhythm */
  --tt-section-pad: clamp(4rem, 8vw, 8rem);
  --tt-container-pad: clamp(1.25rem, 4vw, 4rem);
}

*{box-sizing:border-box;}

html{scroll-behavior:smooth;}

body{
  font-family:var(--tt-font-body);
  color:var(--tt-charcoal);
  background:var(--tt-cream);
  margin:0;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

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

a{text-decoration:none; color:inherit;}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
}

/* =========================================================
   SHARED TYPE ELEMENTS
   ========================================================= */
.tt-eyebrow{
  font-family:var(--tt-font-body);
  font-weight:600;
  font-size:0.8rem;
  letter-spacing:0.28em;
  text-transform:uppercase;
  color:var(--tt-gold);
  margin-bottom:0.75rem;
}
.tt-eyebrow-dark{color:var(--tt-terracotta);}

.tt-section-title{
  font-family:var(--tt-font-body);
  font-weight:700;
  font-size:clamp(1.9rem, 3.2vw, 2.8rem);
  line-height:1.15;
  color:var(--tt-charcoal);
  margin-bottom:1.25rem;
}

.tt-body-text{
  font-size:1.125rem;
  line-height:1.85;
  color:#5a4f3f;
  max-width:52ch;
}

.tt-text-link{
  display:inline-flex;
  align-items:center;
  gap:0.4rem;
  font-weight:600;
  font-size:0.95rem;
  letter-spacing:0.03em;
  color:var(--tt-maroon);
  border-bottom:1px solid transparent;
  transition:border-color .25s ease, gap .25s ease;
}
.tt-text-link:hover{border-color:var(--tt-maroon); gap:0.6rem;}

.tt-btn{
  display:inline-block;
  padding:0.85rem 2.1rem;
  font-family:var(--tt-font-body);
  font-weight:600;
  font-size:0.95rem;
  letter-spacing:0.06em;
  text-transform:uppercase;
  border-radius:2px;
  transition:transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.tt-btn-primary{
  background:var(--tt-terracotta);
  color:var(--tt-cream);
  border:1px solid var(--tt-terracotta);
}
.tt-btn-primary:hover{background:var(--tt-maroon); border-color:var(--tt-maroon); transform:translateY(-2px); color:var(--tt-cream);}
.tt-btn-ghost{
  background:transparent;
  color:var(--tt-cream);
  border:1px solid rgba(251,246,233,0.55);
}
.tt-btn-ghost:hover{background:rgba(251,246,233,0.12); transform:translateY(-2px); color:var(--tt-cream);}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */
.tt-skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  background:var(--tt-charcoal);
  color:var(--tt-cream);
  padding:0.75rem 1.25rem;
  z-index:2000;
  border-radius:0 0 4px 0;
}
.tt-skip-link:focus{left:0; top:0;}

:focus-visible{outline:2px solid var(--tt-gold); outline-offset:2px;}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.tt-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  transition:background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.tt-navbar{padding:1.4rem 0;}
.tt-header.tt-scrolled{
  background:rgba(42,33,24,0.92);
  box-shadow:0 4px 24px rgba(0,0,0,0.18);
}
.tt-header.tt-scrolled .tt-navbar{padding:0.85rem 0;}

.tt-brand-script{
  font-family:var(--tt-font-script);
  font-size:1.9rem;
  color:var(--tt-cream);
  line-height:1;
}

.tt-nav-links{
  gap:1rem;
  align-items:center;
}
.tt-nav-links .nav-link{
  color:rgba(251,246,233,0.85);
  font-size:0.92rem;
  font-weight:600;
  letter-spacing:0.05em;
  text-transform:uppercase;
  padding:0.5rem 0.9rem;
  transition:color .2s ease;
}
.tt-nav-links .nav-link:hover{color:var(--tt-gold);}
.tt-nav-cta{
  border:1px solid rgba(251,246,233,0.5);
  border-radius:2px;
  padding:0.5rem 1.1rem !important;
}
.tt-nav-cta:hover{border-color:var(--tt-gold);}

.tt-toggler{
  border:none;
  background:transparent;
  display:flex;
  flex-direction:column;
  gap:5px;
  padding:0.4rem;
}
.tt-toggler span{
  width:24px; height:2px; background:var(--tt-cream); display:block;
}

.tt-offcanvas{
  background:var(--tt-charcoal);
  color:var(--tt-cream);
  width:min(340px, 82vw);
}
.tt-offcanvas-brand{font-size:1.5rem;}
.tt-close{filter:invert(1);}
.tt-offcanvas-nav{list-style:none; padding:0; margin-top:1.5rem;}
.tt-offcanvas-nav li{border-bottom:1px solid rgba(251,246,233,0.12);}
.tt-offcanvas-nav a{
  display:block;
  padding:1rem 0.25rem;
  font-weight:600;
  letter-spacing:0.04em;
  text-transform:uppercase;
  font-size:0.95rem;
  color:var(--tt-cream);
}
.tt-offcanvas-nav a:hover{color:var(--tt-gold);}

/* =========================================================
   HERO
   ========================================================= */
.tt-hero{
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  isolation:isolate;
}
.tt-hero-bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.05);
  z-index:-2;
}
.tt-hero-vignette{
  position:absolute; inset:0;
  background:radial-gradient(ellipse at center, rgba(20,14,8,0.08) 0%, rgba(20,14,8,0.55) 100%);
  z-index:-1;
}

.tt-hero-content{
  text-align:center;
  padding:0 var(--tt-container-pad);
  max-width:900px;
}

.tt-hero-title{
  margin:0 0 0.5rem;
  font-family:var(--tt-font-script);
  font-weight:400;
  font-size:clamp(3rem, 9vw, 6rem);
  line-height:1;
  color:var(--tt-charcoal);
}

.tt-hero-subtitle{
  font-family:var(--tt-font-body);
  font-weight:500;
  font-size:1rem;
  letter-spacing:0.32em;
  text-transform:uppercase;
  color:var(--tt-maroon);
  margin:0.75rem 0 1.75rem;
}

.tt-hero-desc{
  font-size:1.08rem;
  line-height:1.8;
  color:#4a4030;
  max-width:56ch;
  margin:0 auto 2.5rem;
}

.tt-hero-actions{
  display:flex;
  gap:1rem;
  justify-content:center;
  flex-wrap:wrap;
}
.tt-hero .tt-btn-ghost{color:var(--tt-charcoal); border-color:rgba(42,33,24,0.4);}
.tt-hero .tt-btn-ghost:hover{background:rgba(42,33,24,0.06); color:var(--tt-charcoal);}

.tt-scroll-cue{
  position:absolute;
  bottom:2.25rem;
  left:50%;
  transform:translateX(-50%);
}
.tt-scroll-badge{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0.5rem;
  font-size:0.72rem;
  letter-spacing:0.28em;
  text-transform:uppercase;
  color:var(--tt-charcoal);
  font-weight:600;
}
.tt-scroll-line{
  width:1px; height:36px;
  background:var(--tt-charcoal);
  position:relative;
  overflow:hidden;
}
.tt-scroll-line::after{
  content:'';
  position:absolute;
  top:-100%; left:0; right:0; height:100%;
  background:var(--tt-gold);
  animation:ttScrollDrip 1.8s ease-in-out infinite;
}
@keyframes ttScrollDrip{
  0%{top:-100%;}
  60%{top:100%;}
  100%{top:100%;}
}

/* =========================================================
   THREAD DIVIDER
   ========================================================= */
.tt-thread-divider{
  background:var(--tt-cream);
  line-height:0;
}
.tt-thread-svg{width:100%; height:32px; display:block;}
.tt-thread-svg path{
  fill:none;
  stroke:var(--tt-terracotta);
  stroke-width:1.5;
  opacity:0.55;
}

/* =========================================================
   ABOUT
   ========================================================= */
.tt-about{
  padding:var(--tt-section-pad) 0;
  background:var(--tt-cream);
}
/* =========================================================
   ART FORMS STRIP
   ========================================================= */
.tt-artforms-strip{
  padding:var(--tt-section-pad) 0 3.5rem;
  background:var(--tt-ivory);
}
.tt-strip-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:1rem;
  margin-bottom:2.5rem;
}

.tt-strip-scroll{
  overflow-x:auto;
  scroll-snap-type:x proximity;
  padding:0.5rem clamp(1.25rem, 4vw, 4rem) 1.5rem;
  scrollbar-width:thin;
  scrollbar-color:var(--tt-terracotta) transparent;
}
.tt-strip-scroll::-webkit-scrollbar{height:6px;}
.tt-strip-scroll::-webkit-scrollbar-thumb{background:var(--tt-terracotta); border-radius:3px;}

.tt-strip-track{
  display:flex;
  gap:1.5rem;
}

/* =========================================================
   QUOTE (reusable)
   ========================================================= */
.tt-quote{
  font-family:var(--tt-font-body);
  font-style:italic;
  font-weight:400;
  font-size:clamp(1.3rem, 2.4vw, 1.9rem);
  line-height:1.55;
  color:var(--tt-cream);
  margin:0 0 1.25rem;
  max-width:44ch;
}
.tt-quote-attribution{
  font-size:0.88rem;
  letter-spacing:0.06em;
  color:rgba(251,246,233,0.75);
  text-transform:uppercase;
  font-weight:600;
}

/* =========================================================
   FOOTER
   ========================================================= */
.tt-footer{
  background:var(--tt-charcoal);
  color:rgba(251,246,233,0.85);
  padding:4.5rem 0 2rem;
}
.tt-footer-brand{font-size:1.9rem; color:var(--tt-cream);}
.tt-footer-tagline{
  font-size:0.9rem;
  color:rgba(251,246,233,0.6);
  margin-top:0.5rem;
  max-width:32ch;
}
.tt-footer-heading{
  font-size:0.78rem;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--tt-gold);
  font-weight:700;
  margin-bottom:1rem;
}
.tt-footer-links{list-style:none; padding:0; margin:0;}
.tt-footer-links li{margin-bottom:0.65rem;}
.tt-footer-links a{
  font-size:0.92rem;
  color:rgba(251,246,233,0.8);
  transition:color .2s ease;
}
.tt-footer-links a:hover{color:var(--tt-gold);}
.tt-footer-bottom{
  border-top:1px solid rgba(251,246,233,0.12);
  margin-top:3rem;
  padding-top:1.5rem;
  font-size:0.82rem;
  color:rgba(251,246,233,0.5);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:991.98px){
  .tt-about-visual{min-height:320px; margin-top:1rem;}
  .tt-torn-card{width:70%;}
}
@media (max-width:575.98px){
  .tt-torn-card{width:80%;}
  .tt-hero-actions{flex-direction:column; align-items:stretch;}
  .tt-hero-actions .tt-btn{width:100%;}
}

/* =========================================================
   VIDEO CARDS (lite-youtube facade)
   ========================================================= */
.tt-videos{padding:var(--tt-section-pad) 0; background:var(--tt-cream);}
.tt-section-title-light{color:var(--tt-cream);}
.tt-body-text-light{color:rgba(251,246,233,0.78);}

.tt-video-card{
  background:var(--tt-ivory);
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(42,33,24,0.08);
  height:100%;
}
.tt-lite-yt{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  background:#000;
  cursor:pointer;
  overflow:hidden;
}
.tt-lite-yt img{
  width:100%; height:100%;
  object-fit:cover;
  opacity:0.85;
  transition:opacity .25s ease, transform .4s ease;
}
.tt-lite-yt:hover img{opacity:1; transform:scale(1.04);}
.tt-lite-yt-play{
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:64px; height:64px;
  border-radius:50%;
  background:rgba(42,33,24,0.75);
  display:flex; align-items:center; justify-content:center;
  transition:background .2s ease, transform .2s ease;
}
.tt-lite-yt:hover .tt-lite-yt-play{background:var(--tt-terracotta); transform:translate(-50%,-50%) scale(1.08);}
.tt-lite-yt-play::before{
  content:'';
  border-style:solid;
  border-width:10px 0 10px 16px;
  border-color:transparent transparent transparent var(--tt-cream);
  margin-left:4px;
}
.tt-lite-yt iframe{
  position:absolute; inset:0; width:100%; height:100%; border:0;
}
.tt-video-card-body{padding:1.1rem 1.25rem 1.4rem;}
.tt-video-card-artform{
  font-size:0.7rem;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--tt-terracotta);
  font-weight:700;
}
.tt-video-card-title{
  font-size:1.1rem;
  font-weight:700;
  margin:0.4rem 0 0.35rem;
  color:var(--tt-charcoal);
}
.tt-video-card-desc{font-size:0.88rem; color:#5a4f3f; margin:0;}

/* =========================================================
   DOCUMENTARY
   ========================================================= */
.tt-documentary{
  position:relative;
  padding:var(--tt-section-pad) 0;
  background:var(--tt-charcoal);
  color:var(--tt-cream);
}
.tt-documentary .tt-lite-yt{border-radius:8px; box-shadow:0 18px 40px rgba(0,0,0,0.4);}

/* =========================================================
   GALLERY / MEDIA MASONRY
   ========================================================= */
.tt-gallery{padding:var(--tt-section-pad) 0; background:var(--tt-ivory);}
.tt-media{padding:var(--tt-section-pad) 0; background:var(--tt-cream);}

.tt-masonry{
  columns:4 220px;
  column-gap:1rem;
}
.tt-masonry-item{
  break-inside:avoid;
  margin-bottom:1rem;
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 8px 18px rgba(42,33,24,0.1);
}
.tt-masonry-item img{width:100%; display:block;}

/* =========================================================
   ARTISTS
   ========================================================= */
.tt-artists{padding:var(--tt-section-pad) 0; background:var(--tt-ivory);}
.tt-artist-card{
  background:var(--tt-cream);
  border-radius:8px;
  overflow:hidden;
  height:100%;
  box-shadow:0 10px 22px rgba(42,33,24,0.08);
  transition:transform .3s ease, box-shadow .3s ease;
}
.tt-artist-card:hover{transform:translateY(-5px); box-shadow:0 16px 30px rgba(42,33,24,0.15);}
.tt-artist-portrait{
  aspect-ratio:4/5;
  background:linear-gradient(160deg, var(--tt-sand), var(--tt-ivory));
  display:flex; align-items:center; justify-content:center;
}
.tt-artist-portrait img{width:100%; height:100%; object-fit:cover;}
.tt-artist-body{padding:1.1rem 1.2rem 1.4rem;}
.tt-artist-artform{
  font-size:0.7rem;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--tt-terracotta);
  font-weight:700;
}
.tt-artist-name{
  font-size:1.15rem;
  font-weight:700;
  margin:0.4rem 0 0.15rem;
  color:var(--tt-charcoal);
}
.tt-artist-region{
  font-size:0.8rem;
  color:var(--tt-maroon);
  margin-bottom:0.5rem;
}
.tt-artist-bio{font-size:0.86rem; color:#5a4f3f; line-height:1.6; margin:0;}

/* =========================================================
   TIMELINE
   ========================================================= */
.tt-timeline{
  padding:var(--tt-section-pad) 0;
  background:var(--tt-maroon);
  color:var(--tt-cream);
}
.tt-timeline-list{
  list-style:none;
  padding:0;
  margin:2rem 0 0;
  border-left:1px solid rgba(251,246,233,0.3);
}
.tt-timeline-list li{
  position:relative;
  padding:0 0 2rem 2rem;
}
.tt-timeline-list li::before{
  content:'';
  position:absolute;
  left:-6px; top:4px;
  width:11px; height:11px;
  border-radius:50%;
  background:var(--tt-gold);
}
.tt-timeline-era{
  display:block;
  font-weight:700;
  font-size:1.05rem;
  color:var(--tt-gold);
  margin-bottom:0.3rem;
}
.tt-timeline-list p{
  font-size:0.92rem;
  color:rgba(251,246,233,0.8);
  max-width:60ch;
  margin:0;
}

/* =========================================================
   REGION
   ========================================================= */
.tt-region{padding:var(--tt-section-pad) 0; background:var(--tt-cream);}
.tt-region-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(240px, 1fr));
  gap:1.25rem;
  margin-top:1.5rem;
}
.tt-region-card{
  background:var(--tt-ivory);
  border-radius:8px;
  padding:1.25rem 1.4rem;
  border-left:3px solid var(--tt-terracotta);
}
.tt-region-state{
  font-weight:700;
  font-size:1.02rem;
  color:var(--tt-charcoal);
  margin-bottom:0.4rem;
}
.tt-region-forms{
  font-size:0.85rem;
  color:var(--tt-maroon);
}

/* =========================================================
   CONTACT
   ========================================================= */
.tt-contact{padding:var(--tt-section-pad) 0; background:var(--tt-ivory);}
.tt-label{
  display:block;
  font-size:0.8rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--tt-charcoal);
  margin-bottom:0.4rem;
}
.tt-input{
  width:100%;
  padding:0.75rem 0.9rem;
  border:1px solid rgba(42,33,24,0.2);
  border-radius:4px;
  background:var(--tt-cream);
  font-family:var(--tt-font-body);
  font-size:0.95rem;
  color:var(--tt-charcoal);
}
.tt-input:focus{outline:2px solid var(--tt-terracotta); outline-offset:1px; border-color:var(--tt-terracotta);}
.tt-form-note{
  font-size:0.78rem;
  color:#8a7f6a;
  margin:0.75rem 0 0;
  font-style:italic;
}

/* =========================================================
   SCROLL REVEAL (vanilla, no external lib)
   ========================================================= */
[data-reveal]{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .7s ease, transform .7s ease;
}
[data-reveal].tt-visible{opacity:1; transform:translateY(0);}

.tt-reveal-el{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .7s ease, transform .7s ease;
}
.tt-reveal-el.tt-visible{opacity:1; transform:translateY(0);}

@media (max-width:767.98px){
  .tt-masonry{columns:2 160px;}
}

/* =========================================================
   LOGO ARTWORK (real uploaded brand mark)
   ========================================================= */
.tt-brand-logo-img{
  height:34px;
  width:auto;
  display:block;
}
.tt-header.tt-scrolled .tt-brand-logo-img{height:28px;}

.tt-hero-logo-img{
  width:min(90vw, 620px);
  height:auto;
  margin:0 auto 0.5rem;
  display:block;
}

.tt-offcanvas-logo-img{height:30px; width:auto;}
.tt-offcanvas-brand-link{display:inline-block;}

.tt-footer-logo-img{height:36px; width:auto; margin-bottom:0.25rem;}

/* =========================================================
   MEGA MENU — 12 art forms grid (matches your reference sheet)
   ========================================================= */
.tt-mega-parent{position:relative;}

.tt-mega-trigger{
  background:none;
  border:none;
  display:inline-flex;
  align-items:center;
  gap:0.4rem;
  cursor:pointer;
  font:inherit;
}
.tt-mega-caret{
  width:7px; height:7px;
  border-right:1.5px solid currentColor;
  border-bottom:1.5px solid currentColor;
  transform:rotate(45deg) translateY(-2px);
  transition:transform .25s ease;
}
.tt-mega-parent.tt-mega-open .tt-mega-caret{transform:rotate(225deg) translateY(2px);}

.tt-mega-panel{
  position:absolute;
  top:calc(100% + 18px);
  left:50%;
  transform:translate(-50%, -8px);
  width:min(720px, 88vw);
  background:linear-gradient(155deg, #e8cf9a 0%, #c9a462 100%);
  border-radius:6px;
  box-shadow:0 24px 48px rgba(20,14,8,0.35);
  padding:2px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .28s ease, transform .28s ease, visibility 0s linear .28s;
  z-index:1200;
}
.tt-mega-parent.tt-mega-open .tt-mega-panel{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translate(-50%, 0);
  transition:opacity .28s ease, transform .28s ease, visibility 0s linear 0s;
}

.tt-mega-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  background-image:url('../images/parchment-bg.jpg');
  background-size:cover;
  background-position:center;
  border-radius:5px;
  overflow:hidden;
}
.tt-mega-cell{
  border-right:1px solid rgba(251,246,233,0.35);
  border-bottom:1px solid rgba(251,246,233,0.35);
  padding:1.5rem 1rem;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:transparent;
  border-top:none; border-left:none;
  font-family:var(--tt-font-script);
  font-size:1.4rem;
  color:var(--tt-charcoal);
  line-height:1.15;
  cursor:pointer;
  transition:background .2s ease, color .2s ease;
}
.tt-mega-cell:nth-child(4n){border-right:none;}
.tt-mega-cell:nth-last-child(-n+4){border-bottom:none;}
.tt-mega-cell:hover, .tt-mega-cell:focus-visible{
  background:rgba(94,26,31,0.85);
  color:var(--tt-cream);
}

@media (max-width:767.98px){
  .tt-mega-grid{grid-template-columns:repeat(2, 1fr);}
  .tt-mega-cell:nth-child(4n){border-right:1px solid rgba(251,246,233,0.35);}
  .tt-mega-cell:nth-child(2n){border-right:none;}
  .tt-mega-cell:nth-last-child(-n+4){border-bottom:1px solid rgba(251,246,233,0.35);}
  .tt-mega-cell:nth-last-child(-n+2){border-bottom:none;}
}

/* =========================================================
   OFFCANVAS art form quick-links
   ========================================================= */
.tt-offcanvas-mini-heading{
  margin-top:1.75rem;
  font-size:0.72rem;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--tt-gold);
  font-weight:700;
}
.tt-offcanvas-artforms{
  list-style:none;
  padding:0; margin:0.75rem 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:0.5rem;
}
.tt-offcanvas-artforms a{
  display:inline-block;
  padding:0.4rem 0.8rem;
  border:1px solid rgba(251,246,233,0.25);
  border-radius:20px;
  font-size:0.82rem;
  color:rgba(251,246,233,0.85);
}
.tt-offcanvas-artforms a:hover{border-color:var(--tt-gold); color:var(--tt-gold);}

/* =========================================================
   FEATURED TRADITION TEMPLATE CARDS (replaces mockup photos)
   ========================================================= */
.tt-tradition-card{
  background:var(--tt-ivory);
  border-radius:8px;
  padding:1.75rem 1.9rem 2rem;
  height:100%;
  box-shadow:0 12px 28px rgba(42,33,24,0.1);
  border-top:3px solid var(--tt-gold);
}
.tt-tradition-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:0.75rem;
  margin-bottom:0.35rem;
}
.tt-tradition-script{
  font-family:var(--tt-font-script);
  font-size:2.6rem;
  line-height:1;
  color:var(--tt-maroon);
}
.tt-tradition-region-badge{
  font-size:0.7rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--tt-terracotta);
  white-space:nowrap;
}
.tt-tradition-artist{
  font-size:0.85rem;
  font-weight:600;
  color:var(--tt-charcoal);
  margin-bottom:0.85rem;
}
.tt-tradition-text{
  font-size:0.95rem;
  line-height:1.75;
  color:#5a4f3f;
  margin:0;
}

/* =========================================================
   TEXT-ONLY ART FORM STRIP CARDS (no photography)
   ========================================================= */
.tt-art-card{
  flex:0 0 260px;
  scroll-snap-align:start;
  background:linear-gradient(160deg, var(--tt-ivory), var(--tt-cream));
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(42,33,24,0.1);
  border-bottom:3px solid var(--tt-terracotta);
  transition:transform .3s ease, box-shadow .3s ease;
  text-align:left;
  padding:1.6rem 1.4rem 1.5rem;
  display:flex;
  flex-direction:column;
  min-height:230px;
}
.tt-art-card:hover{transform:translateY(-6px); box-shadow:0 18px 34px rgba(42,33,24,0.18);}
.tt-art-card-region{
  font-size:0.68rem;
  letter-spacing:0.16em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--tt-terracotta);
  margin-bottom:0.5rem;
}
.tt-art-card-title{
  font-family:var(--tt-font-script);
  font-size:2rem;
  color:var(--tt-maroon);
  margin:0 0 0.5rem;
  line-height:1;
}
.tt-art-card-desc{
  font-size:0.87rem;
  color:#5a4f3f;
  line-height:1.65;
  margin:0;
  flex-grow:1;
}

/* =========================================================
   TYPOGRAPHIC PLACEHOLDER TILES (gallery / media — no stock photos)
   ========================================================= */
.tt-tile-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(220px, 1fr));
  gap:1rem;
}
.tt-tile{
  aspect-ratio:4/5;
  border-radius:6px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:1rem;
  background:linear-gradient(155deg, var(--tt-sand), var(--tt-terracotta) 140%);
  box-shadow:0 8px 18px rgba(42,33,24,0.12);
}
.tt-tile:nth-child(3n+2){background:linear-gradient(155deg, var(--tt-forest), var(--tt-charcoal) 140%);}
.tt-tile:nth-child(3n){background:linear-gradient(155deg, var(--tt-maroon), var(--tt-charcoal) 140%);}
.tt-tile-name{
  font-family:var(--tt-font-script);
  font-size:1.6rem;
  color:var(--tt-cream);
  line-height:1.1;
}
.tt-tile-label{
  font-size:0.68rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:rgba(251,246,233,0.75);
  margin-top:0.4rem;
}

/* =========================================================
   ANCHOR SCROLL OFFSET (fixed header)
   ========================================================= */
main section[id], #home{
  scroll-margin-top:84px;
}

/* =========================================================
   SCROLLSPY ACTIVE LINK
   ========================================================= */
.tt-nav-links .nav-link.tt-active,
.tt-nav-links .tt-mega-trigger.tt-active{
  color:var(--tt-gold);
}

/* Highlight pulse when jumping to a specific art form card */
.tt-art-card.tt-highlight{
  animation:ttHighlightPulse 1.6s ease;
}
@keyframes ttHighlightPulse{
  0%{box-shadow:0 0 0 0 rgba(184,134,11,0.6);}
  100%{box-shadow:0 0 0 14px rgba(184,134,11,0);}
}

/* =========================================================
   ART FORM DETAIL PAGE (template — duplicate per art form)
   ========================================================= */
.tt-breadcrumb{
  padding:0;
  font-size:0.82rem;
  color:#6b5f4a;
  margin-bottom:2rem;
  position:relative;
  z-index:1;
}
.tt-breadcrumb a{color:var(--tt-maroon); font-weight:600;}
.tt-breadcrumb a:hover{text-decoration:underline;}
.tt-breadcrumb .tt-crumb-sep{margin:0 0.4rem; opacity:0.6;}

.tt-artform-hero{
  position:relative;
  padding:calc(74px + 2.5rem) clamp(1.25rem, 4vw, 4rem) 4.5rem;
  overflow:hidden;
  isolation:isolate;
}
.tt-artform-hero-bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  z-index:-2;
}
.tt-artform-hero-vignette{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(20,14,8,0.05) 0%, rgba(20,14,8,0.35) 100%);
  z-index:-1;
}
.tt-artform-hero-inner{max-width:900px;}
.tt-artform-title{
  font-family:var(--tt-font-script);
  font-size:clamp(3.2rem, 8vw, 5.5rem);
  line-height:1;
  color:var(--tt-charcoal);
  margin:0 0 1rem;
}
.tt-artform-meta{
  display:flex;
  flex-wrap:wrap;
  gap:0.6rem;
  margin-bottom:1.25rem;
}
.tt-artform-badge{
  display:inline-block;
  padding:0.4rem 0.9rem;
  border-radius:20px;
  font-size:0.76rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-weight:700;
}
.tt-artform-badge-region{background:var(--tt-terracotta); color:var(--tt-cream);}
.tt-artform-badge-artist{background:rgba(42,33,24,0.08); color:var(--tt-charcoal); border:1px solid rgba(42,33,24,0.15);}
.tt-artform-lede{
  font-size:1.15rem;
  line-height:1.75;
  color:#4a4030;
  max-width:65ch;
  margin:0;
}

.tt-artform-video-section{
  padding:0 clamp(1.25rem, 4vw, 4rem);
  margin-top:-2.5rem;
  position:relative;
  z-index:2;
}
.tt-artform-video-wrap{
  max-width:920px;
  margin:0 auto;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 24px 48px rgba(20,14,8,0.28);
}

.tt-content-section{
  padding:4rem clamp(1.25rem, 4vw, 4rem);
}
.tt-content-section-alt{background:var(--tt-ivory);}
.tt-content-inner{max-width:1100px; margin:0 auto;}
.tt-content-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:3rem;
}
@media (max-width:900px){
  .tt-content-grid{grid-template-columns:1fr;}
}

.tt-content-heading{
  font-size:1.5rem;
  font-weight:700;
  color:var(--tt-charcoal);
  margin-bottom:1rem;
}
.tt-content-heading-script{
  font-family:var(--tt-font-script);
  font-size:2.1rem;
  color:var(--tt-maroon);
  margin-bottom:1rem;
}
.tt-content-text{
  font-size:1.125rem;
  line-height:1.85;
  color:#4a4030;
  margin-bottom:1.1rem;
}
.tt-content-text:last-child{margin-bottom:0;}

.tt-facts-card{
  background:var(--tt-cream);
  border:1px solid rgba(42,33,24,0.08);
  border-radius:8px;
  padding:1.6rem 1.7rem;
}
.tt-facts-list{list-style:none; margin:0; padding:0;}
.tt-facts-list li{
  padding:0.75rem 0;
  border-bottom:1px solid rgba(42,33,24,0.08);
}
.tt-facts-list li:last-child{border-bottom:none; padding-bottom:0;}
.tt-facts-label{
  display:block;
  font-size:0.68rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--tt-terracotta);
  margin-bottom:0.2rem;
}
.tt-facts-value{font-size:0.94rem; color:var(--tt-charcoal); font-weight:600;}

.tt-materials-chips{
  display:flex;
  flex-wrap:wrap;
  gap:0.5rem;
  margin-top:0.5rem;
}
.tt-materials-chip{
  padding:0.4rem 0.85rem;
  background:var(--tt-sand);
  color:var(--tt-charcoal);
  border-radius:20px;
  font-size:0.82rem;
  font-weight:600;
}

.tt-interesting-facts{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:1.25rem;
}
.tt-fact-card{
  background:var(--tt-cream);
  border-left:3px solid var(--tt-gold);
  border-radius:6px;
  padding:1.25rem 1.4rem;
}
.tt-fact-card p{font-size:0.92rem; line-height:1.65; color:#4a4030; margin:0;}

.tt-related-artist-card{
  display:flex;
  align-items:center;
  gap:1.25rem;
  background:var(--tt-cream);
  border-radius:8px;
  padding:1.5rem;
  box-shadow:0 10px 24px rgba(42,33,24,0.08);
}
.tt-related-artist-avatar{
  flex:0 0 72px;
  width:72px; height:72px;
  border-radius:50%;
  background:linear-gradient(160deg, var(--tt-sand), var(--tt-ivory));
  display:flex; align-items:center; justify-content:center;
  font-family:var(--tt-font-script);
  font-size:1.8rem;
  color:var(--tt-maroon);
}
.tt-related-artist-info p{margin:0;}
.tt-related-artist-name{font-weight:700; color:var(--tt-charcoal); font-size:1.135rem;}
.tt-related-artist-role{font-size:1.05rem; color:var(--tt-maroon);}

.tt-artform-cta{
  padding:3.5rem clamp(1.25rem, 4vw, 4rem);
  background:var(--tt-charcoal);
  color:var(--tt-cream);
  text-align:center;
}
.tt-artform-cta h2{
  font-family:var(--tt-font-script);
  font-size:2.4rem;
  margin-bottom:1.25rem;
}
