:root {
  --ttt-ink: #18252f;
  --ttt-copy: #334653;
  --ttt-cream: #fff8ef;
  --ttt-paper: #ffffff;
  --ttt-teal: #008c95;
  --ttt-teal-dark: #005f68;
  --ttt-orange: #ce4717;
  --ttt-border: rgba(24, 37, 47, 0.16);
  --ttt-shadow: 0 18px 46px rgba(24, 37, 47, 0.1);
}

.ttt-foundation-shell {
  margin: 0;
  color: var(--ttt-ink);
  background: var(--ttt-cream);
  font-family: Arial, Helvetica, sans-serif;
}

.ttt-foundation-page,
.ttt-foundation-page *,
.ttt-site-chrome,
.ttt-site-chrome * {
  box-sizing: border-box;
}

.ttt-foundation-page {
  min-height: 100vh;
  overflow-x: clip;
  background: linear-gradient(180deg, var(--ttt-cream), #fff 34%, #fff5e9);
}

.ttt-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-180%);
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--ttt-ink);
  font-weight: 800;
  text-decoration: none;
}
.ttt-skip-link:focus { transform: translateY(0); }

.ttt-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--ttt-border);
  background: rgba(255, 248, 239, 0.97);
  box-shadow: 0 10px 28px rgba(24, 37, 47, 0.08);
  backdrop-filter: blur(12px);
}

body.admin-bar .ttt-header { top: 32px; }

.ttt-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(1360px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
}

.ttt-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  min-height: 60px;
  color: var(--ttt-ink);
  text-decoration: none;
}

.ttt-brand__mark { display: block; width: 54px; height: 54px; object-fit: contain; }
.ttt-brand__text { max-width: 145px; font-family: Georgia, "Times New Roman", serif; font-size: 1.03rem; font-weight: 800; line-height: 1.05; }

