/* ========================================================= 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(.2, .8, .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.10em;

    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(.2, .8, .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.10);

    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.10em;

    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%;

        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, 14.5vw, 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: 11px;

    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.tis-discover-kicker::before {
    content: "";

    width: 32px;
    height: 1px;

    background: var(--tis-gold);
}


/* =========================================================
   HEADING
   ========================================================= */

.tis-discover-heading h2 {
    margin: 0;

    max-width: 650px;

    font-size: clamp(55px, 6.2vw, 90px);

    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.30);
}


/* 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.70);
}


/* =========================================================
   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: 11px;
    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}

.tis-recognition-kicker::before {
    content: "";

    width: 32px;
    height: 1px;

    background: var(--tis-gold);
}


/* =========================================================
   HEADING
   ========================================================= */

.tis-recognition-title {
    max-width: 560px;

    margin: 0;

    font-size:
        clamp(56px, 6vw, 86px);

    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.10);

    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.30);
}


.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, 12.5vw, 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.70);
    }


    /* 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: 11px;
    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, 88px);
    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.10);

    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.10);
}


/* 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, 14vw, 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.10),
            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: 12px;
    font-weight: 700;

    letter-spacing: 0.20em;
    text-transform: uppercase;
}

.tis08x-label i {
    width: 55px;
    height: 1px;

    background: var(--tis-gold);
}

.tis08x-label strong {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.20em;
}


/* =========================================================
   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(52px, 6vw, 84px);

    font-weight: 500;

    line-height: 0.94;

    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(40px, 12.5vw, 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: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
}

/* Hide unnecessary caption */

.tis-faq11__caption {
    display: none;
}

/* =========================================================
   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, 76px);
    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: 15px;
    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.10);

    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.10);

    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, 13vw, 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: 560px;
  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: 9px;
  font-weight: 800;
  letter-spacing: 0.25em;
}
.shift12__center h2 {
  margin: 0;
  font-size: clamp(65px, 9vw, 120px);
  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: 15px;
  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.10),
      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.24em;
  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: 28px 0 30px;

  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.10);
  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;

  min-height: 265px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 35px 18px;

  border: 1px solid rgba(194, 138, 43, 0.28);
  border-radius: 25px;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(194, 138, 43, 0.13),
      transparent 58%
    ),
    rgba(255, 255, 255, 0.025);

  text-align: center;

  transition:
    border-color 0.45s ease,
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.tis-footer26__cta:hover {
  transform: translateY(-5px);

  border-color: rgba(194, 138, 43, 0.55);

  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.25),
    inset 0 0 40px rgba(194, 138, 43, 0.025);
}


/* CTA GLOW */

.tis-footer26__cta-glow {
  position: absolute;
  width: 180px;
  height: 180px;

  top: -100px;
  left: 50%;

  transform: translateX(-50%);

  border-radius: 50%;

  background: rgba(194, 138, 43, 0.13);
  filter: blur(45px);

  pointer-events: none;
}


/* CTA SYMBOL */

.tis-footer26__cta-symbol {
  position: relative;

  display: block;
  margin-bottom: 16px;

  color: #c28a2b;
  font-size: 25px;
  line-height: 1;

  animation: tisFooterSymbol 4s ease-in-out infinite;
}

@keyframes tisFooterSymbol {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(12deg) scale(1.08);
  }
}


/* 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 LINE */

.tis-footer26__cta-line {
  width: 55px;
  height: 1px;

  margin: 21px 0;

  background: #c28a2b;
}


/* 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;

    min-height: 190px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;

    text-align: left;
    padding: 28px 35px;
  }

  .tis-footer26__cta-symbol {
    margin: 0;
  }

  .tis-footer26__cta p {
    max-width: 480px;
  }

  .tis-footer26__cta-line {
    display: none;
  }

  .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;

    min-height: 220px;
  }

  .tis-footer26__cta-symbol {
    margin-bottom: 14px;
  }

  .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;
  }


  /* 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 {
    min-height: 235px;
    padding: 30px 22px;

    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: 8px;
  }
}


/* =========================================================
   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 */
/* =========================================================
   CONTACT HERO
   THE INNER SHIFT
   ========================================================= */

.tis-contact-hero {
  position: relative;

  width: 100%;
  min-height: calc(100svh - 80px);

  overflow: hidden;

  background: #ebe5d9;

  color: #171614;

  isolation: isolate;
}

/* =========================================================
   BACKGROUND IMAGE
   ========================================================= */

.tis-contact-hero-bg {
  position: absolute;

  inset: 0;

  z-index: -3;

  overflow: hidden;
}

.tis-contact-bg-image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center center;

  transform: scale(1.08);

  filter: saturate(0.88) contrast(1.02);

  will-change: transform;
}

/* =========================================================
   LEFT SIDE SOFT READABILITY
   ========================================================= */

.tis-contact-overlay {
  position: absolute;

  inset: 0;

  z-index: -2;

  background: linear-gradient(
    90deg,
    rgba(247, 243, 235, 0.96) 0%,
    rgba(247, 243, 235, 0.91) 29%,
    rgba(247, 243, 235, 0.67) 43%,
    rgba(247, 243, 235, 0.16) 61%,
    rgba(23, 22, 20, 0.02) 100%
  );

  pointer-events: none;
}

/* =========================================================
   SUBTLE GRAIN
   ========================================================= */

.tis-contact-grain {
  position: absolute;

  inset: 0;

  z-index: -1;

  opacity: 0.1;

  pointer-events: none;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");

  mix-blend-mode: multiply;
}

/* =========================================================
   CONTAINER
   ========================================================= */

.tis-contact-container {
  position: relative;

  z-index: 5;

  width: min(1380px, calc(100% - 100px));

  min-height: calc(100svh - 80px);

  margin: 0 auto;

  padding: 100px 0 45px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  box-sizing: border-box;
}

/* =========================================================
   TOP MARKER
   ========================================================= */

.tis-contact-marker {
  display: flex;

  align-items: center;

  gap: 15px;

  width: fit-content;

  opacity: 0;
}

.tis-contact-number {
  color: #b98235;

  font-size: 32px;

  font-weight: 300;

  line-height: 1;

  letter-spacing: -0.06em;
}

