.tt-contact-page {
  background: var(--tt-ivory);
}

.tt-contact-page .tt-header__nav a[href$="/contact"],
.tt-contact-page .tt-header__nav a[href$="/contact/"] {
  color: var(--tt-gold);
}

.tt-contact-page .tt-header__nav a[href$="/contact"]::after,
.tt-contact-page .tt-header__nav a[href$="/contact/"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.tt-contact-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(150px, 12vw, 210px) 0 clamp(100px, 9vw, 150px);
  background:
    radial-gradient(circle at 12% 28%, rgba(255,255,255,.95), transparent 34%),
    linear-gradient(112deg, #fdfcf9 0%, #fbfaf6 52%, #f5f1e7 100%);
}

.tt-contact-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.tt-contact-hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  right: -14%;
  bottom: -42%;
  width: 82%;
  aspect-ratio: 1.25;
  border-radius: 50%;
  background: rgba(255,255,255,.68);
  transform: rotate(-12deg);
}

.tt-contact-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(330px,.78fr) minmax(540px,1.22fr);
  align-items: center;
  gap: clamp(70px,9vw,155px);
}

.tt-contact-hero__intro {
  position: relative;
  z-index: 2;
}

.tt-contact-hero__intro h1 {
  max-width: 700px;
  margin: 0;
  color: var(--tt-navy);
  font-family: var(--tt-display-font);
  font-size: clamp(60px,6.2vw,104px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: .91;
  text-transform: uppercase;
}

.tt-contact-hero__intro > p {
  max-width: 570px;
  margin: 34px 0 0;
  color: var(--tt-muted);
  font-size: clamp(17px,1.2vw,20px);
  line-height: 1.7;
}

.tt-contact-hero__details {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 0;
  margin: clamp(48px,6vw,82px) 0 0;
  border-top: 1px solid var(--tt-gold-border);
}

.tt-contact-hero__details div {
  padding: 20px 24px 20px 0;
  border-bottom: 1px solid var(--tt-gold-border);
}

.tt-contact-hero__details div:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--tt-gold-border);
}

.tt-contact-hero__details div:last-child {
  grid-column: 1 / -1;
}

.tt-contact-hero__details dt {
  margin-bottom: 8px;
  color: var(--tt-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.tt-contact-hero__details dd {
  margin: 0;
  color: var(--tt-navy);
  font-size: 14px;
}

.tt-contact-hero__details a {
  transition: color 220ms ease;
}

.tt-contact-hero__details a:hover { color: var(--tt-gold); }

.tt-contact-form-shell {
  position: relative;
  padding: clamp(36px,4.5vw,72px);
  border: 1px solid rgba(201,147,33,.2);
  background: rgba(255,255,255,.84);
  box-shadow: 0 34px 100px rgba(7,20,38,.09);
  backdrop-filter: blur(18px);
}

.tt-contact-form-shell::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 38%;
  height: 2px;
  background: linear-gradient(90deg,var(--tt-gold),transparent);
}

.tt-contact-form-shell__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 44px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(7,20,38,.1);
}

