:root {
  --bg: #f5f1e8;
  --surface: #ffffff;
  --surface-strong: #fffdf8;
  --ink: #16212f;
  --muted: #5c6774;
  --line: rgba(22, 33, 47, 0.12);
  --brand: #9ccdf6;
  --brand-strong: #6cb5ee;
  --navy: #1e2d43;
  --shadow: 0 24px 60px rgba(19, 31, 48, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1264px;
}

@font-face {
  font-family: "Italianno-Regular";
  src: url("assets/fonts/Italianno-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial;
  color: var(--ink);
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 1rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(22, 33, 47, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  display: inline-block;
  width: 79.9922px;
  height: 79.9922px;
  object-fit: contain;
  vertical-align: middle;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), #35506e);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  justify-content: flex-end;
}

.brand-copy h1 {
  font-family: "Italianno-Regular";
  font-size: 50px !important;
  font-weight: 400;
  line-height: 0.88;
  position: relative;
  top: 10px !important;
  margin: 21px 0px 10.5px 0px;
}

.brand-copy span {
  display: none;
}

.site-nav {
  display: flex;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-divider {
  width: 1px;
  height: 24px;
  background: rgba(22, 33, 47, 0.14);
}

.nav-list a,
.nav-button {
  border: 0;
  background: transparent;
  /* color: var(--ink); */
  padding: 14px;
  border-radius: 999px;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 21px;
  border: 1px solid transparent;
  text-decoration: none;
}

.nav-list .is-current,
.nav-button.is-current {
  color: #000;
  font-weight: 400;
}

.nav-list a:hover,
.nav-button:hover,
.nav-list a:focus-visible,
.nav-button:focus-visible {
  color: #ffffff;
  background-color: #00072d;
  text-decoration: underline;
  outline: none;
}

.has-dropdown.is-open > .nav-button {
  color: #ffffff;
  background-color: #00072d;
  text-decoration: underline;
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 280px;
  padding: 0.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #00072d;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  display: grid;
  gap: 0.25rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.dropdown a {
  border-radius: 0;
  padding: 10px 12px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #ffffff;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  outline: none;
}

.has-dropdown:focus-within .dropdown,
.has-dropdown.is-open .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-cta {
  background: transparent;
  font-weight: 400;
  padding-inline: 0.35rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  padding: 0.7rem;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 0;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  border-radius: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)),
    url("assets/images/front page.jpg") center/cover no-repeat,
    linear-gradient(135deg, rgba(30, 45, 67, 0.08), rgba(30, 45, 67, 0.02));
  box-shadow: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  padding: 4.2rem 1rem 4.8rem;
}

.eyebrow,
.section-kicker,
.card-label {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  visibility: hidden;
  margin: 0;
  height: 0;
}

.hero h1,
.hero h2,
.section-heading h3,
.section-copy h3,
.benefit-copy h3,
.consultation-card h3 {
  font-family: Arial;
}

.hero h1 {
  margin: 0;
  display: inline;
  width: auto;
  height: auto;
  font-size: 80px;
  line-height: 88px;
  font-family: Arial !important;
  font-weight: 700;
  color: #000;
}

.hero h2 {
  width: auto;
  margin: 1.2rem auto 0;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.05;
  font-family: Arial !important;
  font-weight: 800;
  color: #000;
}

.hero-text {
  width: auto;
  margin: 1rem auto 0;
  color: var(--ink);
  font-size: 1rem;
  font-family: Arial !important;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.4rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: var(--brand);
  box-shadow: 0 18px 30px rgba(108, 181, 238, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--brand-strong);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
}

.section {
  padding: 0.8rem 0 3rem;
}

.page-hero {
  padding: 4rem 0 1rem;
}

/* .page-hero .container {
  border: 1px solid rgba(22, 33, 47, 0.08);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2.25rem;
} */

.page-hero h1 {
  margin: 0 0 1rem;
  font-family: Arial;
  /* font-size: clamp(2.6rem, 5vw, 4.4rem); */
  font-size: 40px;
  font-weight: 100;
  line-height: 0.96;
}

.page-hero p {
  /* width: min(820px, 100%);
  margin: 0; */
  /* color: var(--muted); */
  line-height: 1.8;
  font-size: 20px;
}

.intro-grid,
.benefit-panel,
.consultation-card {
  display: grid;
  gap: 1.5rem;
}

.about-stack {
  display: grid;
  gap: 1.5rem;
}

.about-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
  gap: 1.5rem;
  align-items: start;
}

.intro-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
  align-items: start;
}

/* .section-copy,
.highlight-card,
.benefit-panel,
.consultation-card {
  border: 1px solid rgba(22, 33, 47, 0.06);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 24px rgba(19, 31, 48, 0.05);
} */

.section-copy {
  padding: 2rem;
}

.about-image-panel,
.mission-panel,
.contact-form-panel,
.consultation-panel {
  background: #fff;
}

