:root {
  --navy: #0a1f3d;
  --navy-2: #132a4d;
  --blue: #3a6ea5;
  --gold: #c4a574;
  --gold-2: #d4bc8e;
  --silver: #c9d0d8;
  --paper: #f6f3ee;
  --ink: #1a1a1a;
  --muted: #5c6570;
  --white: #fff;
  --sky: #03a9f4;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(10, 31, 61, .16);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Outfit, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .4em;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip-link:focus { left: 1rem; z-index: 9999; background: #fff; padding: .5rem 1rem; position: relative; }
.tc-wrap { width: min(1180px, calc(100% - 2.4rem)); margin-inline: auto; }

.tc-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 31, 61, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .28s ease, box-shadow .28s ease;
}
.tc-header.is-scrolled {
  background: rgba(10, 31, 61, .97);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}
.tc-header-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
  transition: min-height .25s ease;
}
.tc-header.is-scrolled .tc-header-inner { min-height: 62px; }
.tc-logo img { height: 46px; width: auto; transition: height .25s ease; }
.tc-header.is-scrolled .tc-logo img { height: 36px; }
.tc-logo-on-dark { filter: brightness(0) invert(1); }
.tc-nav { display: flex; align-items: center; gap: 1.25rem; }
.tc-menu {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tc-menu a {
  color: #e8eef6;
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: .22rem;
}
.tc-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.tc-menu .current-menu-item a,
.tc-menu a:hover { color: var(--gold); }
.tc-menu a:hover::after,
.tc-menu .current-menu-item a::after { transform: scaleX(1); }
.tc-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 10px 8px;
}
.tc-nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 6px 0;
}

.tc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .03em;
  border: 1px solid transparent;
  transition: .2s ease;
}
.tc-btn-gold { background: var(--gold); color: var(--navy); }
.tc-btn-gold:hover { background: var(--gold-2); }
.tc-btn-navy { background: var(--navy); color: #fff; }
.tc-btn-ghost { border-color: rgba(255,255,255,.45); color: #fff; }
.tc-btn-ghost:hover { background: rgba(255,255,255,.1); }

.tc-kicker {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  color: var(--blue);
  margin: 0 0 .7rem;
  font-weight: 600;
}
.tc-kicker-light { color: var(--gold-2); }
.tc-lead { font-size: 1.15rem; color: var(--muted); max-width: 46rem; }

.tc-hero {
  min-height: 88vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background-color: var(--navy);
}
.tc-hero-slides, .tc-hero-slide {
  position: absolute;
  inset: 0;
}
.tc-hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.05s ease;
  z-index: 0;
}
.tc-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
  animation: tcHeroZoom 8s ease-out forwards;
}
@keyframes tcHeroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.tc-hero-overlay { z-index: 2; }
.tc-hero-content { z-index: 3; }
.tc-hero-controls {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
}
.tc-hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(10,31,61,.35);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.tc-hero-arrow:hover { background: rgba(10,31,61,.65); border-color: #fff; }
.tc-hero-dots { display: flex; gap: .45rem; }
.tc-hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
}
.tc-hero-dot.is-active { background: var(--gold); transform: scale(1.15); }
@media (prefers-reduced-motion: reduce) {
  .tc-hero-slide, .tc-hero-slide.is-active {
    transition: none;
    animation: none;
    transform: none;
  }
}
.tc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,31,61,.25) 0%, rgba(10,31,61,.78) 100%);
}
.tc-hero-content {
  position: relative;
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto 5rem;
}
.tc-hero h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); max-width: 14ch; }
.tc-hero-sub { max-width: 36rem; color: #dce4ee; font-size: 1.08rem; }
.tc-hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.6rem; }