.tt-contact-form-shell__top span:not(.tt-contact-form-shell__index) {
  display: block;
  margin-bottom: 10px;
  color: var(--tt-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.tt-contact-form-shell__top h2 {
  margin: 0;
  font-family: var(--tt-display-font);
  font-size: clamp(34px,3vw,50px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.tt-contact-form-shell__index {
  color: rgba(201,147,33,.52);
  font-family: var(--tt-display-font);
  font-size: 46px;
  line-height: 1;
}

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

.tt-contact-field {
  position: relative;
  margin-bottom: 30px;
}

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

.tt-contact-turnstile {
  min-height: 65px;
  margin: 0 0 24px;
}

.tt-contact-turnstile > small {
  display: block;
  margin-top: 8px;
  color: #a43131;
  font-size: 12px;
}

.tt-contact-field label {
  display: block;
  margin-bottom: 10px;
  color: var(--tt-navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tt-contact-field input,
.tt-contact-field select,
.tt-contact-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(7,20,38,.18);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--tt-navy);
  font: 400 16px/1.5 var(--tt-body-font);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.tt-contact-field input,
.tt-contact-field select {
  height: 54px;
  padding: 0 4px;
}

.tt-contact-field textarea {
  min-height: 142px;
  padding: 14px 4px;
  resize: vertical;
}

.tt-contact-field input::placeholder,
.tt-contact-field textarea::placeholder { color: #9299a6; opacity: 1; }

.tt-contact-field input:focus,
.tt-contact-field select:focus,
.tt-contact-field textarea:focus {
  border-color: var(--tt-gold);
  box-shadow: 0 1px 0 var(--tt-gold);
}

.tt-contact-field.has-error input,
.tt-contact-field.has-error select,
.tt-contact-field.has-error textarea { border-color: #b34040; }

.tt-contact-field > small {
  display: block;
  margin-top: 8px;
  color: #a43131;
  font-size: 12px;
}

.tt-contact-field__guidance {
  display: block;
  margin-top: 9px;
  color: #858c98;
  font-size: 11px;
}

.tt-contact-select {
  position: relative;
  display: block;
}

.tt-contact-select select {
  padding-right: 38px;
  appearance: none;
  cursor: pointer;
}

.tt-contact-select svg {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--tt-gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  pointer-events: none;
  transform: translateY(-50%);
}

.tt-contact-form__submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 10px;
}

.tt-contact-submit {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 230px;
  height: 58px;
  padding: 6px 6px 6px 25px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(100deg,#e7b84e,#f8dda0);
  box-shadow: 0 14px 32px rgba(201,147,33,.16);
  color: var(--tt-navy);
  font: 700 13px/1 var(--tt-body-font);
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.tt-contact-submit i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 14px rgba(7,20,38,.08);
}

.tt-contact-submit svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 220ms ease;
}

.tt-contact-submit:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(201,147,33,.24); }
.tt-contact-submit:hover svg { transform: translateX(3px); }

.tt-contact-form__submit > p {
  max-width: 310px;
  margin: 0;
  color: #7b8290;
  font-size: 11px;
  line-height: 1.55;
}

.tt-contact-alert {
  margin: 0 0 30px;
  padding: 16px 18px;
  border-left: 2px solid;
  font-size: 13px;
  line-height: 1.55;
}

.tt-contact-alert strong { display: block; margin-bottom: 5px; }
.tt-contact-alert p { margin: 0; }
.tt-contact-alert ul { margin: 6px 0 0; padding-left: 18px; }
.tt-contact-alert--error { border-color: #a43131; background: #fff3f2; color: #7b2929; }
.tt-contact-alert--success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 19px 20px 20px;
  border: 1px solid rgba(46, 107, 82, .22);
  border-radius: 14px;
  background: linear-gradient(135deg, #f2faf5 0%, #fbfdf9 100%);
  box-shadow: 0 12px 30px rgba(28, 63, 47, .08);
  color: #254d3d;
}

.tt-contact-alert__icon {
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-top: 1px;
  border-radius: 50%;
  background: #2e6b52;
  color: #fff;
}

.tt-contact-alert__icon svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.tt-contact-alert__content { min-width: 0; }
.tt-contact-alert__eyebrow {
  display: block;
  margin-bottom: 5px;
  color: #2e6b52;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.tt-contact-alert--success strong { margin-bottom: 5px; color: #173c2d; font-size: 15px; }

@media (max-width: 520px) {
  .tt-contact-alert--success { padding: 16px; }
}

.tt-contact-hero__geometry {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: -30vw;
  width: min(54vw,850px);
  aspect-ratio: 1;
  transform: translateY(-50%);
}

.tt-contact-hero__orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,147,33,.12);
  border-radius: 50%;
}

.tt-contact-hero__orbit--two { inset: 20%; border-style: dashed; border-color: rgba(201,147,33,.2); }
.tt-contact-hero__node { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--tt-gold); box-shadow: 0 0 16px rgba(201,147,33,.6); }
.tt-contact-hero__node--one { top: 8%; left: 50%; }
.tt-contact-hero__node--two { top: 49%; right: 0; }
.tt-contact-hero__node--three { bottom: 17%; left: 16%; }
.tt-contact-hero__object { position: absolute; inset: 39%; filter: drop-shadow(0 25px 28px rgba(111,72,8,.18)); transform: rotate(18deg); }
.tt-contact-hero__object img { display: block; width: 100%; height: 100%; object-fit: contain; }

/* Next steps and location */
.tt-contact-next {
  position: relative;
  overflow: hidden;
  padding: clamp(95px,10vw,170px) 0;
  background: #f5f2ea;
}

.tt-contact-next__heading {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: end;
  gap: 40px 100px;
  margin-bottom: clamp(55px,7vw,105px);
}

.tt-contact-next__heading .tt-section-heading__eyebrow { grid-column: 1 / -1; margin-bottom: -4px; }
.tt-contact-next__heading h2,
.tt-contact-location__copy h2 {
  margin: 0;
  font-family: var(--tt-display-font);
  font-size: clamp(48px,5vw,82px);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: .96;
  text-transform: uppercase;
}

.tt-contact-next__heading > p {
  max-width: 530px;
  margin: 0;
  color: var(--tt-muted);
  font-size: 17px;
  line-height: 1.7;
}

.tt-contact-next__steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin: 0 0 clamp(95px,11vw,175px);
  padding: 0;
  border-top: 1px solid var(--tt-gold-border);
  list-style: none;
}

.tt-contact-next__steps li {
  min-height: 260px;
  padding: 34px clamp(28px,3.6vw,60px) 32px 0;
  border-bottom: 1px solid var(--tt-gold-border);
}

.tt-contact-next__steps li:not(:last-child) { border-right: 1px solid var(--tt-gold-border); }
.tt-contact-next__steps li:not(:first-child) { padding-left: clamp(28px,3.6vw,60px); }
.tt-contact-next__steps span { color: var(--tt-gold); font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.tt-contact-next__steps h3 { margin: 68px 0 14px; font-family: var(--tt-display-font); font-size: clamp(27px,2.2vw,38px); font-weight: 600; line-height: 1; text-transform: uppercase; }
.tt-contact-next__steps p { margin: 0; color: var(--tt-muted); font-size: 14px; line-height: 1.65; }

.tt-contact-location {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(201,147,33,.22);
  background: var(--tt-navy);
  color: #fff;
}

.tt-contact-location__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(44px,6vw,90px);
}

.tt-contact-location__copy > span { margin-bottom: 28px; color: var(--tt-gold-light); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.tt-contact-location__copy h2 { color: #fff; font-size: clamp(40px,4vw,66px); }
.tt-contact-location__copy address { margin: 38px 0 28px; color: rgba(255,255,255,.58); font-size: 15px; font-style: normal; line-height: 1.7; }
.tt-contact-location__copy .tt-text-link { color: #fff; border-color: rgba(233,196,106,.4); }
.tt-contact-location__map { position: relative; min-height: 540px; overflow: hidden; filter: saturate(.22) sepia(.13) contrast(.95); }
.tt-contact-location__map::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg,rgba(7,20,38,.34),transparent 26%); }
.tt-contact-location__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.tt-contact-location__map > span { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid rgba(201,147,33,.5); border-radius: 50%; background: rgba(255,255,255,.88); box-shadow: 0 15px 36px rgba(7,20,38,.2); transform: translate(-50%,-50%); pointer-events: none; }
.tt-contact-location__map > span i { width: 12px; height: 12px; border-radius: 50%; background: var(--tt-gold); box-shadow: 0 0 0 8px rgba(201,147,33,.14); }

@media (max-width: 1099.98px) {
  .tt-contact-hero__inner { grid-template-columns: minmax(300px,.72fr) minmax(480px,1.28fr); gap: 55px; }
  .tt-contact-form-shell { padding: 42px; }
  .tt-contact-hero__intro h1 { font-size: 72px; }
}

@media (max-width: 899.98px) {
  .tt-contact-hero { padding-top: 145px; }
  .tt-contact-hero__inner { grid-template-columns: 1fr; }
  .tt-contact-hero__intro { max-width: 720px; }
  .tt-contact-hero__intro h1 { font-size: clamp(58px,10vw,86px); }
  .tt-contact-hero__geometry { top: 30%; left: 72%; width: 90vw; opacity: .34; transform: translate(-50%,-50%); }
  .tt-contact-form-shell { width: 100%; max-width: 800px; }
  .tt-contact-next__heading { grid-template-columns: 1fr; gap: 28px; }
  .tt-contact-next__steps { grid-template-columns: 1fr; }
  .tt-contact-next__steps li { min-height: auto; padding: 28px 0 34px !important; border-right: 0 !important; }
  .tt-contact-next__steps h3 { margin-top: 34px; }
  .tt-contact-location { grid-template-columns: 1fr; }
  .tt-contact-location__map { min-height: 460px; }
}

@media (max-width: 719.98px) {
  .tt-contact-hero { padding: 116px 0 82px; }
  .tt-contact-hero__inner { gap: 54px; }
  .tt-contact-hero__intro h1 { max-width: 100%; font-size: clamp(48px,14vw,64px); line-height: .94; }
  .tt-contact-hero__intro > p { margin-top: 24px; font-size: 16px; }
  .tt-contact-hero__details { grid-template-columns: 1fr; margin-top: 40px; }
  .tt-contact-hero__details div,
  .tt-contact-hero__details div:nth-child(even) { grid-column: auto; padding: 16px 0; border-left: 0; }
  .tt-contact-form-shell { padding: 30px 22px; }
  .tt-contact-form-shell__top { margin-bottom: 32px; padding-bottom: 24px; }
  .tt-contact-form-shell__top h2 { font-size: 34px; }
  .tt-contact-form-shell__index { font-size: 36px; }
  .tt-contact-form__row { grid-template-columns: 1fr; gap: 0; }
  .tt-contact-field { margin-bottom: 25px; }
  .tt-contact-form__submit { align-items: flex-start; flex-direction: column; }
  .tt-contact-submit { width: 100%; }
  .tt-contact-next { padding-block: 82px; }
  .tt-contact-next__heading h2 { font-size: clamp(42px,12vw,56px); }
  .tt-contact-location { margin-inline: calc(var(--tt-page-padding) * -1); border-inline: 0; }
  .tt-contact-location__copy { padding: 54px var(--tt-page-padding); }
  .tt-contact-location__copy h2 { font-size: 44px; }
  .tt-contact-location__map { min-height: 380px; }
}

@media (max-width: 379.98px) {
  .tt-contact-hero__intro h1 { font-size: 46px; }
  .tt-contact-form-shell { padding-inline: 18px; }
  .tt-contact-form-shell__index { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .tt-contact-submit,
  .tt-contact-submit svg { transition: none; }
}
.tt-contact-promo-note { display: grid; gap: 5px; max-width: 470px; margin: 24px 0 0; padding: 16px 18px; border-left: 3px solid var(--tt-promo-red, #c8102e); background: var(--tt-promo-red-soft, #fdecef); }
.tt-contact-promo-note strong { color: var(--tt-promo-red-deep, #9c0b23); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }
.tt-contact-promo-note span { color: var(--tt-muted); font-size: 13px; line-height: 1.5; }