.tis-contact-line {
  width: 65px;

  height: 1px;

  background: #b98235;

  transform-origin: left center;

  transform: scaleX(0);
}

.tis-contact-label {
  color: #725a38;

  font-size: 13px;

  font-weight: 800;

  letter-spacing: 0.25em;
}

/* =========================================================
   MAIN CONTENT
   ========================================================= */

.tis-contact-content {
  width: min(620px, 48vw);

  margin-top: 20px;
}

/* =========================================================
   EYEBROW
   ========================================================= */

.tis-contact-eyebrow {
  margin: 0 0 24px;

  color: #a77a35;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.24em;

  opacity: 0;
}

/* =========================================================
   TITLE
   ========================================================= */

.tis-contact-title {
  margin: 0;

  max-width: 650px;

  color: #171614;

  font-size: clamp(55px, 6.5vw, 98px);

  line-height: 0.88;

  letter-spacing: -0.075em;

  font-weight: 500;

  opacity: 0;
}

.tis-contact-title span {
  display: block;

  color: #ad803d;

  font-family: Georgia, serif;

  font-style: italic;

  font-weight: 400;

  letter-spacing: -0.065em;
}

/* =========================================================
   DESCRIPTION
   ========================================================= */

.tis-contact-description {
  max-width: 500px;

  margin: 38px 0 0;

  color: #141414;

  font-family: Georgia, serif;

  font-size: 17px;

  line-height: 1.72;

  opacity: 0;
}

/* =========================================================
   ACTION
   ========================================================= */

.tis-contact-action {
  margin-top: 42px;

  opacity: 0;
}

.tis-contact-button {
  position: relative;

  display: inline-flex;

  align-items: center;

  justify-content: space-between;

  gap: 45px;

  min-width: 225px;

  padding: 16px 17px 16px 21px;

  color: #f7f5f1;

  background: #171614;

  text-decoration: none;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 0.19em;

  overflow: hidden;

  transition:
    color 0.45s ease,
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);

  box-sizing: border-box;
}

