/* ========================================================= THE INNER SHIFT GLOBAL DESIGN SYSTEM ========================================================= */
/* ========================================================= ROOT VARIABLES ========================================================= */
:root {
  /* Brand Colors */
  --tis-black: #10100f;
  --tis-black-soft: #1b1916;
  --tis-gold: #c28a2b;
  --tis-gold-light: #d6a64d;
  --tis-brown: #7d5a2b;
  --tis-cream: #f7f5f1;
  --tis-white: #ffffff;
  /* Lines */
  --tis-line: rgba(194, 138, 43, 0.22);
  /* Shadow */
  --tis-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
  /* Header */
  --header-height: 92px;
}
/* ========================================================= RESET ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--tis-black);
  background: var(--tis-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
/* ========================================================= HEADER ========================================================= */
/* ========================================================= THE INNER SHIFT — FIXED HEADER ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  padding: 14px 24px;
  z-index: 9999;
  /* IMPORTANT: Header NEVER moves away while scrolling */
  transform: translateY(0);
  transition:
    height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.45s ease;
}
/* ========================================================= HEADER GLASS SHELL ========================================================= */
.site-header::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 8px;
  left: 0px;
  border: 1px solid transparent;
  /* border-radius: 22px;
     */
  pointer-events: none;
  background: transparent;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    backdrop-filter 0.4s ease;
}
/* ========================================================= SCROLLED HEADER ========================================================= */
.site-header.is-scrolled {
  height: 100px;
  padding-top: 6px;
  padding-bottom: 9px;
}
.site-header.is-scrolled::before {
  background: rgba(247, 245, 241);
  /* border-color: */
  /* rgba(16, 16, 15, 0.1);
     */
  border-bottom: 1px solid #c28a2b;
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
/* ========================================================= IMPORTANT HEADER MUST NEVER HIDE ON DOWN SCROLL ========================================================= */
.site-header.is-hidden {
  transform: translateY(0);
}
/* ========================================================= NAV SHELL ========================================================= */
.nav-shell {
  position: relative;
  width: min(1600px, 100%);
  height: 100%;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
/* ========================================================= BRAND ========================================================= */
.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 13px;
}
.brand-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--tis-white);
  border: 1px solid rgba(194, 138, 43, 0.5);
  box-shadow:
    0 5px 18px rgba(0, 0, 0, 0.1),
    0 0 0 4px rgba(194, 138, 43, 0.07);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
/* Brand Text */
.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.brand-name {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.brand-inner {
  color: var(--tis-black);
}
.brand-inner-footer {
  color: var(--tis-cream);
}
.brand-shift {
  color: var(--tis-gold);
}
.brand-tagline {
  font-size: 9px;
  color: rgba(16, 16, 15, 0.58);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
/* ========================================================= NAVIGATION ========================================================= */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 34px);
}
/* Nav Links */
.nav-link {
  position: relative;
  padding: 12px 0;
  color: rgba(16, 16, 15, 0.72);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.3s ease;
}
/* Animated Gold Underline */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;
  background: var(--tis-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-link:hover,
.nav-link.is-active {
  color: var(--tis-black);
}
.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}
/* ========================================================= CTA ========================================================= */
.nav-cta {
  min-height: 46px;
  padding: 0 17px 0 19px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--tis-white);
  background: var(--tis-gold);
  border: 1px solid var(--tis-gold-light);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(16, 16, 15, 0.14);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.nav-cta-arrow {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--tis-gold);
  background: var(--tis-cream);
  transition: transform 0.3s ease;
}
.nav-cta:hover {
  color: var(--tis-black);
  background: var(--tis-gold);
  border-color: var(--tis-gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(194, 138, 43, 0.24);
}
.nav-cta:hover .nav-cta-arrow {
  transform: rotate(45deg);
}
/* ========================================================= MOBILE TOGGLE ========================================================= */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(16, 16, 15, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}
.nav-toggle span {
  width: 19px;
  height: 1.5px;
  background: var(--tis-black);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.nav-toggle.is-open span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}
.nav-toggle.is-open span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}
/* ========================================================= ACCESSIBILITY ========================================================= */
.nav-link:focus-visible,
.nav-cta:focus-visible,
.nav-toggle:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--tis-gold);
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* =========================================================
   THE INNER SHIFT — HERO
   PREMIUM EDITORIAL / WELLNESS DESIGN
   ========================================================= */

.tis-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height, 80px));
  overflow: hidden;

  background: var(--tis-cream);
  color: var(--tis-black);
}

/* =========================================================
   HERO INNER
   ========================================================= */

.tis-hero-inner {
  position: relative;
  z-index: 5;

  width: min(1280px, calc(100% - 72px));
  min-height: calc(100svh - var(--header-height, 80px));

  margin: 0 auto;

  display: flex;
  align-items: center;
}

/* =========================================================
   MAIN CONTENT GRID
   ========================================================= */

.tis-hero-content {
  width: 100%;

  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);

  align-items: center;

  column-gap: 30px;

  padding: 110px 0 55px;
}

/* =========================================================
   LEFT COPY
   ========================================================= */

.tis-hero-copy {
  position: relative;
  z-index: 10;

  width: 100%;
  max-width: 610px;

  transform: translateY(-4px);
}

/* =========================================================
   HERO HEADING
   ========================================================= */

.tis-hero-copy h1 {
  margin: 0;

  color: var(--tis-black);

  font-size: clamp(58px, 6.4vw, 94px);

  line-height: 0.88;

  letter-spacing: -0.065em;

  font-weight: 650;
}

.tis-hero-copy h1 em {
  display: block;

  margin-top: 4px;

  padding-left: 54px;

  color: var(--tis-gold);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 0.98em;

  font-weight: 400;

  font-style: italic;

  line-height: 1.08;
}

/* =========================================================
   HEADING LINE
   ========================================================= */

.tis-heading-line {
  width: min(390px, 82%);

  display: flex;
  align-items: center;

  gap: 12px;

  margin-top: 25px;
}

.tis-heading-line span {
  flex: 1;

  height: 1px;

  background: linear-gradient(90deg, transparent, var(--tis-line));
}

.tis-heading-line span:last-child {
  background: linear-gradient(90deg, var(--tis-line), transparent);
}

.tis-heading-line i {
  flex: 0 0 auto;

  color: var(--tis-gold);

  font-size: 12px;

  font-style: normal;

  line-height: 1;

  animation: tisHeroStar 4s ease-in-out infinite;
}

@keyframes tisHeroStar {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
    opacity: 0.75;
  }

  50% {
    transform: rotate(90deg) scale(1.15);
    opacity: 1;
  }
}

/* =========================================================
   DESCRIPTION
   ========================================================= */

.tis-hero-description {
  max-width: 525px;

  margin: 21px 0 0;

  color: #625c53;

  font-size: 15.5px;

  line-height: 1.75;

  letter-spacing: 0.002em;
}

.tis-hero-description strong {
  color: var(--tis-black);

  font-weight: 650;
}

/* =========================================================
   THREE PILLARS
   PREMIUM MINI CARDS
   ========================================================= */
/* =========================================================
   HERO — COMPACT PILLARS
   ========================================================= */

.tis-hero-pillars {
  width: 100%;
  max-width: 610px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 22px;

  /* margin-top: 28px; */
}

/* =========================================================
   PILLAR
   ========================================================= */

.tis-pillar {
  position: relative;

  display: flex;
  align-items: center;

  gap: 11px;

  min-width: 0;

  padding: 5px 0;

  background: transparent;
  border: 0;
  border-radius: 0;

  box-shadow: none;

  transition: transform 0.35s ease;
}

.tis-pillar:hover {
  transform: translateY(-3px);
}

/* =========================================================
   ICON
   ========================================================= */

.tis-pillar-icon {
  width: 34px;
  height: 34px;

  flex: 0 0 34px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--tis-gold-light);

  transition:
    transform 0.4s ease,
    background 0.35s ease;
}

.tis-pillar:hover .tis-pillar-icon {
  transform: scale(1.08);

  background: var(--tis-black);
}

.tis-pillar-icon svg {
  width: 25px;
  height: 25px;

  fill: none;

  stroke: #ffffff;

  stroke-width: 1.7;

  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================================
   TEXT
   ========================================================= */

.tis-pillar-copy {
  min-width: 0;
}

.tis-pillar h3 {
  margin: 0 0 3px;

  color: var(--tis-black);

  font-size: 12px;

  font-weight: 750;

  line-height: 1.2;

  letter-spacing: 0.055em;

  text-transform: uppercase;
}

.tis-pillar p {
  margin: 0;

  color: #55514b;

  font-size: 11px;

  line-height: 1.35;

  white-space: nowrap;
}

/* =========================================================
   HOVER TEXT
   ========================================================= */

.tis-pillar:hover h3 {
  color: var(--tis-gold);
}

.tis-pillar:hover p {
  color: #5e584f;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
  .tis-hero-pillars {
    gap: 13px;
  }

  .tis-pillar {
    gap: 8px;
  }

  .tis-pillar-icon {
    width: 31px;
    height: 31px;

    flex-basis: 31px;
  }

  .tis-pillar-icon svg {
    width: 17px;
    height: 17px;
  }

  .tis-pillar h3 {
    font-size: 8.5px;
  }

  .tis-pillar p {
    font-size: 8px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */
/* =========================================================
   MOBILE — PILLARS ABOVE HERO ART
   ========================================================= */

@media (max-width: 760px) {
  .tis-hero-content {
    display: flex;
    flex-direction: column;

    padding: 105px 0 45px;
  }

  .tis-hero-copy {
    display: flex;
    flex-direction: column;

    max-width: 100%;
  }

  /* PILLARS COME EARLIER ON MOBILE */
  .tis-hero-pillars {
    order: 3;

    width: 100%;
    max-width: 520px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 8px;

    margin: 25px 0 0;
  }

  .tis-pillar {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 12px 5px;

    text-align: center;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.42);

    transition:
      transform 0.35s ease,
      background 0.35s ease;
  }

  .tis-pillar:hover {
    transform: translateY(-3px);

    background: rgba(255, 255, 255, 0.68);
  }

  .tis-pillar-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;
  }

  .tis-pillar-icon svg {
    width: 21px;
    height: 21px;
  }

  .tis-pillar-copy {
    width: 100%;
  }

  .tis-pillar h3 {
    margin: 0 0 3px;

    font-size: 9px;

    line-height: 1.25;

    letter-spacing: 0.045em;
  }

  .tis-pillar p {
    font-size: 8px;

    line-height: 1.35;

    white-space: normal;
  }

  /* BUTTON */
  .tis-hero-buttons {
    order: 4;

    margin-top: 25px;
  }

  /* IMAGE COMES AFTER PILLARS */
  .tis-hero-art {
    order: 5;

    width: 100%;

    height: 440px;

    margin-top: 25px;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
  .tis-hero-content {
    padding-top: 92px;
  }

  .tis-hero-pillars {
    gap: 6px;

    margin-top: 22px;
  }

  .tis-pillar {
    padding: 10px 4px;

    border-radius: 12px;
  }

  .tis-pillar-icon {
    width: 35px;
    height: 35px;

    flex-basis: 35px;
  }

  .tis-pillar-icon svg {
    width: 19px;
    height: 19px;
  }

  .tis-pillar h3 {
    font-size: 8.5px;
  }

  .tis-pillar p {
    font-size: 7.5px;
  }

  .tis-hero-buttons {
    margin-top: 22px;
  }

  .tis-hero-art {
    height: 390px;

    margin-top: 20px;
  }
}
/* =========================================================
   HERO CTA
   ========================================================= */

.tis-hero-buttons {
  margin-top: 70px;
}

.tis-btn-primary {
  position: relative;

  display: inline-flex;

  align-items: center;

  gap: 17px;

  min-height: 55px;

  padding: 6px 7px 6px 24px;

  border-radius: 100px;

  background: var(--tis-black);

  color: var(--tis-white);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.115em;

  text-transform: uppercase;

  overflow: hidden;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.tis-btn-primary::before {
  content: "";

  position: absolute;

  top: 0;
  left: -100%;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.09),
    transparent
  );

  transition: left 0.7s ease;
}

.tis-btn-primary:hover::before {
  left: 100%;
}

.tis-btn-primary span {
  position: relative;
  z-index: 2;
}

.tis-btn-primary i {
  position: relative;
  z-index: 2;

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--tis-gold);

  color: var(--tis-black);

  font-size: 18px;

  font-style: normal;

  line-height: 1;

  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tis-btn-primary:hover {
  transform: translateY(-4px);

  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.19);
}

.tis-btn-primary:hover i {
  transform: rotate(45deg);
}

/* =========================================================
   RIGHT HERO ART
   ========================================================= */

.tis-hero-art {
  position: relative;

  width: 100%;

  height: 600px;

  display: grid;

  place-items: center;
}

/* =========================================================
   WITHIN WORD
   ========================================================= */

.tis-art-word {
  position: absolute;

  top: 50%;
  left: 50%;

  z-index: 0;

  transform: translate(-50%, -50%);

  color: rgba(16, 16, 15, 0.035);

  font-size: clamp(150px, 18vw, 275px);

  font-weight: 800;

  letter-spacing: -0.1em;

  line-height: 1;

  pointer-events: none;

  user-select: none;
}

/* =========================================================
   IMAGE CIRCLE
   ========================================================= */

.tis-art-circle {
  position: relative;

  z-index: 5;

  width: min(420px, 64%);

  aspect-ratio: 1;

  padding: 10px;

  border-radius: 50%;

  border: 1px solid rgba(194, 138, 43, 0.65);

  background: rgba(255, 255, 255, 0.45);

  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.14),
    0 0 0 14px rgba(194, 138, 43, 0.035),
    0 0 0 30px rgba(194, 138, 43, 0.018);
}

