:root {
  --tt-bg: #fbf7f3;
  --tt-surface: #fffdfb;
  --tt-surface-2: #f4ebe5;
  --tt-text: #1a1716;
  --tt-muted: #635753;
  --tt-border: rgba(26, 23, 22, 0.12);
  --tt-rose: #d44b68;
  --tt-red: #b2272b;
  --tt-plum: #65435f;
  --tt-gold: #c69346;
  --tt-logo-pink: #f090b0;
  --tt-shadow: 0 24px 60px rgba(71, 31, 26, 0.12);
  --tt-font-sans: "roc-grotesk", "Avenir Next", "Helvetica Neue", sans-serif;
  --tt-content: min(1160px, calc(100vw - 1.5rem));
  --tt-radius: 1.25rem;
  --tt-gap: clamp(1rem, 2vw, 1.5rem);
  --tt-logo-width: clamp(235px, 33vw, 365px);
  --tt-footer-height: 169px;
  --tt-footer-pad-y: 1.15rem;
  --tt-footer-transition-top: -2.7rem;
  --tt-footer-transition-height: 5.5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(212, 75, 104, 0.1), transparent 22rem),
    linear-gradient(180deg, #fffaf6 0%, var(--tt-bg) 42%, #f8f0ea 100%);
  color: var(--tt-text);
  font-family: var(--tt-font-sans);
  line-height: 1.5;
  overflow-x: hidden;
}


input,
textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--tt-border);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
}

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

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

button,
.tt-button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font: inherit;
  cursor: pointer;
}

.tt-shell {
  min-height: 100vh;
}

.tt-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 109px;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 243, 0.86);
  border-bottom: 1px solid var(--tt-border);
}

.tt-topbar__inner,
.tt-main,
.tt-footer__inner {
  width: var(--tt-content);
  margin: 0 auto;
}

.tt-topbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem 1rem;
  width: calc(100vw - 72px);
  min-height: 37px;
  margin-top: 0;
  padding-top: 36px;
}

.tt-static-header {
  position: relative;
}

.tt-nav--static,
.tt-nav--static.is-open {
  display: none;
}

.tt-menu-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--tt-logo-pink);
  font: inherit;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: 47px;
  height: 37px;
  font-size: 0;
  position: relative;
}

.tt-menu-button::before,
.tt-menu-button::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.tt-menu-button::before {
  top: 0.52rem;
}

.tt-menu-button::after {
  top: 0.98rem;
}

.tt-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.tt-mobile-menu.is-open {
  display: block;
}

.tt-mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(199, 111, 128, 0.86);
  backdrop-filter: blur(3px);
}

.tt-mobile-menu__panel {
  position: relative;
  min-height: 100vh;
  padding: 36px 42px 24px;
  color: #fff4f5;
}

.tt-mobile-menu__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 37px;
}

.tt-mobile-menu__close {
  position: absolute;
  left: -6px;
  top: -1px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 2rem;
  line-height: 1;
  padding: 0;
}

.tt-mobile-menu__brand {
  opacity: 0.88;
  width: min(var(--tt-logo-width), calc(100vw - 120px));
  max-width: 100%;
}

.tt-brand img,
.tt-mobile-menu__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.tt-brand {
  display: block;
  width: min(var(--tt-logo-width), calc(100vw - 120px));
  max-width: calc(100vw - 120px);
  line-height: 0;
}

.tt-mobile-menu__nav,
.tt-mobile-menu__collections {
  display: grid;
  gap: 43px;
  margin-top: 99px;
}

.tt-mobile-menu__collections[hidden] {
  display: none !important;
}

.tt-mobile-menu.is-collections-open .tt-mobile-menu__nav {
  display: none;
}

.tt-mobile-menu.is-collections-open .tt-mobile-menu__collections {
  display: grid;
}

.tt-mobile-menu__nav a,
.tt-mobile-menu__nav button,
.tt-mobile-menu__collections a {
  color: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  font: 600 39.534px/39.534px var(--tt-font-sans);
  letter-spacing: 0.192px;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
}

.tt-mobile-menu__nav a:last-child {
  display: none;
}

.tt-mobile-menu__collections-toggle span {
  margin-left: 0.5rem;
}

.tt-mobile-menu__back {
  font: 600 39.534px/39.534px var(--tt-font-sans) !important;
  letter-spacing: 0.163px !important;
  text-transform: none !important;
  opacity: 1;
}

.tt-nav--static a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 0.35rem;
}

.tt-home-stack {
  padding-top: 0;
}

.tt-gallery-band {
  padding: 0 0 2rem;
}

.tt-gallery-band__grid {
  display: grid;
  gap: 0.75rem;
}

.tt-gallery-band__grid img {
  width: 100%;
  object-fit: cover;
  border-radius: 1.6rem;
}

.tt-gallery-band__grid--four,
.tt-gallery-band__grid--three {
  grid-template-columns: 1fr;
}

.tt-home-linkout {
  display: flex;
  justify-content: center;
  padding: 0 0 2.75rem;
  background: #000;
}

.tt-home-linkout a {
  display: block;
  width: 100%;
}

.tt-home-linkout img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
}

.tt-home-caption {
  width: calc(100vw - 30px);
  margin: 0.28rem auto 0;
  text-align: left;
}

.tt-credit {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  line-height: 1.45;
}

.tt-page-home .tt-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(16, 13, 14, 0.16), rgba(16, 13, 14, 0));
  border-bottom: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.tt-page-rentals .tt-topbar {
  border-bottom: 0;
}

.tt-page-home .tt-topbar__inner {
  grid-template-columns: 1fr auto 1fr;
  justify-items: center;
  align-items: center;
}

.tt-page-home .tt-brand,
.tt-page-home .tt-nav a {
  color: rgba(255, 236, 245, 0.9);
  filter: drop-shadow(0 1px 7px rgba(0, 0, 0, 0.26));
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.12);
}

.tt-page-home .tt-nav-folder__panel,
.tt-page-home .tt-nav-folder__panel a,
.tt-page-collection .tt-nav-folder__panel,
.tt-page-collection .tt-nav-folder__panel a,
.tt-page-product .tt-nav-folder__panel,
.tt-page-product .tt-nav-folder__panel a {
  color: #1a1716 !important;
  filter: none !important;
  text-shadow: none !important;
}

.tt-page-home .tt-brand {
  opacity: 0.9;
}

.tt-page-home {
  background: #000000;
}

.tt-page-home .tt-main {
  width: 100%;
}

.tt-page-home .tt-footer {
  display: block;
}

.tt-page-home .tt-nav--static,
.tt-page-home .tt-nav--static.is-open {
  display: none;
}

.tt-page-collection .tt-main,
.tt-page-product .tt-main {
  width: 100%;
}

.tt-page-collection .tt-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
  border-bottom: 0;
  backdrop-filter: none;
}

.tt-page-collection .tt-brand {
  color: rgba(255, 204, 225, 0.95);
}

.tt-page-collection--queen-red-blossoms {
  background: #000;
  color: #fff;
}

.tt-page-collection--queen-red-blossoms .tt-topbar {
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.72), rgba(0, 0, 0, 0));
}

.tt-page-product .tt-topbar {
  background: #fff;
  border-bottom: 0;
  backdrop-filter: none;
}

.tt-page-product .tt-topbar__inner {
  min-height: 37px;
}

.tt-page-contact {
  background: #fbf7f1;
}

.tt-page-contact .tt-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.tt-page-contact .tt-main {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.tt-page-contact .tt-footer {
  display: block;
}

.tt-home-hero img {
  width: 100%;
  display: block;
  border-radius: 0;
  height: min(78vh, 56rem);
  object-fit: cover;
  background: transparent;
}

.tt-home-carousel-band {
  background: #000000;
  padding: 0;
}

.tt-home-carousel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 14px;
  min-height: 38rem;
  padding: 18px 68px 24px;
  overflow: visible;
  background: #000000;
  --tt-home-carousel-side-pad: 68px;
  --tt-home-carousel-arrow-size: 44px;
}

.tt-home-carousel__side,
.tt-home-carousel__main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tt-home-carousel img {
  position: relative;
  top: auto;
  width: 100%;
  height: min(70vh, 38rem);
  object-fit: cover;
  display: block;
  transition:
    opacity 920ms ease,
    transform 1080ms cubic-bezier(.19, 1, .22, 1),
    object-position 1080ms ease;
  will-change: opacity, transform;
}