.tis-contact-button::before {
  content: "";

  position: absolute;

  inset: 0;

  background: #b98235;

  transform: translateX(-102%);

  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tis-contact-button span {
  position: relative;

  z-index: 2;
}

.tis-contact-arrow {
  font-size: 17px;

  line-height: 1;

  transition: transform 0.45s ease;
}

.tis-contact-button:hover {
  color: #171614;

  transform: translateY(-4px);
}

.tis-contact-button:hover::before {
  transform: translateX(0);
}

.tis-contact-button:hover .tis-contact-arrow {
  transform: translate(4px, -4px);
}

/* =========================================================
   BOTTOM
   ========================================================= */

.tis-contact-bottom {
  display: flex;

  align-items: center;

  gap: 15px;

  color: rgba(23, 22, 20, 0.48);

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 0.2em;

  opacity: 0;
}

.tis-contact-bottom-line {
  width: 75px;

  height: 1px;

  background: #b98235;
}

/* =========================================================
   FLOATING ORBIT
   ========================================================= */

.tis-contact-orbit {
  position: absolute;

  right: 7%;

  top: 17%;

  z-index: 4;

  width: 105px;

  height: 105px;

  border: 1px solid rgba(194, 138, 43, 0.65);

  border-radius: 50%;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  gap: 3px;

  color: #c28a2b;

  font-size: 7px;

  line-height: 1.4;

  letter-spacing: 0.18em;

  pointer-events: none;

  opacity: 0;
}

.tis-contact-orbit::before {
  content: "";

  position: absolute;

  inset: -7px;

  border: 1px solid rgba(194, 138, 43, 0.2);

  border-radius: 50%;

  transform: rotate(-20deg);
}

/* =========================================================
   SCROLL INDICATOR
   ========================================================= */

.tis-contact-scroll {
  position: absolute;

  right: 30px;

  bottom: 35px;

  z-index: 10;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 9px;

  color: rgba(23, 22, 20, 0.45);

  font-size: 6px;

  font-weight: 800;

  letter-spacing: 0.2em;

  opacity: 0;
}

.tis-contact-scroll-line {
  position: relative;

  width: 1px;

  height: 48px;

  background: rgba(23, 22, 20, 0.18);

  overflow: hidden;
}

.tis-contact-scroll-line span {
  position: absolute;

  left: 0;

  top: -20px;

  width: 1px;

  height: 20px;

  background: #b98235;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .tis-contact-container {
    width: calc(100% - 70px);

    padding-top: 65px;
  }

  .tis-contact-content {
    width: min(590px, 58vw);
  }

  .tis-contact-title {
    font-size: clamp(52px, 7vw, 82px);
  }

  .tis-contact-description {
    font-size: 16px;
  }

  .tis-contact-orbit {
    right: 5%;

    width: 90px;
    height: 90px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .tis-contact-hero {
    min-height: calc(100svh - 70px);

    background: #ebe5d9;
  }

  .tis-contact-hero-bg {
    height: 100%;

    z-index: -3;
  }

  .tis-contact-bg-image {
    object-position: 70% center;

    transform: scale(1.06);
  }

  .tis-contact-overlay {
    background: linear-gradient(
      180deg,
      rgba(247, 243, 235, 0.98) 0%,
      rgba(247, 243, 235, 0.92) 43%,
      rgba(247, 243, 235, 0.5) 66%,
      rgba(23, 22, 20, 0.18) 100%
    );
  }

  .tis-contact-container {
    width: calc(100% - 32px);

    min-height: calc(100svh - 70px);

    padding: 105px 0 40px;
  }

  .tis-contact-marker {
    gap: 10px;
  }

  .tis-contact-number {
    font-size: 27px;
  }

  .tis-contact-line {
    width: 42px;
  }

  .tis-contact-label {
    font-size: 7px;

    letter-spacing: 0.18em;
  }

  .tis-contact-content {
    width: 100%;

    margin-top: 50px;

    align-self: flex-start;
  }

  .tis-contact-eyebrow {
    margin-bottom: 18px;

    font-size: 7px;

    line-height: 1.5;

    letter-spacing: 0.18em;
  }

  .tis-contact-title {
    max-width: 100%;

    font-size: clamp(45px, 13vw, 65px);

    line-height: 0.9;

    letter-spacing: -0.065em;
  }

  .tis-contact-description {
    max-width: 92%;

    margin-top: 25px;

    font-size: 14px;

    line-height: 1.7;
  }

  .tis-contact-action {
    margin-top: 30px;
  }

  .tis-contact-button {
    min-width: 205px;

    padding: 15px 15px 15px 18px;

    gap: 28px;

    font-size: 7px;
  }

  .tis-contact-orbit {
    top: auto;

    right: 25px;

    bottom: 115px;

    width: 75px;

    height: 75px;

    font-size: 5.5px;
  }

  .tis-contact-bottom {
    gap: 10px;

    font-size: 5.5px;

    letter-spacing: 0.15em;
  }

  .tis-contact-bottom-line {
    width: 40px;
  }

  .tis-contact-scroll {
    display: none;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
  .tis-contact-container {
    width: calc(100% - 26px);

    padding-top: 100px;
  }

  .tis-contact-content {
    margin-top: 35px;
  }

  .tis-contact-title {
    font-size: clamp(41px, 12.5vw, 57px);
  }

  .tis-contact-description {
    max-width: 95%;

    font-size: 13px;

    line-height: 1.68;
  }

  .tis-contact-orbit {
    right: 18px;

    bottom: 105px;

    width: 65px;

    height: 65px;
  }

  .tis-contact-bottom {
    font-size: 5px;
  }
}

/* =========================================================
   VERY SMALL
   ========================================================= */

@media (max-width: 360px) {
  .tis-contact-container {
    width: calc(100% - 22px);

    padding-top: 36px;
  }

  .tis-contact-title {
    font-size: 39px;
  }

  .tis-contact-description {
    font-size: 12.5px;
  }

  .tis-contact-orbit {
    display: none;
  }
}

/* =========================================================
   TOUCH DEVICES
   ========================================================= */

@media (hover: none) and (pointer: coarse) {
  .tis-contact-button:hover {
    color: #f7f5f1;

    transform: none;
  }

  .tis-contact-button:hover::before {
    transform: translateX(-102%);
  }

  .tis-contact-button:hover .tis-contact-arrow {
    transform: none;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .tis-contact-bg-image,
  .tis-contact-button,
  .tis-contact-button::before,
  .tis-contact-arrow {
    transition: none !important;
  }
}
/* ========================================================= THE INNER SHIFT CONTACT PAGE SECTION 02 — A SPACE TO REACH OUT ========================================================= */
/* ========================================================= SECTION ========================================================= */
.contact-connect {
  position: relative;
  width: 100%;
  padding: 150px 0 80px;
  overflow: hidden;
  background: #151412;
  color: #f5f0e8;
}
/* ========================================================= GIANT BACKGROUND NUMBER ========================================================= */
.contact-connect__bg-number {
  position: absolute;
  right: -40px;
  top: 50px;
  font-size: clamp(300px, 35vw, 600px);
  line-height: 0.7;
  font-weight: 600;
  letter-spacing: -0.1em;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
  user-select: none;
}
/* ========================================================= CONTAINER ========================================================= */
.contact-connect__container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 90px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
  align-items: start;
}
/* ========================================================= EYEBROW ========================================================= */
.contact-connect__eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #b18a4b;
}
.contact-connect__line {
  width: 45px;
  height: 1px;
  background: #b18a4b;
}
/* ========================================================= TITLE ========================================================= */
.contact-connect__title {
  margin: 0;
  max-width: 560px;
  font-size: clamp(60px, 7vw, 105px);
  line-height: 0.86;
  letter-spacing: -0.065em;
  font-weight: 500;
}
.contact-connect__title em {
  display: block;
  color: #b18a4b;
  font-style: italic;
  font-weight: 400;
}
/* ========================================================= DESCRIPTION ========================================================= */
.contact-connect__description {
  max-width: 430px;
  margin: 45px 0 0;
  font-size: 15px;
  line-height: 1.85;
  color: #aaa49b;
}
/* ========================================================= NOTE ========================================================= */
.contact-connect__note {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  max-width: 360px;
  margin-top: 70px;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 240, 232, 0.14);
}
.contact-connect__note-mark {
  color: #b18a4b;
  font-size: 16px;
}
.contact-connect__note p {
  margin: 0;
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: #817b73;
}
/* ========================================================= DETAILS ========================================================= */
.contact-connect__details {
  border-top: 1px solid rgba(245, 240, 232, 0.2);
}
/* ========================================================= CONTACT ITEM ========================================================= */
.contact-connect__item {
  position: relative;
  display: grid;
  grid-template-columns: 55px 1fr 35px;
  gap: 20px;
  align-items: center;
  min-height: 155px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.14);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: padding 0.45s ease;
}
.contact-connect__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(177, 138, 75, 0.1), transparent);
  transform: translateX(-101%);
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
  pointer-events: none;
}
.contact-connect__item:hover::before {
  transform: translateX(0);
}
.contact-connect__item:hover {
  padding-left: 18px;
}
.contact-connect__item-number {
  position: relative;
  z-index: 2;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: #706b64;
}
.contact-connect__item-content {
  position: relative;
  z-index: 2;
}
.contact-connect__item-label {
  display: block;
  margin-bottom: 10px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #b18a4b;
}
.contact-connect__item-content h3 {
  margin: 0;
  font-size: clamp(21px, 2.3vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 400;
  color: #f5f0e8;
}
.contact-connect__item-content p {
  margin: 9px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: #c28a2b;
}
.contact-connect__item-arrow {
  position: relative;
  z-index: 2;
  font-size: 20px;
  color: #b18a4b;
  transition: transform 0.4s ease;
}
.contact-connect__item:hover .contact-connect__item-arrow {
  transform: translate(5px, -5px);
}
/* ========================================================= ADDRESS ========================================================= */
.contact-connect__item--address {
  cursor: default;
}
.contact-connect__item--address:hover {
  padding-left: 18px;
}
/* ========================================================= BOTTOM ========================================================= */
.contact-connect__bottom {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 90px));
  margin: 110px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(245, 240, 232, 0.14);
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.23em;
  color: #68635d;
}
.contact-connect__bottom span:nth-child(2) {
  color: #a07835;
}
/* ========================================================= TABLET ========================================================= */
@media (max-width: 900px) {
  .contact-connect {
    padding-top: 120px;
  }
  .contact-connect__container {
    width: calc(100% - 60px);
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .contact-connect__title {
    max-width: 700px;
  }
  .contact-connect__description {
    max-width: 600px;
  }
  .contact-connect__note {
    margin-top: 45px;
  }
  .contact-connect__bg-number {
    top: 0;
    right: -20px;
    font-size: 350px;
  }
  .contact-connect__bottom {
    width: calc(100% - 60px);
  }
}
/* ========================================================= MOBILE ========================================================= */
@media (max-width: 600px) {
  .contact-connect {
    padding: 95px 0 55px;
  }
  .contact-connect__container {
    width: calc(100% - 36px);
    gap: 65px;
  }
  .contact-connect__title {
    font-size: 57px;
  }
  .contact-connect__description {
    margin-top: 30px;
    font-size: 14px;
  }
  .contact-connect__note {
    margin-top: 40px;
  }
  .contact-connect__item {
    grid-template-columns: 35px 1fr 25px;
    gap: 10px;
    min-height: 130px;
  }
  .contact-connect__item-content h3 {
    font-size: 19px;
    word-break: break-word;
  }
  .contact-connect__item-content p {
    font-size: 9px;
  }
  .contact-connect__item:hover {
    padding-left: 8px;
  }
  .contact-connect__bottom {
    width: calc(100% - 36px);
    margin-top: 75px;
    gap: 12px;
    flex-direction: column;
  }
  .contact-connect__bg-number {
    font-size: 220px;
    top: 40px;
    right: -15px;
  }
}
/* ========================================================= REDUCED MOTION ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .contact-connect *,
  .contact-connect *::before,
  .contact-connect *::after {
    transition: none !important;
    animation: none !important;
  }
}
/* ========================================================= THE INNER SHIFT CONTACT PAGE SECTION 03 — WHAT HAPPENS NEXT ========================================================= */
/* ========================================================= SECTION ========================================================= */
.contact-next {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f7f3eb;
  color: #191714;
  padding: 155px 0 120px;
}
/* ========================================================= WATERMARK ========================================================= */
.contact-next__watermark {
  position: absolute;
  right: -50px;
  top: 80px;
  font-size: clamp(250px, 30vw, 540px);
  font-weight: 600;
  line-height: 0.7;
  letter-spacing: -0.1em;
  color: rgba(35, 30, 24, 0.035);
  pointer-events: none;
  user-select: none;
}
/* ========================================================= CONTAINER ========================================================= */
.contact-next__container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 90px));
  margin: 0 auto;
}
/* ========================================================= EYEBROW ========================================================= */
.contact-next__eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 42px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #a07935;
}
.contact-next__line {
  width: 48px;
  height: 1px;
  background: #a07935;
  transform-origin: left center;
}
/* ========================================================= HEADING AREA ========================================================= */
.contact-next__heading-wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 70px;
  align-items: end;
}
.contact-next__heading {
  margin: 0;
  max-width: 800px;
  font-size: clamp(65px, 8vw, 115px);
  line-height: 0.84;
  letter-spacing: -0.07em;
  font-weight: 500;
}
.contact-next__heading > span {
  display: block;
  margin-left: 17%;
}
.contact-next__heading em {
  color: #a07935;
  font-weight: 400;
  font-style: italic;
}
/* ========================================================= INTRO ========================================================= */
.contact-next__intro {
  padding-bottom: 8px;
}
.contact-next__intro p {
  margin: 0;
  max-width: 250px;
  font-size: 13px;
  line-height: 1.8;
  color: #777169;
}
.contact-next__arrow {
  display: block;
  margin-top: 30px;
  font-size: 25px;
  color: #a07935;
}
/* ========================================================= PROCESS ========================================================= */
.contact-next__process {
  margin-top: 130px;
  border-top: 1px solid rgba(29, 25, 21, 0.17);
}
/* ========================================================= STEP ========================================================= */
.contact-next__step {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr 60px;
  gap: 40px;
  min-height: 185px;
  padding: 35px 0;
  border-bottom: 1px solid rgba(29, 25, 21, 0.17);
  overflow: hidden;
  transition: padding 0.5s ease;
}
.contact-next__step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(160, 121, 53, 0.08), transparent 65%);
  transform: translateX(-101%);
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.18, 1);
  pointer-events: none;
}
.contact-next__step:hover::before {
  transform: translateX(0);
}
.contact-next__step:hover {
  padding-left: 20px;
}
/* ========================================================= STEP TOP ========================================================= */
.contact-next__step-top {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-next__step-number {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #a07935;
}
.contact-next__step-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #989188;
}
/* ========================================================= STEP MAIN ========================================================= */
.contact-next__step-main {
  position: relative;
  z-index: 2;
  align-self: center;
}
.contact-next__step-main h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 55px);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 400;
  transition: transform 0.45s ease;
}
.contact-next__step:hover .contact-next__step-main h3 {
  transform: translateX(8px);
}
.contact-next__step-main p {
  max-width: 450px;
  margin: 17px 0 0;
  font-size: 12px;
  line-height: 1.75;
  color: #777169;
}
/* ========================================================= SYMBOL ========================================================= */
.contact-next__step-symbol {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: end;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(160, 121, 53, 0.45);
  border-radius: 50%;
  color: #a07935;
  font-size: 18px;
  transition:
    transform 0.5s ease,
    background 0.4s ease,
    color 0.4s ease;
}
.contact-next__step:hover .contact-next__step-symbol {
  transform: rotate(45deg);
  background: #a07935;
  color: #f7f3eb;
}
/* ========================================================= BOTTOM STATEMENT ========================================================= */
.contact-next__bottom {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 85px;
}
.contact-next__bottom-mark {
  color: #a07935;
  font-size: 17px;
}
.contact-next__bottom p {
  margin: 0;
  font-size: 13px;
  color: #807970;
}
.contact-next__bottom strong {
  color: #302b25;
  font-weight: 500;
}
/* ========================================================= TABLET ========================================================= */
@media (max-width: 900px) {
  .contact-next {
    padding: 120px 0 90px;
  }
  .contact-next__container {
    width: calc(100% - 60px);
  }
  .contact-next__heading-wrap {
    grid-template-columns: 1fr 220px;
    gap: 40px;
  }
  .contact-next__heading {
    font-size: clamp(60px, 9vw, 90px);
  }
  .contact-next__process {
    margin-top: 100px;
  }
  .contact-next__step {
    grid-template-columns: 100px 1fr 50px;
    gap: 25px;
  }
}
/* ========================================================= MOBILE ========================================================= */
@media (max-width: 650px) {
  .contact-next {
    padding: 90px 0 70px;
  }
  .contact-next__container {
    width: calc(100% - 36px);
  }
  .contact-next__watermark {
    top: 40px;
    right: -20px;
    font-size: 210px;
  }
  .contact-next__eyebrow {
    margin-bottom: 30px;
  }
  .contact-next__heading-wrap {
    display: block;
  }
  .contact-next__heading {
    font-size: 55px;
    line-height: 0.86;
  }
  .contact-next__heading > span {
    margin-left: 7%;
  }
  .contact-next__intro {
    margin: 40px 0 0 7%;
  }
  .contact-next__intro p {
    font-size: 12px;
  }
  .contact-next__arrow {
    margin-top: 18px;
  }
  .contact-next__process {
    margin-top: 70px;
  }
  .contact-next__step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 15px;
    min-height: 0;
    padding: 28px 0;
  }
  .contact-next__step-top {
    min-height: 115px;
  }
  .contact-next__step-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }
  .contact-next__step-main h3 {
    font-size: 29px;
    line-height: 1.05;
  }
  .contact-next__step-main p {
    margin-top: 13px;
    font-size: 11px;
  }
  .contact-next__step-symbol {
    display: none;
  }
  .contact-next__step:hover {
    padding-left: 8px;
  }
  .contact-next__bottom {
    margin-top: 60px;
  }
  .contact-next__bottom p {
    font-size: 11px;
  }
}
/* ========================================================= REDUCED MOTION ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .contact-next *,
  .contact-next *::before,
  .contact-next *::after {
    animation: none !important;
    transition: none !important;
  }
}
/* ========================================================= THE INNER SHIFT CONTACT PAGE SECTION 04 — CONTACT FORM ========================================================= */
/* ========================================================= SECTION BASE ========================================================= */
.contact-form-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 155px 0 0;
  background: #f7f3eb;
  color: #191714;
}
/* ========================================================= WATERMARK ========================================================= */
.contact-form-section__watermark {
  position: absolute;
  top: 80px;
  left: -20px;
  font-size: clamp(250px, 32vw, 580px);
  line-height: 0.7;
  letter-spacing: -0.1em;
  font-weight: 600;
  color: rgba(30, 26, 21, 0.035);
  pointer-events: none;
  user-select: none;
}
/* ========================================================= CONTAINER ========================================================= */
.contact-form-section__container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 90px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: start;
}
/* ========================================================= LEFT INTRO ========================================================= */
.contact-form-section__intro {
  padding-top: 10px;
}
/* ========================================================= EYEBROW ========================================================= */
.contact-form-section__eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 35px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.23em;
  color: #a07935;
}
.contact-form-section__line {
  width: 45px;
  height: 1px;
  background: #a07935;
}
/* ========================================================= TITLE ========================================================= */
.contact-form-section__title {
  margin: 0;
  max-width: 600px;
  font-size: clamp(58px, 7vw, 100px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  font-weight: 500;
}
.contact-form-section__title .fisrtspan {
  color: var(--tis-gold);
}
.contact-form-section__title span {
  /* display: block; */
  /* margin-left: 14%; */
  color: #c28a2b;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
/* ========================================================= DESCRIPTION ========================================================= */
.contact-form-section__description {
  max-width: 390px;
  margin: 45px 0 0 14%;
  font-size: 14px;
  line-height: 1.85;
  color: #716b63;
}
/* ========================================================= REASSURANCE ========================================================= */
.contact-form-section__reassurance {
  max-width: 430px;
  margin: 55px 0 0 14%;
  border-top: 1px solid rgba(28, 24, 20, 0.15);
}
.contact-reassurance-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(28, 24, 20, 0.15);
}
.contact-reassurance-number {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #a07935;
}
.contact-reassurance-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #39342e;
}
.contact-reassurance-item p {
  margin: 0;
  font-size: 10px;
  line-height: 1.6;
  color: #8a837a;
}
/* ========================================================= QUOTE ========================================================= */
.contact-form-section__quote {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 50px 0 0 14%;
}
.contact-form-section__quote span {
  color: #a07935;
  font-size: 15px;
}
.contact-form-section__quote p {
  margin: 0;
  font-size: 11px;
  font-style: italic;
  color: #777067;
}
/* ========================================================= FORM WRAPPER ========================================================= */
.contact-form-section__form-wrap {
  position: relative;
  padding: 38px 40px 40px;
  background: #1a1815;
  color: #f4eee4;
  box-shadow: 0 35px 90px rgba(32, 27, 21, 0.12);
}
/* Decorative border */
.contact-form-section__form-wrap::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(244, 238, 228, 0.1);
  pointer-events: none;
}
/* ========================================================= FORM HEADER ========================================================= */
.contact-form-section__form-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding-bottom: 25px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(244, 238, 228, 0.15);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #9d958a;
}
.contact-form-section__form-head span:first-child {
  color: #b18a4b;
}
/* ========================================================= FORM ========================================================= */
.contact-form {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
/* ========================================================= FORM ROW ========================================================= */
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
/* ========================================================= FIELD ========================================================= */
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.contact-form__field label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.19em;
  color: #b18a4b;
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 0;
  border-bottom: 1px solid rgba(244, 238, 228, 0.18);
  outline: none;
  border-radius: 0;
  padding: 12px 0;
  background: transparent;
  color: #f4eee4;
  font-family: inherit;
  font-size: 13px;
  transition: border-color 0.35s ease;
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-bottom-color: #b18a4b;
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: #625e58;
}
.contact-form__field select {
  cursor: pointer;
  color: #817b73;
}
.contact-form__field select option {
  background: #1a1815;
  color: #f4eee4;
}
.contact-form__field textarea {
  min-height: 115px;
  resize: vertical;
  line-height: 1.7;
}
/* ========================================================= SUBMIT ========================================================= */
.contact-form__submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 8px;
  padding: 17px 19px;
  border: 1px solid #b18a4b;
  background: transparent;
  color: #f4eee4;
  cursor: pointer;
  font-family: inherit;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  transition:
    background 0.45s ease,
    color 0.45s ease;
}
.contact-form__submit:hover {
  background: #b18a4b;
  color: #171512;
}
.contact-form__submit-arrow {
  font-size: 19px;
  transition: transform 0.35s ease;
}
.contact-form__submit:hover .contact-form__submit-arrow {
  transform: translate(5px, -5px);
}
/* ========================================================= PRIVACY ========================================================= */
.contact-form__privacy {
  margin: 0;
  padding-top: 3px;
  font-size: 9px;
  line-height: 1.6;
  color: #625d56;
}
/* ========================================================= MARQUEE ========================================================= */
.contact-form-section__marquee {
  width: 100%;
  overflow: hidden;
  margin-top: 150px;
  padding: 25px 0;
  border-top: 1px solid rgba(28, 24, 20, 0.12);
  border-bottom: 1px solid rgba(28, 24, 20, 0.12);
}
.contact-form-section__marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 35px;
  white-space: nowrap;
  animation: contactMarquee 25s linear infinite;
}
.contact-form-section__marquee-track span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #888078;
}
.contact-form-section__marquee-track i {
  font-style: normal;
  color: #a07935;
  font-size: 13px;
}
@keyframes contactMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ========================================================= TABLET ========================================================= */
@media (max-width: 950px) {
  .contact-form-section {
    padding-top: 120px;
  }
  .contact-form-section__container {
    width: calc(100% - 60px);
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .contact-form-section__title {
    max-width: 700px;
  }
  .contact-form-section__description {
    max-width: 550px;
  }
  .contact-form-section__form-wrap {
    max-width: 700px;
  }
}
/* =========================================================
   CONTACT — LEFT EDITORIAL VISUAL
   ========================================================= */

.contact-form-section__intro {
  position: relative;

  min-height: 650px;

  padding: 20px 30px 55px 30px;

  isolation: isolate;
}

/* =========================================================
   VERTICAL EDITORIAL LINE
   ========================================================= */

.contact-form-section__intro::before {
  content: "";

  position: absolute;

  left: 0;

  top: 15px;

  bottom: 25px;

  width: 1px;

  background: linear-gradient(
    to bottom,
    transparent,
    rgba(177, 138, 75, 0.7) 12%,
    rgba(177, 138, 75, 0.25) 75%,
    transparent
  );

  transform-origin: top;

  transform: scaleY(0);

  animation: contactIntroLine 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

@keyframes contactIntroLine {
  to {
    transform: scaleY(1);
  }
}

/* =========================================================
   VISUAL ORBIT AREA
   ========================================================= */

.contact-intro-visual {
  position: absolute;

  top: -10px;

  right: -70px;

  width: 330px;

  height: 330px;

  z-index: -1;

  pointer-events: none;
}

/* =========================================================
   ORBITS
   ========================================================= */

.contact-intro-orbit {
  position: absolute;

  top: 50%;
  left: 50%;

  border-radius: 50%;

  border: 1px solid rgba(177, 138, 75, 0.16);

  transform: translate(-50%, -50%);
}

.contact-intro-orbit--outer {
  width: 310px;

  height: 190px;

  transform: translate(-50%, -50%) rotate(-25deg);
}

.contact-intro-orbit--middle {
  width: 235px;

  height: 140px;

  transform: translate(-50%, -50%) rotate(-25deg);

  border-color: rgba(177, 138, 75, 0.24);
}

.contact-intro-orbit--inner {
  width: 125px;

  height: 75px;

  transform: translate(-50%, -50%) rotate(-25deg);

  border-color: rgba(177, 138, 75, 0.32);
}

/* =========================================================
   CENTER DOT
   ========================================================= */

.contact-intro-orbit-dot {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #b18a4b;

  transform: translate(-50%, -50%);

  box-shadow:
    0 0 0 6px rgba(177, 138, 75, 0.08),
    0 0 25px rgba(177, 138, 75, 0.35);

  animation: contactPulse 3s ease-in-out infinite;
}

@keyframes contactPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 5px rgba(177, 138, 75, 0.07),
      0 0 15px rgba(177, 138, 75, 0.2);
  }

  50% {
    box-shadow:
      0 0 0 11px rgba(177, 138, 75, 0.02),
      0 0 30px rgba(177, 138, 75, 0.4);
  }
}