.tis-art-image {
  width: 100%;
  height: 100%;

  overflow: hidden;

  border-radius: 50%;

  background: var(--tis-white);
}

.tis-art-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tis-art-circle:hover img {
  transform: scale(1.045);
}

/* =========================================================
   ORBITS
   ========================================================= */

.tis-orbit {
  position: absolute;

  z-index: 2;

  border-radius: 50%;

  pointer-events: none;
}

.orbit-a {
  width: 475px;
  height: 475px;

  border: 1px solid rgba(194, 138, 43, 0.28);

  transform: rotate(25deg) scaleX(1.18);
}

.orbit-b {
  width: 540px;
  height: 540px;

  border: 1px dashed rgba(16, 16, 15, 0.1);

  transform: rotate(-28deg) scaleX(1.17);
}

/* =========================================================
   DECORATIVE LEAF
   ========================================================= */

.tis-leaf {
  position: absolute;

  z-index: 4;

  left: 6%;
  bottom: 16%;

  width: 75px;

  opacity: 0.75;

  transform: rotate(-12deg);

  pointer-events: none;
}

.tis-leaf svg {
  width: 100%;
  height: auto;

  display: block;

  fill: none;

  stroke: var(--tis-gold);

  stroke-width: 1.15;

  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================================
   GOLD DOTS
   ========================================================= */

.tis-art-dot {
  position: absolute;

  z-index: 9;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--tis-gold);

  box-shadow: 0 0 0 7px rgba(194, 138, 43, 0.08);

  pointer-events: none;
}

.dot-one {
  top: 18%;
  right: 14%;
}

.dot-two {
  right: 12%;
  bottom: 19%;

  width: 6px;
  height: 6px;
}

.dot-three {
  top: 32%;
  left: 12%;

  width: 5px;
  height: 5px;
}

/* =========================================================
   FLOWER
   ========================================================= */

.tis-art-flower {
  position: absolute;

  z-index: 9;

  right: 13%;
  bottom: 16%;

  color: var(--tis-gold);

  font-size: 20px;

  opacity: 0.75;

  pointer-events: none;
}

/* =========================================================
   BACKGROUND SHIFT
   ========================================================= */

.tis-hero-bg-word {
  position: absolute;

  right: -5%;
  bottom: -11%;

  color: rgba(194, 138, 43, 0.04);

  font-size: 25vw;

  font-weight: 800;

  letter-spacing: -0.1em;

  line-height: 0.7;

  pointer-events: none;

  user-select: none;
}

/* =========================================================
   HERO GLOWS
   ========================================================= */

.tis-hero-glow {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}

.tis-glow-one {
  width: 450px;
  height: 450px;

  right: -190px;
  top: 8%;

  background: radial-gradient(
    circle,
    rgba(194, 138, 43, 0.11),
    transparent 68%
  );

  animation: tisGlowMove 9s ease-in-out infinite;
}

.tis-glow-two {
  width: 320px;
  height: 320px;

  left: -170px;
  bottom: -100px;

  background: radial-gradient(circle, rgba(125, 90, 43, 0.07), transparent 70%);

  animation: tisGlowMove 11s ease-in-out infinite reverse;
}

@keyframes tisGlowMove {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(18px, -24px);
  }
}