.tt-home-carousel__side:first-child img {
  left: auto;
  width: 100%;
}

.tt-home-carousel__main img {
  left: auto;
  width: 100%;
}

.tt-home-carousel__side:last-child img {
  left: auto;
  width: 100%;
}

.tt-home-carousel__arrow {
  position: absolute;
  top: calc(18px + min(70vh, 38rem) / 2 + 52px);
  transform: translateY(-50%);
  width: var(--tt-home-carousel-arrow-size);
  height: var(--tt-home-carousel-arrow-size);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  color: #e493b1;
  border: 0;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  padding: 0;
  text-align: center;
  box-shadow: none;
  z-index: 4;
  transition: color 220ms ease, background 220ms ease, transform 260ms ease;
}

.tt-home-carousel__arrow:hover,
.tt-home-carousel__arrow:focus-visible {
  color: #f0abc4;
  transform: translateY(-50%) scale(1.03);
}

.tt-home-carousel__arrow--left {
  left: calc((var(--tt-home-carousel-side-pad) - var(--tt-home-carousel-arrow-size)) / 2);
}

.tt-home-carousel__arrow--right {
  right: calc((var(--tt-home-carousel-side-pad) - var(--tt-home-carousel-arrow-size)) / 2);
}

.tt-gallery-band--editorial {
  background: #000000;
  padding: 4.5rem 15px 54px;
}

.tt-gallery-band--final {
  background: #000000;
  padding: 0;
}

.tt-home-instagram-band {
  background: #000000;
  padding: 0 0 54px;
}

.tt-home-carousel--instagram {
  padding-top: 0;
}

.tt-home-video-band {
  background: #000000;
  padding: 0;
}

.tt-home-video {
  position: relative;
  width: 100%;
  height: 398px;
  overflow: hidden;
  background: #000000;
}

.tt-home-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tt-home-video__brand {
  position: absolute;
  right: clamp(0.9rem, 2vw, 1.5rem);
  bottom: clamp(0.9rem, 2vw, 1.5rem);
  width: clamp(110px, 18vw, 180px);
  max-width: 28%;
  opacity: 0.72;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.22));
}

.tt-gallery-band--editorial .tt-gallery-band__grid img,
.tt-gallery-band--final .tt-gallery-band__grid img {
  border-radius: 0;
}

.tt-gallery-band--editorial .tt-gallery-band__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.tt-gallery-band--editorial .tt-gallery-band__grid img {
  aspect-ratio: 277 / 370;
  height: auto;
  object-fit: cover;
}

.tt-page-hero--about {
  align-items: center;
}

.tt-about-editorial {
  display: grid;
  gap: 1rem;
}

.tt-about-editorial__copy {
  font-size: 1rem;
  line-height: 1.7;
}

.tt-about-editorial__copy p {
  margin: 0;
}

.tt-about-editorial__copy p + p {
  margin-top: 1.3rem;
}

.tt-about-editorial__rail {
  display: grid;
  gap: 1rem;
}

.tt-about-editorial__rail img {
  border-radius: var(--tt-radius);
  box-shadow: var(--tt-shadow);
}

.tt-about-card h3 {
  color: #d96478;
  font-family: var(--tt-font-sans);
  font-size: clamp(2.1rem, 5vw, 2.35rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 0.85rem;
}

.tt-about-section {
  display: grid;
  gap: 1rem;
}

.tt-about-feature-row {
  display: grid;
  gap: 1.2rem;
  align-items: start;
}

.tt-about-columns {
  display: grid;
  gap: var(--tt-gap);
}

.tt-about-gallery {
  display: grid;
  gap: 1rem;
}

.tt-about-gallery img {
  border-radius: var(--tt-radius);
  box-shadow: var(--tt-shadow);
  background: rgba(255, 255, 255, 0.78);
}

.tt-about-awards-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  justify-items: start;
  width: min(760px, 100%);
  margin: 0 auto;
}

.tt-about-award {
  width: 100%;
  max-width: 320px;
}

.tt-about-award img {
  width: min(100%, 265px);
  aspect-ratio: 0.78;
  object-fit: contain;
  object-position: center;
  background: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.9rem;
}

.tt-about-award h4,
.tt-about-media-links h4,
.tt-about-media-excerpt h4 {
  margin: 0 0 0.45rem;
  font-family: var(--tt-font-sans);
  font-size: 1.35rem;
  font-weight: 500;
}

.tt-about-award h4 a,
.tt-about-media-links h4 a,
.tt-about-media-excerpt h4 a {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.tt-about-award p,
.tt-about-media-excerpt p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
}

.tt-about-media-links {
  display: grid;
  justify-items: center;
  gap: 0.1rem;
}

.tt-about-card--media-links {
  text-align: center;
}

.tt-about-card--media-excerpts {
  padding-top: 0.2rem;
}

.tt-about-media-excerpts {
  display: grid;
  gap: 1.25rem;
}

.tt-about-media-excerpt {
  text-align: center;
}

