:root {
  color-scheme: light;
  --teal: #007888;
  --teal-bright: #0b8998;
  --teal-dark: #063a42;
  --teal-deep: #032a31;
  --red: #c84436;
  --red-dark: #a9342a;
  --club-plum: #24102f;
  --club-apricot: #ffc17d;
  --cream: #f4f0e8;
  --paper: #fbfaf6;
  --white: #ffffff;
  --ink: #122f34;
  --muted: #5c7073;
  --line: rgba(18, 47, 52, 0.16);
  --line-inverse: rgba(255, 255, 255, 0.17);
  --shadow: 0 26px 80px rgba(6, 58, 66, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Text", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(100% - 48px, 1180px); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(0, 120, 136, 0.13);
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(18px);
}
.nav {
  display: grid;
  min-height: 82px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 9px;
  color: var(--teal);
  text-decoration: none;
}
.brand img { width: 148px; height: auto; }
.nav-links { display: flex; gap: 30px; }
.nav-links a,
.footer-nav a {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition: color 160ms ease;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--red); }
.nav-contact {
  display: inline-flex;
  min-height: 40px;
  padding: 0 15px;
  justify-self: end;
  align-items: center;
  gap: 16px;
  border-radius: 999px;
  background: var(--teal-dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 750;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}
.nav-contact:hover,
.nav-contact:focus-visible { background: var(--red); transform: translateY(-1px); }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vw, 126px) 0 clamp(88px, 11vw, 150px);
  background:
    radial-gradient(circle at 6% 12%, rgba(200, 68, 54, 0.09), transparent 23rem),
    linear-gradient(180deg, var(--paper), var(--cream));
}
.hero::after {
  position: absolute;
  right: -11rem;
  bottom: -15rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(0, 120, 136, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(0, 120, 136, 0.025), 0 0 0 10rem rgba(0, 120, 136, 0.02);
  content: "";
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: center;
}
.eyebrow,
.section-label {
  display: flex;
  margin: 0 0 23px;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow img,
.section-label img { width: 26px; height: 26px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, Arial, sans-serif;
}
h1 {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--teal-dark);
  font-size: clamp(3.35rem, 6.8vw, 6.55rem);
  font-weight: 710;
  letter-spacing: -0.052em;
  line-height: 0.97;
}
h1 span { color: var(--red); }
.hero-intro {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.72;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 0.87rem;
  font-weight: 760;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--teal); color: var(--white); }
.button-primary:hover,
.button-primary:focus-visible { background: var(--teal-dark); }
.button-secondary { border-color: rgba(0, 120, 136, 0.27); color: var(--teal-dark); }
.button-secondary:hover,
.button-secondary:focus-visible { border-color: var(--red); color: var(--red-dark); }
.hero-tags { display: flex; margin-top: 38px; flex-wrap: wrap; gap: 8px; }
.hero-tags span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #657a7d;
  font-size: 0.72rem;
  font-weight: 650;
}

.brand-panel {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  padding: 34px;
  border-radius: 34px 34px 34px 8px;
  background:
    radial-gradient(circle at 70% 16%, rgba(255, 255, 255, 0.13), transparent 15rem),
    linear-gradient(155deg, var(--teal-bright), var(--teal-dark) 68%, var(--teal-deep));
  box-shadow: var(--shadow);
  color: var(--white);
}
.brand-panel::after {
  position: absolute;
  top: 58%;
  left: 44%;
  width: 21rem;
  height: 21rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}