.tc-section { padding: 5.5rem 0; }
.tc-section-dark { background: var(--navy); color: #fff; }
.tc-section-head { margin-bottom: 2.4rem; }
.tc-section-head h2, .tc-split-copy h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.tc-section-head-light .tc-kicker { color: var(--gold); }
.tc-section-head-light h2 { color: #fff; }

.tc-cards { display: grid; gap: 1.4rem; }
.tc-cards-3 { grid-template-columns: repeat(3, 1fr); }
.tc-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.tc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(10, 31, 61, .2);
  border-color: rgba(196, 165, 116, .38);
}
.tc-card-media {
  height: 240px;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.tc-card:hover .tc-card-media { transform: scale(1.05); }
.tc-card-body { padding: 1.2rem 1.3rem 1.5rem; }
.tc-card-body h3 { font-size: 1.7rem; }
.tc-chip {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .4rem;
}

.tc-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.tc-split-media { min-height: 420px; border-radius: var(--radius); background-size: cover; background-position: center; }
.tc-split-copy p { color: var(--muted); }

.tc-services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.tc-services article {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.tc-services span { color: var(--gold); font-family: "Cormorant Garamond", serif; font-size: 1.8rem; }
.tc-services p { color: #c5ced8; }

.tc-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.tc-cat {
  min-height: 280px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  position: relative;
  overflow: hidden;
}
.tc-cat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(10,31,61,.8));
}
.tc-cat span { position: relative; }

.tc-cta {
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}
.tc-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,31,61,.62);
}
.tc-cta-inner { position: relative; padding: 4rem 1.2rem; }
.tc-cta h2 { font-size: clamp(2.2rem, 5vw, 4rem); }

.tc-video { padding: 5rem 0 1rem; background: #fff; }
.tc-video-frame {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: var(--shadow);
}
.tc-video-el, .tc-video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.tc-video-placeholder {
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
}
.tc-video-placeholder-inner {
  background: rgba(10,31,61,.55);
  padding: 2rem;
  border-radius: 16px;
  max-width: 28rem;
}
.tc-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: inline-block;
  margin-bottom: .8rem;
  position: relative;
}
.tc-play::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 22px;
  border-style: solid;
  border-width: 13px 0 13px 20px;
  border-color: transparent transparent transparent #fff;
}

.tc-page-hero {
  min-height: 42vh;
  background-size: cover;
  background-position: center;
  display: grid;
  align-items: end;
  color: #fff;
  position: relative;
}
.tc-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(10,31,61,.78));
}
.tc-page-hero-plain { background: var(--navy); min-height: 28vh; }
.tc-page-hero-inner { position: relative; width: min(1180px, calc(100% - 2.4rem)); margin: 0 auto 2.4rem; }
.tc-page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }

.tc-prose p { color: var(--muted); font-size: 1.08rem; }
.tc-about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.tc-about-photo { margin: 0; border-radius: var(--radius); overflow: hidden; }
.tc-about-photo img { width: 100%; height: 220px; object-fit: cover; }

.tc-filters { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2rem; }
.tc-filters a {
  padding: .45rem 1rem;
  border-radius: 999px;
  border: 1px solid #d7dde4;
  background: #fff;
}
.tc-filters a.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }

.tc-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  margin-top: 2rem;
}
.tc-gallery-item {
  border: 0;
  padding: 0;
  background: none;
  cursor: zoom-in;
  border-radius: 12px;
  overflow: hidden;
}
.tc-gallery-item img { width: 100%; height: 180px; object-fit: cover; }
.tc-gallery-project .tc-gallery-item img { height: 220px; }
.tc-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.tc-duo-item { border: 0; padding: 0; background: none; cursor: zoom-in; border-radius: var(--radius); overflow: hidden; }
.tc-duo-item img { width: 100%; height: 380px; object-fit: cover; display: block; }
.tc-wide-photo { margin: 0; cursor: zoom-in; }
.tc-wide-photo img { width: 100%; height: min(72vh, 720px); object-fit: cover; }
.tc-section-photos { padding-top: 0; }
.tc-project-editor .wp-block-media-text { margin: 2.4rem 0; gap: 2rem; align-items: center; }
.tc-project-editor .wp-block-image { margin: 1.4rem 0; }
.tc-project-editor .wp-block-image img,
.tc-project-editor .wp-block-gallery img { border-radius: var(--radius); width: 100%; height: auto; display: block; }
.tc-project-editor .wp-block-columns { margin: 2rem 0; }
.tc-project-editor .wp-block-heading { margin: 2rem 0 .6rem; }
.tc-project-editor h2.wp-block-heading { font-size: clamp(1.6rem, 3vw, 2.5rem); }
.tc-project-editor h3.wp-block-heading { font-size: 1.15rem; margin-top: 1.4rem; }
.tc-project-editor .wp-block-image + .wp-block-heading { margin-top: .7rem; }
.tc-project-editor .wp-block-list { color: var(--muted); padding-left: 1.2rem; margin: 1rem 0 1.6rem; }
.tc-project-editor .wp-block-list li { margin: .35rem 0; }
.tc-project-editor a { color: var(--navy); font-weight: 600; }
.tc-project-logo { margin: 0 0 1.2rem !important; }
.tc-project-logo img { width: 280px !important; max-width: 70%; height: auto !important; object-fit: contain !important; }
.tc-project-editor .wp-block-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: .7rem;
	margin: 1.2rem 0 2rem;
}
.tc-project-editor .wp-block-gallery .wp-block-image { margin: 0; }
.tc-project-editor .wp-block-gallery img { height: 220px; object-fit: cover; cursor: zoom-in; }
.tc-project-editor figure.wp-block-image:not(.tc-project-logo) img { cursor: zoom-in; }
@media (max-width: 800px) {
	.tc-project-editor .wp-block-gallery { grid-template-columns: 1fr 1fr; }
	.tc-project-editor .wp-block-gallery img { height: 160px; }
}

.tc-contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; }
.tc-contact-list { list-style: none; padding: 0; }
.tc-contact-list li { margin: 0 0 1.1rem; color: var(--muted); }
.tc-map { margin-top: 1.6rem; border-radius: var(--radius); overflow: hidden; height: 240px; }
.tc-map iframe { width: 100%; height: 100%; border: 0; }
.tc-form { display: grid; gap: .9rem; background: #fff; padding: 1.6rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.tc-form label { font-size: .9rem; font-weight: 600; }
.tc-form input, .tc-form textarea {
  width: 100%;
  margin-top: .35rem;
  padding: .8rem .9rem;
  border: 1px solid #d7dde4;
  border-radius: 10px;
  font: inherit;
}
.tc-alert { padding: .9rem 1rem; border-radius: 10px; }
.tc-alert-ok { background: #e7f6ea; }
.tc-alert-err { background: #fdecea; }

.tc-footer { background: #07152a; color: #c5ced8; padding: 3.5rem 0 0; }
.tc-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.tc-footer h3 { color: #fff; font-size: 1.3rem; }
.tc-footer ul { list-style: none; padding: 0; margin: 0; }
.tc-footer li { margin: .35rem 0; }
.tc-footer a:hover { color: var(--gold); }
.tc-footer-logo { height: 42px; width: auto; margin-bottom: 1rem; }
.tc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  padding: 1rem;
  font-size: .88rem;
}

.tc-wa {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  z-index: 50;
  animation: tcWaPulse 1.4s ease-out 1 .8s;
}
.tc-wa svg { display: block; }
.tc-wa.has-custom-icon {
  background: transparent;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  overflow: hidden;
}
.tc-wa.has-custom-icon img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  display: block;
}
.tc-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  display: grid;
  place-items: center;
  z-index: 80;
  padding: 2rem;
}
.tc-lightbox[hidden] { display: none; }
.tc-lightbox img { max-width: min(1100px, 100%); max-height: 86vh; }
.tc-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tc-pagination {
  margin-top: 2.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid #dce3ea;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
}
.tc-pagination-label {
  margin: 0;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
.tc-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .45rem;
}
.tc-pagination .page-numbers {
  min-width: 2.6rem;
  height: 2.6rem;
  padding: 0 .9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  border: 1px solid #cfd6de;
  background: #fff;
  color: var(--navy);
  border-radius: 10px;
  font-weight: 600;
  font-size: .95rem;
  box-shadow: 0 4px 12px rgba(10, 31, 61, .06);
}
.tc-pagination a.page-numbers:hover {
  border-color: var(--gold);
  color: var(--navy);
  background: #fffdf8;
}
.tc-pagination .page-numbers.current {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: none;
}
.tc-pagination .page-numbers.dots {
  border: 0;
  background: none;
  box-shadow: none;
  min-width: 1.4rem;
  color: var(--muted);
  padding: 0;
}
.tc-pagination .prev,
.tc-pagination .next {
  min-width: auto;
}

@media (min-width: 981px) {
  body { line-height: 1.48; }
  .tc-lead, .tc-hero-sub, .tc-split-copy p, .tc-card-body p { line-height: 1.45; }
  .tc-section { padding: 4.4rem 0; }
}

.tc-sale { background: #fff; }
.tc-sale-intro { padding: 3.2rem 0 2.4rem; background: #fff; }
.tc-sale-intro-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 2.4rem;
  align-items: center;
}
.tc-sale-logo { width: min(280px, 80%); height: auto; margin-bottom: 1.2rem; }
.tc-sale-intro-copy h1 { font-size: clamp(2.4rem, 5vw, 4rem); max-width: 14ch; }
.tc-sale-intro-copy .tc-lead { margin: 0 0 1.4rem; }
.tc-sale-intro-media {
  margin: 0;
  border: 0;
  padding: 0;
  background: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
}
.tc-sale-intro-media img { width: 100%; height: auto; max-height: 560px; object-fit: cover; }

.tc-sale-about { padding: 2.4rem 0 3rem; }
.tc-sale-about h2 { font-size: clamp(2rem, 4vw, 3.2rem); max-width: 18ch; }
.tc-sale-about p { color: var(--muted); max-width: 38rem; font-size: 1.12rem; }

.tc-sale-banner {
  min-height: 52vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: grid;
  align-items: end;
  color: #fff;
  padding: 4rem 0 3.2rem;
}
.tc-sale-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,31,61,.92) 42%, rgba(10,31,61,.35) 100%);
}
.tc-sale-banner .tc-wrap { position: relative; z-index: 1; }
.tc-sale-banner h2 { font-size: clamp(2.2rem, 5vw, 4rem); max-width: 16ch; }
.tc-sale-banner em {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--sky);
  font-weight: 500;
}
.tc-sale-banner p { color: rgba(255,255,255,.86); max-width: 36rem; }