.tt-about-media-excerpt p a {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.tt-page-about .tt-shell {
  position: relative;
}

.tt-page-about .tt-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.tt-page-about .tt-topbar:not(.is-top-visible) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.tt-page-about .tt-main {
  padding-top: 0;
}

.tt-page-about .tt-page-hero {
  padding-top: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.tt-page-about .tt-page-hero__frame {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-radius: 0;
}

.tt-page-about .tt-page-hero__frame img {
  width: 100vw;
  max-width: 100vw;
  height: clamp(148px, 18vw, 240px);
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
}

.tt-rentals-intro {
  padding: 1.25rem 0 1rem;
}

.tt-rentals-intro h1 {
  margin: 1rem 0 0;
  font-size: clamp(2.2rem, 8vw, 4rem);
}

.tt-rentals-grid .tt-product__body {
  min-height: 8.25rem;
}

.tt-rentals-grid .tt-product__title {
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.tt-rentals-grid .tt-muted {
  margin: 0;
  line-height: 1.5;
}

.tt-card--image-only {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.tt-card--image-only img {
  aspect-ratio: auto;
  border-radius: var(--tt-radius);
}

.tt-product-hero {
  padding-top: 1rem;
}

.tt-collection-hero,
.tt-collection-grid,
.tt-collection-copy,
.tt-collection-lead,
.tt-product-sequence,
.tt-product-details {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.tt-collection-hero {
  position: relative;
}

.tt-collection-hero img,
.tt-collection-lead img,
.tt-product-row img {
  width: 100%;
  display: block;
}

.tt-collection-hero img {
  height: 349px;
  object-fit: cover;
}

.tt-collection-hero__title {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
}

.tt-collection-hero__title h1 {
  margin: 0;
  font-family: var(--tt-font-sans);
  font-size: clamp(4rem, 14vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.9;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
}

.tt-collection-grid--intro,
.tt-collection-grid--editorial {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tt-collection-grid--ski {
  width: calc(100vw - 72px);
  margin: 98px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 19px;
  row-gap: 19px;
  align-items: start;
}

.tt-collection-grid--ski img:nth-child(1),
.tt-collection-grid--ski img:nth-child(2) {
  width: 254px;
}

.tt-collection-grid--ski img:nth-child(1) {
  height: 254px;
  object-fit: cover;
  align-self: start;
}

.tt-collection-grid--ski img:nth-child(2) {
  height: 339px;
  object-fit: cover;
  align-self: start;
}

.tt-collection-grid--ski img:nth-child(3),
.tt-collection-grid--ski img:nth-child(4),
.tt-collection-grid--ski img:nth-child(5),
.tt-collection-grid--ski img:nth-child(6),
.tt-collection-grid--ski img:nth-child(7),
.tt-collection-grid--ski img:nth-child(9) {
  width: 254px;
  height: 381px;
  object-fit: cover;
}

.tt-collection-grid--ski img:nth-child(4),
.tt-collection-grid--ski img:nth-child(6),
.tt-collection-grid--ski img:nth-child(8),
.tt-collection-grid--ski img:nth-child(10) {
  margin-top: 85px;
}

.tt-collection-grid--ski img:nth-child(7) {
  grid-column: 1 / span 2;
  width: 527px;
  height: 351px;
}

.tt-collection-grid--ski img:nth-child(8),
.tt-collection-grid--ski img:nth-child(9) {
  width: 254px;
}

.tt-collection-grid--ski img:nth-child(8) {
  height: 369px;
  object-fit: cover;
}

.tt-collection-grid--ski img:nth-child(9) {
  height: 381px;
  object-fit: cover;
}

.tt-collection-grid--ski img:nth-child(10) {
  width: 254px;
  height: 203px;
  object-fit: cover;
}

.tt-collection-grid--intro {
  gap: 4px;
  width: calc(100vw - 72px);
  margin: 36px auto 0;
}

.tt-collection-grid--editorial {
  gap: 15px;
  width: calc(100vw - 24px);
  margin: 24px auto 0;
}

.tt-collection-grid--intro img {
  aspect-ratio: 262 / 393;
  object-fit: cover;
}

.tt-collection-grid--editorial img {
  aspect-ratio: 280 / 374;
  object-fit: cover;
}

.tt-collection-copy {
  width: calc(100vw - 72px);
  margin: 32px auto 24px;
  color: #2a2322;
}

.tt-collection-copy h2 {
  margin: 0 0 0.8rem;
  font-family: var(--tt-font-sans);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.tt-collection-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}

.tt-collection-copy p + p {
  margin-top: 0.95rem;
}

.tt-collection-copy__note {
  font-weight: 500;
  margin-top: 0.18rem !important;
  color: var(--tt-muted);
}

.tt-collection-copy .tt-credit:first-of-type {
  margin-top: 0.1rem !important;
}

.tt-collection-credit-block {
  width: calc(100vw - 24px);
  margin: 0.35rem auto 0;
}

.tt-page-collection--creepy-grannies .tt-collection-copy__note {
  color: rgba(155, 155, 155, 0.96);
  font-size: 0.76rem;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0;
}

.tt-page-collection--creepy-grannies .tt-footer {
  margin-top: 0.5rem;
}

.tt-product-details .tt-credit {
  margin-top: 0.35rem;
  color: var(--tt-muted);
}

.tt-collection-hero--ski img {
  height: 1252px;
  object-fit: cover;
}

.tt-queen-intro {
  min-height: auto;
  padding: 122px 38px 20px;
  text-align: center;
  background: #000;
  color: #fff;
}

.tt-queen-intro h1,
.tt-queen-intro h2,
.tt-queen-intro p {
  margin: 0;
}

.tt-queen-intro h1 {
  font-family: var(--tt-font-sans);
  font-size: clamp(3.65rem, 12vw, 4.55rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.32;
}

.tt-queen-intro__lead {
  margin-top: 48px !important;
  font-size: 1rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.tt-queen-intro h2 {
  margin-top: 34px;
  font-family: var(--tt-font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.7;
}

.tt-queen-intro p {
  margin-top: 42px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.tt-collection-grid--queen {
  width: calc(100vw - 72px);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 23px;
  padding-bottom: 64px;
}

.tt-collection-grid--queen img {
  width: 252px;
  height: 337px;
  object-fit: cover;
}

.tt-collection-lead {
  width: calc(100vw - 72px);
  margin: 0 auto;
}

.tt-product-sequence {
  padding-top: 12px;
}

.tt-product-credit-inline {
  width: calc(100vw - 72px);
  margin: 0.4rem auto 0;
  color: rgba(155, 155, 155, 0.96);
  font-size: 0.76rem;
  line-height: 1.4;
  text-align: left;
}

.tt-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.tt-product-frame {
  margin: 0;
  aspect-ratio: 2294 / 3443;
  overflow: hidden;
  background: #fbf7f3;
}

.tt-product-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.tt-product-frame:nth-last-child(1):nth-child(odd) {
  grid-column: 1;
}

.tt-page-product--flower-ski-babe .tt-product-frame:nth-child(1) img,
.tt-page-product--evil-ski-lady .tt-product-frame:nth-child(5) img,
.tt-page-product--wicked-ski-princess .tt-product-frame:nth-child(4) img,
.tt-page-product--azure-poppies .tt-product-frame:nth-child(1) img,
.tt-page-product--azure-poppies .tt-product-frame:nth-child(2) img,
.tt-page-product--azure-poppies .tt-product-frame:nth-child(4) img,
.tt-page-product--azure-poppies .tt-product-frame:nth-child(5) img {
  transform: scale(1.062);
  transform-origin: top center;
}

.tt-page-product--flower-ski-babe .tt-product-frame:nth-child(3) img,
.tt-page-product--flower-ski-babe .tt-product-frame:nth-child(4) img,
.tt-page-product--flower-ski-babe .tt-product-frame:nth-child(5) img,
.tt-page-product--evil-ski-lady .tt-product-frame:nth-child(4) img,
.tt-page-product--wicked-ski-princess .tt-product-frame:nth-child(1) img {
  transform: scale(1.085);
  transform-origin: top center;
}

.tt-page-product--race-lady .tt-product-frame:nth-child(3) img,
.tt-page-product--azure-poppies .tt-product-frame:nth-child(3) img,
.tt-page-product--small-flower-bag .tt-product-frame:nth-child(1) img,
.tt-page-product--small-satin-flower-bag .tt-product-frame:nth-child(1) img,
.tt-page-product--asymmetric-checked-dress .tt-product-frame img {
  transform: scale(1.127);
  transform-origin: top center;
}

.tt-page-product--flower-ski-babe .tt-product-frame:nth-child(2) img,
.tt-page-product--race-lady .tt-product-frame:nth-child(1) img,
.tt-page-product--snow-queen .tt-product-frame:nth-child(4) img {
  transform: scale(1.2);
  transform-origin: top center;
}

.tt-page-product--wicked-ski-princess .tt-product-frame:nth-child(2) img {
  transform: scale(1.44);
  transform-origin: top center;
}

.tt-page-product--queen-red-blossom .tt-product-frame:nth-child(3) img,
.tt-page-product--queen-red-blossom .tt-product-frame:nth-child(4) img {
  transform: scale(1.047);
  transform-origin: bottom center;
}

.tt-page-product--queen-red-blossom .tt-product-grid {
  gap: 16px;
}


.tt-product-details {
  width: calc(100vw - 72px);
  margin: 36px auto 0;
}

.tt-product-details h1 {
  margin: 0 0 0.75rem;
  font-family: var(--tt-font-sans);
  font-size: 2rem;
  font-weight: 500;
}

.tt-product-details p {
  margin: 0;
  line-height: 1.55;
}

.tt-product-subtitle {
  max-width: 34rem;
  color: #3f3735;
  font-size: 1.02rem;
}

.tt-product-meta {
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--tt-border);
  display: grid;
  gap: 0.65rem;
}

.tt-product-meta__row,
.tt-product-pricing__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.tt-product-meta__row span,
.tt-product-section-label {
  color: var(--tt-muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tt-product-meta__row strong,
.tt-product-pricing__row strong {
  font-weight: 500;
  text-align: right;
}

.tt-product-copy,
.tt-product-pricing {
  margin-top: 1.45rem;
}

.tt-product-detail {
  margin-top: 0.45rem !important;
  max-width: 40rem;
  color: #3f3735;
}

.tt-product-pricing {
  padding-top: 1rem;
  border-top: 1px solid var(--tt-border);
}

.tt-product-pricing__row {
  margin-top: 0.7rem;
}

.tt-product-pricing__row span {
  color: #2f2928;
}

.tt-product-pricing__row strong {
  white-space: nowrap;
}

.tt-product-inquiry {
  margin-top: 2.4rem;
  padding: 1.4rem 1.5rem 1.55rem;
  border: 1px solid rgba(203, 109, 133, 0.24);
  background:
    radial-gradient(circle at top left, rgba(240, 144, 176, 0.22), transparent 16rem),
    rgba(255, 251, 247, 0.78);
}

.tt-product-inquiry__intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.tt-product-inquiry__intro p {
  margin: 0;
  color: #3f3735;
  font-size: 0.98rem;
}

.tt-product-inquiry__toggle {
  flex: 0 0 auto;
  padding: 0.72rem 1.3rem;
  border: 1px solid rgba(203, 109, 133, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  color: #cb6d85;
  font-family: var(--tt-font-sans);
  font-size: 1.15rem;
  line-height: 1;
}

.tt-product-inquiry__form {
  margin-top: 1.35rem;
}

.tt-product-inquiry__form[hidden] {
  display: none;
}

.tt-product-inquiry__form input[readonly] {
  color: rgba(26, 23, 22, 0.68);
  background: rgba(255, 255, 255, 0.38);
}

.tt-contact-page {
  min-height: 939px;
  background:
    url("/media/image/b16295fb94-kukkaraitapink.jpg")
      center top / cover no-repeat;
  position: relative;
  padding: 181px 35px 0;
  display: flex;
  justify-content: center;
}

.tt-page-about .tt-contact-page {
  min-height: auto;
  padding-top: 90px;
  padding-bottom: 54px;
}

.tt-contact-page__content {
  position: relative;
  max-width: 527px;
  width: min(100%, 527px);
  margin: 0 auto;
  text-align: center;
  z-index: 0;
  isolation: isolate;
}

.tt-contact-page__content::before {
  content: "";
  position: absolute;
  top: -1.2rem;
  left: -1.6rem;
  right: -1.6rem;
  bottom: 12.5rem;
  border-radius: 1.25rem;
  background: rgba(255, 251, 247, 0.16);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 0;
  pointer-events: none;
}

.tt-contact-page__content > * {
  position: relative;
  z-index: 1;
}

.tt-contact-page h1 {
  margin: 0;
  color: #cb6d85;
  font: 500 clamp(3.6rem, 11vw, 4.35rem) / 0.96 var(--tt-font-sans);
  letter-spacing: 0.01em;
  text-shadow: none;
}

.tt-contact-page p {
  margin: 52px 0 0;
  max-width: 530px;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.6;
}

.tt-inline-flower {
  display: inline-block;
  margin-left: 0.14rem;
  color: #cb6d85;
  font-size: 0.95em;
  transform: translateY(-0.02em);
}

.tt-contact-page__form {
  margin-top: 36px;
  width: 100%;
}

.tt-contact-page__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.tt-contact-page__form label {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 20px;
  text-align: left;
}

.tt-contact-page__form span {
  color: rgba(0, 0, 0, 0.58);
}

.tt-contact-page__form input,
.tt-contact-page__form textarea {
  margin-top: 7px;
  border-radius: 0;
  border: 1px solid rgba(118, 118, 118, 0.48);
  background: rgba(255, 255, 255, 0.66);
  padding: 0.7rem 0.9rem;
}

.tt-contact-page__form input {
  height: 44px;
}

.tt-contact-page__form textarea {
  min-height: 98px;
  resize: vertical;
}

.tt-contact-page__button {
  margin-top: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--tt-logo-pink);
  font-weight: 400;
  display: inline-block;
  position: relative;
  overflow: visible;
  cursor: pointer;
  z-index: 3;
}

.tt-contact-page__button[disabled] {
  opacity: 0.55;
  cursor: progress;
}

.tt-contact-page__status {
  min-height: 1.3rem;
  margin: 0.85rem 0 0;
  font-size: 0.94rem;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.68);
  text-align: center;
}

.tt-contact-page__status.is-success {
  color: #2c6b43;
}

.tt-contact-page__status.is-error {
  color: #9d2f45;
}

.tt-contact-page__status.is-pending {
  color: rgba(0, 0, 0, 0.56);
}

.tt-flower-burst {
  position: absolute;
  width: 34px;
  height: 34px;
  left: 0;
  top: 0;
  margin-left: -17px;
  margin-top: -17px;
  border-radius: 50%;
  pointer-events: none;
  background-image: url("/media/image/b16295fb94-kukkaraitapink.jpg");
  background-size: 180px 180px;
  background-position: var(--bg-x, 50%) var(--bg-y, 50%);
  mix-blend-mode: normal;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.45) rotate(0deg);
  animation: ttFlowerBurst 1900ms cubic-bezier(.16,.84,.24,1) forwards;
  z-index: 5;
}

@keyframes ttFlowerBurst {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.32) rotate(0deg);
  }
  10% {
    opacity: 0.92;
  }
  70% {
    opacity: 0.82;
  }
  100% {
    opacity: 0;
    transform:
      translate3d(var(--burst-x, 0px), var(--burst-y, 0px), 0)
      scale(var(--burst-scale, 1.06))
      rotate(var(--burst-rotate, 0deg));
  }
}

.tt-contact-page__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background:
    url("/media/image/c4510d3ad4-pikkukukat.valk.jpg")
      center / cover no-repeat;
}

.tt-policy-page {
  min-height: 100vh;
  padding: clamp(10rem, 16vw, 13rem) clamp(1rem, 4vw, 3rem) clamp(4rem, 9vw, 7rem);
}

.tt-policy-page__inner {
  width: min(920px, 100%);
  margin: 0 auto;
}

.tt-policy-page h1 {
  margin: 0 0 clamp(2.5rem, 6vw, 4.5rem);
  font-family: var(--tt-font-sans);
  font-size: clamp(2.6rem, 9vw, 6rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.tt-policy-page__sections {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.tt-policy-page__section {
  border-top: 1px solid rgba(20, 20, 20, 0.18);
  padding-top: 1.25rem;
}

.tt-policy-page__section h2 {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tt-policy-page__section p {
  max-width: 68ch;
  margin: 0;
  line-height: 1.7;
}

.tt-policy-page__section p + p {
  margin-top: 0.75rem;
}

.tt-policy-page__section a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.tt-page-floral-tail {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 20px;
}

.tt-page-floral-tail img {
  width: 100%;
  height: 205px;
  object-fit: cover;
}

.tt-note {
  margin-top: 1rem;
  color: var(--tt-muted);
  font-size: 0.94rem;
}

.tt-contact-form-card {
  display: grid;
  gap: 1rem;
  max-width: 46rem;
  padding: 1.2rem;
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--tt-shadow);
}

.tt-brand {
  justify-self: center;
}

.tt-mobile-menu__brand {
  display: block;
  width: 238px;
  max-width: 238px;
  line-height: 0;
}

.tt-menu-toggle {
  justify-self: end;
  background: transparent;
  border: 1px solid var(--tt-border);
  color: var(--tt-text);
}

.tt-nav {
  grid-column: 1 / -1;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
}

.tt-nav.is-open {
  display: flex;
}

.tt-nav--static,
.tt-nav--static.is-open {
  display: none;
}

.tt-nav a,
.tt-nav summary {
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.tt-nav-folder {
  position: relative;
  display: flex;
  align-items: center;
}

.tt-nav-folder > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
}

.tt-nav--static > a,
.tt-nav--static > .tt-nav-folder > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.tt-nav-folder__panel {
  display: none;
}

.tt-nav details {
  border-top: 1px solid var(--tt-border);
  padding-top: 0.5rem;
}

.tt-nav details a {
  display: block;
  padding: 0.35rem 0 0.15rem;
}

.tt-hero {
  display: grid;
  gap: 1rem;
  padding: 1rem 0 2rem;
}

.tt-hero__media {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--tt-radius) * 1.3);
  min-height: 58vh;
  box-shadow: var(--tt-shadow);
}

.tt-hero__media img {
  height: 100%;
  object-fit: cover;
}

.tt-hero__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(18, 10, 9, 0.72));
  color: #fff8f1;
}

.tt-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tt-kicker::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.66;
}

.tt-hero h1,
.tt-page-hero h1 {
  margin: 0;
  font-family: var(--tt-font-sans);
  font-size: clamp(2.25rem, 9vw, 5rem);
  line-height: 0.94;
  font-weight: 500;
}

.tt-lead {
  max-width: 42rem;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--tt-muted);
}

.tt-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.tt-button--primary {
  background: var(--tt-text);
  color: #fff;
}

.tt-button--ghost {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.tt-button--outline {
  background: transparent;
  color: var(--tt-text);
  border: 1px solid var(--tt-border);
}

.tt-section {
  padding: 1.2rem 0 2.75rem;
}

.tt-section__heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tt-section__heading h2 {
  margin: 0;
  font: 500 clamp(1.6rem, 5vw, 3rem) / 1 var(--tt-font-sans);
}

.tt-grid {
  display: grid;
  gap: var(--tt-gap);
}

.tt-grid--collections,
.tt-grid--products,
.tt-grid--masonry,
.tt-grid--story {
  grid-template-columns: 1fr;
}

.tt-card,
.tt-product,
.tt-story,
.tt-about-card,
.tt-contact-card {
  overflow: hidden;
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--tt-shadow);
}

.tt-card img,
.tt-product img,
.tt-story img {
  aspect-ratio: 0.82;
  object-fit: cover;
}

.tt-grid--collections .tt-product--collection img {
  aspect-ratio: 0.98;
  object-fit: contain;
  object-position: center center;
  background: rgba(252, 248, 244, 0.92);
  padding: 0.65rem;
}

.tt-card__body,
.tt-product__body,
.tt-story__body,
.tt-about-card,
.tt-contact-card {
  padding: 1rem;
}

.tt-card__title,
.tt-product__title {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.35rem;
  font-family: var(--tt-font-sans);
  font-size: 1.5rem;
  line-height: 1.04;
}

.tt-card__meta,
.tt-muted {
  color: var(--tt-muted);
  font-size: 0.95rem;
}

.tt-story__body h3,
.tt-about-card h3,
.tt-contact-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--tt-font-sans);
  font-size: 1.5rem;
  font-weight: 500;
}

.tt-page-hero {
  padding: 1rem 0 2rem;
}

.tt-page-hero__frame {
  display: grid;
  gap: 1rem;
}

.tt-page-hero__frame img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: calc(var(--tt-radius) * 1.2);
  box-shadow: var(--tt-shadow);
}

.tt-columns {
  display: grid;
  gap: var(--tt-gap);
}

.tt-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tt-list li + li {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--tt-border);
}

