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

/* ── BASE ── */
html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  font-family: 'Nunito', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.locked {
  touch-action: none;
  overflow: hidden;
}

/* ── FRAME (fixed white border) ── */
.frame {
  position: fixed;
  inset: 0;
  padding: 40px;
  pointer-events: none;
  z-index: 100;
}
.frame::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  box-shadow: 0 0 0 40px #fff;
  pointer-events: none;
}

/* ── SCROLL CONTAINER ── */
.scroll-container {
  position: fixed;
  inset: 40px;
  border-radius: 30px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
 background: transparent;
}


.scroll-container.no-scroll {
    overflow: hidden;
  touch-action: none;
  -webkit-overflow-scrolling: auto;
}
.scroll-container::-webkit-scrollbar { display: none; }

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 100%;  /* change from 100% to 100vh */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: fixed;
  top: 40px;
  left: 40px;
  right: 40px;
  bottom: 40px;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  z-index: 0;  /* above body but below scroll container content */
  animation: blendIn 5s cubic-bezier(0.37, 0, 0.63, 1) 0.5s forwards;
  -webkit-animation: blendIn 5s cubic-bezier(0.37, 0, 0.63, 1) 0.5s forwards;
  opacity: 0;
}

.hero-overlay {
  position: absolute;
  z-index: 1;
  top:0px;
  left:0px;
  right:0px;
  bottom:0;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0, 1) 100%);
  animation: blendIn 6s cubic-bezier(0.37, 0, 0.63, 1) 0.5s forwards;
  -webkit-animation: blendIn 6s cubic-bezier(0.37, 0, 0.63, 1) 0.5s forwards;
  animation-delay: 5s;
  -webkit-animation-delay: 5s;
  opacity: 0;
}


.hero-emblem-wrap {
  position: absolute;
  z-index: 1;
  width: 80%;
  height: 80%;
   max-width: 800px;
  max-height: 800px;
  animation: fadeInEmblemMove 3s cubic-bezier(0.37, 0, 0.63, 1) 8s forwards;
  -webkit-animation: fadeInEmblemMove 3s cubic-bezier(0.37, 0, 0.63, 1) 8s forwards;
}

.hero-emblem {
  width: 100%;
  height: 100%;
  opacity: 0;
  background-image: url('tac-logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: fadeInEmblemOpacity 3s cubic-bezier(0.37, 0, 0.63, 1) 8s forwards,
             pulse 7ms cubic-bezier(0.37, 0, 0.63, 1) 0s infinite;
  -webkit-animation: fadeInEmblemOpacity 3s cubic-bezier(0.37, 0, 0.63, 1) 8s forwards,
                     pulse 7ms cubic-bezier(0.37, 0, 0.63, 1) 0s infinite;
}

@keyframes fadeInEmblemMove {
  from { transform: translateY(12px); }
  to { transform: translateY(0); }
}
@-webkit-keyframes fadeInEmblemMove {
  from { -webkit-transform: translateY(12px); }
  to { -webkit-transform: translateY(0); }
}

@keyframes fadeInEmblemOpacity {
  from { opacity: 0; }
  to { opacity: 0.3; }
}
@-webkit-keyframes fadeInEmblemOpacity {
  from { opacity: 0; }
  to { opacity: 0.3; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1) rotate(-0.75deg); }
  50% { transform: scale(1.02) rotate(0.75deg); }
}
@-webkit-keyframes pulse {
  0%, 100% { -webkit-transform: scale(1) rotate(-0.75deg); }
  50% { -webkit-transform: scale(1.02) rotate(0.75deg); }
}

.hero-logo {
  position: fixed;
  top: 60px;
  left: 60px;
  z-index: 10;
}
.hero-logo img {
  height: 28px;
  width: auto;
  opacity: 0.9;
}

.hero-mail {
  position: fixed;
  top: 70px;
  right: 70px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
  line-height: 0;
}
.hero-mail:hover { opacity: 1; }
.hero-mail svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
  width: 80%;
  max-width: 640px;
}
.hero-content,
.hero-scroll-hint {
  transition: none;
}

