:root {
  --tf-bg: #111111;
  --tf-ink: #f7f7f2;
  --tf-muted: #b8b2aa;
  --tf-line: rgba(255, 255, 255, 0.13);
  --tf-orange: #f68734;
  --tf-orange-soft: rgba(246, 135, 52, 0.16);
  --tf-panel: rgba(23, 23, 23, 0.86);
  --tf-max: 1180px;
}

html {
  background: var(--tf-bg);
  overflow-x: hidden;
}

.tf-page,
.tf-page *,
.tf-page *::before,
.tf-page *::after {
  box-sizing: border-box;
}

body.tf-page {
  min-height: 100dvh;
  font-family: "Noto Sans", Arial, sans-serif;
  color: var(--tf-ink);
  overflow-x: hidden;
  background:
    linear-gradient(rgba(17, 17, 17, 0.94), rgba(17, 17, 17, 0.94)),
    url("./assets/location/vibe-choice-20260623-v2.webp") center / 420px auto fixed;
}

body.tf-page::before {
  opacity: 0.12;
  background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 100% 44px;
}

.tf-page .shell,
.tf-shell {
  width: min(calc(100% - 36px), var(--tf-max));
  margin: 0 auto;
}

.tf-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  width: min(calc(100% - 48px), 1240px);
  margin: 24px auto 0;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 12, 12, 0.72);
  backdrop-filter: blur(18px);
}

.tf-logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.tf-logo::after {
  content: "";
  display: block;
  width: 76px;
  height: 1px;
  margin-top: 8px;
  background: var(--tf-orange);
}

.tf-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 4vw, 58px);
  color: #eeeeea;
  font-size: 0.9rem;
  font-weight: 600;
}

.tf-nav a,
.tf-outline-link,
.tf-secondary,
.tf-primary {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.tf-nav a:hover {
  color: var(--tf-orange);
}

.tf-outline-link,
.tf-secondary,
.tf-primary {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--tf-orange);
  color: var(--tf-ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.tf-primary {
  background: var(--tf-orange);
  color: #15110d;
}

.tf-secondary,
.tf-outline-link {
  background: transparent;
}

.tf-primary:hover,
.tf-secondary:hover,
.tf-outline-link:hover {
  transform: translateY(-1px);
}

.tf-secondary:hover,
.tf-outline-link:hover {
  background: var(--tf-orange-soft);
}

.tf-hero {
  position: relative;
  min-height: 96dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 150px 20px 76px;
}

.tf-hero-media,
.tf-hero-shade {
  position: absolute;
  inset: 0;
}

.tf-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08);
}

.tf-hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.88)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(17, 17, 17, 0.94));
}

.tf-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  padding-bottom: 118px;
  text-align: center;
}

.tf-kicker,
.tf-section-mark,
.tf-offer-box p {
  margin: 0 0 18px;
  color: #d8d0c8;
  font-size: clamp(1rem, 2vw, 1.75rem);
  font-weight: 500;
}

.tf-section-mark::before,
.tf-kicker::before {
  content: "";
  display: inline-block;
  width: 92px;
  height: 1px;
  margin-right: 18px;
  vertical-align: middle;
  background: var(--tf-orange);
}

.tf-hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(5rem, 14vw, 13.8rem);
  font-weight: 800;
  line-height: 0.82;
  text-transform: uppercase;
  text-wrap: balance;
}

.tf-hero-subtitle {
  width: min(100%, 850px);
  margin: 28px auto 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 3.9vw, 4.8rem);
  font-weight: 600;
  line-height: 1.02;
  text-wrap: balance;
}

.tf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.tf-hero-card {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 34px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(620px, calc(100% - 48px));
  border: 1px solid var(--tf-line);
  background: rgba(12, 12, 12, 0.72);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

@media (min-width: 921px) and (max-height: 780px) {
  .tf-hero {
    padding-top: 118px;
    padding-bottom: 72px;
  }

  .tf-hero-inner {
    padding-bottom: 138px;
  }

  .tf-hero-subtitle {
    margin-top: 18px;
    font-size: clamp(2.1rem, 3.35vw, 4.1rem);
  }

  .tf-hero-actions {
    margin-top: 24px;
  }
}

.tf-hero-card div {
  padding: 18px 20px;
  border-right: 1px solid var(--tf-line);
}

.tf-hero-card div:last-child {
  border-right: 0;
}

.tf-hero-card span,
.tf-price-row span,
.tf-master span,
.tf-contact-card span,
.tf-offer-box span {
  display: block;
  color: var(--tf-muted);
  font-size: 0.82rem;
}

.tf-hero-card strong {
  display: block;
  margin-top: 5px;
  font-size: 1rem;
}

.tf-about,
.tf-services,
.tf-masters,
.tf-interior,
.tf-offer,
.tf-advantages,
.tf-contacts {
  padding: clamp(72px, 9vw, 130px) 0;
}

.tf-about-grid,
.tf-contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 7vw, 100px);
  align-items: start;
}