.tt-product-layout {
  display: grid;
  gap: 1rem;
}

.tt-product-gallery {
  display: grid;
  gap: 0.75rem;
}

.tt-product-gallery img {
  border-radius: var(--tt-radius);
  aspect-ratio: 0.82;
  object-fit: cover;
}

.tt-price {
  color: var(--tt-red);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tt-pill {
  display: inline-flex;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--tt-border);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tt-footer {
  position: relative;
  isolation: isolate;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding: 2rem 0 3rem;
}

.tt-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -2.25rem;
  height: 4.5rem;
  background: linear-gradient(180deg, rgba(251, 247, 243, 0), rgba(251, 247, 243, 0.82) 45%, rgba(251, 247, 243, 0));
  filter: blur(18px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.tt-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--tt-border);
  border-radius: calc(var(--tt-radius) * 1.2);
  background: rgba(255, 255, 255, 0.82);
}

.tt-footer__title {
  margin: 0;
  font-family: var(--tt-font-sans);
  font-size: 1.4rem;
}

.tt-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.tt-footer small {
  color: var(--tt-muted);
}

.tt-page-collection .tt-page-floral-tail,
.tt-page-product .tt-page-floral-tail {
  display: none;
}

.tt-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: var(--tt-footer-height);
  padding: 0;
  background:
    url("/media/image/c4510d3ad4-pikkukukat.valk.jpg")
      center / cover no-repeat;
}