.brand-panel-mark {
  position: relative;
  z-index: 1;
  display: grid;
  width: 172px;
  height: 172px;
  margin: 4px auto 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  place-items: center;
}
.brand-panel-mark img { width: 116px; }
.brand-panel-copy { position: relative; z-index: 1; }
.brand-panel-copy > p {
  max-width: 300px;
  margin-bottom: 18px;
  font-size: 1.22rem;
  font-weight: 690;
  letter-spacing: -0.02em;
  line-height: 1.38;
}
.brand-panel ol { margin: 0; padding: 0; list-style: none; }
.brand-panel li {
  display: grid;
  padding: 13px 0;
  grid-template-columns: 35px 1fr;
  gap: 8px;
  border-top: 1px solid var(--line-inverse);
}
.brand-panel li span { color: #9edbe1; font-size: 0.66rem; font-weight: 800; }
.brand-panel li strong { font-size: 0.79rem; font-weight: 650; }

.section { padding: clamp(82px, 10vw, 136px) 0; }
.section-grid { display: grid; grid-template-columns: minmax(250px, 0.82fr) minmax(0, 1.18fr); gap: clamp(55px, 9vw, 132px); }
.section-heading h2 {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--teal-dark);
  font-size: clamp(2.35rem, 4.8vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.04;
}
.company { background: var(--teal-dark); color: var(--white); }
.company .section-label { color: #9bd8de; }
.company .section-heading h2 { color: var(--white); }
.company-copy { padding-top: 44px; color: #b9d1d3; font-size: 1.01rem; }
.company-copy .lead { color: var(--white); font-size: clamp(1.15rem, 2vw, 1.33rem); line-height: 1.58; }
.principles {
  display: grid;
  margin-top: 78px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-inverse);
  border-bottom: 1px solid var(--line-inverse);
}
.principles article { padding: 34px clamp(20px, 3vw, 39px) 40px; }
.principles article + article { border-left: 1px solid var(--line-inverse); }
.principles span { color: #83c6cd; font-size: 0.7rem; font-weight: 800; }
.principles h3 { margin: 28px 0 10px; color: var(--white); font-size: 1.2rem; letter-spacing: -0.015em; }
.principles p { margin-bottom: 0; color: #a9c6c8; font-size: 0.88rem; }

.products { background: var(--cream); }
.product-heading { margin-bottom: 46px; }
.product-heading .section-label { margin-bottom: 13px; }
.product-heading h2 { max-width: 760px; }
.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(0, 120, 136, 0.17);
  border-radius: 28px 28px 28px 8px;
  grid-template-columns: minmax(255px, 0.72fr) minmax(0, 1.28fr);
  background: var(--paper);
  box-shadow: 0 20px 70px rgba(6, 58, 66, 0.09);
}
.product-brand {
  display: flex;
  min-height: 485px;
  padding: 38px;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 80% 24%, rgba(255, 193, 125, 0.2), transparent 12rem),
    linear-gradient(155deg, #371842, var(--club-plum));
  color: var(--white);
}
.made-by { display: flex; align-items: center; gap: 9px; color: #c3e0e2; font-size: 0.7rem; font-weight: 720; letter-spacing: 0.08em; text-transform: uppercase; }
.made-by img { width: 27px; height: 27px; }
.product-icon {
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 27px;
  box-shadow: 0 18px 42px rgba(19, 6, 26, 0.35);
}
.product-name { margin-bottom: 3px; font-size: 1.18rem; font-weight: 760; }
.product-type { margin-bottom: 0; color: #b8d4d6; font-size: 0.76rem; }
.product-content { padding: clamp(40px, 6vw, 72px); }
.product-content h3 {
  max-width: 590px;
  margin-bottom: 24px;
  color: var(--teal-dark);
  font-size: clamp(2rem, 4vw, 3.65rem);
  font-weight: 690;
  letter-spacing: -0.04em;
  line-height: 1.07;
}
.product-content > p { max-width: 650px; color: var(--muted); font-size: 1rem; }
.product-content ul { display: grid; margin: 34px 0; padding: 0; list-style: none; }
.product-content li { padding: 13px 0 13px 24px; border-top: 1px solid var(--line); color: #2f4d52; font-size: 0.9rem; }
.product-content li::before { display: inline-block; width: 7px; height: 7px; margin: 0 17px 1px -24px; border-radius: 50%; background: var(--red); content: ""; }
.product-links { display: flex; flex-wrap: wrap; gap: 9px; }
.product-links a {
  padding: 9px 13px;
  border: 1px solid rgba(0, 120, 136, 0.22);
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 720;
  text-decoration: none;
}
.product-links a:hover,
.product-links a:focus-visible { border-color: var(--red); color: var(--red-dark); }
.disclaimer { max-width: 800px; margin: 23px 0 0; color: #708184; font-size: 0.73rem; }

.direction { background: var(--paper); }
.direction-list { border-top: 1px solid var(--line); }
.direction-list article {
  display: grid;
  padding: 28px 0;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}
.direction-list article > span { padding-top: 5px; color: var(--red); font-size: 0.68rem; font-weight: 820; }
.direction-list h3 { margin: 0 0 5px; color: var(--teal-dark); font-size: 1.18rem; letter-spacing: -0.01em; }
.direction-list p { margin-bottom: 0; color: var(--muted); font-size: 0.9rem; }

.contact-section { padding-top: 22px; background: var(--paper); }
.contact-panel {
  display: grid;
  overflow: hidden;
  padding: clamp(38px, 6vw, 70px);
  border-radius: 30px 30px 30px 8px;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(45px, 8vw, 100px);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.13), transparent 17rem),
    var(--red);
  color: var(--white);
}
.contact-heading > img { width: 58px; margin-bottom: 26px; }
.contact-panel .section-label { margin-bottom: 12px; color: #f7c7c1; }
.contact-panel h2 { margin-bottom: 18px; color: var(--white); font-size: clamp(2.35rem, 4vw, 3.9rem); font-weight: 700; letter-spacing: -0.042em; line-height: 1.04; }
.contact-heading > p:last-child { color: #f5d6d2; }
.contact-options { border-top: 1px solid rgba(255, 255, 255, 0.23); }
.contact-options a { display: grid; padding: 25px 2px; grid-template-columns: 1fr auto; border-bottom: 1px solid rgba(255, 255, 255, 0.23); text-decoration: none; }
.contact-options span { color: #f3cbc7; font-size: 0.75rem; }
.contact-options strong { margin-top: 4px; grid-column: 1; font-size: clamp(1rem, 2vw, 1.18rem); font-weight: 720; }
.contact-options i { grid-column: 2; grid-row: 1 / span 2; align-self: center; font-style: normal; transition: transform 160ms ease; }
.contact-options a:hover i,
.contact-options a:focus-visible i { transform: translate(2px, -2px); }

.site-footer { padding: 56px 0; background: var(--teal-deep); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: start; }
.brand-light { color: var(--white); }
.brand-light img { width: 150px; }
.footer-brand > p { margin: 15px 0 0; color: #8fb4b8; font-size: 0.73rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-nav a { color: #a8c6c9; }
.footer-nav a:hover,
.footer-nav a:focus-visible { color: var(--white); }
.copyright { margin: 0; color: #769fa3; font-size: 0.7rem; }

a:focus-visible { outline: 3px solid rgba(200, 68, 54, 0.4); outline-offset: 4px; }

@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero-grid,
  .section-grid,
  .contact-panel { grid-template-columns: 1fr; }
  .brand-panel { max-width: 570px; min-height: 490px; }
  .company-copy { padding-top: 0; }
  .principles { grid-template-columns: 1fr; }
  .principles article + article { border-top: 1px solid var(--line-inverse); border-left: 0; }
  .product-card { grid-template-columns: 1fr; }
  .product-brand { min-height: 300px; }
}

@media (max-width: 580px) {
  .container { width: min(100% - 30px, 1180px); }
  .nav { min-height: 72px; }
  .brand img { width: 124px; }
  .nav-contact { min-height: 38px; padding: 0 13px; }
  .hero { padding-top: 68px; }
  h1 { font-size: clamp(3.05rem, 15vw, 4.8rem); }
  .hero-actions,
  .button { width: 100%; }
  .button { justify-content: space-between; }
  .hero-tags { margin-top: 28px; }
  .brand-panel { min-height: 430px; padding: 27px; border-radius: 25px 25px 25px 7px; }
  .brand-panel-mark { width: 140px; height: 140px; margin-bottom: 38px; }
  .brand-panel-mark img { width: 92px; }
  .product-card { border-radius: 22px 22px 22px 7px; }
  .product-brand { min-height: 265px; padding: 28px; }
  .product-content { padding: 33px 24px; }
  .contact-panel { padding: 32px 23px; border-radius: 23px 23px 23px 7px; }
  .contact-options strong { font-size: 0.92rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