.hero-title {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 400;
  line-height: 1.4;
  color: #f0ebe3;
  letter-spacing: 0.04em;
  width: 100%;
  margin: 0 0 40px;
  font-family: "Montserrat";
  text-transform:uppercase;
}
.hero-title em {
  font-style: italic;
  color: #b88b23;
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.4;
  color: #debd6f;
  width: 100%;
  padding: 10px 0;
  max-width:500px;
  margin:0 auto;
}

.hero-subsubtitle {
  font-size: 16px;
  letter-spacing:0.04em;
  color: rgba(255,255,255,0.8);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: opacity 0.1s ease;
  will-change: opacity;
  padding: 0 20px 20px 20px; /* make more space around clickable */
  margin-top:-16px;
}
.scroll-arrow {
  width: 16px;
  height: 16px;
  border-right: 1.5px solid rgba(184, 139, 35,1);
  border-bottom: 1.5px solid rgba(184, 139, 35,1);

  
}
.scroll-arrow.fade-up.visible {
  animation: fadeUpArrow 3s cubic-bezier(0.37, 0, 0.63, 1) 8s forwards;
  -webkit-animation: fadeUpArrow 3s cubic-bezier(0.37, 0, 0.63, 1) 8s forwards;
}

@keyframes fadeUpArrow {
  from { opacity: 0; transform: rotate(45deg); }
  to { opacity: 1; transform: rotate(45deg); }
}
@-webkit-keyframes fadeUpArrow {
  from { opacity: 0; -webkit-transform: rotate(45deg); }
  to { opacity: 1; -webkit-transform: rotate(45deg); }
}

/* ── CONTENT ── */
.content {
  background-color:#000;
  background: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(2,54,48,1) 100%);
  padding: 100px 0 50px 0;
  opacity: 1;
  position: relative;
  z-index: 1;
}
.content-fade{
 opacity: 0; 
}
.content-tac{
background: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(2,54,48,1) 100%);
}
.content-doc{
background: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(5, 40, 59,1) 100%);
}

.section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.section-body {
  font-size: 18px;
  font-weight: 200;
  line-height: 1.85;
  color: #ccc;
  opacity:0.8;
  margin-bottom: 24px;
  text-align:center;
}


/* ── CTA ── */
.cta-section {
  width: 100%;
  padding: 0 40px 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-eyebrow {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b88b23;
  margin-bottom: 40px;
}

.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.cta-btn {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 30px;
  padding: 18px 48px;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
  display: inline-block;
  margin: 8px 0;
}
.cta-btn:hover {
  background: rgba(201,163,74,0.1);
  border-color: #debd6f;
  color: #debd6f;
}

/* ── LANDING PAGE SPECIFICS ── */
.lp-outer {
  width: 100vw;
  height: 100vh;
  padding: 20px;
  background: #fff;
  display: flex;
}

.lp-inner {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0, 0.1) 0%, rgba(0,0,0, 1) 100%);
}

.lp-logo {
  position: absolute;
  top: 32px;
  left: 36px;
  z-index: 10;
}
.lp-logo img {
  height: 28px;
  width: auto;
  opacity: 0.9;
}

.lp-mail {
  position: absolute;
  top: 36px;
  right: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s;
  line-height: 0;
}
.lp-mail:hover { opacity: 1; }
.lp-mail svg {
  width: 24px;
  height: 24px;
  stroke: #b88b23;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.lp-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 560px;
  padding: 0 40px;
}

.lp-title {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 300;
  line-height: 1.15;
  color: #f0ebe3;
  letter-spacing: -0.01em;
  width: 100%;
  margin-bottom: 20px;
}
.lp-title em {
  font-style: italic;
  color: #b88b23;
}

.lp-subtitle {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  width: 100%;
  margin-bottom: 48px;
}