/* =========================================================
   ORBIT CROSS MARKS
   ========================================================= */

.contact-intro-cross {
  position: absolute;

  width: 9px;
  height: 9px;
}

.contact-intro-cross::before,
.contact-intro-cross::after {
  content: "";

  position: absolute;

  top: 50%;
  left: 50%;

  background: rgba(177, 138, 75, 0.55);
}

.contact-intro-cross::before {
  width: 9px;
  height: 1px;

  transform: translate(-50%, -50%);
}

.contact-intro-cross::after {
  width: 1px;
  height: 9px;

  transform: translate(-50%, -50%);
}

.contact-intro-cross--one {
  top: 48px;

  right: 88px;
}

.contact-intro-cross--two {
  right: 15px;

  bottom: 65px;
}

/* =========================================================
   COORDINATE
   ========================================================= */

.contact-intro-coordinate {
  position: absolute;

  right: 42px;

  bottom: 74px;

  color: rgba(177, 138, 75, 0.55);

  font-size: 7px;

  letter-spacing: 0.2em;
}

/* =========================================================
   VERTICAL LABEL
   ========================================================= */

.contact-intro-vertical-text {
  position: absolute;

  top: 92px;

  right: -15px;

  color: rgba(245, 239, 229, 0.16);

  font-size: 7px;

  font-weight: 700;

  letter-spacing: 0.3em;

  writing-mode: vertical-rl;

  transform: rotate(180deg);
}

