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

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
}

:root {
  --ink: #0f172a;
  --tide: #0f766e;
  --tide-deep: #115e59;
  --ember: #f97316;
  --sun: #f6c453;
  --foam: #dff3ef;
  --canvas: #fff9f2;
  --slate: #475569;
  --border: #cbd5e1;
  --white: #ffffff;
  --focus: #2563eb;
  --danger: #b42318;
  --success: #15803d;
  --font-brand: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--font-brand);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.site-shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 14px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  background: var(--canvas);
}

.site-header__inner {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-link {
  flex: 0 0 auto;
}

.brand-link img {
  width: 154px;
  height: auto;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-navigation a {
  position: relative;
  padding: 10px 0;
  color: var(--slate);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
}

.site-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--tide);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.site-navigation a:hover,
.site-navigation a[aria-current="page"] {
  color: var(--ink);
}

.site-navigation a:hover::after,
.site-navigation a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-main {
  min-height: calc(100svh - 153px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--tide);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 3px;
  background: var(--ember);
  content: "";
}

.construction__grid {
  display: grid;
  min-height: calc(100svh - 153px);
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr);
}

.construction__content {
  display: flex;
  max-width: 760px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(80px, 9vw, 140px) clamp(64px, 8vw, 120px) clamp(80px, 9vw, 140px) 0;
}

.construction h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(3.7rem, 6.5vw, 7rem);
  font-weight: 700;
}

.construction__intro {
  max-width: 590px;
  margin-bottom: 40px;
  color: var(--slate);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.action-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  border-radius: 6px;
  padding: 13px 22px;
  cursor: pointer;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button--primary {
  color: var(--white);
  background: var(--tide);
}

.button--primary:hover {
  background: var(--tide-deep);
  transform: translateY(-2px);
}

.text-link {
  border-bottom: 2px solid var(--tide);
  padding: 6px 0 3px;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover {
  color: var(--tide-deep);
}

.construction__visual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  color: var(--white);
  background: var(--tide);
}

.construction__pattern {
  position: absolute;
  inset: 0;
  background-color: var(--tide);
  background-image: url("../brand/oalee-orbit-pattern.svg?v=20260728-seamless");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 900px auto;
}

.construction__pattern::before {
  position: absolute;
  inset: 0;
  background: rgba(15, 118, 110, 0.88);
  content: "";
}

.construction__signature {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 64px;
  text-align: center;
}

.construction__signature img {
  width: min(78%, 420px);
  margin-bottom: 42px;
}

.construction__signature p {
  margin-bottom: 0;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.contact {
  padding: clamp(72px, 10vw, 130px) 0;
}

.contact__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.7fr) minmax(440px, 1fr);
  gap: clamp(70px, 10vw, 150px);
}

.contact__intro {
  position: sticky;
  top: 80px;
}

.contact h1 {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 6vw, 6rem);
}

.contact__intro > p:last-child {
  max-width: 470px;
  margin-bottom: 0;
  color: var(--slate);
  font-size: 1.12rem;
}

.contact__form-area {
  border-left: 1px solid var(--border);
  padding-left: clamp(50px, 6vw, 90px);
}

.contact form {
  display: grid;
  gap: 28px;
}

.form-field {
  display: grid;
  gap: 9px;
}

.form-field label {
  font-size: 0.92rem;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #aebdca;
  border-radius: 5px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--white);
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input {
  min-height: 52px;
}

.form-field textarea {
  min-height: 190px;
  resize: vertical;
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: var(--slate);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
}

.form-field [aria-invalid="true"] {
  border-color: var(--danger);
}

.form-consent {
  display: grid;
  align-items: start;
  grid-template-columns: 22px minmax(0, 1fr);
  column-gap: 12px;
}

.form-consent input {
  width: 20px;
  height: 20px;
  margin: 3px 0 0;
  accent-color: var(--tide);
}

.form-consent input[aria-invalid="true"] {
  outline: 2px solid var(--danger);
  outline-offset: 2px;
}

.form-consent label {
  color: var(--slate);
  font-size: 0.86rem;
  line-height: 1.6;
}

.form-consent a {
  color: var(--tide-deep);
  font-weight: 600;
}