.tc-sale-units, .tc-sale-features, .tc-sale-amenities, .tc-sale-faq { padding: 3.4rem 0; }
.tc-sale-head { max-width: 46rem; margin-bottom: 2rem; }
.tc-sale-head p, .tc-sale-feat-top p { color: var(--muted); }
.tc-sale-unit-grid, .tc-sale-amen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.tc-sale-unit { background: var(--paper); border-radius: var(--radius); overflow: hidden; }
.tc-sale-unit .tc-gallery-item, .tc-sale-amen-grid .tc-gallery-item, .tc-sale-duo-grid .tc-gallery-item,
.tc-sale-gallery .tc-gallery-item, .tc-about-service > .tc-gallery-item {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: none;
  cursor: zoom-in;
  -webkit-appearance: none;
  appearance: none;
}
.tc-sale-unit img { width: 100%; height: 220px; object-fit: cover; }
.tc-sale-unit-body { padding: 1.2rem 1.3rem 1.5rem; }
.tc-sale-unit-body h3 { font-size: 1.55rem; }
.tc-sale-unit-body p { color: var(--muted); font-size: .98rem; }
.tc-sale-more { color: var(--navy); font-weight: 600; font-size: .92rem; }
.tc-sale-more:hover { color: var(--sky); }

.tc-sale-duo { padding: 0 0 1rem; }
.tc-sale-duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.tc-sale-duo-grid img { width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius); }

.tc-sale-gallery { padding: 2rem 0 3.4rem; }
.tc-sale-gallery-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1rem;
  align-items: center;
}
.tc-sale-portrait img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius); }
.tc-sale-gallery-copy h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
.tc-sale-gallery-copy p { color: var(--muted); }
.tc-sale-thumbs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  margin-top: .4rem;
}
.tc-sale-thumbs img { width: 100%; height: 200px; object-fit: cover; border-radius: 12px; }