/* =========================================================
   EYEBROW — BRING ABOVE VISUAL
   ========================================================= */

.contact-form-section__eyebrow {
  position: relative;

  z-index: 5;
}

/* =========================================================
   TITLE — ABOVE ORBIT
   ========================================================= */

.contact-form-section__title {
  position: relative;

  z-index: 5;
}

/* =========================================================
   DESCRIPTION
   ========================================================= */

.contact-form-section__description {
  position: relative;

  z-index: 5;
}

/* =========================================================
   REASSURANCE
   ========================================================= */

.contact-form-section__reassurance {
  position: relative;

  z-index: 5;
}

/* =========================================================
   QUOTE
   ========================================================= */

.contact-form-section__quote {
  position: relative;

  z-index: 5;
}

/* =========================================================
   BOTTOM MICRO LABEL
   ========================================================= */

.contact-intro-footer {
  display: flex;

  align-items: center;

  gap: 13px;

  margin: 42px 0 0 11%;

  color: rgba(245, 239, 229, 0.25);

  font-size: 7px;

  font-weight: 700;

  letter-spacing: 0.22em;
}

.contact-intro-footer-line {
  width: 42px;

  height: 1px;

  background: rgba(177, 138, 75, 0.5);
}

/* =========================================================
   ORBIT FLOAT
   ========================================================= */