.contact-form-panel {
  width: min(100%, 1160px);
}

.section-copy h3,
.section-heading h3,
.benefit-copy h3,
.consultation-card h3 {
  margin: 0 0 1rem;
  font-family: Arial;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
}

.section-copy p,
.benefit-copy p,
.consultation-card p,
.issue-card p,
.highlight-card p,
.benefit-list p {
  /* color: var(--muted); */
  line-height: 1.8;
}

/* .highlight-card {
  padding: 2rem;
  background: #fffdf9;
  color: var(--ink);
} */

.highlight-card p,
.stat-list span {
  color: var(--muted);
}

.stat-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: grid;
  /* gap: 1rem; */
}

.tick-list li {
  position: relative;
  padding-left: 2.25rem;
}

.tick-list li::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 0;
  width: 18px;
  height: 18px;
  background: url("assets/images/Tick 20px.png") center/contain no-repeat;
}

.stat-list li {
  display: grid;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.section-heading {
  margin-bottom: 1.75rem;
}

.issues-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.issue-card {
  min-height: 100%;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(22, 33, 47, 0.08);
}

.issue-card h4 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
}

.benefit-panel {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  padding: 2rem;
  background: #fff;
}

.content-panel {
  border: 1px solid rgba(22, 33, 47, 0.08);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.long-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.9;
}

.split-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-link-card,
.number-card,
.contact-card {
  border: 1px solid rgba(22, 33, 47, 0.08);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 24px rgba(19, 31, 48, 0.05);
}

.feature-link-card {
  display: block;
  padding: 2rem;
}

.feature-link-card:hover {
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.6), 0 0 12px rgba(0, 123, 255, 0.4);
    transform: translateY(-2px);
}

.article-teaser {
  padding: 0;
  overflow: hidden;
}

.article-teaser h3,
.article-teaser p {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.article-teaser h3 {
  margin-top: 0.2rem;
}

.article-teaser p {
  padding-bottom: 1.25rem;
}

.feature-image,
.image-aside img,
.inline-hero-image {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  display: block;
}

.feature-image {
  aspect-ratio: 16 / 10;
  margin-bottom: 1.1rem;
}

.feature-link-card h3,
.number-card h3 {
  margin: 0 0 0.8rem;
  font-family: Arial;
  font-size: 1rem;
  text-align: center;
}

.feature-link-card p,
.number-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
  text-align: center;
}

.stack-cards {
  display: grid;
  gap: 1rem;
}

.content-with-aside {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.5rem;
  align-items: start;
}

.article-layout {
  align-items: stretch;
}

.article-list {
  margin: 0;
  padding-left: 1.8rem;
  /* border: 1px solid rgba(22, 33, 47, 0.08);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 24px rgba(19, 31, 48, 0.05); */
  padding-top: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 1.5rem;
}

.article-list li + li {
  margin-top: 1.2rem;
}

.article-list h3 {
  margin: 0 0 0.45rem;
  font-family: Arial;
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
}

.article-list p {
  margin: 0;
  /* color: var(--muted); */ 
  line-height: 1.8;
  font-size: 20px;
  font-weight: 400;
}

.image-aside img {
  min-height: 320px; 
}

.inline-hero-image {
  margin-bottom: 1.25rem;
  max-height: 280px;
}

.about-tower-image {
  max-height: none;
  margin-bottom: 0.75rem;
}

.image-caption {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.number-card {
  position: relative;
  padding: 1.6rem 1.6rem 1.6rem 5rem;
}

.number-card > span {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  color: var(--brand-strong);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.contact-grid {
  display: flex;
  justify-content: flex-end;
}

.contact-card {
  padding: 2rem;
}

.contact-intro {
  margin-bottom: 1rem;
}

.contact-title {
  margin: 0 0 1.5rem;
  font-family: Arial;
  font-size: 2rem;
  line-height: 1;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 600;
}

.contact-form span {
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(22, 33, 47, 0.12);
  background: #fffdfa;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  width: fit-content;
  /* min-width: 132px; */
}

.form-status {
  margin: 1rem 0 0;
  min-height: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-status.is-error {
  color: #9a2f2f;
}

.form-status.is-success {
  color: #255f3d;
}

.benefit-list {
  display: grid;
  gap: 1rem;
}

.benefit-list div {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid rgba(22, 33, 47, 0.08);
}

.benefit-list strong {
  display: inline-block;
  margin-bottom: 0.4rem;
}

.consultation-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 2rem;
  background: #fff;
}

.site-footer {
  padding: 0;
  background: #06103b;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  align-items: flex-end;
  gap: 1rem;
  padding: 0.5rem 0;
  border-top: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
}

.plain-list {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  color: var(--ink);
  line-height: 1.9;
}

/* .trusted-panel .stat-list li {
  border-top-color: rgba(22, 33, 47, 0.08);
} */

.footer-branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 68px;
  width: auto;
  object-fit: contain;
}

.footer-inner strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #fff;
}