.ttt-nav { display: flex; flex: 1 1 auto; align-items: center; justify-content: center; gap: 1px; min-width: 0; }
.ttt-nav a,
.ttt-header__phone {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 8px;
  color: var(--ttt-ink);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.ttt-nav a:hover,
.ttt-header__phone:hover { background: var(--ttt-paper); }
.ttt-nav a[aria-current="page"] { color: var(--ttt-teal-dark); background: #e7f6f5; box-shadow: inset 0 0 0 1px var(--ttt-teal), inset 0 -3px 0 var(--ttt-teal); }
.ttt-nav .ttt-nav__cta { color: #fff; background: var(--ttt-orange); box-shadow: 0 8px 18px rgba(206, 71, 23, 0.22); }
.ttt-nav .ttt-nav__cta:hover { color: #fff; background: #b63d11; }
.ttt-header__phone { flex: 0 0 auto; border: 1px solid rgba(24, 37, 47, 0.28); background: rgba(255, 255, 255, 0.74); }

.ttt-nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--ttt-border);
  border-radius: 8px;
  color: var(--ttt-ink);
  background: #fff;
  cursor: pointer;
}
.ttt-nav-toggle__bar { display: block; width: 22px; height: 2px; margin: 5px auto; border-radius: 2px; background: currentColor; }

.ttt-foundation-page a:focus-visible,
.ttt-foundation-page button:focus-visible,
.ttt-foundation-page input:focus-visible,
.ttt-foundation-page select:focus-visible,
.ttt-foundation-page textarea:focus-visible,
.ttt-site-chrome a:focus-visible,
.ttt-site-chrome button:focus-visible {
  outline: 3px solid var(--ttt-teal);
  outline-offset: 4px;
}

.ttt-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.9fr);
  align-items: stretch;
  width: min(1180px, calc(100% - 32px));
  min-height: 620px;
  margin: 0 auto;
  padding: 62px 0 54px;
  gap: 42px;
}
.ttt-page-hero--compact { min-height: 510px; }
.ttt-page-hero__copy { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.ttt-page-hero h1,
.ttt-foundation-section h2,
.ttt-foundation-cta h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 800; line-height: 1.06; }
.ttt-page-hero h1 { max-width: 740px; font-size: clamp(2.7rem, 5vw, 4.7rem); }
.ttt-page-hero__lede { max-width: 720px; margin: 22px 0 0; color: var(--ttt-copy); font-size: 1.2rem; line-height: 1.65; }
.ttt-page-hero__media { min-width: 0; overflow: hidden; border-radius: 28px; background: #e6d7c7; box-shadow: var(--ttt-shadow); }
.ttt-page-hero__image { display: block; width: 100%; height: 100%; min-height: 430px; object-fit: cover; }

.ttt-eyebrow { margin: 0 0 12px; color: var(--ttt-teal); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.12em; line-height: 1.3; text-transform: uppercase; }
.ttt-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.ttt-button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 13px 19px; border: 2px solid transparent; border-radius: 8px; font-weight: 800; line-height: 1.15; text-align: center; text-decoration: none; }
.ttt-button--primary { color: #fff; background: var(--ttt-teal-dark); }
.ttt-button--primary:hover { color: #fff; background: #004d55; }
.ttt-button--secondary { border-color: var(--ttt-teal-dark); color: var(--ttt-teal-dark); background: #fff; }
.ttt-button--light { color: var(--ttt-ink); background: #fff; }

.ttt-foundation-section { padding: 92px max(16px, calc((100% - 1180px) / 2)); background: #fff; }
.ttt-foundation-section--tint { background: #edf7f5; }
.ttt-foundation-section--dark { color: #fff; background: var(--ttt-ink); }
.ttt-foundation-section--dark .ttt-eyebrow { color: #7dd8d2; }
.ttt-foundation-section__intro { max-width: 820px; margin-bottom: 36px; }
.ttt-foundation-section__intro h2 { font-size: clamp(2rem, 3.5vw, 3.25rem); }
.ttt-foundation-section__intro > p:last-child { color: var(--ttt-copy); font-size: 1.08rem; line-height: 1.7; }
.ttt-foundation-section--dark .ttt-foundation-section__intro > p:last-child { color: #d8e1e5; }

.ttt-foundation-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.ttt-foundation-card-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ttt-foundation-card-grid article { padding: 28px; border: 1px solid var(--ttt-border); border-radius: 16px; background: #fff; box-shadow: 0 10px 30px rgba(24, 37, 47, 0.06); }
.ttt-foundation-card-grid h3 { margin: 0 0 10px; font-size: 1.25rem; }
.ttt-foundation-card-grid p { margin: 0; color: var(--ttt-copy); line-height: 1.65; }
.ttt-foundation-card-grid a { display: inline-block; margin-top: 16px; color: var(--ttt-teal-dark); font-weight: 800; }

.ttt-foundation-split { display: grid; grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr); align-items: center; gap: 48px; }
.ttt-foundation-split__media { overflow: hidden; min-height: 420px; border-radius: 22px; box-shadow: var(--ttt-shadow); }
.ttt-foundation-split__image { display: block; width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.ttt-foundation-split h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
.ttt-foundation-split p { color: var(--ttt-copy); font-size: 1.05rem; line-height: 1.7; }

.ttt-founder-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.ttt-person-card { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 24px; padding: 24px; border: 1px solid var(--ttt-border); border-radius: 18px; background: #fff; }
.ttt-person-card__image { display: block; width: 150px; height: 180px; object-fit: cover; border-radius: 12px; }
.ttt-person-card h3 { margin: 4px 0 10px; font-size: 1.45rem; }
.ttt-person-card p { margin: 0; color: var(--ttt-copy); line-height: 1.65; }

.ttt-guide-preview { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-bottom: 28px; }
.ttt-guide-card { overflow: hidden; border-radius: 14px; color: var(--ttt-ink); background: #fff; }
.ttt-guide-card__image { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.ttt-guide-card h3 { margin: 20px 20px 8px; }
.ttt-guide-card p { margin: 0 20px 22px; color: var(--ttt-copy); line-height: 1.55; }

.ttt-arrival-panel { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr); gap: 44px; padding: 38px; border: 1px solid var(--ttt-border); border-radius: 20px; background: #fff; box-shadow: var(--ttt-shadow); }
.ttt-arrival-panel h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
.ttt-arrival-panel p { color: var(--ttt-copy); line-height: 1.65; }
.ttt-arrival-panel__facts { padding-left: 32px; border-left: 1px solid var(--ttt-border); }
.ttt-arrival-panel__facts .ttt-button { width: 100%; margin: 8px 0 14px; }
.ttt-inline-link { color: var(--ttt-teal-dark); font-weight: 800; }

.ttt-disclosures { display: grid; gap: 12px; max-width: 920px; }
.ttt-disclosures details { border: 1px solid var(--ttt-border); border-radius: 12px; background: #fff; }
.ttt-disclosures summary { min-height: 56px; display: flex; align-items: center; padding: 15px 20px; font-weight: 800; cursor: pointer; }
.ttt-disclosures p { margin: 0; padding: 0 20px 20px; color: var(--ttt-copy); line-height: 1.65; }

.ttt-contact-grid { display: grid; grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr); gap: 42px; }
.ttt-contact-details { display: grid; align-content: start; gap: 16px; }
.ttt-contact-details > div { padding: 22px; border: 1px solid var(--ttt-border); border-radius: 14px; background: #edf7f5; }
.ttt-contact-details h2 { margin: 0 0 8px; font-family: Arial, Helvetica, sans-serif; font-size: 1.15rem; }
.ttt-contact-details p { margin: 6px 0 0; color: var(--ttt-copy); line-height: 1.55; }
.ttt-contact-details a { color: var(--ttt-teal-dark); font-weight: 800; overflow-wrap: anywhere; }
.ttt-contact-form { padding: 34px; border: 1px solid var(--ttt-border); border-radius: 18px; background: #fff; box-shadow: var(--ttt-shadow); }
.ttt-contact-form h2 { font-size: clamp(2rem, 4vw, 3rem); }
.ttt-contact-form > p { color: var(--ttt-copy); line-height: 1.6; }
.ttt-contact-form .wpcf7-form p { margin: 0 0 18px; font-weight: 700; }
.ttt-contact-form label { display: block; color: var(--ttt-ink); font-weight: 800; }
.ttt-contact-form input:not([type="submit"]):not([type="hidden"]),
.ttt-contact-form select,
.ttt-contact-form textarea { width: 100%; min-height: 50px; margin-top: 7px; padding: 11px 12px; border: 1px solid #6f7e87; border-radius: 7px; color: var(--ttt-ink); background: #fff; font: inherit; }
.ttt-contact-form textarea { min-height: 150px; resize: vertical; }
.ttt-contact-form input[type="submit"] { min-height: 50px; padding: 12px 22px; border: 0; border-radius: 8px; color: #fff; background: var(--ttt-teal-dark); font-weight: 800; cursor: pointer; }
.ttt-contact-form .wpcf7-not-valid-tip { display: block; margin-top: 6px; color: #a31919; font-weight: 700; }
.ttt-contact-form .wpcf7-response-output { margin: 18px 0 0; padding: 14px; border-radius: 8px; }
.ttt-contact-private-fields[hidden] { display: none; }

.ttt-foundation-cta { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 60px max(16px, calc((100% - 1180px) / 2)); color: #fff; background: var(--ttt-teal-dark); }
.ttt-foundation-cta h2 { font-size: clamp(2rem, 3.4vw, 3rem); }
.ttt-foundation-cta p { max-width: 760px; color: #d8eeee; line-height: 1.65; }
.ttt-foundation-cta .ttt-eyebrow { color: #a9e5df; }
.ttt-foundation-cta .ttt-button { flex: 0 0 auto; color: var(--ttt-ink); background: #fff; }

.ttt-footer { color: #fff; background: var(--ttt-ink); }
.ttt-footer__art { height: 220px; overflow: hidden; background: #10202a; }
.ttt-footer__art-image { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 46%; opacity: 0.92; }
.ttt-footer__inner { display: grid; grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.7fr); gap: 52px; width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 54px 0 42px; }
.ttt-footer__brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }
.ttt-footer__brand p { color: #d6e0e5; line-height: 1.65; }
.ttt-footer a { color: #fff; }
.ttt-footer__nav { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.ttt-footer__nav h2 { margin: 0 0 13px; color: #7dd8d2; font-family: Arial, Helvetica, sans-serif; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
.ttt-footer__nav a { display: block; min-height: 36px; line-height: 1.35; text-decoration: none; }
.ttt-footer__nav a:hover { text-decoration: underline; }
.ttt-footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 22px 0 28px; border-top: 1px solid rgba(255,255,255,0.18); color: #c7d2d8; font-size: 0.9rem; }

body.ttt-site-nav-open { overflow: hidden; }

body.ttt-shared-chrome-active .tdc-header-wrap,
body.ttt-shared-chrome-active .td-footer-template-wrap,
body.ttt-shared-chrome-active > .td-footer-wrap {
  display: none !important;
}

@media (max-width: 1120px) {
  .ttt-nav a { padding-inline: 7px; font-size: 0.82rem; }
  .ttt-brand__text { display: none; }
  .ttt-guide-preview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1020px) {
  body.admin-bar .ttt-header { top: 46px; }
  .ttt-header__inner { min-height: 68px; }
  .ttt-brand__text { display: inline; }
  .ttt-nav-toggle { display: block; margin-left: auto; }
  .ttt-header__phone { width: 48px; height: 48px; padding: 0; overflow: hidden; font-size: 0; }
  .ttt-header__phone::before { content: "Call"; font-size: 0.74rem; }
  .ttt-nav {
    position: fixed;
    inset: 68px 0 auto;
    display: none;
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
    padding: 18px 16px 28px;
    border-top: 1px solid var(--ttt-border);
    background: var(--ttt-cream);
    box-shadow: 0 20px 32px rgba(24, 37, 47, 0.18);
  }
  body.admin-bar .ttt-nav { inset-block-start: 114px; max-height: calc(100dvh - 114px); }
  .ttt-site-nav-open .ttt-nav { display: grid; gap: 6px; }
  .ttt-nav a { min-height: 50px; justify-content: flex-start; padding-inline: 16px; font-size: 1rem; }
  .ttt-nav .ttt-nav__cta { justify-content: center; margin-top: 8px; }
  .ttt-page-hero { grid-template-columns: 1fr; min-height: 0; padding-top: 44px; }
  .ttt-page-hero__media { min-height: 360px; }
  .ttt-page-hero__image { min-height: 360px; }
  .ttt-foundation-card-grid--three { grid-template-columns: 1fr; }
  .ttt-foundation-split { grid-template-columns: 1fr; }
  .ttt-founder-grid { grid-template-columns: 1fr; }
  .ttt-arrival-panel { grid-template-columns: 1fr; }
  .ttt-arrival-panel__facts { padding: 24px 0 0; border-top: 1px solid var(--ttt-border); border-left: 0; }
  .ttt-contact-grid { grid-template-columns: 1fr; }
  .ttt-foundation-cta { align-items: flex-start; flex-direction: column; }
  .ttt-footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .ttt-brand__text { max-width: 130px; font-size: 0.92rem; }
  .ttt-brand__mark { width: 46px; height: 46px; }
  .ttt-page-hero { width: min(100% - 24px, 1180px); gap: 28px; padding: 34px 0 38px; }
  .ttt-page-hero h1 { font-size: 2.55rem; }
  .ttt-page-hero__lede { font-size: 1.06rem; }
  .ttt-page-hero__media,
  .ttt-page-hero__image { min-height: 290px; }
  .ttt-foundation-section { padding-block: 64px; }
  .ttt-foundation-card-grid { grid-template-columns: 1fr; }
  .ttt-person-card { grid-template-columns: 1fr; }
  .ttt-person-card__image { width: 100%; height: 280px; }
  .ttt-guide-preview { grid-template-columns: 1fr; }
  .ttt-arrival-panel,
  .ttt-contact-form { padding: 24px 20px; }
  .ttt-footer__art { height: 170px; }
  .ttt-footer__nav { grid-template-columns: 1fr; }
  .ttt-footer__legal { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}