@media (min-width: 901px) {
  .contact-intro-orbit--outer {
    animation: contactOrbitFloat 9s ease-in-out infinite;
  }

  .contact-intro-orbit--middle {
    animation: contactOrbitFloat 7s ease-in-out infinite reverse;
  }
}

@keyframes contactOrbitFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-25deg);
  }

  50% {
    transform: translate(-50%, -53%) rotate(-18deg);
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
  .contact-form-section__intro {
    min-height: auto;

    padding: 10px 20px 35px;
  }

  .contact-intro-visual {
    right: -30px;

    top: -45px;

    width: 280px;

    height: 280px;

    opacity: 0.8;
  }

  .contact-intro-orbit--outer {
    width: 270px;

    height: 170px;
  }

  .contact-intro-orbit--middle {
    width: 205px;

    height: 125px;
  }

  .contact-intro-orbit--inner {
    width: 110px;

    height: 68px;
  }

  .contact-intro-vertical-text {
    display: none;
  }

  .contact-intro-footer {
    margin-top: 32px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .contact-form-section__intro {
    min-height: auto;

    padding: 10px 14px 30px;
  }

  .contact-form-section__intro::before {
    top: 10px;

    bottom: 5px;
  }

  /* -----------------------------------------
       ORBIT
       ----------------------------------------- */

  .contact-intro-visual {
    top: -40px;

    right: -82px;

    width: 250px;

    height: 250px;

    opacity: 0.65;
  }

  .contact-intro-orbit--outer {
    width: 235px;

    height: 145px;
  }

  .contact-intro-orbit--middle {
    width: 180px;

    height: 110px;
  }

  .contact-intro-orbit--inner {
    width: 95px;

    height: 58px;
  }

  .contact-intro-orbit-dot {
    width: 6px;

    height: 6px;
  }

  .contact-intro-cross--one {
    top: 45px;

    right: 75px;
  }

  .contact-intro-cross--two {
    right: 20px;

    bottom: 45px;
  }

  .contact-intro-coordinate {
    right: 38px;

    bottom: 53px;

    font-size: 6px;
  }

  /* -----------------------------------------
       CONTENT
       ----------------------------------------- */

  .contact-form-section__eyebrow {
    margin-bottom: 28px;

    padding-right: 35px;

    font-size: 6.5px;

    line-height: 1.5;
  }

  .contact-form-section__title {
    font-size: clamp(43px, 12.5vw, 58px);

    max-width: 100%;
  }

  .contact-form-section__title span {
    margin-left: 5%;
  }

  .contact-form-section__description {
    max-width: 92%;

    margin-left: 5%;

    font-size: 12.5px;

    line-height: 1.8;
  }

  /* -----------------------------------------
       REASSURANCE
       ----------------------------------------- */

  .contact-form-section__reassurance {
    width: 94%;

    margin-left: 5%;
  }

  .contact-reassurance-item {
    grid-template-columns:
      25px
      minmax(0, 1fr);

    gap: 10px;

    padding: 14px 0;
  }

  .contact-reassurance-item strong {
    font-size: 10px;
  }

  .contact-reassurance-item p {
    font-size: 8.5px;
  }

  /* -----------------------------------------
       QUOTE
       ----------------------------------------- */

  .contact-form-section__quote {
    margin-left: 5%;

    margin-top: 30px;
  }

  /* -----------------------------------------
       FOOTER
       ----------------------------------------- */

  .contact-intro-footer {
    margin: 30px 0 0 5%;

    font-size: 6px;
  }

  .contact-intro-footer-line {
    width: 28px;
  }
}

/* =========================================================
   VERY SMALL
   ========================================================= */

@media (max-width: 380px) {
  .contact-intro-visual {
    right: -100px;

    opacity: 0.55;
  }

  .contact-form-section__title {
    font-size: 41px;
  }

  .contact-form-section__description {
    font-size: 12px;
  }

  .contact-intro-footer {
    display: none;
  }
}
/* ========================================================= MOBILE ========================================================= */
@media (max-width: 600px) {
  .contact-form-section {
    padding-top: 90px;
  }
  .contact-form-section__container {
    width: calc(100% - 36px);
    gap: 60px;
  }
  .contact-form-section__watermark {
    top: 30px;
    font-size: 190px;
  }
  .contact-form-section__eyebrow {
    font-size: 8px;
  }
  .contact-form-section__title {
    font-size: 53px;
  }
  .contact-form-section__title span {
    margin-left: 7%;
  }
  .contact-form-section__description {
    margin-left: 7%;
    font-size: 13px;
  }
  .contact-form-section__reassurance {
    margin-left: 7%;
  }
  .contact-form-section__quote {
    margin-left: 7%;
  }
  .contact-form-section__form-wrap {
    padding: 28px 22px 28px;
  }
  .contact-form-section__form-wrap::before {
    inset: 7px;
  }
  .contact-form-section__form-head {
    font-size: 7px;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .contact-form {
    gap: 22px;
  }
  .contact-form-section__marquee {
    margin-top: 90px;
  }
}
/* ========================================================= REDUCED MOTION ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .contact-form-section__marquee-track {
    animation: none;
  }
  .contact-form-section *,
  .contact-form-section *::before,
  .contact-form-section *::after {
    transition: none !important;
  }
}
/* ========================================================= THE INNER SHIFT CONTACT PAGE SECTION 05 — FINAL CLOSING ========================================================= */
/* ========================================================= SECTION BASE ========================================================= */
.contact-closing {
  position: relative;
  padding-top: 87px;
  width: 100%;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #171512;
  color: #f4eee4;
}
/* ========================================================= WATERMARK ========================================================= */
.contact-closing__watermark {
  position: absolute;
  left: 50%;
  bottom: -70px;
  transform: translateX(-50%);
  font-size: clamp(240px, 31vw, 550px);
  line-height: 0.7;
  letter-spacing: -0.1em;
  font-weight: 600;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
  user-select: none;
}
/* ========================================================= DECORATIVE CIRCLES ========================================================= */
.contact-closing__circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.contact-closing__circle--one {
  width: 580px;
  height: 580px;
  right: -270px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(177, 138, 75, 0.25);
}
.contact-closing__circle--two {
  width: 420px;
  height: 420px;
  left: -210px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px dashed rgba(177, 138, 75, 0.15);
}
/* ========================================================= CONTAINER ========================================================= */
.contact-closing__container {
  position: relative;
  z-index: 3;
  width: min(1000px, calc(100% - 90px));
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* ========================================================= EYEBROW ========================================================= */
.contact-closing__eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 40px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #a28c69;
}
.contact-closing__line {
  width: 42px;
  height: 1px;
  background: #b18a4b;
}
/* ========================================================= TITLE ========================================================= */
.contact-closing__title {
  margin: 0;
  font-size: clamp(75px, 11vw, 155px);
  line-height: 0.78;
  letter-spacing: -0.08em;
  font-weight: 400;
}
.contact-closing__title span {
  display: block;
  margin-left: 13%;
  color: #b18a4b;
  font-style: italic;
}
/* ========================================================= MESSAGE ========================================================= */
.contact-closing__message {
  max-width: 480px;
  margin-top: 50px;
}
.contact-closing__message p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.8;
  color: #918b82;
}
.contact-closing__message p:last-child {
  margin-bottom: 0;
  color: #b4aea5;
}
/* ========================================================= CTA ========================================================= */
.contact-closing__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 65px;
  min-width: 260px;
  margin-top: 45px;
  padding: 17px 20px;
  border: 1px solid #b18a4b;
  color: #eee7dc;
  text-decoration: none;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.19em;
  overflow: hidden;
  position: relative;
  transition:
    color 0.45s ease,
    transform 0.4s ease;
}
.contact-closing__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #b18a4b;
  transform: translateY(101%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}