.footer-inner p {
  margin: 0;
}

.landing-copy {
  padding: 1.25rem 0 2.5rem;
}

.landing-copy .container {
  position: relative;
}

main{
  background:linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.9)),url('assets/images/logobackground.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.landing-copy-inner {
  position: relative;
  width: min(100%, 1040px);
  margin: 0 auto 0 20px;
  padding-top: 0.25rem;
  font-size: 20px;
  line-height: 1.7;
  color: #000;
}

.landing-copy-inner p {
  margin: 0 0 1.4rem;
}

.landing-list {
  margin: 0 0 1rem 1.35rem;
  padding: 0;
}

.landing-list li {
  margin-bottom: 0.7rem;
}

.landing-consultation {
  margin-top: 2rem;
}

.landing-consultation h3 {
  margin: 0 0 0.4rem;
  font-family: Arial;
  font-size: 25px;
  font-weight: 500;
  color: #000;
}

.landing-book {
  min-height: 34px;
  padding: 0.35rem 0.95rem;
  font-size: 0.85rem;
  border-radius: 999px;
}

.page-hero .container,
.section-copy,
.highlight-card,
.benefit-panel,
.consultation-card,
.content-panel,
.contact-card,
.image-aside,
.feature-link-card,
.number-card {
  overflow: hidden;
}

@media (max-width: 1080px) {
  .issues-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .about-media-grid,
  .benefit-panel,
  .consultation-card,
  .contact-grid,
  .content-with-aside {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: none;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-divider {
    display: none;
  }

  .nav-list a,
  .nav-button {
    width: 100%;
    text-align: left;
  }

  .dropdown {
    position: static;
    min-width: 0;
    margin-top: 0.4rem;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    /* background: rgba(22, 33, 47, 0.04); */
    background: #00072d;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 0.6rem;
  }

  .dropdown a {
    color: #ffffff;
    background: transparent;
  }

  .dropdown a:hover,
  .dropdown a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
  }


  .has-dropdown.is-open .dropdown {
    display: grid;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-backdrop {
    inset: 0;
    border-radius: 0;
  }

  .hero-inner {
    padding: 4.5rem 0.5rem;
  }

  .split-cards {
    grid-template-columns: 1fr;
  }

  .contact-form .button {
    width: 100%;
  }

  .landing-copy .container::before {
    width: 320px;
    height: 320px;
    left: 50%;
    transform: translateX(-50%);
  }

  .landing-copy-inner {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 80px;
  }

  .brand-copy strong {
    font-size: 2.6rem;
  }

  .brand-logo {
    width: 64px;
    height: 64px;
  }

  .hero h1 {
    display: inline;
    width: auto;
    height: auto;
    font-size: 56px;
    line-height: 1.05;
  }

  .hero h2,
  .section-copy h3,
  .section-heading h3,
  .benefit-copy h3,
  .consultation-card h3 {
    font-size: 2.2rem;
  }

  .issues-grid {
    grid-template-columns: 1fr;
  }

  .hero h2,
  .hero-text {
    width: auto;
  }

  .hero h2 {
    font-size: 1.45rem;
  }

  .hero-text {
    font-size: 0.95rem;
  }

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

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

  .page-hero .container,
  .section-copy,
  .highlight-card,
  .benefit-panel,
  .consultation-card,
  .content-panel,
  .contact-card,
  .feature-link-card,
  .number-card {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .number-card {
    padding-top: 3.5rem;
    padding-left: 1.25rem;
  }

  .number-card > span {
    top: 1.1rem;
    left: 1.25rem;
  }

  .hero-actions .button,
  .consultation-card .button {
    width: 100%;
  }

  .landing-consultation h3 {
    font-size: 1.7rem;
  }
}

.CATextLink {
  text-decoration:underline;
}

.CATextLink:hover {
  text-decoration: underline;
  color:blue;
}

.CAImgAttribution {
    position: absolute;
    bottom: 8px;
    right: 15px;
    font-size: 4px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 6px;
    border-radius: 4px;
}

.contact-form button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.sticky-image {
  position: sticky;
  top: 100px;
}

.image-frame {
  overflow: hidden;
  border-radius: 22px;
}

.image-frame img {
  width: 100%;
  min-height: 320px;
  max-height: calc(100vh - 100px);
  object-fit: cover;
  display: block;
}


.image-aside {
  padding: 1rem;
  overflow: visible;
  align-self: stretch;
  position: static;
}

.article-list li::marker{
  font-size: 28px;
}

.contact-form label span::after {
  content: " *";
  color: #d60000;
  font-weight: 700;
}
.footer-branding {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-left: auto;
  text-align: right;
}

.footer-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.3;
}

.footer-text strong {
  display: block;
  margin-bottom: 0.15rem;
}

.footer-text em {
  display: block;
  white-space: nowrap;
}

.footer-logo {
  width: auto;
  object-fit: contain;
}