.tc-sale-feat-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
  margin-bottom: 2rem;
}
.tc-sale-feat-top h2 { font-size: clamp(2rem, 4vw, 3rem); }
.tc-sale-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem 1.2rem;
}
.tc-sale-feat h3 { font-size: 1.05rem; font-family: Outfit, sans-serif; font-weight: 600; }
.tc-ico { width: 42px; height: 42px; fill: var(--navy); margin-bottom: .6rem; }

.tc-sale-amen-grid figure { margin: 0; }
.tc-sale-amen-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius); }
.tc-sale-amen-grid figcaption { margin-top: .7rem; font-family: "Cormorant Garamond", serif; font-size: 1.35rem; }

.tc-sale-cta {
  background: var(--navy);
  color: #fff;
  padding: 3.6rem 0;
  text-align: center;
}
.tc-sale-cta h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
.tc-sale-cta-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.4rem; }
.tc-btn-ghost-dark { border-color: rgba(255,255,255,.45); color: #fff; }
.tc-btn-ghost-dark:hover { background: rgba(255,255,255,.1); }

.tc-sale-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 1.6rem; }
.tc-sale-faq article { background: var(--paper); padding: 1.5rem 1.6rem; border-radius: var(--radius); }
.tc-sale-faq h3 { font-size: 1.25rem; }
.tc-sale-faq p { color: var(--muted); }

.tc-sale-contact { padding: 3.2rem 0 4rem; background: var(--paper); }
.tc-sale-contact-grid { display: grid; grid-template-columns: 1.1fr .95fr .8fr; gap: 2rem; align-items: end; }
.tc-sale-contact h2 a:hover { color: var(--sky); }
.tc-sale-list { list-style: none; padding: 0; margin: 0; }
.tc-sale-list li { margin: 0 0 .7rem; color: var(--muted); }
.tc-sale-list a { font-weight: 600; color: var(--navy); }
.tc-sale-list a:hover { color: var(--sky); }
.tc-sale-portfolio .tc-sale-intro-copy h1 { font-size: clamp(2.4rem, 5vw, 4rem); }

.tc-about { background: #fff; }
.tc-about-profile { padding: 4rem 0; background: var(--paper); }
.tc-about-profile-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 3rem;
  align-items: start;
}
.tc-about-profile-photo {
  margin: 0;
  border: 0;
  padding: 0;
  background: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
}
.tc-about-profile-photo img {
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: cover;
  display: block;
}
.tc-about-profile h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); }
.tc-about-dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1.5rem;
  margin: 1.8rem 0 0;
}
.tc-about-dl dt {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin: 0 0 .3rem;
}
.tc-about-dl dd {
  margin: 0;
  color: var(--navy);
  font-size: .98rem;
  line-height: 1.45;
}
.tc-about-services { padding: 4.2rem 0 3.2rem; }
.tc-about-service-list { display: grid; gap: 1.8rem; }
.tc-about-service {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 0;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
}
.tc-about-service:nth-child(even) { grid-template-columns: 1.1fr .9fr; }
.tc-about-service:nth-child(even) > .tc-gallery-item { order: 2; }
.tc-about-service > .tc-gallery-item {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: none;
  cursor: zoom-in;
}
.tc-about-service img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}
.tc-about-service-body { padding: 2rem 2.1rem 2.2rem; }
.tc-about-service-body span {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--sky);
  font-size: 1.45rem;
  display: block;
  margin-bottom: .35rem;
}
.tc-about-service-body h3 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin: 0 0 1rem; }
.tc-about-service-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .55rem;
}
.tc-about-service-body li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.45;
}
.tc-about-service-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--sky);
}

