:root {
  --ink: #0b1f2a;
  --ink-soft: #2a4450;
  --mist: #e4e9ef;
  --paper: #f4f6f8;
  --teal: #0d7377;
  --teal-deep: #095456;
  --line: rgba(11, 31, 42, 0.12);
  --white: #ffffff;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", sans-serif;
  --container: min(1120px, calc(100% - 3rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 246, 248, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.brand span {
  color: var(--teal);
  font-weight: 400;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s;
}

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

.nav-cta {
  color: var(--teal) !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--paper);
  padding: 1.5rem;
  flex-direction: column;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.6rem);
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.close-menu {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: flex-end;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 31, 42, 0.25) 0%, rgba(11, 31, 42, 0.15) 40%, rgba(11, 31, 42, 0.88) 100%),
    radial-gradient(50% 40% at 50% 20%, rgba(13, 115, 119, 0.25), transparent 70%);
}

.hero-content {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: 4rem 0 5rem;
  display: grid;
  gap: 2.5rem;
}

.hero-brand {
  text-align: center;
  animation: rise 0.9s ease both;
}

.hero-brand .name {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-brand .entity {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.hero-copy {
  display: grid;
  gap: 1.5rem;
  max-width: 640px;
  animation: rise 0.9s ease 0.15s both;
}

.hero-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border: 1px solid var(--teal);
}

.btn-primary:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  border-color: var(--white);
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-mist {
  background: var(--mist);
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.015em;
  max-width: 820px;
}

.section-lede {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.65;
}

.split-intro {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .split-intro {
    grid-template-columns: 160px 1fr;
    gap: 3rem;
  }
}

.principles {
  display: grid;
  gap: 2.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 800px) {
  .principles {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.principle h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.principle p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 320px;
}

.look-list {
  border-top: 1px solid var(--line);
}

.look-list li {
  list-style: none;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.feature-band {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: flex-end;
}

.feature-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-band .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 31, 42, 0.88) 0%, rgba(11, 31, 42, 0.45) 55%, rgba(11, 31, 42, 0.1) 100%);
}

.feature-band .inner {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: 3.5rem 0;
  max-width: 560px;
  margin-left: max(1.5rem, calc((100% - min(1120px, calc(100% - 3rem))) / 2));
}

.feature-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0.75rem 0 1rem;
}

.feature-band p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.cta-band {
  display: grid;
  gap: 1.5rem;
  align-items: end;
}

@media (min-width: 800px) {
  .cta-band {
    grid-template-columns: 1fr auto;
    gap: 3rem;
  }
}

.cta-band p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.35;
  max-width: 560px;
}

.btn-ink {
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
}

.btn-ink:hover {
  background: var(--teal);
  border-color: var(--teal);
}

/* Page hero (inner) */
.page-hero {
  padding: clamp(4rem, 10vw, 7rem) 0 3rem;
  background: var(--mist);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 0.75rem;
}

.prose {
  max-width: 720px;
}

.prose p + p {
  margin-top: 1.25rem;
}

.prose p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.steps {
  display: grid;
  gap: 0;
  margin-top: 2rem;
}

.step {
  display: grid;
  gap: 0.75rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}

@media (min-width: 700px) {
  .step {
    grid-template-columns: 80px 1fr;
    gap: 2rem;
  }
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-block a {
  color: var(--teal);
  border-bottom: 1px solid transparent;
}

.contact-block a:hover {
  border-color: var(--teal);
}

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

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(13, 115, 119, 0.35);
  border-color: var(--teal);
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.7fr 0.9fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-legal {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 799px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: 680px;
  }

  .feature-band .inner {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    width: auto;
  }
}