/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .tis-hero-inner {
    width: min(94%, 920px);
  }

  .tis-hero-content {
    column-gap: 12px;
  }

  .tis-hero-copy h1 {
    font-size: clamp(53px, 7vw, 76px);
  }

  .tis-hero-copy h1 em {
    padding-left: 38px;
  }

  .tis-hero-description {
    font-size: 14px;
  }

  .tis-hero-pillars {
    gap: 8px;
  }

  .tis-pillar {
    padding: 13px 11px;
  }

  .tis-pillar h3 {
    font-size: 9px;
  }

  .tis-pillar p {
    font-size: 8.5px;
  }

  .tis-art-circle {
    width: 350px;
  }

  .orbit-a {
    width: 405px;
    height: 405px;
  }

  .orbit-b {
    width: 460px;
    height: 460px;
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
  .tis-hero-inner {
    width: calc(100% - 40px);
  }

  .tis-hero-content {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(0, 0.95fr);

    column-gap: 5px;

    padding: 48px 0;
  }

  .tis-hero-copy h1 {
    font-size: clamp(48px, 7vw, 66px);
  }

  .tis-hero-description {
    max-width: 450px;

    font-size: 13.5px;
  }

  .tis-hero-pillars {
    max-width: 540px;

    gap: 7px;
  }

  .tis-pillar {
    min-height: 86px;

    padding: 12px 9px;

    gap: 8px;
  }

  .tis-pillar-icon {
    width: 35px;
    height: 35px;

    flex-basis: 35px;
  }

  .tis-pillar-icon svg {
    width: 20px;
    height: 20px;
  }

  .tis-pillar h3 {
    font-size: 8.5px;
  }

  .tis-pillar p {
    font-size: 8px;
  }

  .tis-hero-art {
    height: 500px;
  }

  .tis-art-circle {
    width: 310px;
  }

  .orbit-a {
    width: 360px;
    height: 360px;
  }

  .orbit-b {
    width: 415px;
    height: 415px;
  }

  .tis-art-word {
    font-size: 175px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {
  .tis-hero {
    min-height: auto;
  }

  .tis-hero-inner {
    width: calc(100% - 30px);

    min-height: auto;

    /*
         * Extra top spacing prevents the hero
         * from hiding behind the fixed header.
         */
    padding: calc(var(--header-height, 80px) + 28px) 0 48px;
  }

  .tis-hero-content {
    display: flex;

    flex-direction: column;

    gap: 0;

    padding: 0;
  }

  .tis-hero-copy {
    width: 100%;

    max-width: 100%;
    order: 12;
    margin-top: 15px;
    text-align: center;

    transform: none;
  }

  /* =====================================================
       MOBILE HEADING
       ===================================================== */

  .tis-hero-copy h1 {
    font-size: clamp(48px, 14vw, 68px);

    line-height: 0.92;

    letter-spacing: -0.065em;
  }

  .tis-hero-copy h1 em {
    margin-top: 3px;

    padding-left: 8px;
  }

  /* =====================================================
       MOBILE LINE
       ===================================================== */

  .tis-heading-line {
    width: 100%;

    max-width: 270px;

    margin: 21px auto 0;
  }

  /* =====================================================
       MOBILE DESCRIPTION
       ===================================================== */

  .tis-hero-description {
    width: 100%;

    max-width: 520px;

    margin: 18px auto 0;

    font-size: 14px;

    line-height: 1.68;
  }

  /* =====================================================
       MOBILE PILLARS
       ===================================================== */

  .tis-hero-pillars {
    width: 100%;

    max-width: 390px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 8px;

    margin: 0px auto 0;
  }

  .tis-pillar {
    min-height: 112px;

    align-items: center;

    justify-content: flex-start;

    text-align: center;

    gap: 8px;

    padding: 13px 7px;

    border-radius: 15px;
  }

  .tis-pillar-icon {
    width: 38px;
    height: 38px;

    flex-basis: 38px;

    border-radius: 11px;
  }

  .tis-pillar-icon svg {
    width: 21px;
    height: 21px;
  }

  .tis-pillar h3 {
    font-size: 9px;

    letter-spacing: 0.055em;
  }

  .tis-pillar p {
    font-size: 8px;

    line-height: 1.35;
  }

  /* =====================================================
       MOBILE CTA
       ===================================================== */

  .tis-hero-buttons {
    display: flex;

    justify-content: center;

    margin-top: 55px;
  }

  .tis-btn-primary {
    min-height: 53px;

    padding: 5px 6px 5px 21px;

    gap: 14px;

    font-size: 9px;
  }

  .tis-btn-primary i {
    width: 41px;
    height: 41px;

    font-size: 17px;
  }

  /* =====================================================
       MOBILE ART
       ===================================================== */

  .tis-hero-art {
    width: 100%;

    height: 370px;

    margin-top: 18px;
  }

  .tis-art-circle {
    width: min(295px, 72vw);
  }

  .orbit-a {
    width: 330px;
    height: 330px;
  }

  .orbit-b {
    width: 380px;
    height: 380px;
  }

  .tis-art-word {
    font-size: 105px;
  }

  .tis-leaf {
    left: 0;

    bottom: 14%;

    width: 50px;
  }

  .dot-one {
    top: 16%;
    right: 5%;
  }

  .dot-two {
    right: 5%;
    bottom: 14%;
  }

  .dot-three {
    left: 5%;
    top: 31%;
  }

  .tis-art-flower {
    right: 5%;
    bottom: 12%;

    font-size: 17px;
  }

  .tis-hero-bg-word {
    right: -18%;
    bottom: -3%;

    font-size: 42vw;
  }

  .tis-glow-one {
    width: 300px;
    height: 300px;

    right: -160px;
  }

  .tis-glow-two {
    width: 230px;
    height: 230px;

    left: -130px;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
  .tis-hero-inner {
    width: calc(100% - 24px);

    padding: calc(var(--header-height, 75px) + 22px) 0 42px;
  }

  .tis-hero-copy h1 {
    font-size: clamp(45px, 52px, 60px);
  }

  .tis-heading-line {
    max-width: 240px;
  }

  .tis-hero-description {
    font-size: 13.5px;

    line-height: 1.65;
  }

  .tis-hero-pillars {
    gap: 6px;

    max-width: 365px;
  }

  .tis-pillar {
    min-height: 108px;

    padding: 12px 5px;

    border-radius: 14px;
  }

  .tis-pillar-icon {
    width: 35px;
    height: 35px;

    flex-basis: 35px;
  }

  .tis-pillar-icon svg {
    width: 19px;
    height: 19px;
  }

  .tis-pillar h3 {
    font-size: 8px;
  }

  .tis-pillar p {
    font-size: 7.5px;
  }

  .tis-hero-art {
    height: 335px;

    margin-top: 10px;
  }

  .tis-art-circle {
    width: 255px;
  }

  .orbit-a {
    width: 285px;
    height: 285px;
  }

  .orbit-b {
    width: 325px;
    height: 325px;
  }

  .tis-art-word {
    font-size: 84px;
  }

  .tis-leaf {
    width: 43px;
  }
}

/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {
  .tis-hero-inner {
    width: calc(100% - 20px);
  }

  .tis-hero-copy h1 {
    font-size: 43px;
  }

  .tis-hero-description {
    font-size: 12.8px;
  }

  .tis-hero-pillars {
    gap: 5px;
  }

  .tis-pillar {
    min-height: 102px;
  }

  .tis-pillar h3 {
    font-size: 7.5px;
  }

  .tis-pillar p {
    font-size: 7px;
  }

  .tis-art-circle {
    width: 235px;
  }

  .orbit-a {
    width: 265px;
    height: 265px;
  }

  .orbit-b {
    width: 300px;
    height: 300px;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .tis-heading-line i {
    animation: none !important;
  }

  .tis-glow-one,
  .tis-glow-two {
    animation: none !important;
  }

  .tis-pillar,
  .tis-pillar-icon,
  .tis-pillar-icon svg,
  .tis-btn-primary,
  .tis-btn-primary i,
  .tis-art-image img {
    transition: none !important;
  }
}
/* =========================================================
   SECTION 02 — DISCOVER
   ========================================================= */

.tis-discover {
  position: relative;
  min-height: auto;
  overflow: hidden;

  background: var(--tis-black);
  color: var(--tis-cream);
}

/* =========================================================
   BACKGROUND YOU
   ========================================================= */

.tis-discover-bg {
  position: absolute;

  right: -4%;
  bottom: -20%;

  z-index: 0;

  color: rgba(255, 255, 255, 0.025);

  font-size: clamp(260px, 30vw, 480px);

  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 0.7;

  pointer-events: none;
  user-select: none;
}

/* =========================================================
   GLOW
   ========================================================= */

.tis-discover::before {
  content: "";

  position: absolute;

  top: -220px;
  left: 32%;

  width: 650px;
  height: 380px;

  border-radius: 50%;

  background: radial-gradient(
    ellipse,
    rgba(194, 138, 43, 0.12),
    transparent 68%
  );

  pointer-events: none;
}

.tis-discover-glow {
  position: absolute;

  width: 350px;
  height: 350px;

  right: -180px;
  bottom: -180px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(194, 138, 43, 0.07),
    transparent 70%
  );

  pointer-events: none;
}

/* =========================================================
   INNER
   ========================================================= */

.tis-discover-inner {
  position: relative;
  z-index: 5;

  width: min(1220px, calc(100% - 70px));

  margin: auto;

  /*
       IMPORTANT:
       No 100vh here.
       Section height will be based on content.
    */

  padding: 95px 0 85px;
}

/* =========================================================
   MAIN GRID
   ========================================================= */

.tis-discover-grid {
  width: 100%;

  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  align-items: center;

  gap: 90px;
}

/* =========================================================
   LEFT HEADING
   ========================================================= */

.tis-discover-heading {
  position: relative;
  z-index: 2;
}

/* =========================================================
   KICKER
   ========================================================= */

.tis-discover-kicker {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 20px;

  color: var(--tis-gold);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}

/* =========================================================
   HEADING
   ========================================================= */

.tis-discover-heading h2 {
  margin: 0;

  max-width: 650px;

  font-size: clamp(55px, 6.2vw, 80px);

  line-height: 0.94;

  letter-spacing: -0.065em;

  font-weight: 500;
}

.tis-discover-heading h2 em {
  color: var(--tis-gold);

  font-family: Georgia, "Times New Roman", serif;

  font-weight: 400;

  font-style: italic;

  line-height: 1.05;
}

/* =========================================================
   RIGHT CONTENT
   ========================================================= */

.tis-discover-content {
  position: relative;

  padding-left: 38px;

  border-left: 1px solid rgba(194, 138, 43, 0.3);
}

/* Gold accent on vertical line */

.tis-discover-content::before {
  content: "";

  position: absolute;

  top: 0;
  left: -2px;

  width: 4px;
  height: 55px;

  border-radius: 10px;

  background: var(--tis-gold);
}

/* =========================================================
   INTRO
   ========================================================= */

.tis-discover-intro p {
  max-width: 500px;

  margin: 0 0 25px;

  color: rgba(247, 245, 241, 0.88);

  font-size: 18px;

  line-height: 1.7;
}

/* =========================================================
   BODY
   ========================================================= */

.tis-discover-body {
  max-width: 500px;
}

.tis-discover-body p {
  margin: 0 0 17px;

  color: rgba(247, 245, 241, 0.62);

  font-size: 15px;

  line-height: 1.72;
}

.tis-discover-body p:last-child {
  margin-bottom: 0;

  color: rgba(247, 245, 241, 0.7);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {
  .tis-discover-inner {
    width: min(92%, 850px);

    padding: 75px 0 65px;
  }

  .tis-discover-grid {
    grid-template-columns: 1fr 1fr;

    gap: 45px;
  }

  .tis-discover-heading h2 {
    font-size: clamp(50px, 7vw, 72px);
  }

  .tis-discover-content {
    padding-left: 28px;
  }

  .tis-discover-intro p {
    font-size: 16px;
  }

  .tis-discover-body p {
    font-size: 14px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {
  .tis-discover-inner {
    width: calc(100% - 34px);

    padding: 65px 0 55px;
  }

  .tis-discover-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .tis-discover-heading {
    text-align: center;
  }

  .tis-discover-kicker {
    justify-content: center;
  }

  .tis-discover-heading h2 {
    font-size: clamp(48px, 14vw, 68px);

    line-height: 0.93;
  }

  .tis-discover-content {
    padding-left: 23px;

    text-align: left;
  }

  .tis-discover-intro p {
    font-size: 15px;

    line-height: 1.65;
  }

  .tis-discover-body p {
    font-size: 14px;

    line-height: 1.68;
  }

  .tis-discover-bg {
    right: -15%;
    bottom: -4%;

    font-size: 55vw;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {
  .tis-discover-inner {
    padding: 55px 0 48px;
  }

  .tis-discover-grid {
    gap: 30px;
  }

  .tis-discover-heading h2 {
    font-size: 47px;
  }

  .tis-discover-content {
    padding-left: 19px;
  }

  .tis-discover-intro p {
    font-size: 14px;
  }

  .tis-discover-body p {
    font-size: 13.5px;
  }
}
/* =========================================================
   THE INNER SHIFT
   SECTION 03 — RECOGNITION
   ========================================================= */

.tis-recognition {
  position: relative;
  overflow: hidden;

  background: var(--tis-cream);
  color: var(--tis-black);

  padding: 80px 0 75px;
}

/* =========================================================
   BACKGROUND WORD
   ========================================================= */

.tis-recognition-bg {
  position: absolute;

  left: -5%;
  bottom: -13%;

  z-index: 0;

  color: rgba(16, 16, 15, 0.025);

  font-size: clamp(230px, 27vw, 430px);

  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 0.7;

  white-space: nowrap;

  pointer-events: none;
  user-select: none;
}

/* =========================================================
   INNER
   ========================================================= */

.tis-recognition-inner {
  position: relative;
  z-index: 2;

  width: min(1200px, calc(100% - 70px));

  margin: 0 auto;
}

/* =========================================================
   MAIN GRID
   ========================================================= */

.tis-recognition-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.88fr)
    minmax(0, 1.12fr);

  gap: 75px;

  align-items: center;
}

/* =========================================================
   LEFT CONTENT
   ========================================================= */

.tis-recognition-intro {
  max-width: 560px;
}

/* =========================================================
   KICKER
   ========================================================= */

.tis-recognition-kicker {
  display: inline-flex;

  align-items: center;
  gap: 10px;

  margin-bottom: 20px;

  color: var(--tis-gold);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}

/* =========================================================
   HEADING
   ========================================================= */

.tis-recognition-title {
  max-width: 560px;

  margin: 0;

  font-size: clamp(56px, 6vw, 75px);

  line-height: 0.92;

  letter-spacing: -0.065em;

  font-weight: 500;
}

.tis-recognition-title em {
  display: block;

  margin-top: 4px;

  color: var(--tis-gold);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 0.97em;

  font-weight: 400;

  font-style: italic;

  line-height: 1.05;
}

/* =========================================================
   LEFT PARAGRAPHS
   ========================================================= */

.tis-recognition-lead {
  max-width: 500px;

  margin: 27px 0 0;

  color: #3f3d39;

  font-size: 16px;

  line-height: 1.72;
}

.tis-recognition-lead.muted {
  margin-top: 13px;

  color: #706c65;
}

/* =========================================================
   QUESTION
   ========================================================= */

.tis-recognition-question {
  max-width: 500px;

  margin-top: 30px;

  padding: 18px 22px;

  border-radius: 12px;

  background: rgba(194, 138, 43, 0.075);
}

.tis-recognition-question span {
  display: block;

  margin-bottom: 8px;

  color: var(--tis-gold);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}

.tis-recognition-question p {
  margin: 0;

  color: var(--tis-black);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 18px;

  line-height: 1.5;
}

/* =========================================================
   RIGHT PATTERNS
   ========================================================= */

.tis-recognition-patterns {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 14px;
}

/* =========================================================
   PATTERN CARD
   ========================================================= */

.tis-pattern {
  position: relative;

  min-height: 190px;

  padding: 25px 25px 23px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  border-radius: 16px;

  background: rgba(255, 255, 255, 0.68);

  box-shadow: 0 8px 30px rgba(16, 16, 15, 0.045);

  overflow: hidden;

  transition:
    transform 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease;
}

/* Gold corner accent */

.tis-pattern::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 4px;
  height: 42px;

  border-radius: 0 0 6px 0;

  background: var(--tis-gold);
}

.tis-pattern:hover {
  transform: translateY(-5px);

  background: rgba(255, 255, 255, 0.95);

  box-shadow: 0 18px 42px rgba(16, 16, 15, 0.09);
}

/* =========================================================
   NUMBER
   ========================================================= */

.tis-pattern-number {
  width: 38px;
  height: 38px;

  display: grid;

  place-items: center;

  margin-bottom: 22px;

  border-radius: 50%;

  background: rgba(194, 138, 43, 0.1);

  color: var(--tis-gold);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.05em;
}

/* =========================================================
   TITLE
   ========================================================= */

.tis-pattern-content h3 {
  margin: 0 0 9px;

  color: var(--tis-black);

  font-size: clamp(21px, 2.1vw, 27px);

  font-weight: 550;

  line-height: 1.08;

  letter-spacing: -0.035em;

  transition: color 0.3s ease;
}

.tis-pattern:hover .tis-pattern-content h3 {
  color: var(--tis-gold);
}

/* =========================================================
   DESCRIPTION
   ========================================================= */

.tis-pattern-content p {
  max-width: 360px;

  margin: 0;

  color: #66625b;

  font-size: 13.5px;

  line-height: 1.65;
}

/* =========================================================
   TABLET — 1100px
   ========================================================= */

@media (max-width: 1100px) {
  .tis-recognition {
    padding: 70px 0 65px;
  }

  .tis-recognition-inner {
    width: min(92%, 900px);
  }

  .tis-recognition-grid {
    gap: 45px;
  }

  .tis-recognition-title {
    font-size: clamp(50px, 6.8vw, 72px);
  }

  .tis-recognition-lead {
    font-size: 14.5px;
  }

  .tis-recognition-question p {
    font-size: 16px;
  }

  .tis-pattern {
    min-height: 175px;

    padding: 21px 20px;
  }

  .tis-pattern-content h3 {
    font-size: 21px;
  }

  .tis-pattern-content p {
    font-size: 12.5px;
  }
}

/* =========================================================
   TABLET / SMALL LAPTOP — 850px
   ========================================================= */

@media (max-width: 850px) {
  .tis-recognition-grid {
    grid-template-columns: 1fr;

    gap: 42px;
  }

  .tis-recognition-intro {
    max-width: 680px;
  }

  .tis-recognition-title {
    font-size: clamp(55px, 9vw, 78px);
  }

  .tis-recognition-lead {
    max-width: 620px;

    font-size: 15px;
  }

  .tis-recognition-question {
    max-width: 600px;
  }

  .tis-recognition-patterns {
    width: 100%;
  }

  .tis-pattern {
    min-height: 180px;
  }
}

/* =========================================================
   MOBILE — 600px
   ========================================================= */

@media (max-width: 600px) {
  .tis-recognition {
    padding: 60px 0 50px;
  }

  .tis-recognition-inner {
    width: calc(100% - 30px);
  }

  /* LEFT */

  .tis-recognition-intro {
    text-align: center;
  }

  .tis-recognition-kicker {
    justify-content: center;

    font-size: 10px;

    margin-bottom: 17px;
  }

  .tis-recognition-title {
    font-size: clamp(48px, 14vw, 67px);

    line-height: 0.91;
  }

  .tis-recognition-title em {
    margin-top: 3px;
  }

  .tis-recognition-lead {
    max-width: 520px;

    margin-left: auto;
    margin-right: auto;

    font-size: 14px;

    line-height: 1.68;
  }

  .tis-recognition-question {
    margin: 25px auto 0;

    padding: 17px 19px;

    text-align: left;
  }

  .tis-recognition-question p {
    font-size: 16px;

    line-height: 1.48;
  }

  /* CARDS */

  .tis-recognition-patterns {
    grid-template-columns: 1fr;

    gap: 11px;
  }

  .tis-pattern {
    min-height: auto;

    padding: 19px 18px 20px;

    border-radius: 14px;
  }

  .tis-pattern-number {
    width: 36px;
    height: 36px;

    margin-bottom: 17px;
  }

  .tis-pattern-content h3 {
    margin-bottom: 7px;

    font-size: 22px;
  }

  .tis-pattern-content p {
    max-width: none;

    font-size: 13.5px;

    line-height: 1.65;
  }

  .tis-pattern:hover {
    transform: none;
  }

  /* BACKGROUND */

  .tis-recognition-bg {
    left: auto;
    right: -18%;

    bottom: -2%;

    font-size: 58vw;
  }
}

/* =========================================================
   SMALL MOBILE — 430px
   ========================================================= */

@media (max-width: 430px) {
  .tis-recognition {
    padding: 52px 0 45px;
  }

  .tis-recognition-inner {
    width: calc(100% - 26px);
  }

  .tis-recognition-grid {
    gap: 32px;
  }

  .tis-recognition-title {
    font-size: 47px;
  }

  .tis-recognition-lead {
    font-size: 13.5px;
  }

  .tis-recognition-question {
    padding: 16px 17px;
  }

  .tis-recognition-question span {
    font-size: 9px;
  }

  .tis-recognition-question p {
    font-size: 15px;
  }

  .tis-pattern {
    padding: 18px 16px 19px;
  }

  .tis-pattern-number {
    width: 34px;
    height: 34px;

    margin-bottom: 15px;
  }

  .tis-pattern-content h3 {
    font-size: 20px;
  }

  .tis-pattern-content p {
    font-size: 13px;
  }
}

/* =========================================================
   VERY SMALL DEVICES — 360px
   ========================================================= */

@media (max-width: 360px) {
  .tis-recognition-title {
    font-size: 43px;
  }

  .tis-recognition-lead {
    font-size: 13px;
  }

  .tis-pattern-content h3 {
    font-size: 19px;
  }

  .tis-pattern-content p {
    font-size: 12.5px;
  }
}
/* =========================================================
   ROOT — REFINED TYPOGRAPHY
   ========================================================= */

.tis-root {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;

  color: var(--tis-white);

  background:
    radial-gradient(
      circle at 78% 15%,
      rgba(194, 138, 43, 0.085),
      transparent 30%
    ),
    radial-gradient(
      circle at 12% 88%,
      rgba(125, 90, 43, 0.055),
      transparent 30%
    ),
    linear-gradient(135deg, #10100f 0%, #15130f 50%, #12110f 100%);

  padding: 70px 0 76px;
}

/* =========================================================
   BACKGROUND WORD
   ========================================================= */

.tis-root-word {
  position: absolute;

  right: -4%;
  bottom: -8%;

  font-family: "DM Sans", "Inter", Arial, sans-serif;

  font-size: clamp(180px, 25vw, 380px);

  font-weight: 700;

  line-height: 0.7;

  letter-spacing: -0.11em;

  color: rgba(194, 138, 43, 0.025);

  pointer-events: none;
  user-select: none;
}

/* =========================================================
   MAIN GRID
   ========================================================= */

.tis-root-shell {
  position: relative;
  z-index: 2;

  width: min(1180px, calc(100% - 70px));

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 0.84fr)
    minmax(0, 1.16fr);

  gap: 72px;

  align-items: start;
}

/* =========================================================
   IMAGE
   ========================================================= */

.tis-root-image-wrap {
  position: relative;

  width: 100%;
  height: 325px;

  overflow: hidden;

  border-radius: 6px;

  background: var(--tis-black-soft);

  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.3);
}

.tis-root-image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transform: scale(1.04);

  filter: saturate(0.78) contrast(1.04);

  transition:
    transform 1.4s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.8s ease;
}

.tis-root-image-wrap:hover .tis-root-image {
  transform: scale(1.08);

  filter: saturate(0.92) contrast(1.06);
}

/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.tis-root-image-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(16, 16, 15, 0.02) 20%,
    rgba(16, 16, 15, 0.08) 50%,
    rgba(16, 16, 15, 0.76) 100%
  );

  pointer-events: none;
}

/* =========================================================
   IMAGE CIRCLE
   ========================================================= */

.tis-root-image-circle {
  position: absolute;

  top: 18px;
  right: 18px;

  width: 72px;
  height: 72px;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(214, 166, 77, 0.65);

  border-radius: 50%;

  background: rgba(16, 16, 15, 0.28);

  backdrop-filter: blur(8px);

  color: var(--tis-gold-light);

  transition:
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1),
    background 0.5s ease;
}