.tf-about h2,
.tf-section-head h2,
.tf-contact-grid h2,
.tf-offer-box h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 6.8rem);
  font-weight: 700;
  line-height: 0.96;
  text-transform: uppercase;
  text-wrap: balance;
}

.tf-about-copy {
  color: #ded8d1;
  font-size: clamp(1rem, 1.65vw, 1.45rem);
  line-height: 1.6;
}

.tf-about-copy p {
  margin: 0 0 24px;
}

.tf-section-head {
  display: grid;
  gap: 20px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.tf-section-head-wide {
  grid-template-columns: 0.7fr 1fr;
  align-items: end;
}

.tf-section-head-wide p:last-child {
  max-width: 520px;
  margin: 0 0 10px;
  color: var(--tf-muted);
  line-height: 1.6;
}

.tf-price-board {
  border-top: 1px solid var(--tf-orange);
}

.tf-price-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 0;
}

.tf-price-tabs span {
  padding: 12px 18px;
  border: 1px solid var(--tf-line);
  color: #e9e3dd;
  font-weight: 700;
}

.tf-price-tabs span:first-child {
  border-color: var(--tf-orange);
  color: var(--tf-orange);
}

.tf-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--tf-line);
}

.tf-price-level {
  min-height: 430px;
  padding: clamp(22px, 3vw, 38px);
  border-right: 1px solid var(--tf-line);
  background: rgba(255, 255, 255, 0.025);
}

.tf-price-level:last-child {
  border-right: 0;
}

.tf-price-level-featured {
  background: rgba(246, 135, 52, 0.08);
}

.tf-price-level h3 {
  margin: 0 0 34px;
  color: var(--tf-orange);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 700;
  line-height: 0.9;
}

.tf-price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.tf-price-row strong {
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.tf-master-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tf-master {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: #1a1a1a;
}

.tf-master img,
.tf-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.tf-master::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.86));
}

.tf-master div {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 2;
}

.tf-master h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.1rem;
}

.tf-master:hover img,
.tf-gallery a:hover img,
.tf-gallery img:hover {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.tf-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-auto-rows: 260px;
  gap: 18px;
}

.tf-gallery a,
.tf-gallery img {
  min-height: 0;
}

.tf-gallery a {
  display: block;
  overflow: hidden;
  cursor: zoom-in;
}

.tf-gallery a:first-child,
.tf-gallery img:first-child {
  grid-row: span 2;
}

.tf-gallery a:nth-child(2),
.tf-gallery img:nth-child(2) {
  grid-column: span 2;
}

.tf-offer-box {
  display: grid;
  gap: 22px;
  align-items: center;
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid var(--tf-orange);
  background:
    linear-gradient(rgba(15, 15, 15, 0.74), rgba(15, 15, 15, 0.88)),
    url("./assets/location/storefront-20260623.webp") center / cover;
}

.tf-offer-box .tf-primary {
  width: fit-content;
}

.tf-advantage-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--tf-line);
  border-left: 1px solid var(--tf-line);
}

.tf-advantage-list div {
  min-height: 230px;
  padding: 24px;
  border-right: 1px solid var(--tf-line);
  border-bottom: 1px solid var(--tf-line);
}

.tf-advantage-list span {
  color: var(--tf-orange);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
}

.tf-advantage-list strong {
  display: block;
  margin-top: 44px;
  font-size: 1.1rem;
  line-height: 1.35;
}

.tf-contact-card {
  display: grid;
  gap: 18px;
  width: min(100%, 520px);
  padding: 34px;
  border: 1px solid var(--tf-line);
  background: var(--tf-panel);
}

.tf-contact-card > a:first-child {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.tf-map-section {
  padding: 0 0 clamp(56px, 7vw, 96px);
}

.tf-map-frame {
  min-height: clamp(340px, 45vw, 520px);
  overflow: hidden;
  border: 1px solid var(--tf-line);
  background: #171513;
}

.tf-map-frame iframe {
  display: block;
  width: 100%;
  height: clamp(340px, 45vw, 520px);
  min-height: clamp(340px, 45vw, 520px);
  border: 0;
}

.tf-map-note {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--tf-muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

.tf-map-note a {
  color: var(--tf-orange);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.tf-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 36px), var(--tf-max));
  margin: 0 auto;
  padding: 34px 0 110px;
  border-top: 1px solid var(--tf-line);
  color: var(--tf-muted);
}