@media (max-width: 980px) {
  .tc-cards-3, .tc-services, .tc-cats, .tc-split, .tc-contact, .tc-footer-grid, .tc-gallery, .tc-about-grid, .tc-duo {
    grid-template-columns: 1fr 1fr;
  }
  .tc-split, .tc-contact, .tc-footer-grid { grid-template-columns: 1fr; }
  .tc-sale-intro-grid, .tc-sale-duo-grid, .tc-sale-faq-grid, .tc-sale-contact-grid,
  .tc-about-profile-grid, .tc-about-service, .tc-about-service:nth-child(even) { grid-template-columns: 1fr; }
  .tc-about-dl { grid-template-columns: 1fr; }
  .tc-about-service:nth-child(even) > .tc-gallery-item { order: 0; }
  .tc-about-service img { min-height: 240px; max-height: 320px; }
  .tc-sale-gallery-layout { grid-template-columns: 1fr 1fr; }
  .tc-sale-gallery-copy { grid-column: 1 / -1; }
  .tc-sale-portrait img { height: 360px; }
  .tc-sale-feat-grid { grid-template-columns: 1fr 1fr; }
  .tc-sale-feat-top { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 760px) {
  .tc-nav-toggle { display: block; }
  .tc-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 78px;
    background: var(--navy);
    padding: 1rem 1.2rem 1.4rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .tc-header.is-open .tc-nav { display: flex; }
  .tc-header.is-scrolled .tc-nav { top: 62px; }
  .tc-menu { flex-direction: column; }
  .tc-cards-3, .tc-services, .tc-cats, .tc-gallery, .tc-about-grid, .tc-duo,
  .tc-sale-unit-grid, .tc-sale-amen-grid, .tc-sale-thumbs { grid-template-columns: 1fr; }
  .tc-duo-item img { height: 240px; }
  .tc-hero { min-height: 78vh; }
  .tc-hero-controls { bottom: 1.1rem; }
  .tc-sale-duo-grid img, .tc-sale-unit img, .tc-sale-amen-grid img, .tc-sale-thumbs img { height: 220px; }
  .tc-sale-gallery-layout { grid-template-columns: 1fr; }
}

body.tc-is-loading { overflow: hidden; }
html.tc-preload-skip body.tc-is-loading,
html.tc-preload-done body.tc-is-loading { overflow: visible; }

.tc-preloader {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: var(--navy);
  transition: opacity .45s ease, visibility .45s ease;
}
.tc-preloader.is-done,
html.tc-preload-skip .tc-preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.tc-preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  padding: 1.5rem;
}
.tc-preloader-logo {
  height: 52px;
  width: auto;
  max-width: min(280px, 70vw);
}
.tc-preloader-bar {
  display: block;
  width: 140px;
  height: 2px;
  background: rgba(255,255,255,.14);
  overflow: hidden;
}
.tc-preloader-bar-fill {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--gold);
  animation: tcPreloadBar 1.1s ease-in-out infinite;
}
@keyframes tcPreloadBar {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(360%); }
}

.tc-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  z-index: 90;
  pointer-events: none;
}

.tc-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 5.4rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 51;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.tc-to-top:hover { background: var(--navy-2); color: var(--gold); }

.tc-reveal {
  transition: opacity .55s ease, transform .55s ease;
}
.tc-reveal.is-waiting {
  opacity: 0;
  transform: translateY(18px);
}
.tc-reveal.is-in {
  opacity: 1;
  transform: none;
}
.tc-card.tc-reveal.is-in:hover { transform: translateY(-6px); }

@keyframes tcWaPulse {
  0% { box-shadow: 0 10px 24px rgba(0,0,0,.25), 0 0 0 0 rgba(37, 211, 102, .45); }
  70% { box-shadow: 0 10px 24px rgba(0,0,0,.25), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 24px rgba(0,0,0,.25), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .tc-preloader, .tc-preloader-bar-fill, .tc-reveal, .tc-card, .tc-wa, .tc-to-top, .tc-header, .tc-header-inner, .tc-logo img {
    animation: none !important;
    transition: none !important;
  }
  .tc-reveal.is-waiting {
    opacity: 1;
    transform: none;
  }
  .tc-card:hover { transform: none; }
}