.lp-btn {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 30px;
  padding: 16px 38px;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  width: auto;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 8px 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.lp-btn:hover {
  background: rgba(201,163,74,0.2);
  border-color: #debd6f;
  color: #debd6f;
}

.video-wrap-outer {
  position: relative;
  width: 100%;
  max-width:800px;
  margin:0 auto 100px auto;
  border-radius:20px;
  overflow: hidden;
}
.video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 41.84%; /* 2.39:1 cinema ratio */
  height: 0;
  overflow: hidden;

}

.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}



.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation-fill-mode: backwards;
  -webkit-animation-fill-mode: backwards;
}

.fade-up.visible {
  animation: fadeUpIn 3s cubic-bezier(0.37, 0, 0.63, 1) forwards;
}

@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@-webkit-keyframes fadeUpIn {
  from { opacity: 0; -webkit-transform: translateY(24px); }
  to { opacity: 1; -webkit-transform: translateY(0); }
}

.fade-up-1.visible { animation-delay: 1s; -webkit-animation-delay: 1s; }
.fade-up-2.visible { animation-delay: 2s; -webkit-animation-delay: 2s; }
.fade-up-3.visible { animation-delay: 3s; -webkit-animation-delay: 3s; }
.fade-up-4.visible { animation-delay: 4s; -webkit-animation-delay: 4s; }
.fade-up-5.visible { animation-delay: 5s; -webkit-animation-delay: 5s; }
.fade-up-6.visible { animation-delay: 6s; -webkit-animation-delay: 6s; }
.fade-up-7.visible { animation-delay: 7s; -webkit-animation-delay: 7s; }
.fade-up-8.visible { animation-delay: 8s; -webkit-animation-delay: 8s; }
.fade-up-9.visible { animation-delay: 9s; -webkit-animation-delay: 9s; }
.fade-up-10.visible { animation-delay: 10s; -webkit-animation-delay: 10s; }

@keyframes blendIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@-webkit-keyframes blendIn {
  from { opacity: 0; }
  to { opacity: 1; }
}



/* Tablets (up to 1024px) */ 
@media (max-width: 1024px) {


    .frame {
    padding: 20px;
  }
  .frame::before {
    border-radius: 20px;
    box-shadow: 0 0 0 20px #fff;
  }

  .scroll-container {
    inset: 20px;
    border-radius: 20px;
  }

.hero-bg {
  position: fixed;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

.hero-overlay {
  position: absolute;
  top:0px;
  left:0px;
  right:0px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0, 1) 99%);
}
.hero-content {
  padding: 0 20px;
  width: 90%;
  max-width: 800px;
}

.hero-title {
  font-size: clamp(18px, 4vw, 24px);
   font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.hero-subtitle {
  font-size: 18px;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.hero-subsubtitle {
  font-size: 16px;
  letter-spacing:0.04em;
}

.hero-logo {
  position: fixed;
  top: 30px;
  left: 30px;
}
.hero-logo img {
  height: 20px;
  width: auto;
  opacity: 0.8;
}

.hero-mail {
  position: fixed;
  top: 35px;
  right: 35px;
}
.hero-mail svg {
  width: 20px;
  height: 20px;
  stroke-width: 1;
}

.hero-scroll-hint {
  bottom: 30px;
}

.hero-emblem-wrap {
  width: 90%;
  height: 90%;
}

@keyframes pulse {
  0%, 100% { transform: scale(1) rotate(-0.2deg); }
  50% { transform: scale(1.02) rotate(0.2deg); }
}
@-webkit-keyframes pulse {
  0%, 100% { -webkit-transform: scale(1) rotate(-0.2deg); }
  50% { -webkit-transform: scale(1.02) rotate(0.2deg); }
}

.section-body {
  font-size: 16px;
  font-weight: 200;
  line-height: 1.4;
}

.cta-section {
  padding: 0 40px 60px;
}

.cta-btn {
  font-size: 12px;
  padding: 18px 24px;
}

.video-wrap-outer {
  position: relative;
  width: 90%;
  max-width:900px;
  margin:0 auto 100px auto;
}





} /* end media */