@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@500;600&display=swap');

:root {
  --ink: #18353b;
  --muted: #557079;
  --teal: #176c72;
  --teal-dark: #0e4d55;
  --sea: #e7f3f2;
  --sand: #f7f3eb;
  --white: #ffffff;
  --line: #d6e4e2;
  --shadow: 0 18px 45px rgba(16, 59, 65, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); text-decoration: underline; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 {
  margin: 0 0 .65em;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.12;
}
h1 { font-size: clamp(2.5rem, 6vw, 5.2rem); letter-spacing: -.035em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -.025em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
p { margin: 0 0 1.15rem; }
ul, ol { padding-left: 1.4rem; }

button,
a > button {
  min-height: 46px;
  padding: .78rem 1.25rem;
  border: 1px solid var(--teal);
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font: 600 .95rem/1 Inter, sans-serif;
  cursor: pointer;
}
button:hover, a > button:hover { background: var(--teal-dark); border-color: var(--teal-dark); }

body > #root > div > nav {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  box-shadow: 0 4px 20px rgba(18, 62, 68, .06);
}
body > #root > div > nav > div { max-width: 1240px; margin: 0 auto; padding: .65rem 1.5rem; }
body > #root > div > nav > div > div { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
body > #root > div > nav > div > div > a > div { display: flex; align-items: center; gap: .75rem; }
body > #root > div > nav img { width: 70px; height: 70px; object-fit: contain; }
body > #root > div > nav span { display: block; color: var(--ink); line-height: 1.15; }
body > #root > div > nav span:first-of-type { font-weight: 700; }
body > #root > div > nav > div > div > div:nth-child(2) { display: flex; align-items: center; gap: 1.05rem; font-size: .9rem; }
body > #root > div > nav > div > div > div:nth-child(2) > div { display: none; }
body > #root > div > nav > div > div > button[aria-label] { display: none; }

body > #root > div > nav + div {
  position: sticky;
  top: 0;
  z-index: 15;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 251, 251, .96);
}
body > #root > div > nav + div nav { display: flex; justify-content: center; gap: .35rem; padding: .45rem 1rem; }
body > #root > div > nav + div button { min-height: 34px; padding: .45rem .8rem; border: 0; background: transparent; color: var(--muted); }

section { position: relative; padding: clamp(3.8rem, 8vw, 7.5rem) 1.5rem; overflow: hidden; }
section:nth-of-type(odd) { background: var(--white); }
section:nth-of-type(even) { background: var(--sea); }
section > div:not(:first-child),
section > div:only-child { position: relative; z-index: 2; max-width: 1180px; margin: 0 auto; }
section p { max-width: 760px; color: var(--muted); font-size: 1.05rem; }
section h2 + div { width: 70px; height: 3px; margin: 1rem 0 1.5rem; background: var(--teal); }

body > #root > div > section:first-of-type {
  min-height: min(760px, 82vh);
  display: grid;
  align-items: center;
  color: var(--white);
  background: var(--teal-dark);
}
body > #root > div > section:first-of-type > div:first-child:not(:only-child) { position: absolute; inset: 0; z-index: 0; max-width: none; }
body > #root > div > section:first-of-type > div:first-child:not(:only-child) > img { width: 100%; height: 100%; object-fit: cover; }
body > #root > div > section:first-of-type > div:first-child:not(:only-child)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,47,53,.92), rgba(12,71,76,.68) 55%, rgba(12,71,76,.25));
}
body > #root > div > section:first-of-type h1,
body > #root > div > section:first-of-type h2 { color: var(--white); max-width: 900px; }
body > #root > div > section:first-of-type p { color: rgba(255,255,255,.9); max-width: 700px; font-size: clamp(1.05rem, 2vw, 1.3rem); }
body > #root > div > section:first-of-type span { display: inline-block; margin-bottom: 1rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
body > #root > div > section:first-of-type a { color: var(--white); }
body > #root > div > section:first-of-type button { margin: .35rem .5rem .35rem 0; background: var(--white); border-color: var(--white); color: var(--teal-dark); }

section > div > div { max-width: 1180px; margin-left: auto; margin-right: auto; }
section > div > div > div { margin-bottom: 1.5rem; }
section img:not([alt*="logo" i]) { border-radius: 18px; box-shadow: var(--shadow); }
blockquote { max-width: 900px; margin: 1.5rem auto; font: 500 clamp(1.4rem, 3vw, 2.25rem)/1.4 "Playfair Display", Georgia, serif; }

article, main {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 6rem) 1.5rem;
}
article h2, article h3, main h2, main h3 { margin-top: 1.8em; }
article img, main img { width: 100%; margin: 2rem 0; border-radius: 16px; box-shadow: var(--shadow); }

footer {
  padding: 4rem 1.5rem 2rem;
  border-top: 1px solid var(--line);
  background: #102f35;
  color: rgba(255,255,255,.82);
}
footer > div { max-width: 1180px; margin: 0 auto; }
footer h2, footer h3, footer h4 { color: var(--white); }
footer a { color: #bfe4e2; }
footer img { width: 90px; max-height: 90px; object-fit: contain; }
footer > div > div { display: flex; flex-wrap: wrap; gap: 1.25rem 2.5rem; margin-bottom: 1.5rem; }

table { width: 100%; border-collapse: collapse; }
th, td { padding: .75rem; border: 1px solid var(--line); text-align: left; }

@media (min-width: 760px) {
  section > div > div > div:has(> h3) { padding: 1.4rem; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.78); }
  section > div > div:has(> div > h3) { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
}

@media (max-width: 900px) {
  body > #root > div > nav > div > div { align-items: flex-start; flex-direction: column; }
  body > #root > div > nav > div > div > div:nth-child(2) { width: 100%; flex-wrap: wrap; gap: .55rem 1rem; }
  body > #root > div > nav img { width: 56px; height: 56px; }
  body > #root > div > nav button { min-height: 38px; padding: .55rem .85rem; }
  body > #root > div > nav + div { display: none; }
  body > #root > div > section:first-of-type { min-height: 620px; }
  section { padding-left: 1.15rem; padding-right: 1.15rem; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  h1 { font-size: clamp(2.25rem, 12vw, 3.4rem); }
  body > #root > div > nav > div { padding: .6rem 1rem; }
  body > #root > div > nav > div > div > div:nth-child(2) > a[href^="tel:"] { display: none; }
  button, a > button { width: 100%; }
  body > #root > div > section:first-of-type { min-height: 560px; }
  body > #root > div > section:first-of-type > div:first-child:not(:only-child)::after { background: rgba(7,47,53,.82); }
  footer > div > div { display: block; }
}
