/* TFT AC Nevis — partner microsite */

:root {
  --teal: #0d4a52;
  --teal-dark: #083239;
  --green: #6b9f7a;
  --green-light: #a8d4b8;
  --orange: #e0702b;
  --cream: #f7f9f8;
  --text: #1a2e32;
  --muted: #4a5f65;
  --max: 56rem;
  --font-serif: "Georgia", "Times New Roman", serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
}

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--orange);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.5rem 1rem;
  background: var(--teal);
  color: #fff;
}

.skip-link:focus {
  left: 0;
  top: 0;
}

.site-header {
  background: #fff;
  border-bottom: 3px solid var(--teal);
  box-shadow: 0 1px 0 rgba(13, 74, 82, 0.08);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand:hover {
  color: inherit;
}

.brand__mark {
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand__name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--teal);
}

.brand__tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--teal);
  padding: 0.35rem 0;
}

.nav a[aria-current="page"] {
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.hero {
  text-align: center;
  padding: 2.5rem 0 2rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--teal-dark);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.hero__slogan {
  font-size: 1.1rem;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

.hero__lead {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.panel {
  background: #fff;
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  margin-top: 2rem;
  border: 1px solid rgba(13, 74, 82, 0.12);
}

.panel h2 {
  font-family: var(--font-serif);
  color: var(--teal);
  font-size: 1.35rem;
  margin: 0 0 1rem;
}

.services {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.services li {
  padding: 1rem;
  background: var(--cream);
  border-radius: 6px;
  border-left: 4px solid var(--orange);
  font-weight: 600;
  color: var(--teal-dark);
}

.page-title {
  font-family: var(--font-serif);
  color: var(--teal-dark);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1.25rem;
}

.prose {
  color: var(--muted);
}

.prose h2 {
  font-family: var(--font-serif);
  color: var(--teal);
  font-size: 1.2rem;
  margin: 2rem 0 0.75rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  margin: 0 0 1rem;
}

.prose--flush p:last-child {
  margin-bottom: 0;
}

.prose--intro {
  margin-top: 0;
}

.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 40rem) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(13, 74, 82, 0.12);
}

.contact-card h2 {
  font-family: var(--font-serif);
  color: var(--teal);
  font-size: 1.15rem;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--green-light);
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list > div {
  margin-bottom: 1rem;
}

.contact-list > div:last-child {
  margin-bottom: 0;
}

.contact-list dt {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
  margin-bottom: 0.25rem;
}

.contact-list dd {
  margin: 0;
  color: var(--text);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-links a {
  font-weight: 600;
}

.site-footer {
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.88);
  margin-top: auto;
  padding: 2rem 1.25rem;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--green-light);
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
}

.site-footer__fine {
  font-size: 0.8rem;
  opacity: 0.85;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}