.tt-page-home .tt-footer::before,
.tt-footer::before {
  top: var(--tt-footer-transition-top);
  height: var(--tt-footer-transition-height);
  background:
    linear-gradient(180deg, rgba(251, 247, 243, 0) 0%, rgba(251, 247, 243, 0.6) 44%, rgba(251, 247, 243, 0) 100%),
    linear-gradient(90deg,
      rgba(230, 173, 197, 0.08) 0%,
      rgba(230, 173, 197, 0.08) 14%,
      rgba(0, 0, 0, 0) 14%,
      rgba(0, 0, 0, 0) 28%,
      rgba(230, 173, 197, 0.1) 28%,
      rgba(230, 173, 197, 0.1) 42%,
      rgba(0, 0, 0, 0) 42%,
      rgba(0, 0, 0, 0) 56%,
      rgba(230, 173, 197, 0.08) 56%,
      rgba(230, 173, 197, 0.08) 70%,
      rgba(0, 0, 0, 0) 70%,
      rgba(0, 0, 0, 0) 84%,
      rgba(230, 173, 197, 0.1) 84%,
      rgba(230, 173, 197, 0.1) 100%),
    linear-gradient(180deg,
      rgba(230, 173, 197, 0) 0%,
      rgba(230, 173, 197, 0) 42%,
      rgba(230, 173, 197, 0.2) 42%,
      rgba(230, 173, 197, 0.2) 54%,
      rgba(230, 173, 197, 0) 54%,
      rgba(230, 173, 197, 0) 100%);
  filter: blur(18px);
  opacity: 0.72;
}