.contact-closing__button span {
  position: relative;
  z-index: 2;
}
.contact-closing__button:hover {
  color: #171512;
  transform: translateY(-4px);
}
.contact-closing__button:hover::before {
  transform: translateY(0);
}
.contact-closing__button-arrow {
  font-size: 19px;
  transition: transform 0.35s ease;
}
.contact-closing__button:hover .contact-closing__button-arrow {
  transform: translate(5px, -5px);
}
/* ========================================================= SIGNATURE ========================================================= */
.contact-closing__signature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 75px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #655f58;
}
.contact-closing__signature-star {
  color: #b18a4b;
  font-size: 12px;
}
.contact-closing__signature-line {
  width: 35px;
  height: 1px;
  background: #5b554e;
}
/* ========================================================= BOTTOM META ========================================================= */
.contact-closing__bottom {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 90px));
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(244, 238, 228, 0.12);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #625d56;
}
/* ========================================================= TABLET ========================================================= */
@media (max-width: 900px) {
  .contact-closing {
    min-height: 680px;
  }
  .contact-closing__container {
    width: calc(100% - 60px);
  }
  .contact-closing__title {
    font-size: clamp(65px, 11vw, 110px);
  }
  .contact-closing__circle--one {
    width: 450px;
    height: 450px;
  }
  .contact-closing__circle--two {
    width: 330px;
    height: 330px;
  }
}
/* ========================================================= MOBILE ========================================================= */
@media (max-width: 600px) {
  .contact-closing {
    min-height: 680px;
  }
  .contact-closing__container {
    width: calc(100% - 36px);
  }
  .contact-closing__watermark {
    font-size: 185px;
    bottom: -15px;
  }
  .contact-closing__eyebrow {
    font-size: 7px;
    margin-bottom: 32px;
  }
  .contact-closing__title {
    font-size: 57px;
    line-height: 0.84;
  }
  .contact-closing__title span {
    margin-left: 7%;
  }
  .contact-closing__message {
    max-width: 330px;
    margin-top: 38px;
  }
  .contact-closing__message p {
    font-size: 13px;
  }
  .contact-closing__button {
    width: 100%;
    max-width: 300px;
    min-width: 0;
    gap: 25px;
    box-sizing: border-box;
    margin-top: 38px;
  }
  .contact-closing__signature {
    margin-top: 55px;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1.7;
  }
  .contact-closing__bottom {
    width: calc(100% - 36px);
    font-size: 6px;
  }
  .contact-closing__bottom span:nth-child(2) {
    display: none;
  }
  .contact-closing__circle--one {
    width: 330px;
    height: 330px;
    right: -180px;
  }
  .contact-closing__circle--two {
    width: 250px;
    height: 250px;
    left: -150px;
  }
}
/* ========================================================= REDUCED MOTION ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .contact-closing *,
  .contact-closing *::before,
  .contact-closing *::after {
    transition: none !important;
    animation: none !important;
  }
}