.tf-footer span {
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.tf-page .booking-modal-backdrop {
  background: rgba(3, 3, 3, 0.9);
  backdrop-filter: blur(12px);
}

.tf-page .booking-modal-dialog {
  border-radius: 0;
  border-color: rgba(246, 135, 52, 0.34);
  background:
    radial-gradient(circle at top right, rgba(246, 135, 52, 0.14), transparent 32%),
    linear-gradient(180deg, #181511, #0f0e0d);
  box-shadow: 0 36px 140px rgba(0, 0, 0, 0.78);
}

.tf-page .booking-modal-head h2 {
  font-family: "Playfair Display", Georgia, serif;
  text-transform: uppercase;
}

.tf-page .booking-quick-picks {
  justify-items: center;
  text-align: center;
}

.tf-page .booking-chip-list {
  justify-content: center;
}

.tf-page .booking-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  text-align: center;
  line-height: 1.25;
}

.tf-page .booking-chip span {
  font-weight: 700;
}

.tf-page .booking-chip small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
}

.tf-page .button-primary {
  background: var(--tf-orange);
  color: #17110d;
}

.tf-page .button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
}

.tf-page .booking-form-actions .button-secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
  color: #ffffff;
}

.tf-page .booking-form-actions .button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.46);
}

.tf-floating-booking {
  position: fixed;
  right: 30px;
  bottom: calc(30px + env(safe-area-inset-bottom, 0px));
  z-index: 55;
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  padding: 14px 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(250, 137, 53, 0.82);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
  isolation: isolate;
  overflow: visible;
  transition: transform 180ms ease, background 180ms ease;
}

.tf-floating-booking::before {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: -1;
  border: 2px solid rgba(250, 137, 53, 0.9);
  border-radius: 50%;
  opacity: 0.9;
  animation: tf-booking-pulse 2s cubic-bezier(0.37, 0, 0.8, 0.77) infinite;
}

.tf-floating-booking::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.18) 50%, transparent 64% 100%);
  transform: translateX(-120%);
  animation: tf-booking-shine 5.8s ease-in-out infinite;
  pointer-events: none;
}

.tf-floating-booking:hover {
  transform: translateY(-2px);
  background: rgba(250, 137, 53, 0.96);
}

.tf-floating-booking-mark {
  display: none;
}

.tf-floating-booking-mark::before,
.tf-floating-booking-mark::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.tf-floating-booking-mark::before {
  width: 18px;
  height: 2px;
}

.tf-floating-booking-mark::after {
  width: 2px;
  height: 18px;
}

.tf-floating-booking-copy {
  display: grid;
  gap: 0;
  min-width: 0;
}

.tf-floating-booking-copy strong {
  color: #ffffff;
  font-family: "Noto Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  text-transform: uppercase;
}

.tf-floating-booking-copy small {
  display: none;
}

.booking-modal-open .tf-floating-booking {
  opacity: 0;
  pointer-events: none;
}

@keyframes tf-booking-pulse {
  0% {
    transform: scale(0.98);
    opacity: 0.9;
  }
  70%,
  100% {
    transform: scale(1.38);
    opacity: 0;
  }
}

@keyframes tf-booking-shine {
  0%,
  62% {
    transform: translateX(-120%);
  }
  76%,
  100% {
    transform: translateX(120%);
  }
}