.tis-root-image-wrap:hover .tis-root-image-circle {
  transform: rotate(8deg) scale(1.07);

  background: rgba(194, 138, 43, 0.12);
}

.tis-root-image-circle span {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.tis-root-image-circle strong {
  margin-top: 3px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 12px;

  font-weight: 400;
}

/* =========================================================
   LEFT MESSAGE
   ========================================================= */

.tis-root-message {
  padding-top: 25px;
}

.tis-root-kicker {
  margin: 0 0 13px;

  color: var(--tis-gold-light);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.17em;

  text-transform: uppercase;
}

.tis-root-message h2 {
  max-width: 560px;

  margin: 0;

  color: #ffffff;

  font-family: "DM Sans", "Inter", Arial, sans-serif;

  font-size: clamp(44px, 4.5vw, 64px);

  font-weight: 500;

  line-height: 0.94;

  letter-spacing: -0.065em;
}

.tis-root-message h2 em {
  display: block;

  margin-top: 4px;

  color: var(--tis-gold-light);

  font-family: Georgia, "Times New Roman", serif;

  font-weight: 400;

  font-style: italic;

  line-height: 1.05;
}

.tis-root-message > p:last-child {
  max-width: 510px;

  margin: 20px 0 0;

  color: rgba(255, 255, 255, 0.66);

  font-size: 14px;

  line-height: 1.75;
}

/* =========================================================
   RIGHT CONTENT
   ========================================================= */

.tis-root-content {
  width: 100%;
  min-width: 0;
}

.tis-root-list {
  display: flex;
  flex-direction: column;

  width: 100%;
}

/* =========================================================
   STORY ITEM
   ========================================================= */

.tis-root-item {
  position: relative;

  display: grid;

  grid-template-columns: 78px minmax(0, 1fr);

  column-gap: 19px;

  width: 100%;

  padding: 4px 0 25px;

  box-sizing: border-box;

  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.tis-root-item + .tis-root-item {
  padding-top: 25px;
}

/* =========================================================
   LARGE NUMBER
   ========================================================= */

.tis-root-number {
  align-self: start;

  font-family: "DM Sans", "Inter", Arial, sans-serif;

  font-size: 54px;

  line-height: 0.8;

  font-weight: 600;

  letter-spacing: -0.075em;

  color: rgba(214, 166, 77, 0.23);

  transition:
    color 0.45s ease,
    transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* IMPORTANT:
   No dot / no pseudo element
*/

.tis-root-number::after {
  display: none !important;
}

/* =========================================================
   POINT CONTENT
   ========================================================= */

.tis-root-item-content {
  position: relative;

  min-width: 0;
}

.tis-root-item-content h3 {
  margin: 0 0 9px;

  color: rgba(255, 255, 255, 0.96);

  font-family: "DM Sans", "Inter", Arial, sans-serif;

  font-size: clamp(28px, 2.6vw, 36px);

  font-weight: 500;

  line-height: 1;

  letter-spacing: -0.045em;

  transition:
    color 0.4s ease,
    transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* =========================================================
   PARAGRAPH — MORE VISIBLE
   ========================================================= */

.tis-root-item-content p {
  max-width: 560px;

  margin: 0;

  color: rgba(255, 255, 255, 0.68);

  font-family: "DM Sans", "Inter", Arial, sans-serif;

  font-size: 15px;

  font-weight: 400;

  line-height: 1.72;

  letter-spacing: -0.005em;

  transition:
    color 0.45s ease,
    transform 0.45s ease;
}

/* =========================================================
   SUBTLE GOLD ATMOSPHERE ON HOVER
   ========================================================= */

.tis-root-item::before {
  content: "";

  position: absolute;

  left: 25px;
  top: 50%;

  width: 300px;
  height: 180px;

  transform: translate(-50%, -50%) scale(0.6);

  border-radius: 50%;

  background: radial-gradient(
    ellipse,
    rgba(194, 138, 43, 0.065),
    transparent 70%
  );

  opacity: 0;

  pointer-events: none;

  transition:
    opacity 0.55s ease,
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.tis-root-item:hover {
  transform: translateX(7px);
}

.tis-root-item:hover::before {
  opacity: 1;

  transform: translate(-50%, -50%) scale(1);
}

.tis-root-item:hover .tis-root-number {
  color: rgba(214, 166, 77, 0.92);

  transform: translateX(3px);
}

.tis-root-item:hover .tis-root-item-content h3 {
  color: var(--tis-gold-light);

  transform: translateX(4px);
}

.tis-root-item:hover .tis-root-item-content p {
  color: rgba(255, 255, 255, 0.82);

  transform: translateX(4px);
}

/* =========================================================
   THE SHIFT
   ========================================================= */

.tis-root-item-final .tis-root-number {
  color: rgba(214, 166, 77, 0.42);
}

.tis-root-item-final .tis-root-item-content h3 {
  color: var(--tis-gold-light);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {
  .tis-root-shell {
    width: min(92%, 900px);

    gap: 48px;
  }

  .tis-root-image-wrap {
    height: 300px;
  }

  .tis-root-message h2 {
    font-size: clamp(40px, 5vw, 56px);
  }

  .tis-root-item {
    grid-template-columns: 65px minmax(0, 1fr);
  }

  .tis-root-number {
    font-size: 47px;
  }

  .tis-root-item-content h3 {
    font-size: 27px;
  }

  .tis-root-item-content p {
    font-size: 14px;
  }
}

/* =========================================================
   TABLET PORTRAIT
   ========================================================= */

@media (max-width: 800px) {
  .tis-root {
    padding: 58px 0 65px;
  }

  .tis-root-shell {
    width: min(92%, 700px);

    display: flex;

    flex-direction: column;

    gap: 40px;
  }

  .tis-root-left {
    display: grid;

    grid-template-columns:
      minmax(0, 0.9fr)
      minmax(0, 1.1fr);

    gap: 28px;

    align-items: center;
  }

  .tis-root-image-wrap {
    height: 275px;
  }

  .tis-root-message {
    padding-top: 0;
  }

  .tis-root-message h2 {
    font-size: clamp(40px, 6vw, 55px);
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .tis-root {
    padding: 48px 0 52px;
  }

  .tis-root-shell {
    width: calc(100% - 30px);

    display: flex;

    flex-direction: column;

    gap: 34px;
  }

  .tis-root-left {
    display: flex;

    flex-direction: column;
  }

  /* IMAGE */

  .tis-root-image-wrap {
    height: 265px;

    width: 100%;
  }

  /* MESSAGE */

  .tis-root-message {
    padding-top: 23px;

    text-align: center;
  }

  .tis-root-kicker {
    font-size: 8px;
  }

  .tis-root-message h2 {
    font-size: clamp(39px, 45px, 55px);

    line-height: 0.95;
  }

  .tis-root-message > p:last-child {
    margin-top: 16px;

    font-size: 13px;

    line-height: 1.72;
  }

  /* LIST */

  .tis-root-item {
    grid-template-columns: 52px minmax(0, 1fr);

    column-gap: 13px;

    padding: 4px 0 23px;
  }

  .tis-root-item + .tis-root-item {
    padding-top: 23px;
  }

  /* NUMBER */

  .tis-root-number {
    font-size: 39px;
  }

  /* HEADING */

  .tis-root-item-content h3 {
    margin-bottom: 8px;

    font-size: clamp(23px, 7vw, 28px);

    line-height: 1;
  }

  /* PARAGRAPH */

  .tis-root-item-content p {
    font-size: 13px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.7);
  }

  /* Remove hover movement on mobile */

  .tis-root-item:hover {
    transform: none;
  }

  .tis-root-item:hover .tis-root-item-content h3 {
    transform: none;
  }

  .tis-root-item:hover .tis-root-item-content p {
    transform: none;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {
  .tis-root {
    padding: 43px 0 47px;
  }

  .tis-root-shell {
    width: calc(100% - 24px);
  }

  .tis-root-image-wrap {
    height: 240px;
  }

  .tis-root-message h2 {
    font-size: 37px;
  }

  .tis-root-message > p:last-child {
    font-size: 12.5px;
  }

  .tis-root-item {
    grid-template-columns: 45px minmax(0, 1fr);

    column-gap: 11px;
  }

  .tis-root-number {
    font-size: 35px;
  }

  .tis-root-item-content h3 {
    font-size: 21px;
  }

  .tis-root-item-content p {
    font-size: 12.5px;

    line-height: 1.68;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .tis-root *,
  .tis-root *::before,
  .tis-root *::after {
    animation: none !important;
    transition: none !important;
  }
}
/* =========================================================
   SECTION 05 — THE TRIGGER
========================================================= */

.tis-trigger {
  position: relative;
  overflow: hidden;
  background: var(--tis-cream);
  color: var(--tis-black);
  padding: 85px 0 90px;
}

/* ---------------------------------------------------------
   INNER
--------------------------------------------------------- */

.tis-trigger-inner {
  position: relative;
  z-index: 2;

  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;

  gap: 80px;
}

/* ---------------------------------------------------------
   LEFT CONTENT
--------------------------------------------------------- */

.tis-trigger-content {
  max-width: 650px;
}

/* LABEL */

.tis-trigger-label {
  display: flex;
  align-items: center;
  gap: 13px;

  margin-bottom: 25px;

  color: var(--tis-brown);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.tis-trigger-label span {
  color: var(--tis-gold);
  font-size: 13px;
}

.tis-trigger-label i {
  width: 38px;
  height: 1px;

  background: var(--tis-gold);

  display: block;
}

/* ---------------------------------------------------------
   HEADING
--------------------------------------------------------- */

.tis-trigger-title {
  margin: 0;

  max-width: 650px;

  font-size: clamp(55px, 6vw, 75px);
  line-height: 0.94;

  font-weight: 500;

  letter-spacing: -0.055em;
}

.tis-trigger-title em {
  display: block;

  margin-top: 4px;

  color: var(--tis-gold);

  font-family: Georgia, serif;
  font-weight: 400;
  font-style: italic;

  letter-spacing: -0.045em;
}

/* ---------------------------------------------------------
   TEXT
--------------------------------------------------------- */

.tis-trigger-lead {
  max-width: 570px;

  margin: 30px 0 10px;

  color: #393631;

  font-size: 18px;
  line-height: 1.7;
}

.tis-trigger-description {
  max-width: 560px;

  margin: 0;

  color: #777168;

  font-size: 15px;
  line-height: 1.75;
}

/* ---------------------------------------------------------
   POINTS
--------------------------------------------------------- */

.tis-trigger-points {
  margin-top: 38px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  column-gap: 45px;
  row-gap: 27px;
}

/* SINGLE POINT */

.tis-trigger-point {
  display: grid;

  grid-template-columns: 38px 1fr;

  gap: 15px;

  align-items: start;

  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* NUMBER */

.tis-trigger-point > span {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  border-radius: 50%;

  background: rgba(194, 138, 43, 0.1);

  color: var(--tis-gold);

  font-size: 10px;
  font-weight: 700;

  transition:
    background 0.4s ease,
    color 0.4s ease,
    transform 0.4s ease;
}

/* POINT TITLE */

.tis-trigger-point h3 {
  margin: 2px 0 6px;

  color: var(--tis-black);

  font-size: 19px;
  line-height: 1.1;

  font-weight: 600;

  transition: color 0.35s ease;
}

/* POINT TEXT */

.tis-trigger-point p {
  margin: 0;

  color: #777168;

  font-size: 13px;
  line-height: 1.6;
}

/* HOVER */

.tis-trigger-point:hover {
  transform: translateY(-5px);
}

.tis-trigger-point:hover > span {
  background: var(--tis-gold);
  color: var(--tis-white);

  transform: scale(1.08);
}

.tis-trigger-point:hover h3 {
  color: var(--tis-gold);
}

/* ---------------------------------------------------------
   RIGHT IMAGE
--------------------------------------------------------- */

.tis-trigger-visual {
  position: relative;

  min-height: 570px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE WRAPPER */

.tis-trigger-image-wrap {
  position: relative;

  width: min(520px, 85%);

  aspect-ratio: 0.78;

  overflow: hidden;

  background: #ddd8cf;

  box-shadow: 0 25px 70px rgba(16, 16, 15, 0.13);
}

/* IMAGE */

.tis-trigger-image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.tis-trigger-image-wrap:hover .tis-trigger-image {
  transform: scale(1.045);
}

/* GOLD SHAPE */

.tis-trigger-image-shape {
  position: absolute;

  width: 75px;
  height: 75px;

  right: -34px;
  bottom: 55px;

  border-radius: 50%;

  border: 1px solid rgba(194, 138, 43, 0.65);

  pointer-events: none;
}

.tis-trigger-image-shape::before {
  content: "";

  position: absolute;

  inset: 9px;

  border-radius: 50%;

  background: rgba(194, 138, 43, 0.1);
}

/* BACKGROUND WORD */

.tis-trigger-visual-word {
  position: absolute;

  right: -35px;
  top: 50%;

  transform: translateY(-50%) rotate(90deg);

  color: rgba(194, 138, 43, 0.08);

  font-size: 80px;
  font-weight: 700;

  letter-spacing: 0.08em;

  pointer-events: none;
}

/* ---------------------------------------------------------
   RESPONSIVE — TABLET
--------------------------------------------------------- */

@media (max-width: 1000px) {
  .tis-trigger {
    padding: 70px 0 75px;
  }

  .tis-trigger-inner {
    width: min(900px, calc(100% - 50px));

    grid-template-columns: 1fr 0.8fr;

    gap: 45px;
  }

  .tis-trigger-title {
    font-size: clamp(50px, 7vw, 72px);
  }

  .tis-trigger-lead {
    font-size: 16px;
  }

  .tis-trigger-points {
    column-gap: 25px;
  }

  .tis-trigger-visual {
    min-height: 500px;
  }

  .tis-trigger-image-wrap {
    width: min(350px, 100%);
  }

  .tis-trigger-visual-word {
    display: none;
  }
}

/* ---------------------------------------------------------
   RESPONSIVE — MOBILE
--------------------------------------------------------- */

@media (max-width: 767px) {
  .tis-trigger {
    padding: 65px 0 70px;
  }

  .tis-trigger-inner {
    width: calc(100% - 32px);

    display: flex;
    flex-direction: column;

    gap: 45px;
  }

  /* CONTENT */

  .tis-trigger-content {
    max-width: 100%;
  }

  .tis-trigger-label {
    margin-bottom: 20px;

    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .tis-trigger-title {
    font-size: clamp(47px, 45px, 66px);

    line-height: 0.96;
  }

  .tis-trigger-lead {
    margin-top: 25px;

    font-size: 16px;
    line-height: 1.7;
  }

  .tis-trigger-description {
    font-size: 14px;
    line-height: 1.7;
  }

  /* POINTS */

  .tis-trigger-points {
    margin-top: 32px;

    grid-template-columns: 1fr;

    gap: 25px;
  }

  .tis-trigger-point {
    grid-template-columns: 38px 1fr;

    gap: 14px;
  }

  .tis-trigger-point h3 {
    font-size: 18px;
  }

  .tis-trigger-point p {
    font-size: 13px;
    line-height: 1.6;
  }

  /* IMAGE */

  .tis-trigger-visual {
    min-height: auto;

    width: 100%;
  }

  .tis-trigger-image-wrap {
    width: min(340px, 82vw);

    aspect-ratio: 0.78;
  }

  .tis-trigger-image-shape {
    width: 58px;
    height: 58px;

    right: -15px;
    bottom: 35px;
  }
}

/* ---------------------------------------------------------
   SMALL MOBILE
--------------------------------------------------------- */

@media (max-width: 420px) {
  .tis-trigger {
    padding: 55px 0 60px;
  }

  .tis-trigger-inner {
    width: calc(100% - 26px);

    gap: 38px;
  }

  .tis-trigger-title {
    font-size: 46px;
  }

  .tis-trigger-lead {
    font-size: 15px;
  }

  .tis-trigger-description {
    font-size: 13px;
  }

  .tis-trigger-point h3 {
    font-size: 17px;
  }

  .tis-trigger-point p {
    font-size: 12.5px;
  }

  .tis-trigger-image-wrap {
    width: 78vw;
  }
}

/* ---------------------------------------------------------
   REDUCED MOTION
--------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .tis-trigger-point,
  .tis-trigger-point > span,
  .tis-trigger-point h3,
  .tis-trigger-image {
    transition: none;
  }
}
/* =========================================================
   SECTION 08 — RESPONSE
========================================================= */

.tis08x-response {
  position: relative;
  overflow: hidden;

  min-height: 540px;

  display: flex;
  align-items: center;

  padding: 60px 0 65px;

  background:
    radial-gradient(
      circle at 75% 45%,
      rgba(194, 138, 43, 0.1),
      transparent 34%
    ),
    linear-gradient(135deg, #ebe5d9 0%, #f3efe8 55%, #e8e0d2 100%);

  color: var(--tis-black);
}

/* =========================================================
   WIDER CONTAINER
========================================================= */

.tis08x-container {
  position: relative;
  z-index: 5;

  width: min(1240px, calc(100% - 70px));

  margin: 0 auto;

  text-align: center;
}

/* =========================================================
   SECTION LABEL
========================================================= */

.tis08x-label {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 14px;

  margin-bottom: 28px;

  color: var(--tis-brown);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.tis08x-label i {
  width: 55px;
  height: 1px;

  background: var(--tis-gold);
}

.tis08x-label strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

/* =========================================================
   CONTENT
========================================================= */

.tis08x-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* =========================================================
   TITLE
========================================================= */

.tis08x-title {
  width: 100%;
  max-width: 1120px;

  margin: 0 auto;

  color: var(--tis-black);

  font-family: "DM Sans", "Inter", Arial, sans-serif;

      font-size: clamp(46px, 6vw, 60px);
    font-weight: 500;
    line-height: 0.64;


  letter-spacing: -0.065em;
}

/* GOLDEN PART */

.tis08x-title em {
  display: block;

  margin-top: 8px;

  color: var(--tis-gold);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 0.94em;

  font-weight: 400;

  font-style: italic;

  line-height: 1.02;

  letter-spacing: -0.045em;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.tis08x-description {
  width: 100%;
  max-width: 650px;

  margin: 27px auto 0;

  color: rgba(16, 16, 15, 0.64);

  font-size: 15px;

  line-height: 1.75;
}

/* =========================================================
   BUTTON
========================================================= */

.tis08x-button {
  display: inline-flex;
  align-items: center;

  gap: 17px;

  min-height: 56px;

  margin-top: 27px;

  padding: 6px 7px 6px 25px;

  border-radius: 50px;

  background: var(--tis-black);

  color: var(--tis-white);

  text-decoration: none;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.09em;

  text-transform: uppercase;

  box-shadow: 0 15px 35px rgba(16, 16, 15, 0.14);

  transition:
    transform 0.4s ease,
    background 0.35s ease,
    box-shadow 0.4s ease;
}

.tis08x-button b {
  display: grid;
  place-items: center;

  width: 43px;
  height: 43px;

  border-radius: 50%;

  background: var(--tis-gold);

  color: var(--tis-black);

  font-size: 18px;
  font-weight: 400;
  font-style: normal;

  transition: transform 0.4s ease;
}

.tis08x-button:hover {
  transform: translateY(-4px);

  background: var(--tis-black-soft);

  box-shadow: 0 20px 45px rgba(16, 16, 15, 0.18);
}

.tis08x-button:hover b {
  transform: rotate(45deg);
}

/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.tis08x-glow {
  position: absolute;

  width: 500px;
  height: 500px;

  right: -180px;
  top: 50%;

  transform: translateY(-50%);

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(194, 138, 43, 0.12),
    transparent 68%
  );

  pointer-events: none;
}

.tis08x-ring {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}

.tis08x-ring-one {
  width: 520px;
  height: 520px;

  right: -280px;
  top: 50%;

  transform: translateY(-50%);

  border: 1px solid rgba(194, 138, 43, 0.18);
}

.tis08x-ring-two {
  width: 390px;
  height: 390px;

  right: -210px;
  top: 50%;

  transform: translateY(-50%);

  border: 1px solid rgba(194, 138, 43, 0.11);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .tis08x-response {
    min-height: 510px;
    padding: 55px 0 60px;
  }

  .tis08x-container {
    width: min(900px, calc(100% - 50px));
  }

  .tis08x-title {
    max-width: 850px;

    font-size: clamp(48px, 7vw, 70px);
  }

  .tis08x-description {
    max-width: 600px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
  .tis08x-response {
    min-height: auto;

    padding: 55px 0 60px;
  }

  .tis08x-container {
    width: calc(100% - 28px);
  }

  .tis08x-label {
    gap: 10px;

    margin-bottom: 23px;

    font-size: 9px;

    letter-spacing: 0.14em;
  }

  .tis08x-label i {
    width: 35px;
  }

  .tis08x-label strong {
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .tis08x-title {
    max-width: 100%;

    font-size: clamp(38px, 40px, 55px);

    line-height: 0.97;
  }

  .tis08x-title em {
    margin-top: 7px;

    font-size: 0.94em;

    line-height: 1.04;
  }

  .tis08x-description {
    max-width: 480px;

    margin-top: 22px;

    font-size: 13px;

    line-height: 1.7;
  }

  .tis08x-button {
    margin-top: 24px;

    min-height: 53px;

    padding-left: 21px;

    font-size: 9px;
  }

  .tis08x-button b {
    width: 41px;
    height: 41px;

    font-size: 16px;
  }

  .tis08x-glow {
    width: 300px;
    height: 300px;

    right: -190px;
  }

  .tis08x-ring-one {
    width: 350px;
    height: 350px;

    right: -240px;
  }

  .tis08x-ring-two {
    width: 270px;
    height: 270px;

    right: -200px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {
  .tis08x-title {
    font-size: 38px;
  }

  .tis08x-description {
    font-size: 12.5px;
  }
}
/* =========================================================
   THE INNER SHIFT — SECTION 11
   FAQ / CLARITY
========================================================= */

.tis-faq11 {
  position: relative;
  overflow: hidden;
  padding: 85px 0 70px;
  background:
    radial-gradient(
      circle at 82% 35%,
      rgba(194, 138, 43, 0.055),
      transparent 30%
    ),
    var(--tis-cream);
  color: var(--tis-black);
}

/* =========================================================
   BACKGROUND GHOST
========================================================= */

.tis-faq11__ghost {
  position: absolute;
  right: -5%;
  top: 42%;
  transform: translateY(-50%);
  font-size: clamp(170px, 23vw, 340px);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 0.7;
  color: rgba(16, 16, 15, 0.018);
  pointer-events: none;
  user-select: none;
}

/* =========================================================
   WRAPPER
========================================================= */

.tis-faq11__wrap {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 70px));
  margin: 0 auto;
}

/* =========================================================
   TOP LABEL
========================================================= */

.tis-faq11__top {
  display: flex;
  align-items: center;
  margin-bottom: 58px;
}

.tis-faq11__marker {
  display: flex;
  align-items: center;
  gap: 15px;
}

.tis-faq11__marker span {
  color: var(--tis-gold);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.tis-faq11__marker i {
  width: 45px;
  height: 1px;
  background: rgba(194, 138, 43, 0.55);
}

.tis-faq11__marker small {
  color: var(--tis-brown);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

/* =========================================================
   INTRO
========================================================= */

.tis-faq11__intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 52px;
}

/* BEFORE WE BEGIN — REMOVED */

.tis-faq11__eyebrow {
  display: none;
}

.tis-faq11__intro h2 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(50px, 5.7vw, 60px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.tis-faq11__intro h2 em {
  display: block;
  margin-top: 4px;
  color: var(--tis-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
}

.tis-faq11__intro > p {
  max-width: 430px;
  margin: 0 0 5px;
  color: #62605b;
  font-size: 17px;
  line-height: 1.8;
}

/* =========================================================
   FAQ LIST
========================================================= */

.tis-faq11__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* =========================================================
   FAQ ITEM
========================================================= */

.tis-faq11__item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow:
    0 1px 0 rgba(16, 16, 15, 0.035),
    inset 0 0 0 1px rgba(16, 16, 15, 0.045);
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s ease;
}

.tis-faq11__item:hover {
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 12px 35px rgba(16, 16, 15, 0.055),
    inset 0 0 0 1px rgba(194, 138, 43, 0.16);
  transform: translateY(-2px);
}

/* =========================================================
   QUESTION
========================================================= */

.tis-faq11__question {
  width: 100%;
  min-height: 76px;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 45px 1fr 40px;
  align-items: center;
  gap: 18px;

  border: 0;
  background: transparent;
  color: var(--tis-black);

  text-align: left;
  cursor: pointer;
}

/* Number */

.tis-faq11__number {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: rgba(194, 138, 43, 0.1);

  color: var(--tis-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

/* Question text */

.tis-faq11__question-text {
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.025em;

  transition:
    color 0.3s ease,
    transform 0.35s ease;
}

.tis-faq11__question:hover .tis-faq11__question-text {
  color: var(--tis-gold);
  transform: translateX(3px);
}

/* =========================================================
   PLUS / MINUS
========================================================= */

.tis-faq11__icon {
  position: relative;

  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: rgba(194, 138, 43, 0.08);

  transition:
    background 0.35s ease,
    transform 0.45s ease;
}

.tis-faq11__icon i {
  position: absolute;

  width: 11px;
  height: 1.5px;

  background: var(--tis-gold);

  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.tis-faq11__icon i:last-child {
  transform: rotate(90deg);
}

/* OPEN */

.tis-faq11__item.is-open .tis-faq11__number {
  background: var(--tis-gold);
  color: var(--tis-black);
  transform: scale(1.04);
}

.tis-faq11__item.is-open .tis-faq11__icon {
  background: var(--tis-gold);
  transform: rotate(45deg);
}

.tis-faq11__item.is-open .tis-faq11__icon i {
  background: var(--tis-black);
}

/* =========================================================
   ANSWER
========================================================= */

.tis-faq11__answer {
  display: grid;
  grid-template-rows: 0fr;

  transition: grid-template-rows 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.tis-faq11__answer > div {
  min-height: 0;
  overflow: hidden;

  max-width: 760px;

  margin-left: 87px;
  padding-right: 65px;

  color: #64615b;

  font-size: 14px;
  line-height: 1.8;

  opacity: 0;
  transform: translateY(-7px);

  transition:
    opacity 0.35s ease,
    transform 0.45s ease,
    padding 0.45s ease;
}

/* OPEN ANSWER */

.tis-faq11__item.is-open .tis-faq11__answer {
  grid-template-rows: 1fr;
}

.tis-faq11__item.is-open .tis-faq11__answer > div {
  padding-bottom: 24px;
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   EXTRA FAQ
========================================================= */

.tis-faq11__extra {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

.tis-faq11__list.show-all .tis-faq11__extra {
  display: block;
  animation: faq11ExtraReveal 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

@keyframes faq11ExtraReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   VIEW ALL BUTTON
========================================================= */

.tis-faq11__more {
  display: flex;
  justify-content: center;

  padding: 34px 0 5px;
}

.tis-faq11__more-btn {
  display: inline-flex;
  align-items: center;
  gap: 13px;

  padding: 0;

  border: 0;
  background: transparent;

  color: var(--tis-black);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;

  cursor: pointer;
}

.tis-faq11__more-btn b {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: rgba(194, 138, 43, 0.1);

  color: var(--tis-gold);

  font-size: 18px;
  font-weight: 400;

  transition:
    transform 0.4s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.tis-faq11__more-btn:hover b {
  background: var(--tis-gold);
  color: var(--tis-black);
  transform: rotate(90deg);
}

/* SHOW LESS */

.tis-faq11__list.show-all ~ .tis-faq11__more .tis-faq11__more-btn b {
  transform: rotate(45deg);
}

.tis-faq11__list.show-all ~ .tis-faq11__more .tis-faq11__more-btn span {
  font-size: 0;
}

.tis-faq11__list.show-all ~ .tis-faq11__more .tis-faq11__more-btn span::after {
  content: "SHOW LESS";
  font-size: 10px;
}

/* =========================================================
   BOTTOM — REMOVED
   Keeping selector harmless in case HTML remains.
========================================================= */

.tis-faq11__bottom {
  display: none;
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {
  .tis-faq11 {
    padding: 75px 0 60px;
  }

  .tis-faq11__wrap {
    width: min(100% - 45px, 760px);
  }

  .tis-faq11__top {
    margin-bottom: 48px;
  }

  .tis-faq11__intro {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 42px;
  }

  .tis-faq11__intro h2 {
    max-width: 700px;
  }

  .tis-faq11__intro > p {
    max-width: 600px;
  }

  .tis-faq11__ghost {
    right: -15%;
    opacity: 0.7;
  }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 600px) {
  .tis-faq11 {
    padding: 65px 0 50px;
  }

  .tis-faq11__wrap {
    width: calc(100% - 28px);
  }

  /* TOP */

  .tis-faq11__top {
    margin-bottom: 38px;
  }

  .tis-faq11__marker {
    gap: 11px;
  }

  .tis-faq11__marker span {
    font-size: 25px;
  }

  .tis-faq11__marker i {
    width: 30px;
  }

  .tis-faq11__marker small {
    font-size: 8px;
    letter-spacing: 0.16em;
  }

  /* INTRO */

  .tis-faq11__intro {
    gap: 20px;
    margin-bottom: 34px;
  }

  .tis-faq11__intro h2 {
    font-size: clamp(42px, 45px, 58px);
    line-height: 0.95;
    letter-spacing: -0.06em;
  }

  .tis-faq11__intro h2 em {
    margin-top: 3px;
  }

  .tis-faq11__intro > p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* FAQ */

  .tis-faq11__list {
    gap: 8px;
  }

  .tis-faq11__item {
    border-radius: 13px;
  }

  .tis-faq11__question {
    min-height: 68px;
    padding: 0 14px;

    grid-template-columns: 35px 1fr 34px;
    gap: 10px;
  }

  .tis-faq11__number {
    width: 30px;
    height: 30px;
    font-size: 9px;
  }

  .tis-faq11__question-text {
    font-size: 16px;
    line-height: 1.3;
  }

  .tis-faq11__icon {
    width: 30px;
    height: 30px;
  }

  .tis-faq11__icon i {
    width: 10px;
  }

  /* ANSWER */

  .tis-faq11__answer > div {
    margin-left: 59px;
    padding-right: 18px;

    font-size: 13.5px;
    line-height: 1.75;
  }

  .tis-faq11__item.is-open .tis-faq11__answer > div {
    padding-bottom: 20px;
  }

  /* VIEW MORE */

  .tis-faq11__more {
    padding-top: 27px;
  }

  .tis-faq11__more-btn {
    font-size: 8px;
    letter-spacing: 0.14em;
  }

  .tis-faq11__more-btn b {
    width: 32px;
    height: 32px;
  }

  /* GHOST */

  .tis-faq11__ghost {
    font-size: 130px;
    right: -25%;
    top: 48%;
  }
}

/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 380px) {
  .tis-faq11__wrap {
    width: calc(100% - 22px);
  }

  .tis-faq11__marker small {
    font-size: 7px;
  }

  .tis-faq11__intro h2 {
    font-size: 40px;
  }

  .tis-faq11__question {
    grid-template-columns: 32px 1fr 30px;
    gap: 8px;
    padding: 0 11px;
  }

  .tis-faq11__question-text {
    font-size: 15px;
  }

  .tis-faq11__number {
    width: 28px;
    height: 28px;
  }

  .tis-faq11__icon {
    width: 28px;
    height: 28px;
  }

  .tis-faq11__answer > div {
    margin-left: 50px;
    padding-right: 12px;
    font-size: 13px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .tis-faq11__item,
  .tis-faq11__question-text,
  .tis-faq11__number,
  .tis-faq11__icon,
  .tis-faq11__icon i,
  .tis-faq11__answer,
  .tis-faq11__answer > div,
  .tis-faq11__more-btn b {
    transition: none !important;
  }

  .tis-faq11__extra {
    animation: none !important;
  }
}
/* ========================================================= SECTION 12 — FINAL CTA ========================================================= */
.shift12__cta {
  position: relative;
  overflow: hidden;
  padding: 15px 0 40px;
  background: #10100f;
  color: #f7f5f1;
}
/* INNER */
.shift12__inner {
  position: relative;
  z-index: 5;
  width: min(1100px, calc(100% - 70px));
  min-height: 470px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* GOLD GLOW */
.shift12__glow {
  position: absolute;
  width: 650px;
  height: 650px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(194, 138, 43, 0.16),
    transparent 67%
  );
  pointer-events: none;
}
/* RINGS */
.shift12__rings {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 620px;
  height: 620px;
  transform: translate(-50%, -50%) rotate(-15deg);
  border: 1px solid rgba(194, 138, 43, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(194, 138, 43, 0.025),
    0 0 0 140px rgba(194, 138, 43, 0.018);
  pointer-events: none;
  animation: shift12Orbit 14s linear infinite;
}
@keyframes shift12Orbit {
  from {
    transform: translate(-50%, -50%) rotate(-15deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(345deg);
  }
}
/* TOP */
.shift12__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shift12__marker {
  display: flex;
  align-items: center;
  gap: 15px;
}
.shift12__marker span {
  color: #c28a2b;
  font-size: 34px;
  font-weight: 300;
}
.shift12__marker i {
  width: 65px;
  height: 1px;
  background: #c28a2b;
}
.shift12__marker small {
  color: rgba(247, 245, 241, 0.5);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
}
.shift12__top > span {
  color: rgba(247, 245, 241, 0.25);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
/* CENTER */
.shift12__center {
  position: relative;
  z-index: 5;
  max-width: 850px;
  margin: 100px auto 90px;
  text-align: center;
}
.shift12__eyebrow {
  margin: 0 0 25px;
  color: #c28a2b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.25em;
}
.shift12__center h2 {
  margin: 0;
  font-size: clamp(45px, 9vw, 70px);
  line-height: 0.83;
  font-weight: 500;
  letter-spacing: -0.08em;
}
.shift12__center h2 em {
  color: #c28a2b;
  font-family: Georgia, serif;
  font-weight: 400;
}
.shift12__description {
  max-width: 520px;
  margin: 35px auto 0;
  color: rgba(247, 245, 241, 0.52);
  font-size: 18px;
  line-height: 1.8;
}
/* ACTIONS */
.shift12__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
/* PRIMARY */
.shift12__primary {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 6px 8px 6px 24px;
  border-radius: 50px;
  background: #f7f5f1;
  color: #10100f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}
.shift12__primary b {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #c28a2b;
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.35s ease;
}
.shift12__primary:hover {
  background: #c28a2b;
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(194, 138, 43, 0.2);
}
.shift12__primary:hover b {
  transform: rotate(45deg);
}
/* =========================================================
   THE INNER SHIFT — FOOTER 26
   Premium 4-Column Footer
   ========================================================= */

.tis-footer26 {
  position: relative;
  overflow: hidden;
  width: 100%;
  background:
    radial-gradient(circle at 88% 8%, rgba(194, 138, 43, 0.1), transparent 24%),
    radial-gradient(
      circle at 28% 100%,
      rgba(194, 138, 43, 0.045),
      transparent 30%
    ),
    #11110f;
  color: #f5f1e9;
  padding: 78px 0 0;
  isolation: isolate;
}

/* =========================================================
   BACKGROUND GLOW
   ========================================================= */

.tis-footer26__glow {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -260px;
  top: -260px;
  border-radius: 50%;
  background: rgba(194, 138, 43, 0.08);
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
}

/* =========================================================
   MAIN WRAPPER
   ========================================================= */

.tis-footer26__wrap {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 90px));
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(250px, 1.35fr)
    minmax(150px, 0.72fr)
    minmax(230px, 0.95fr)
    minmax(270px, 0.95fr);

  gap: 70px;
  align-items: start;
}

/* =========================================================
   COMMON HEADING
   ========================================================= */

.tis-footer26__heading {
  display: block;
  margin-bottom: 28px;
  margin-top: 13px;
  color: #c28a2b;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* =========================================================
   COLUMN 01 — BRAND
   ========================================================= */

.tis-footer26__brand {
  min-width: 0;
}

/* LOGO */

.tis-footer26__logo {
  display: inline-flex;
  align-items: center;
  gap: 17px;

  color: #fff;
  text-decoration: none;
}

.tis-footer26__logo-mark {
  width: 74px;
  height: 74px;
  flex: 0 0 74px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(194, 138, 43, 0.55);
  border-radius: 50%;

  background: #f5f1e9;
  overflow: hidden;

  box-shadow:
    0 0 0 5px rgba(194, 138, 43, 0.06),
    0 10px 35px rgba(0, 0, 0, 0.3);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.tis-footer26__logo:hover .tis-footer26__logo-mark {
  transform: rotate(-5deg) scale(1.04);

  box-shadow:
    0 0 0 7px rgba(194, 138, 43, 0.07),
    0 14px 40px rgba(0, 0, 0, 0.35);
}

.tis-footer26__logo-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* LOGO TEXT */

.tis-footer26__logo-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tis-footer26__logo-text strong {
  display: block;

  color: #f5f1e9;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.tis-footer26__logo-text strong em {
  color: #c28a2b;
  font-style: normal;
}

.tis-footer26__logo-text small {
  font-size: 10px;
  color: #ffffff;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* DESCRIPTION */

.tis-footer26__description {
  max-width: 400px;

  margin: 17px 0 20px;

  color: rgba(245, 241, 233, 0.68);
  font-size: 15px;
  line-height: 1.8;
}

/* LOCATION */

.tis-footer26__location {
  display: flex;
  align-items: center;
  gap: 15px;

  max-width: 440px;
  padding: 17px 19px;

  border: 1px solid rgba(245, 241, 233, 0.1);
  border-radius: 18px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.01)
  );

  transition:
    border-color 0.35s ease,
    transform 0.35s ease,
    background 0.35s ease;
}

.tis-footer26__location:hover {
  transform: translateY(-3px);
  border-color: rgba(194, 138, 43, 0.35);

  background: linear-gradient(
    135deg,
    rgba(194, 138, 43, 0.08),
    rgba(255, 255, 255, 0.015)
  );
}

.tis-footer26__location-icon {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: rgba(194, 138, 43, 0.13);

  color: #c28a2b;
  font-size: 16px;
}

.tis-footer26__location small {
  display: block;
  margin-bottom: 5px;

  color: #c28a2b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.tis-footer26__location p {
  margin: 0;

  color: rgba(245, 241, 233, 0.72);
  font-size: 17px;
  line-height: 1.55;
}

/* =========================================================
   COLUMN 02 — QUICK LINKS
   ========================================================= */

.tis-footer26__links {
  display: flex;
  flex-direction: column;
}

.tis-footer26__links > a {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  max-width: 190px;

  padding: 8px 0;

  color: rgba(245, 241, 233, 0.72);
  font-size: 15px;
  font-weight: 600;

  text-decoration: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.tis-footer26__links > a:first-of-type {
  padding-top: 0;
}

.tis-footer26__links > a:hover {
  color: #c28a2b;
  transform: translateX(5px);
}

.tis-footer26__links > a i {
  color: #c28a2b;
  font-size: 14px;
  font-style: normal;

  opacity: 0;
  transform: translateX(-5px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.tis-footer26__links > a:hover i {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================================
   COLUMN 03 — CONTACT
   ========================================================= */

.tis-footer26__contact {
  min-width: 0;
}

.tis-footer26__contact-item {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 19px;

  color: inherit;
  text-decoration: none;
}

.tis-footer26__contact-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(194, 138, 43, 0.25);
  border-radius: 50%;

  background: rgba(194, 138, 43, 0.08);

  color: #c28a2b;
  font-size: 14px;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.tis-footer26__contact-item:hover .tis-footer26__contact-icon {
  background: #c28a2b;
  color: #11110f;
  transform: scale(1.07);
}

.tis-footer26__contact-copy {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tis-footer26__contact-copy small {
  color: var(--tis-gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.tis-footer26__contact-copy strong {
  color: rgba(245, 241, 233, 0.82);

  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;

  overflow-wrap: anywhere;

  transition: color 0.3s ease;
}

.tis-footer26__contact-item:hover .tis-footer26__contact-copy strong {
  color: #c28a2b;
}

/* =========================================================
   SOCIAL
   ========================================================= */

.tis-footer26__social-wrap {
  margin-top: 25px;
  padding-top: 22px;

  border-top: 1px solid rgba(245, 241, 233, 0.09);
}

.tis-footer26__social-wrap > span {
  display: block;
  margin-bottom: 14px;

  color: rgba(245, 241, 233, 0.38);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.tis-footer26__social {
  display: flex;
  align-items: center;
  gap: 9px;
}

.tis-footer26__social a {
  width: 37px;
  height: 37px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(194, 138, 43, 0.23);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.035);

  color: rgba(245, 241, 233, 0.75);
  font-size: 13px;

  text-decoration: none;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}

.tis-footer26__social a:hover {
  background: #c28a2b;
  border-color: #c28a2b;
  color: #11110f;
  transform: translateY(-4px);
}

/* =========================================================
   COLUMN 04 — CTA
   ========================================================= */

.tis-footer26__cta {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 35px 18px;
}

/* CTA TEXT */

.tis-footer26__cta p {
  position: relative;

  max-width: 250px;
  margin: 0;

  color: rgba(245, 241, 233, 0.88);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.35;
}

/* CTA BUTTON */

.tis-footer26__cta-button {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  width: 100%;
  min-height: 51px;

  padding: 6px 8px 6px 19px;

  border-radius: 50px;

  background: var(--tis-gold);
  color: #ffffff;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;

  text-decoration: none;

  box-shadow: 0 10px 30px rgba(194, 138, 43, 0.14);

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.tis-footer26__cta-button span {
  white-space: nowrap;
}

.tis-footer26__cta-button i {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #ffffff;
  color: #c28a2b;

  font-size: 15px;
  font-style: normal;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.tis-footer26__cta-button:hover {
  transform: translateY(-3px);

  background: #d39a36;

  box-shadow: 0 15px 40px rgba(194, 138, 43, 0.24);
}

.tis-footer26__cta-button:hover i {
  transform: rotate(45deg);
  background: #fff;
  color: #11110f;
}

/* =========================================================
   BOTTOM BAR
   ========================================================= */

.tis-footer26__bottom {
  position: relative;
  z-index: 2;

  width: min(1320px, calc(100% - 90px));

  margin: 35px auto 0;
  padding: 24px 0 28px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;

  border-top: 1px solid rgba(194, 138, 43, 0.25);
}
.inr {
  color: var(--tis-gold);
}

/* COPYRIGHT */

.tis-footer26__copyright {
  color: rgba(245, 241, 233, 0.48);
  font-size: 13px;
  line-height: 1.5;
}

/* LEGAL */

.tis-footer26__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.tis-footer26__legal a {
  color: rgba(245, 241, 233, 0.48);

  font-size: 13px;
  text-decoration: none;

  transition: color 0.3s ease;
}

.tis-footer26__legal a:hover {
  color: #c28a2b;
}

.tis-footer26__legal span {
  width: 3px;
  height: 3px;

  border-radius: 50%;
  background: #c28a2b;
}

/* DEVELOPER */

.tis-footer26__developer {
  justify-self: end;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: rgba(245, 241, 233, 0.48);

  font-size: 13px;
  text-decoration: none;

  transition: color 0.3s ease;
}

.tis-footer26__developer span {
  white-space: nowrap;
}

.tis-footer26__developer strong {
  color: #c28a2b;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;

  white-space: nowrap;
}

.tis-footer26__developer i {
  color: #c28a2b;
  font-size: 13px;
  font-style: normal;

  transition: transform 0.35s ease;
}

.tis-footer26__developer:hover {
  color: #fff;
}

.tis-footer26__developer:hover i {
  transform: translate(3px, -3px);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1150px) {
  .tis-footer26 {
    padding-top: 65px;
  }

  .tis-footer26__wrap {
    width: min(1050px, calc(100% - 60px));

    grid-template-columns:
      1.25fr
      0.75fr
      1fr;

    gap: 55px;
  }

  .tis-footer26__cta {
    grid-column: 1 / -1;

    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;

    text-align: left;
    padding: 28px 35px;
  }

  .tis-footer26__cta p {
    max-width: 480px;
  }
  .tis-footer26__cta-button {
    width: auto;
    min-width: 235px;
  }

  .tis-footer26__bottom {
    width: min(1050px, calc(100% - 60px));
  }
}

/* =========================================================
   SMALL TABLET
   ========================================================= */

@media (max-width: 800px) {
  .tis-footer26__wrap {
    grid-template-columns: 1fr 1fr;
    gap: 48px 45px;
  }

  .tis-footer26__brand {
    grid-column: 1 / -1;
  }

  .tis-footer26__links,
  .tis-footer26__contact {
    grid-column: span 1;
  }

  .tis-footer26__cta {
    grid-column: 1 / -1;
    display: flex;
    text-align: center;
  }

  .tis-footer26__cta-button {
    width: min(100%, 280px);
  }

  .tis-footer26__bottom {
    grid-template-columns: 1fr;
    justify-items: center;

    text-align: center;

    gap: 15px;
  }

  .tis-footer26__developer {
    justify-self: center;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .tis-footer26 {
    padding-top: 55px;
  }

  .tis-footer26__wrap {
    width: calc(100% - 34px);

    display: flex;
    flex-direction: column;

    gap: 42px;
  }

  /* BRAND */

  .tis-footer26__logo {
    gap: 13px;
  }

  .tis-footer26__logo-mark {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }

  .tis-footer26__logo-text strong {
    font-size: 18px;
  }

  .tis-footer26__logo-text small {
    font-size: 11px;
  }

  .tis-footer26__description {
    margin: 22px 0 25px;

    font-size: 13px;
    line-height: 1.75;
  }

  /* LOCATION */

  .tis-footer26__location {
    padding: 15px;
    border-radius: 16px;
  }

  .tis-footer26__location-icon {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
  }

  .tis-footer26__location p {
    font-size: 11px;
  }

  /* HEADINGS */

  .tis-footer26__heading {
    margin-bottom: 20px;
    font-size: 9px;
  }

  /* LINKS */

  .tis-footer26__links > a {
    max-width: 100%;

    padding: 7px 0;

    font-size: 14px;
  }

  .tis-footer26__links > a i {
    opacity: 1;
    transform: none;
    padding-left: 12px;
  }

  /* CONTACT */

  .tis-footer26__contact-item {
    margin-bottom: 16px;
  }

  .tis-footer26__contact-icon {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
  }

  .tis-footer26__contact-copy strong {
    font-size: 12px;
  }

  /* SOCIAL */

  .tis-footer26__social-wrap {
    margin-top: 22px;
  }

  .tis-footer26__social a {
    width: 38px;
    height: 38px;
  }

  /* CTA */

  .tis-footer26__cta {
    padding: 10px 10px;

    border-radius: 21px;
  }

  .tis-footer26__cta p {
    font-size: 19px;
  }

  .tis-footer26__cta-button {
    min-height: 52px;
  }

  /* BOTTOM */

  .tis-footer26__bottom {
    width: calc(100% - 34px);

    margin-top: 45px;
    padding: 22px 0 25px;

    gap: 14px;
  }

  .tis-footer26__copyright {
    font-size: 10px;
  }

  .tis-footer26__legal {
    gap: 10px;
  }

  .tis-footer26__legal a {
    font-size: 9px;
  }

  .tis-footer26__developer {
    font-size: 8px;
  }

  .tis-footer26__developer strong {
    font-size: 9px;
  }
}

/* =========================================================
   VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 380px) {
  .tis-footer26__logo-text strong {
    font-size: 16px;
  }

  .tis-footer26__logo-mark {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .tis-footer26__cta p {
    font-size: 17px;
  }

  .tis-footer26__cta-button {
    font-size: 11px;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .tis-footer26 *,
  .tis-footer26 *::before,
  .tis-footer26 *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* contact us css */
/* =========================================================
   THE INNER SHIFT
   CONTACT PAGE — FINAL CLEAN DESIGN
========================================================= */

/* =========================================================
   01 — CONTACT INTRO
========================================================= */

.contact-intro {
  position: relative;
  width: 100%;
  min-height: 620px;

  display: flex;
  align-items: center;

  background: #f7f5f1;
  color: #1c1916;

  overflow: hidden;
  isolation: isolate;
}

.contact-intro-container {
  position: relative;

  width: min(1180px, calc(100% - 90px));
  min-height: 690px;

  margin: 0 auto;
  padding: 120px 0 40px 0;

  box-sizing: border-box;

  display: flex;
  align-items: center;
}

.contact-intro-content {
  position: relative;
  z-index: 3;

  width: 100%;
  max-width: 760px;
}

.contact-intro-kicker {
  display: block;

  margin-bottom: 27px;

  color: #aa7b2d;

  font-family: "DM Sans", sans-serif;

  font-size: 11px;
  font-weight: 700;

  line-height: 1.3;

  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.contact-intro-content h1 {
  margin: 0;

  color: #1d1a17;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(76px, 9.5vw, 132px);

  font-weight: 400;

  line-height: 0.82;

  letter-spacing: -0.07em;
}

.contact-intro-content h1 em {
  display: block;

  margin-left: 115px;

  color: #b9832d;

  font-style: italic;
  font-weight: 400;
}

.contact-intro-content p {
  max-width: 460px;

  margin: 40px 0 0;

  color: #625b53;

  font-family: "DM Sans", sans-serif;

  font-size: 16px;
  font-weight: 400;

  line-height: 1.8;
}

/* =========================================================
   INTRO DECORATION
========================================================= */

.contact-intro-orbit {
  position: absolute;

  border: 1px solid rgba(185, 131, 45, 0.19);

  border-radius: 50%;

  pointer-events: none;

  z-index: -1;
}

.contact-intro-orbit.orbit-one {
  width: 590px;
  height: 590px;

  right: -245px;
  top: 50%;

  transform: translateY(-50%);
}

.contact-intro-orbit.orbit-two {
  width: 405px;
  height: 405px;

  right: -153px;
  top: 50%;

  transform: translateY(-50%);
}

.contact-intro-orbit.orbit-one::after {
  content: "";

  position: absolute;

  width: 8px;
  height: 8px;

  left: 11%;
  top: 20%;

  border-radius: 50%;

  background: #b9832d;
}

/* =========================================================
   02 — CONTACT REACH
========================================================= */

.contact-reach {
  position: relative;

  width: 100%;

  padding: 115px 0 125px;

  background: #ffffff;

  color: #1d1a17;

  overflow: hidden;
}

.contact-reach-bg-number {
  position: absolute;

  right: -35px;
  top: 25px;

  color: rgba(185, 131, 45, 0.035);

  font-family: Georgia, serif;

  font-size: 430px;
  font-weight: 400;

  line-height: 0.75;

  pointer-events: none;
  user-select: none;
}

.contact-reach-container {
  position: relative;
  z-index: 2;

  width: min(1180px, calc(100% - 90px));

  margin: 0 auto;

  display: grid;

  grid-template-columns: 0.84fr 1.16fr;

  gap: 85px;

  align-items: center;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.contact-reach-intro {
  width: 100%;
}

.contact-section-label {
  display: block;

  margin-bottom: 29px;

  color: #a97829;

  font-family: "DM Sans", sans-serif;

  font-size: 13px;

  font-weight: 700;

  line-height: 1.2;

  letter-spacing: 0.24em;

  text-transform: uppercase;
}

.contact-reach-intro h2 {
  margin: 0;

  color: #1d1a17;

  font-family: Georgia, "Times New Roman", serif;

      font-size: clamp(58px, 6vw, 70px);
    font-weight: 400;
    line-height: 1.3;

  letter-spacing: -0.065em;
}

.contact-reach-intro h2 em {
  display: block;

  color: #b9832d;

  font-style: italic;

  font-weight: 400;
}

.contact-reach-text {
  max-width: 410px;

  margin: 34px 0 0;

  color: #655e56;

  font-family: "DM Sans", sans-serif;

  font-size: 15px;

  line-height: 1.82;
}

/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-details {
  width: 100%;

  margin-top: 48px;

  border-top: 1px solid rgba(35, 30, 25, 0.13);
}

.contact-detail {
  display: grid;

  grid-template-columns: 38px minmax(0, 1fr) 28px;

  align-items: center;

  min-height: 84px;

  gap: 14px;

  box-sizing: border-box;

  border-bottom: 1px solid rgba(35, 30, 25, 0.13);

  color: #292520;

  text-decoration: none;

  transition:
    padding 0.35s ease,
    background 0.35s ease;
}

.contact-detail:hover {
  padding-left: 9px;

  background: rgba(185, 131, 45, 0.035);
}

.contact-detail-number {
  color: #b9832d;

  font-family: Georgia, serif;

  font-size: 15px;

  line-height: 1;
}

.contact-detail small {
  display: block;

  margin-bottom: 6px;

  color: #a97829;

  font-family: "DM Sans", sans-serif;

  font-size: 12px;

  font-weight: 700;

  line-height: 1.2;

  letter-spacing: 0.13em;
}

.contact-detail strong {
  display: block;

  color: #292520;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 17px;

  font-weight: 400;

  line-height: 1.3;

  word-break: break-word;
}

.contact-detail > b {
  justify-self: end;

  color: #b9832d;

  font-size: 19px;

  font-weight: 400;

  line-height: 1;

  transition: transform 0.3s ease;
}

.contact-detail:hover > b {
  transform: translate(4px, -4px);
}

/* =========================================================
   FORM CARD
========================================================= */

.contact-form-card {
  position: relative;

  width: 100%;

  box-sizing: border-box;

  padding: 45px 45px 42px;

  background: linear-gradient(145deg, #2a251f 0%, #211d18 50%, #1b1814 100%);

  border: 1px solid rgba(185, 131, 45, 0.48);

  border-radius: 5px;

  color: #f5efe6;

  box-shadow: 0 28px 75px rgba(38, 30, 21, 0.16);

  overflow: hidden;

  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.contact-form-card:hover {
  border-color: rgba(202, 157, 88, 0.7);

  box-shadow: 0 35px 85px rgba(38, 30, 21, 0.2);
}

/* INNER FRAME */

.contact-form-card::before {
  content: "";

  position: absolute;

  inset: 10px;

  border: 1px solid rgba(255, 255, 255, 0.075);

  border-radius: 3px;

  pointer-events: none;
}

/* GOLD CORNER */

.contact-form-card::after {
  content: "";

  position: absolute;

  top: 0;
  right: 0;

  width: 105px;
  height: 105px;

  border-top: 1px solid rgba(204, 158, 87, 0.9);

  border-right: 1px solid rgba(204, 158, 87, 0.9);

  pointer-events: none;
}

/* =========================================================
   FORM HEADER
========================================================= */

.contact-form-card-head {
  position: relative;
  z-index: 3;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding: 0 2px 23px;

  margin-bottom: 31px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.14);

  font-family: "DM Sans", sans-serif;

  font-size: 10px;

  font-weight: 700;

  line-height: 1.3;

  letter-spacing: 0.18em;
}

.contact-form-card-head span:first-child {
  color: #c69a58;
}

.contact-form-card-head span:last-child {
  color: #817970;
}

/* =========================================================
   FORM
========================================================= */

.contact-form {
  position: relative;
  z-index: 3;

  display: flex;

  flex-direction: column;

  gap: 25px;

  width: 100%;
}

.contact-form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 24px;

  width: 100%;
}

/* =========================================================
   FIELD
========================================================= */

.contact-field {
  display: flex;

  flex-direction: column;

  gap: 9px;

  width: 100%;
}

.contact-field label {
  color: #c49a5b;

  font-family: "DM Sans", sans-serif;

  font-size: 9px;

  font-weight: 700;

  line-height: 1.3;

  letter-spacing: 0.17em;

  text-transform: uppercase;
}

/* =========================================================
   INPUTS
========================================================= */

.contact-field input,
.contact-field select,
.contact-field textarea {
  display: block;

  width: 100%;

  box-sizing: border-box;

  padding: 14px 15px;

  border: 1px solid rgba(255, 255, 255, 0.16);

  border-radius: 3px;

  outline: none;

  background: rgba(255, 255, 255, 0.045);

  color: #f5efe7;

  font-family: "DM Sans", sans-serif;

  font-size: 15px;

  font-weight: 400;

  line-height: 1.5;

  appearance: none;

  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

/* PLACEHOLDER */

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #7e766d;

  opacity: 1;
}

/* HOVER */

.contact-field input:hover,
.contact-field select:hover,
.contact-field textarea:hover {
  border-color: rgba(198, 154, 88, 0.55);

  background: rgba(255, 255, 255, 0.06);
}

/* FOCUS */

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #c39750;

  background: rgba(185, 131, 45, 0.065);

  box-shadow:
    0 0 0 3px rgba(185, 131, 45, 0.11),
    0 8px 25px rgba(0, 0, 0, 0.1);

  transform: translateY(-1px);
}

/* SELECT */

.contact-field select {
  color: #a49b91;

  cursor: pointer;

  background-color: rgba(255, 255, 255, 0.045);

  background-image:
    linear-gradient(45deg, transparent 50%, #b9832d 50%),
    linear-gradient(135deg, #b9832d 50%, transparent 50%);

  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;

  background-size:
    5px 5px,
    5px 5px;

  background-repeat: no-repeat;

  padding-right: 40px;
}

.contact-field select:focus {
  color: #f5efe7;
}

.contact-field select option {
  background: #27221c;

  color: #f5efe7;

  font-size: 14px;
}

/* TEXTAREA */

.contact-field textarea {
  min-height: 125px;

  resize: vertical;

  line-height: 1.7;
}

/* =========================================================
   SUBMIT
========================================================= */

.contact-submit {
  position: relative;
  z-index: 4;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 100%;

  min-height: 57px;

  margin-top: 2px;

  padding: 15px 20px;

  box-sizing: border-box;

  border: 1px solid #c3954f;

  border-radius: 3px;

  background: #b9832d;

  color: #211b15;

  cursor: pointer;

  font-family: "DM Sans", sans-serif;

  font-size: 11px;

  font-weight: 700;

  line-height: 1;

  letter-spacing: 0.2em;

  text-transform: uppercase;

  overflow: hidden;

  transition:
    background 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* HIDE OLD ARROW */

.contact-submit b {
  display: none;
}

/* SHINE */

.contact-submit::before {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );

  transition: left 0.6s ease;
}

/* TEXT */

.contact-submit span {
  position: relative;

  z-index: 2;
}

/* HOVER */

.contact-submit:hover {
  background: transparent;

  color: #e0b36b;

  border-color: #c3954f;

  transform: translateY(-3px);

  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.contact-submit:hover::before {
  left: 120%;
}

.contact-submit:active {
  transform: translateY(-1px);
}

/* PRIVACY */

.contact-privacy {
  margin: -3px 0 0;

  color: #756d64;

  font-family: "DM Sans", sans-serif;

  font-size: 10px;

  line-height: 1.6;

  text-align: center;
}

/* =========================================================
   03 — CLOSING
========================================================= */

.contact-closing {
  position: relative;

  width: 100%;

  min-height: 520px;

  display: flex;

  align-items: center;

  justify-content: center;

  box-sizing: border-box;

  background: #f1ece2;

  color: #1c1916;

  overflow: hidden;

  isolation: isolate;
}

.contact-closing-content {
  position: relative;
  z-index: 3;

  width: min(850px, calc(100% - 40px));

  text-align: center;
}

.contact-closing-label {
  display: block;

  margin-bottom: 30px;

  color: #a97829;

  font-family: "DM Sans", sans-serif;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 0.25em;
}

.contact-closing-content h2 {
  margin: 0;

  color: #1d1a17;

 

  font-size: clamp(50px, 8vw, 90px);

  font-weight: 500;

  line-height: .9;

  letter-spacing: -0.07em;
}

.contact-closing-content h2 em {
  display: block;
 font-family: Georgia, "Times New Roman", serif;
  color: #b9832d;

  font-style: italic;

  font-weight: 400;
}

.contact-closing-content p {
  margin: 31px auto 0;

  color: #756e64;

  font-family: "DM Sans", sans-serif;

  font-size: 14px;

  line-height: 1.7;
}

/* CLOSING DECORATION */

.contact-closing-ring {
  position: absolute;

  border: 1px solid rgba(185, 131, 45, 0.17);

  border-radius: 50%;

  pointer-events: none;

  z-index: -1;
}

.contact-closing-ring.ring-one {
  width: 570px;
  height: 570px;

  right: -250px;
  top: 50%;

  transform: translateY(-50%);
}

.contact-closing-ring.ring-two {
  width: 390px;
  height: 390px;

  left: -190px;
  top: 50%;

  transform: translateY(-50%);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {
  .contact-intro,
  .contact-intro-container {
    min-height: 590px;
  }

  .contact-intro-container {
    width: calc(100% - 60px);
  }

  .contact-reach {
    padding: 90px 0 100px;
  }

  .contact-reach-container {
    width: calc(100% - 60px);

    grid-template-columns: 1fr;

    gap: 65px;
  }

  .contact-reach-intro {
    max-width: 700px;
  }

  .contact-details {
    max-width: 650px;
  }

  .contact-form-card {
    max-width: 760px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
  /* HERO */

  .contact-intro,
  .contact-intro-container {
    min-height: 570px;
  }

  .contact-intro-container {
    width: calc(100% - 34px);

    padding: 45px 0;
  }

  .contact-intro-kicker {
    margin-bottom: 20px;

    font-size: 8px;

    letter-spacing: 0.19em;
  }

  .contact-intro-content h1 {
    font-size: clamp(62px, 17vw, 82px);

    line-height: 0.84;
  }

  .contact-intro-content h1 em {
    margin-left: 48px;
  }

  .contact-intro-content p {
    max-width: 330px;

    margin-top: 28px;

    font-size: 13px;

    line-height: 1.75;
  }

  .contact-intro-orbit.orbit-one {
    width: 390px;
    height: 390px;

    right: -250px;
  }

  .contact-intro-orbit.orbit-two {
    width: 275px;
    height: 275px;

    right: -190px;
  }

  /* REACH */

  .contact-reach {
    padding: 78px 0 75px;
  }

  .contact-reach-container {
    width: calc(100% - 34px);

    gap: 52px;
  }

  .contact-reach-bg-number {
    right: -20px;

    top: 25px;

    font-size: 250px;
  }

  .contact-section-label {
    margin-bottom: 23px;

    font-size: 8px;
  }

  .contact-reach-intro h2 {
    font-size: 55px;
  }

  .contact-reach-text {
    margin-top: 27px;

    font-size: 13px;

    line-height: 1.75;
  }

  .contact-details {
    margin-top: 37px;
  }

  .contact-detail {
    grid-template-columns: 29px minmax(0, 1fr) 22px;

    min-height: 78px;

    gap: 10px;
  }

  .contact-detail strong {
    font-size: 15px;
  }

  /* FORM */

  .contact-form-card {
    padding: 34px 21px 32px;

    border-radius: 4px;
  }

  .contact-form-card::before {
    inset: 7px;
  }

  .contact-form-card::after {
    width: 68px;
    height: 68px;
  }

  .contact-form-card-head {
    padding-bottom: 20px;

    margin-bottom: 26px;

    font-size: 7px;
  }

  .contact-form-card-head span:last-child {
    font-size: 6px;
  }

  .contact-form {
    gap: 23px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;

    gap: 23px;
  }

  .contact-field {
    gap: 8px;
  }

  .contact-field label {
    font-size: 8px;
  }

  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    padding: 14px;

    font-size: 14px;
  }

  .contact-field textarea {
    min-height: 110px;
  }

  .contact-submit {
    min-height: 54px;

    font-size: 9px;
  }

  .contact-privacy {
    font-size: 9px;
  }

  /* CLOSING */

  .contact-closing {
    min-height: 470px;
  }

  .contact-closing-content {
    width: calc(100% - 30px);
  }

  .contact-closing-label {
    margin-bottom: 25px;

    font-size: 7px;
  }

  .contact-closing-content h2 {
    font-size: clamp(51px, 14vw, 72px);
  }

  .contact-closing-content p {
    margin-top: 25px;

    font-size: 12px;
  }

  .contact-closing-ring.ring-one {
    width: 370px;
    height: 370px;

    right: -250px;
  }

  .contact-closing-ring.ring-two {
    width: 280px;
    height: 280px;

    left: -190px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {
  .contact-intro,
  .contact-intro-container {
    min-height: 540px;
  }

  .contact-intro-content h1 {
    font-size: 56px;
  }

  .contact-intro-content h1 em {
    margin-left: 35px;
  }

  .contact-reach-intro h2 {
    font-size: 49px;
  }

  .contact-form-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-closing-content h2 {
    font-size: 48px;
  }
}

/* =========================================================

/* =========================================================
   CONTACT HERO — PNG IMAGE OVERRIDE
   Keeps existing typography/content untouched.
========================================================= */

.contact-intro-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 500px);
  align-items: center;
  gap: 55px;
}
.contact-intro-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 700px;
}
.contact-intro-image {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-image-glow {
  position: absolute;
  width: 390px;
  height: 390px;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(185, 131, 45, 0.13) 0%,
    rgba(185, 131, 45, 0.06) 42%,
    rgba(185, 131, 45, 0) 72%
  );
  filter: blur(3px);
  pointer-events: none;
}
.contact-image-frame {
  position: relative;
  width: min(100%, 470px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}
.contact-image-frame::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  border-top: 1px solid rgba(185, 131, 45, 0.55);
  border-right: 1px solid rgba(185, 131, 45, 0.55);
  border-radius: 0 28px 0 0;
  pointer-events: none;
}
.contact-image-frame::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55px;
  height: 55px;
  border-left: 1px solid rgba(185, 131, 45, 0.22);
  border-bottom: 1px solid rgba(185, 131, 45, 0.22);
  pointer-events: none;
}
.contact-image-frame img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 440px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(64, 45, 23, 0.1));
  transform: translateY(0);
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
}
.contact-intro-image:hover .contact-image-frame img {
  transform: translateY(-7px);
  filter: drop-shadow(0 32px 40px rgba(64, 45, 23, 0.14));
}
.contact-intro-orbit {
  z-index: 0;
}

@media (max-width: 950px) {
  .contact-intro-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    gap: 25px;
  }
  .contact-intro-content h1 {
    font-size: clamp(70px, 9vw, 105px);
  }
  .contact-intro-content h1 em {
    margin-left: 75px;
  }
  .contact-intro-image {
    height: 390px;
  }
  .contact-image-frame {
    width: 100%;
    padding: 15px;
  }
  .contact-image-glow {
    width: 330px;
    height: 330px;
  }
  .contact-image-frame::before {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 650px) {
  .contact-intro {
    min-height: auto;
  }
  .contact-intro-container {
    width: calc(100% - 34px);
    min-height: auto;
    padding: 65px 0 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
  }
  .contact-intro-content {
    max-width: 100%;
    text-align: left;
            padding-top: 61px;

  }
  .contact-intro-image {
    width: 100%;
    height: auto;
    min-height: 300px;
    margin-top: 5px;
  }
  .contact-image-frame {
    width: min(100%, 360px);
    padding: 14px;
  }
  .contact-image-frame img {
    width: 100%;
    max-width: 340px;
  }
  .contact-image-glow {
    width: 300px;
    height: 300px;
    right: 50%;
    transform: translate(50%, -50%);
  }
  .contact-image-frame::before {
    width: 62px;
    height: 62px;
    border-radius: 0 20px 0 0;
  }
  .contact-image-frame::after {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 380px) {
  .contact-intro-container {
    width: calc(100% - 28px);
    padding-top: 55px;
    padding-bottom: 60px;
  }
  .contact-intro-image {
    min-height: 260px;
  }
  .contact-image-frame {
    width: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-intro *,
  .contact-reach *,
  .contact-closing * {
    transition: none !important;
    animation: none !important;
  }
}