.form-consent .field-error {
  grid-column: 2;
  margin-top: 8px;
}

.field-error {
  margin-bottom: 0;
  color: var(--danger);
  font-size: 0.86rem;
}

.form-alert {
  border-left: 4px solid var(--danger);
  margin-bottom: 28px;
  padding: 12px 16px;
  color: var(--danger);
  background: var(--white);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-success {
  display: flex;
  width: 100%;
  max-width: 600px;
  min-height: clamp(440px, 58svh, 620px);
  margin-inline: auto;
  padding: 24px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.form-success svg {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  fill: none;
  stroke: var(--success);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.form-success h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.form-success p {
  margin-bottom: 30px;
  color: var(--slate);
}

.form-success .text-link {
  align-self: center;
}

.legal {
  padding: clamp(72px, 9vw, 120px) 0;
}

.legal__article {
  width: min(100%, 900px);
}

.legal__header {
  border-bottom: 1px solid var(--border);
  margin-bottom: clamp(46px, 6vw, 72px);
  padding-bottom: clamp(38px, 5vw, 60px);
}

.legal__header h1 {
  max-width: 840px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
}

.legal__updated {
  margin-bottom: 22px;
  color: var(--tide-deep);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal__summary {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--slate);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.legal__body {
  max-width: 780px;
}

.legal__body section + section {
  margin-top: 46px;
}

.legal__body h2 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: -0.03em;
}

.legal__body h3 {
  margin: 28px 0 10px;
  font-size: 1.05rem;
}

.legal__body p,
.legal__body li {
  color: var(--slate);
}

.legal__body p:last-child {
  margin-bottom: 0;
}

.legal__body ul {
  display: grid;
  margin: 16px 0 0;
  padding-left: 1.25rem;
  gap: 9px;
}

.legal__body a {
  color: var(--tide-deep);
  font-weight: 600;
  text-underline-offset: 3px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.site-footer__inner {
  display: grid;
  min-height: 72px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
}

.site-footer p {
  margin-bottom: 0;
  font-size: 0.78rem;
}

.site-footer__legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  text-decoration: none;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: var(--white);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .construction__grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .construction__content {
    width: min(calc(100% - 64px), var(--shell));
    max-width: none;
    margin-inline: auto;
    padding: 88px 0;
  }

  .construction h1 {
    max-width: 820px;
    font-size: clamp(3.5rem, 9vw, 6rem);
  }

  .construction__visual {
    min-height: 470px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .contact__intro {
    position: static;
  }

  .contact__form-area {
    border-top: 1px solid var(--border);
    border-left: 0;
    padding-top: 54px;
    padding-left: 0;
  }

  .site-footer__inner {
    grid-template-columns: 1fr auto;
  }

  .site-footer__legal {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    padding-bottom: 18px;
  }
}

@media (max-width: 600px) {
  .site-shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .site-header__inner {
    min-height: 78px;
    gap: 18px;
  }

  .brand-link img {
    width: 140px;
  }

  .site-navigation {
    gap: 18px;
  }

  .site-navigation a {
    font-size: 0.86rem;
  }

  .site-main {
    min-height: calc(100svh - 148px);
  }

  .construction__content {
    width: min(calc(100% - 40px), var(--shell));
    padding: 68px 0 72px;
  }

  .construction h1 {
    margin-bottom: 24px;
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .construction__intro {
    margin-bottom: 34px;
  }

  .action-row {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .construction__visual {
    min-height: 360px;
  }

  .construction__signature {
    padding: 54px;
  }

  .construction__signature img {
    margin-bottom: 30px;
  }

  .contact {
    padding: 68px 0 80px;
  }

  .contact h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .contact__grid {
    gap: 42px;
  }

  .contact__form-area {
    padding-top: 42px;
  }

  .legal {
    padding: 64px 0 76px;
  }

  .legal__header h1 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  .legal__body section + section {
    margin-top: 38px;
  }

  .site-footer__inner {
    min-height: 0;
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 18px;
  }

  .site-footer__legal {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
    gap: 6px 18px;
    padding-bottom: 2px;
  }

  .site-footer__tagline {
    grid-row: 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