@media (max-width: 920px) {
  .tf-header {
    grid-template-columns: 1fr auto;
    gap: 16px;
    width: calc(100% - 24px);
    margin-top: 12px;
  }

  .tf-nav {
    display: none;
  }

  .tf-hero {
    min-height: 92dvh;
    padding-top: 130px;
  }

  .tf-hero-inner {
    min-width: 0;
    max-width: calc(100vw - 40px);
    padding-bottom: 0;
  }

  .tf-hero-card,
  .tf-about-grid,
  .tf-section-head-wide,
  .tf-contact-grid,
  .tf-price-grid,
  .tf-master-grid,
  .tf-advantage-list {
    grid-template-columns: 1fr;
  }

  .tf-section-head,
  .tf-section-head > * {
    min-width: 0;
    max-width: 100%;
  }

  .tf-hero-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 36px;
    transform: none;
  }

  .tf-hero-card div,
  .tf-price-level {
    border-right: 0;
    border-bottom: 1px solid var(--tf-line);
  }

  .tf-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .tf-gallery a:first-child,
  .tf-gallery a:nth-child(2),
  .tf-gallery img:first-child,
  .tf-gallery img:nth-child(2) {
    grid-row: auto;
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .tf-header {
    width: calc(100% - 16px);
    gap: 10px;
    padding: 12px 14px;
  }

  .tf-logo {
    font-size: 1.45rem;
  }

  .tf-logo::after {
    width: 72px;
  }

  .tf-outline-link {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .tf-hero {
    min-height: auto;
    padding: 104px 14px 52px;
  }

  .tf-hero-inner {
    max-width: 100%;
  }

  .tf-hero h1 {
    font-size: clamp(3rem, 15vw, 3.9rem);
    line-height: 0.9;
    overflow-wrap: normal;
  }

  .tf-hero-subtitle {
    margin-top: 18px;
    font-size: clamp(1.35rem, 7.2vw, 2.15rem);
    line-height: 1.08;
  }

  .tf-kicker,
  .tf-section-mark,
  .tf-offer-box p {
    margin-bottom: 14px;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .tf-kicker::before,
  .tf-section-mark::before {
    width: 34px;
    margin-right: 10px;
  }

  .tf-hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 10px;
    margin-top: 24px;
    margin-right: auto;
    margin-left: auto;
  }

  .tf-primary,
  .tf-secondary {
    width: 100%;
    min-height: 44px;
    min-width: 0;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 0.84rem;
  }

  .tf-hero-card {
    width: 100%;
    margin-top: 26px;
  }

  .tf-hero-card div {
    padding: 14px 16px;
  }

  .tf-hero-card strong {
    overflow-wrap: anywhere;
  }

  .tf-about,
  .tf-services,
  .tf-masters,
  .tf-interior,
  .tf-offer,
  .tf-advantages,
  .tf-contacts {
    padding: 58px 0;
  }

  .tf-about h2,
  .tf-section-head h2,
  .tf-contact-grid h2,
  .tf-offer-box h2 {
    max-width: 100%;
    font-size: clamp(1.95rem, 10vw, 2.45rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .tf-masters .tf-section-head h2 {
    font-size: clamp(1.6rem, 8vw, 1.95rem);
    line-height: 1.04;
    overflow-wrap: normal;
    word-break: normal;
  }

  .tf-advantages .tf-section-head h2 {
    font-size: clamp(1.7rem, 8.6vw, 2.05rem);
    line-height: 1.04;
  }

  .tf-advantage-list div {
    min-height: 188px;
    padding: 20px;
  }

  .tf-advantage-list span {
    font-size: 2rem;
  }

  .tf-advantage-list strong {
    margin-top: 32px;
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .tf-price-row {
    gap: 12px;
  }

  .tf-price-row strong {
    font-size: 1.35rem;
  }

  .tf-contact-card {
    padding: 24px;
  }

  .tf-contact-card > a:first-child {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
    overflow-wrap: anywhere;
  }

  .tf-map-frame,
  .tf-map-frame iframe {
    min-height: 300px;
    height: 300px;
  }

  .tf-master {
    min-height: 360px;
  }

  .tf-floating-booking {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px) + var(--viewport-bottom-gap, 0px));
    width: 82px;
    height: 82px;
    padding: 12px 8px;
  }

  .tf-floating-booking::before {
    animation-name: tf-booking-pulse-mobile;
  }

  .tf-floating-booking-copy {
    max-width: 70px;
  }

  .tf-floating-booking-copy strong {
    font-size: 12px;
    line-height: 1.28;
  }

  .tf-page .mobile-cta {
    display: none;
  }

  .tf-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 380px) {
  .tf-logo {
    font-size: 1.28rem;
  }

  .tf-logo::after {
    width: 60px;
  }

  .tf-outline-link {
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .tf-hero {
    padding-right: 12px;
    padding-left: 12px;
  }

  .tf-hero h1 {
    font-size: clamp(2.7rem, 14vw, 3.25rem);
  }

  .tf-hero-subtitle {
    font-size: clamp(1.25rem, 6.8vw, 1.8rem);
  }
}

@keyframes tf-booking-pulse-mobile {
  0% {
    transform: scale(0.98);
    opacity: 0.9;
  }
  70%,
  100% {
    transform: scale(1.24);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tf-floating-booking::before,
  .tf-floating-booking::after {
    animation: none;
  }
}