.tt-footer__inner {
  width: min(92vw, 1120px);
  min-height: var(--tt-footer-height);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0.5rem;
  padding: var(--tt-footer-pad-y) 2.25rem var(--tt-footer-pad-y) clamp(6rem, 8vw, 7.75rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.tt-footer nav {
  justify-content: flex-start;
  align-items: center;
  gap: 0.65rem 1.7rem;
}

.tt-footer nav a {
  color: #d96478;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  transition: opacity 160ms ease;
}

.tt-footer nav a:hover,
.tt-footer nav a:focus-visible {
  opacity: 0.8;
}

.tt-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(17, 12, 10, 0.84);
}

.tt-lightbox.is-open {
  display: grid;
}

.tt-lightbox img {
  max-width: min(1100px, 100%);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 1rem;
}

.tt-lightbox button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

@media (min-width: 760px) {
  .tt-brand {
    width: 470px;
    max-width: 470px;
  }

  .tt-topbar__inner {
    grid-template-columns: auto 1fr auto;
    width: var(--tt-content);
    min-height: auto;
    margin-top: 0;
    padding: 1rem 0;
  }

  .tt-menu-button,
  .tt-menu-toggle {
    display: none;
  }

  .tt-nav,
  .tt-nav.is-open {
    grid-column: auto;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    gap: 1rem;
    padding: 0;
  }

  .tt-nav details {
    position: relative;
    border: 0;
    padding: 0;
  }

  .tt-nav details[open] summary + div {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 0;
    min-width: 14rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--tt-border);
    border-radius: 1rem;
    background: rgba(255, 253, 251, 0.96);
    box-shadow: var(--tt-shadow);
  }

  .tt-nav-folder__panel {
    position: absolute;
    top: calc(100% + 0.15rem);
    left: 50%;
    display: grid;
    gap: 0.45rem;
    min-width: 16rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--tt-border);
    border-radius: 1rem;
    background: rgba(255, 253, 251, 0.96);
    color: var(--tt-text);
    box-shadow: var(--tt-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 0.22rem);
    transition: opacity 220ms ease, transform 220ms ease;
    z-index: 30;
  }

  .tt-nav-folder__panel::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -0.8rem;
    height: 0.8rem;
  }

  .tt-nav-folder:hover .tt-nav-folder__panel,
  .tt-nav-folder:focus-within .tt-nav-folder__panel,
  .tt-nav-folder.is-open .tt-nav-folder__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .tt-nav-folder__panel a {
    display: block;
    white-space: nowrap;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    color: var(--tt-text);
    filter: none;
    text-shadow: none;
  }

  .tt-nav-folder[aria-current="page"] > a {
    text-decoration: underline;
    text-underline-offset: 0.35rem;
  }

  .tt-grid--collections,
  .tt-grid--products,
  .tt-grid--story {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tt-grid--masonry {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tt-page-hero__frame,
  .tt-columns,
  .tt-product-layout,
  .tt-about-editorial {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }

  .tt-about-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .tt-about-awards-showcase {
    gap: 1.1rem;
    align-items: start;
  }

  .tt-about-feature-row {
    grid-template-columns: minmax(0, 1fr);
  }


  .tt-product-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tt-gallery-band__grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tt-gallery-band__grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tt-page-home .tt-topbar__inner {
    grid-template-columns: auto 1fr;
    justify-items: stretch;
    padding-top: 1.3rem;
  }

  .tt-page-home .tt-nav--static,
  .tt-page-home .tt-nav--static.is-open {
    display: flex;
    justify-content: end;
    gap: 1.25rem;
  }

  .tt-page-collection--creepy-grannies .tt-nav a,
  .tt-page-collection--creepy-grannies .tt-nav-folder > a {
    position: relative;
    z-index: 0;
    padding: 0.22rem 0.5rem;
    border-radius: 999px;
  }

  .tt-page-collection--creepy-grannies .tt-nav a::before,
  .tt-page-collection--creepy-grannies .tt-nav-folder > a::before {
    content: "";
    position: absolute;
    inset: -0.08rem -0.28rem;
    border-radius: 999px;
    background: rgba(255, 250, 252, 0.08);
    backdrop-filter: blur(5px) saturate(108%);
    -webkit-backdrop-filter: blur(5px) saturate(108%);
    opacity: 0.7;
    z-index: -1;
  }

  .tt-nav--static,
  .tt-nav--static.is-open {
    display: flex;
  }

  .tt-home-hero img {
    height: auto;
  }

  .tt-home-carousel,
  .tt-home-reel {
    height: 100vh;
    min-height: 38rem;
  }

  .tt-gallery-band--editorial {
    padding-top: 5rem;
  }

  .tt-home-video {
    height: min(46vw, 42rem);
  }

  .tt-collection-hero img {
    height: min(72vw, 40rem);
  }

  .tt-collection-copy,
  .tt-collection-lead,
  .tt-collection-grid--intro,
  .tt-collection-grid--editorial,
  .tt-collection-credit-block,
  .tt-product-details {
    width: min(92vw, 1120px);
  }

  .tt-collection-grid--intro,
  .tt-collection-grid--editorial {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tt-collection-hero--ski img {
    height: min(72vw, 40rem);
  }

  .tt-collection-grid--ski,
  .tt-collection-grid--queen {
    width: min(92vw, 1120px);
    margin: 24px auto 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }

  .tt-collection-grid--ski img,
  .tt-collection-grid--queen img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 280 / 374;
    object-fit: cover;
    margin-top: 0 !important;
    grid-column: auto !important;
  }

  .tt-product-sequence {
    width: min(96vw, 1200px);
    margin: 0 auto;
  }
}

@media (min-width: 1080px) {
  .tt-hero {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: stretch;
  }

  .tt-grid--collections {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tt-grid--products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Mobile-first recovery layer: phone rules are intentionally collected here
   so the older desktop-oriented rules above can remain stable. */
@media (max-width: 759px) {
  :root {
    --tt-content: min(100% - 32px, 560px);
    --tt-gap: 1rem;
    --tt-radius: 0.9rem;
    --tt-logo-width: clamp(168px, 54vw, 228px);
    --tt-footer-height: 132px;
    --tt-footer-pad-y: 0.95rem;
    --tt-footer-transition-top: -2rem;
    --tt-footer-transition-height: 4rem;
  }

  body {
    min-width: 0;
  }

  img,
  video,
  canvas,
  svg {
    max-width: 100%;
  }

  .tt-topbar {
    min-height: 76px;
    background: rgba(251, 247, 243, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .tt-topbar__inner {
    width: var(--tt-content);
    min-height: 76px;
    padding-top: 0;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 0.5rem;
  }

  .tt-brand {
    width: min(var(--tt-logo-width), calc(100vw - 104px));
    max-width: calc(100vw - 104px);
  }

  .tt-menu-button {
    width: 44px;
    height: 44px;
  }

  .tt-menu-button::before,
  .tt-menu-button::after {
    left: 5px;
    right: 5px;
  }

  .tt-mobile-menu__panel {
    min-height: 100svh;
    padding: 28px 28px 24px;
  }

  .tt-mobile-menu__top {
    min-height: 48px;
  }

  .tt-mobile-menu__brand {
    width: min(230px, calc(100vw - 116px));
    max-width: calc(100vw - 116px);
  }

  .tt-mobile-menu__nav,
  .tt-mobile-menu__collections {
    gap: clamp(1.65rem, 7vh, 3.1rem);
    margin-top: clamp(4.6rem, 14vh, 7rem);
  }

  .tt-mobile-menu__nav a,
  .tt-mobile-menu__nav button,
  .tt-mobile-menu__collections a,
  .tt-mobile-menu__back {
    font-size: clamp(2rem, 10vw, 2.72rem) !important;
    line-height: 1.02 !important;
    letter-spacing: 0.04em !important;
    word-break: normal;
  }

  .tt-main,
  .tt-topbar__inner,
  .tt-footer__inner {
    max-width: 100%;
  }

  .tt-section {
    padding: 1.1rem 0 2.15rem;
  }

  .tt-page-home .tt-topbar,
  .tt-page-collection .tt-topbar,
  .tt-page-contact .tt-topbar,
  .tt-page-about .tt-topbar {
    min-height: 76px;
  }

  .tt-page-home .tt-topbar__inner,
  .tt-page-collection .tt-topbar__inner,
  .tt-page-contact .tt-topbar__inner,
  .tt-page-about .tt-topbar__inner {
    width: var(--tt-content);
    min-height: 76px;
    padding-top: 0;
  }

  .tt-page-home .tt-brand,
  .tt-page-collection .tt-brand,
  .tt-page-contact .tt-brand,
  .tt-page-about .tt-brand {
    width: min(var(--tt-logo-width), calc(100vw - 104px));
  }

  .tt-home-hero img {
    height: min(78svh, 720px);
    min-height: 430px;
    object-fit: cover;
    object-position: center;
  }

  .tt-home-carousel {
    display: block;
    min-height: 0;
    height: auto;
    padding: 16px 0 0;
    overflow: hidden;
    --tt-home-carousel-arrow-size: 62px;
  }

  .tt-home-carousel__side {
    display: none;
  }

  .tt-home-carousel__main {
    width: 100%;
  }

  .tt-home-carousel img,
  .tt-home-carousel__main img {
    width: 100%;
    height: min(74svh, 620px);
    min-height: 390px;
    object-fit: cover;
  }

  .tt-home-carousel__arrow {
    top: calc(16px + min(74svh, 620px) / 2);
    bottom: auto;
    transform: translateY(-50%);
    color: #fff5f8;
    background: rgba(0, 0, 0, 0.22);
    border-radius: 999px;
    font-size: 2.85rem;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  }

  .tt-home-carousel__arrow:hover,
  .tt-home-carousel__arrow:focus-visible {
    transform: translateY(-50%) scale(1.04);
  }

  .tt-home-carousel__arrow--left {
    left: calc(50% - 76px);
  }

  .tt-home-carousel__arrow--right {
    right: calc(50% - 76px);
  }

  .tt-home-linkout {
    padding-bottom: 1.5rem;
  }

  .tt-gallery-band--editorial {
    padding: 2.4rem 12px 2.6rem;
  }

  .tt-gallery-band--editorial .tt-gallery-band__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .tt-gallery-band--editorial .tt-gallery-band__grid img {
    aspect-ratio: 3 / 4;
  }

  .tt-home-caption {
    width: calc(100vw - 24px);
    font-size: 0.74rem;
  }

  .tt-home-instagram-band {
    padding-bottom: 2.5rem;
  }

  .tt-home-video {
    height: min(76svh, 620px);
  }

  .tt-home-video video {
    object-fit: cover;
  }

  .tt-home-video__brand {
    width: min(132px, 34vw);
    max-width: 34vw;
  }

  .tt-grid--collections,
  .tt-grid--products,
  .tt-grid--masonry,
  .tt-grid--story,
  .tt-about-columns {
    grid-template-columns: 1fr;
  }

  .tt-card,
  .tt-product,
  .tt-story,
  .tt-about-card,
  .tt-contact-card {
    border-radius: 0.95rem;
    box-shadow: 0 18px 42px rgba(71, 31, 26, 0.1);
  }

  .tt-product__body {
    padding: 0.95rem 1rem 1.15rem;
  }

  .tt-product__title {
    font-size: clamp(1.55rem, 8vw, 2.05rem);
  }

  .tt-rentals-intro {
    width: var(--tt-content);
    margin: 0 auto;
    padding: 1.4rem 0 1.3rem;
  }

  .tt-rentals-intro h1 {
    font-size: clamp(2.7rem, 15vw, 4.4rem);
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  .tt-rentals-intro p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .tt-rentals-grid {
    gap: 1.15rem;
  }

  .tt-rentals-grid .tt-product img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .tt-collections-index {
    width: var(--tt-content);
    margin: 0 auto;
  }

  .tt-grid--collections .tt-product--collection img {
    aspect-ratio: 1 / 0.9;
    padding: 0.45rem;
  }

  .tt-collection-hero img,
  .tt-collection-hero--ski img {
    height: min(74svh, 620px);
    min-height: 420px;
  }

  .tt-collection-hero__title h1 {
    font-size: clamp(3.4rem, 18vw, 5.2rem);
  }

  .tt-collection-grid--intro,
  .tt-collection-grid--editorial,
  .tt-collection-grid--ski,
  .tt-collection-grid--queen {
    width: calc(100vw - 24px);
    margin: 16px auto 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tt-collection-grid--intro img,
  .tt-collection-grid--editorial img,
  .tt-collection-grid--ski img,
  .tt-collection-grid--queen img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: auto;
    object-fit: contain;
    margin-top: 0 !important;
    grid-column: auto !important;
  }

  .tt-collection-copy,
  .tt-collection-credit-block,
  .tt-collection-lead {
    width: var(--tt-content);
    margin-left: auto;
    margin-right: auto;
  }

  .tt-collection-copy h2 {
    font-size: clamp(1.85rem, 9vw, 2.4rem);
  }

  .tt-queen-intro {
    padding: 104px 22px 24px;
  }

  .tt-queen-intro h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
    letter-spacing: 0.05em;
  }

  .tt-queen-intro__lead {
    margin-top: 2rem !important;
  }

  .tt-product-sequence,
  .tt-product-details {
    width: var(--tt-content);
    margin-left: auto;
    margin-right: auto;
  }

  .tt-product-sequence {
    padding-top: 0.75rem;
  }

  .tt-product-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .tt-product-grid img {
    height: 100%;
    object-fit: cover;
  }

  .tt-product-credit-inline {
    width: var(--tt-content);
    margin-top: 0.5rem;
  }

  .tt-product-details {
    margin-top: 1.6rem;
  }

  .tt-product-details h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 0.98;
  }

  .tt-product-meta__row,
  .tt-product-pricing__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.18rem;
  }

  .tt-product-meta__row strong,
  .tt-product-pricing__row strong {
    text-align: left;
  }

  .tt-page-about .tt-page-hero__frame img {
    height: clamp(118px, 31vw, 170px);
  }

  .tt-about-editorial {
    width: var(--tt-content);
    margin: 0 auto;
    grid-template-columns: 1fr;
  }

  .tt-about-editorial__copy {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .tt-about-editorial__rail {
    margin-top: 0.4rem;
  }

  .tt-about-card h3 {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  .tt-about-awards-showcase {
    width: var(--tt-content);
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: start;
    margin: 0 auto;
  }

  .tt-about-award {
    max-width: 100%;
  }

  .tt-about-award img {
    width: min(100%, 300px);
    margin-left: 0;
    margin-right: 0;
  }

  .tt-about-media-links {
    justify-items: start;
    text-align: left;
  }

  .tt-about-card--media-links,
  .tt-about-media-excerpt {
    text-align: left;
  }

  .tt-contact-page {
    min-height: auto;
    padding: 116px 20px 54px;
    background-position: center top;
  }

  .tt-contact-page__content {
    width: min(100%, 520px);
  }

  .tt-contact-page__content::before {
    top: -0.9rem;
    left: -0.75rem;
    right: -0.75rem;
    bottom: 10rem;
    border-radius: 0.9rem;
  }

  .tt-contact-page h1 {
    font-size: clamp(3.25rem, 18vw, 5.2rem);
  }

  .tt-contact-page p {
    margin-top: 1.9rem;
    font-size: 1rem;
  }

  .tt-contact-page__form {
    margin-top: 1.6rem;
  }

  .tt-contact-page__button {
    min-height: 44px;
    min-width: 72px;
  }

  .tt-footer {
    min-height: var(--tt-footer-height);
    background-position: 18% center;
  }

  .tt-footer__inner {
    width: 100%;
    min-height: var(--tt-footer-height);
    padding: var(--tt-footer-pad-y) 1rem var(--tt-footer-pad-y) clamp(1.1rem, 7vw, 2rem);
  }

  .tt-footer nav {
    gap: 0.45rem 1rem;
    align-items: flex-end;
  }

  .tt-footer nav a {
    font-size: 0.83rem;
    line-height: 1.2;
  }
}

@media (min-width: 600px) and (max-width: 759px) {
  :root {
    --tt-content: min(100% - 48px, 680px);
  }

  .tt-home-carousel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding-left: 48px;
    padding-right: 48px;
    overflow: visible;
    --tt-home-carousel-side-pad: 48px;
  }

  .tt-home-carousel__side {
    display: flex;
  }

  .tt-home-carousel img,
  .tt-home-carousel__main img {
    height: min(66svh, 620px);
    min-height: 390px;
  }

  .tt-home-carousel__arrow {
    top: calc(16px + min(66svh, 620px) / 2);
    bottom: auto;
    transform: translateY(-50%);
  }

  .tt-home-carousel__arrow:hover,
  .tt-home-carousel__arrow:focus-visible {
    transform: translateY(-50%) scale(1.03);
  }

  .tt-home-carousel__arrow--left {
    left: calc(50% - 76px);
  }

  .tt-home-carousel__arrow--right {
    right: calc(50% - 76px);
  }

  .tt-rentals-grid,
  .tt-product-grid,
  .tt-about-awards-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 760px) and (max-width: 1079px) {
  :root {
    --tt-content: min(100% - 56px, 940px);
    --tt-logo-width: clamp(260px, 34vw, 360px);
  }

  .tt-brand {
    width: var(--tt-logo-width);
    max-width: var(--tt-logo-width);
  }

  .tt-nav,
  .tt-nav.is-open,
  .tt-page-home .tt-nav--static,
  .tt-page-home .tt-nav--static.is-open {
    gap: 0.85rem;
  }

  .tt-nav--static > a,
  .tt-nav--static > .tt-nav-folder > a {
    font-size: 0.76rem;
    letter-spacing: 0.11em;
  }

  .tt-grid--products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tt-rentals-intro h1 {
    font-size: clamp(4rem, 10vw, 6rem);
  }

  .tt-product-sequence,
  .tt-product-details {
    width: min(94vw, 960px);
  }

  .tt-home-carousel {
    min-height: 0;
    height: auto;
  }
}

/* Mobile design recovery: this final layer is intentionally stricter than the
   compatibility rules above so phone layouts feel composed, not squeezed. */
@media (max-width: 599px) {
  :root {
    --tt-content: min(100% - 32px, 420px);
    --tt-mobile-section-gap: clamp(1.25rem, 5vw, 1.9rem);
    --tt-logo-width: clamp(154px, 48vw, 202px);
    --tt-footer-height: 104px;
    --tt-footer-pad-y: 0.65rem;
    --tt-footer-transition-top: -1.1rem;
    --tt-footer-transition-height: 2.2rem;
  }

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .tt-main {
    width: 100%;
  }

  .tt-topbar,
  .tt-page-home .tt-topbar,
  .tt-page-collection .tt-topbar,
  .tt-page-contact .tt-topbar,
  .tt-page-about .tt-topbar {
    min-height: 64px;
    background: rgba(251, 247, 243, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .tt-topbar__inner,
  .tt-page-home .tt-topbar__inner,
  .tt-page-collection .tt-topbar__inner,
  .tt-page-contact .tt-topbar__inner,
  .tt-page-about .tt-topbar__inner {
    width: var(--tt-content);
    min-height: 64px;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 0.35rem;
  }

  .tt-brand,
  .tt-page-home .tt-brand,
  .tt-page-collection .tt-brand,
  .tt-page-contact .tt-brand,
  .tt-page-about .tt-brand {
    width: min(var(--tt-logo-width), calc(100vw - 92px));
    max-width: calc(100vw - 92px);
  }

  .tt-menu-button {
    width: 38px;
    height: 38px;
  }

  .tt-menu-button::before,
  .tt-menu-button::after {
    left: 4px;
    right: 4px;
  }

  .tt-mobile-menu__panel {
    padding: 22px 22px 24px;
  }

  .tt-mobile-menu__brand {
    width: min(196px, calc(100vw - 100px));
  }

  .tt-mobile-menu__nav,
  .tt-mobile-menu__collections {
    gap: clamp(1.15rem, 5.8vh, 2.1rem);
    margin-top: clamp(3.1rem, 11vh, 5.25rem);
  }

  .tt-mobile-menu__nav a,
  .tt-mobile-menu__nav button,
  .tt-mobile-menu__collections a,
  .tt-mobile-menu__back {
    font-size: clamp(1.35rem, 7.2vw, 1.9rem) !important;
    line-height: 1.08 !important;
    letter-spacing: 0.065em !important;
  }

  .tt-section {
    padding: var(--tt-mobile-section-gap) 0;
  }

  .tt-home-hero img {
    height: clamp(470px, 72svh, 660px);
    min-height: 0;
    object-fit: cover;
  }

  .tt-home-carousel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 12px;
    overflow: hidden;
    --tt-home-carousel-arrow-size: 56px;
  }

  .tt-home-carousel__side {
    display: block;
  }

  .tt-home-carousel__side:last-of-type {
    display: none;
  }

  .tt-home-carousel__main,
  .tt-home-carousel__side {
    width: 100%;
    min-width: 0;
  }

  .tt-home-carousel img,
  .tt-home-carousel__main img {
    width: 100%;
    height: clamp(210px, 42svh, 310px);
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }

  .tt-home-carousel__arrow {
    top: calc(10px + clamp(210px, 42svh, 310px) / 2);
    bottom: auto;
    transform: translateY(-50%);
    width: var(--tt-home-carousel-arrow-size);
    height: var(--tt-home-carousel-arrow-size);
    color: #fff5f8;
    background: rgba(0, 0, 0, 0.24);
    border-radius: 999px;
    font-size: 2.45rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.38);
  }

  .tt-home-carousel__arrow:hover,
  .tt-home-carousel__arrow:focus-visible {
    transform: translateY(-50%) scale(1.04);
  }

  .tt-home-carousel__arrow--left {
    left: calc(50% - 68px);
  }

  .tt-home-carousel__arrow--right {
    right: calc(50% - 68px);
  }

  .tt-home-linkout img {
    height: auto;
    max-height: 220px;
    object-fit: contain;
  }

  .tt-gallery-band--editorial {
    padding: 1.8rem 10px 2rem;
  }

  .tt-home-video {
    height: clamp(360px, 70svh, 560px);
  }

  .tt-rentals-intro {
    padding: 1.05rem 0 1.45rem;
  }

  .tt-rentals-intro h1 {
    font-size: clamp(2.15rem, 11.8vw, 3.15rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
  }

  .tt-rentals-intro p {
    font-size: 0.93rem;
    line-height: 1.55;
  }

  .tt-rentals-grid {
    width: calc(100vw - 24px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
  }

  .tt-rentals-grid .tt-product {
    overflow: hidden;
    border-radius: 0.78rem;
    min-height: 0;
    box-shadow: 0 10px 24px rgba(71, 31, 26, 0.09);
  }

  .tt-rentals-grid .tt-product img {
    aspect-ratio: 4 / 5.15;
    object-fit: cover;
  }

  .tt-product__body {
    padding: 0.58rem 0.62rem 0.72rem;
  }

  .tt-rentals-grid .tt-product__body {
    min-height: 6.2rem;
  }

  .tt-product__title {
    font-size: clamp(1.02rem, 5.35vw, 1.34rem);
    line-height: 1.03;
  }

  .tt-product__body .tt-muted,
  .tt-product__body p {
    margin-top: 0.32rem;
    font-size: clamp(0.75rem, 3.45vw, 0.88rem);
    line-height: 1.28;
  }

  .tt-collection-hero,
  .tt-collection-hero--ski {
    min-height: 0;
    height: auto;
  }

  .tt-collection-hero img,
  .tt-collection-hero--ski img {
    height: clamp(260px, 45svh, 360px);
    min-height: 0;
    object-fit: cover;
  }

  .tt-collection-hero--ski img {
    height: clamp(235px, 39svh, 330px);
    object-position: center;
  }

  .tt-collection-hero__title h1 {
    font-size: clamp(2.05rem, 11vw, 3.2rem);
    line-height: 0.95;
    letter-spacing: 0.025em;
  }

  .tt-collection-grid--intro,
  .tt-collection-grid--editorial,
  .tt-collection-grid--ski,
  .tt-collection-grid--queen {
    width: var(--tt-content);
    margin: var(--tt-mobile-section-gap) auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
  }

  .tt-collection-grid--intro img,
  .tt-collection-grid--editorial img,
  .tt-collection-grid--ski img,
  .tt-collection-grid--queen img {
    display: block;
    width: 100% !important;
    max-width: 100%;
    height: auto !important;
    object-fit: contain;
    border-radius: 0;
    margin: 0 !important;
  }

  .tt-collection-copy,
  .tt-collection-credit-block,
  .tt-collection-lead {
    width: var(--tt-content);
    margin-top: var(--tt-mobile-section-gap);
  }

  .tt-collection-copy h2 {
    font-size: clamp(1.55rem, 7.8vw, 2.05rem);
    line-height: 1.08;
  }

  .tt-collection-copy p,
  .tt-collection-lead,
  .tt-collection-credit-block {
    font-size: 0.91rem;
    line-height: 1.55;
  }

  .tt-queen-intro {
    min-height: 0;
    padding: 78px 18px 1.35rem;
  }

  .tt-queen-intro h1 {
    font-size: clamp(1.75rem, 9.2vw, 2.65rem);
    line-height: 1.02;
    letter-spacing: 0.04em;
  }

  .tt-queen-intro__lead {
    margin-top: 0.8rem !important;
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .tt-queen-intro h2 {
    margin-top: 0.9rem;
    font-size: 0.78rem;
    line-height: 1.38;
    letter-spacing: 0.09em;
  }

  .tt-queen-intro p {
    max-width: 24rem;
    margin: 0.9rem auto 0;
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .tt-product-sequence {
    width: var(--tt-content);
    padding-top: 0.75rem;
  }

  .tt-product-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
  }

  .tt-product-grid img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .tt-product-details {
    width: var(--tt-content);
    margin-top: 1.35rem;
  }

  .tt-product-details h1 {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
    line-height: 1.04;
  }

  .tt-product-details p,
  .tt-product-meta,
  .tt-product-pricing {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .tt-product-inquiry {
    margin-top: 1.7rem;
    padding: 1rem;
  }

  .tt-product-inquiry__intro {
    display: block;
  }

  .tt-product-inquiry__toggle {
    margin-top: 0.95rem;
    width: 100%;
  }

  .tt-page-about .tt-page-hero__frame img {
    height: clamp(96px, 27vw, 132px);
    min-height: 0;
  }

  .tt-about-editorial,
  .tt-about-columns,
  .tt-about-feature-row,
  .tt-about-section {
    width: var(--tt-content);
    margin-left: auto;
    margin-right: auto;
  }

  .tt-about-editorial {
    gap: 1rem;
  }

  .tt-about-editorial__copy {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .tt-about-editorial__rail {
    gap: 0.8rem;
  }

  .tt-about-card {
    padding: 1.05rem;
  }

  .tt-about-card h3 {
    font-size: clamp(1.45rem, 7.8vw, 2rem);
  }

  .tt-about-awards-showcase {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .tt-about-award img {
    width: min(100%, 260px);
  }

  .tt-contact-page {
    min-height: auto;
    padding: 92px 18px 36px;
  }

  .tt-contact-page__content {
    width: min(100%, 420px);
  }

  .tt-contact-page__content::before {
    top: -0.7rem;
    left: -0.55rem;
    right: -0.55rem;
    bottom: 8.1rem;
  }

  .tt-contact-page h1 {
    font-size: clamp(2.35rem, 13.5vw, 3.45rem);
    line-height: 0.95;
  }

  .tt-contact-page p {
    margin-top: 1.3rem;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .tt-contact-page__form {
    margin-top: 1.25rem;
    gap: 0.85rem;
  }

  .tt-contact-page__form input,
  .tt-contact-page__form textarea {
    font-size: 1rem;
  }

  .tt-footer {
    min-height: var(--tt-footer-height);
    background-size: cover;
    background-position: 14% center;
  }

  .tt-footer::before {
    opacity: 0.48;
  }

  .tt-footer__inner {
    min-height: var(--tt-footer-height);
    padding: var(--tt-footer-pad-y) 0.95rem var(--tt-footer-pad-y) clamp(1rem, 5vw, 1.4rem);
    justify-content: flex-end;
  }

  .tt-footer nav {
    width: min(calc(100vw - 24px), 380px);
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
    gap: clamp(0.42rem, 2.2vw, 0.76rem);
    padding: 0.28rem 0.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
  }

  .tt-footer nav a {
    font-size: clamp(0.55rem, 2.38vw, 0.66rem);
    line-height: 1.1;
    letter-spacing: 0.015em;
    text-decoration: none;
    white-space: nowrap;
  }
}

@media (min-width: 600px) and (max-width: 759px) {
  .tt-collection-hero img,
  .tt-collection-hero--ski img {
    height: clamp(320px, 48svh, 430px);
    min-height: 0;
  }

  .tt-collection-grid--intro,
  .tt-collection-grid--editorial,
  .tt-collection-grid--ski,
  .tt-collection-grid--queen {
    gap: 1rem;
  }

  .tt-footer {
    min-height: 124px;
  }
}
