:root {
  --salt-white: #f7f9f8;
  --salt-soft: #eef3f1;
  --atlantic: #0b3a5c;
  --atlantic-deep: #072a44;
  --sea-glass: #7eb8b0;
  --sea-glass-deep: #4a8f87;
  --coral: #e8a090;
  --coral-deep: #d47868;
  --brass: #c4a574;
  --brass-soft: #d4bc94;
  --ink: #1a2b34;
  --ink-muted: #5a6d78;
  --paper: #fbfcfb;
  --shadow: 0 12px 40px rgba(11, 58, 92, 0.08);
  --radius: 18px;
  --font-serif: "Libre Baskerville", "Times New Roman", serif;
  --font-sans: "Source Sans 3", "Segoe UI", sans-serif;
  --header-h: 4.5rem;
  --max: 1120px;
  --wide: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(126, 184, 176, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(232, 160, 144, 0.12), transparent 50%),
    linear-gradient(180deg, var(--salt-white) 0%, var(--salt-soft) 100%);
  min-height: 100vh;
}

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

a {
  color: var(--atlantic);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--coral-deep);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.25;
  color: var(--atlantic-deep);
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1.1em;
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.l-wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.l-wrap--wide {
  width: min(100% - 2.5rem, var(--wide));
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 249, 248, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196, 165, 116, 0.35);
}

.header__inner {
  width: min(100% - 1.5rem, var(--wide));
  margin-inline: auto;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0;
}

.header__toggle {
  justify-self: start;
  display: none;
  background: transparent;
  border: 1px solid var(--brass);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--atlantic);
  cursor: pointer;
}

.header__brand {
  justify-self: center;
  text-align: center;
  text-decoration: none;
  color: var(--atlantic-deep);
}

.header__brand-name {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  display: block;
  line-height: 1.2;
}

.header__brand-mark {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sea-glass-deep);
  font-family: var(--font-sans);
}

.header__cta {
  justify-self: end;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  justify-content: center;
  padding: 0 0 0.85rem;
  width: min(100% - 1.5rem, var(--wide));
  margin-inline: auto;
}

.nav a {
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--ink-muted);
  font-weight: 500;
}

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

.nav__panel {
  display: contents;
}

@media (max-width: 900px) {
  .header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .header__toggle {
    display: inline-flex;
  }

  .header__brand {
    justify-self: center;
  }

  .nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 1rem;
    gap: 0.5rem;
  }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--primary {
  background: var(--atlantic);
  color: #fff;
}

.btn--primary:hover {
  background: var(--coral-deep);
  color: #fff;
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  border-color: var(--brass);
  color: var(--atlantic);
}

.btn--ghost:hover {
  background: rgba(232, 160, 144, 0.15);
  color: var(--atlantic-deep);
}

/* Cards */
.card {
  background: var(--paper);
  border: 1px solid var(--brass-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(11, 58, 92, 0.12);
}

.card__media {
  border-radius: 14px;
  overflow: hidden;
  margin: -0.35rem -0.35rem 1.1rem;
  aspect-ratio: 16 / 10;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__label {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--sea-glass-deep);
  margin-bottom: 0.35rem;
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

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

.card__meta {
  font-size: 0.88rem;
  color: var(--ink-muted);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section--tight {
  padding: 3rem 0;
}

.section__eyebrow {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--brass);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.45rem);
  max-width: 18ch;
}

.section__lead {
  max-width: 42rem;
  color: var(--ink-muted);
  font-size: 1.08rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

@media (max-width: 900px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Hero – asymmetric magazine layout */
.hero {
  padding: 3.5rem 0 2rem;
  overflow: hidden;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: end;
  width: min(100% - 2.5rem, var(--wide));
  margin-inline: auto;
}

.hero__copy {
  padding-bottom: 1.5rem;
}

.hero__kicker {
  font-family: var(--font-serif);
  color: var(--sea-glass-deep);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 12ch;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.hero__text {
  font-size: 1.12rem;
  color: var(--ink-muted);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__visual {
  position: relative;
  min-height: 420px;
}

.hero__img-main {
  width: 88%;
  margin-left: auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--brass-soft);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

.hero__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__img-float {
  position: absolute;
  left: 0;
  bottom: 8%;
  width: 48%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--brass);
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4;
}

.hero__img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero__layout {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 320px;
    order: -1;
  }

  .hero__img-main {
    width: 100%;
    aspect-ratio: 16 / 11;
  }

  .hero__img-float {
    width: 42%;
    bottom: -6%;
  }
}

/* Split / magazine bands */
.band {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.band--reverse {
  grid-template-columns: 1.1fr 1fr;
}

.band--reverse .band__media {
  order: 2;
}

.band__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--brass-soft);
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4;
}

.band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .band,
  .band--reverse {
    grid-template-columns: 1fr;
  }

  .band--reverse .band__media {
    order: 0;
  }
}

/* Page hero compact */
.page-hero {
  padding: 3rem 0 1.5rem;
  border-bottom: 1px solid rgba(196, 165, 116, 0.3);
  margin-bottom: 2rem;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  max-width: 18ch;
}

.page-hero p {
  max-width: 40rem;
  color: var(--ink-muted);
}

/* Quote / reviews */
.quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--atlantic-deep);
  margin-bottom: 1rem;
}

.quote__meta {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.quote__service {
  display: block;
  margin-top: 0.25rem;
  color: var(--sea-glass-deep);
  font-size: 0.85rem;
}

/* Forms */
.form {
  display: grid;
  gap: 1.15rem;
  max-width: 36rem;
}

.form__row {
  display: grid;
  gap: 0.4rem;
}

.form__row--2 {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .form__row--2 {
    grid-template-columns: 1fr;
  }
}

label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--atlantic);
}

input,
select,
textarea {
  font: inherit;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(11, 58, 92, 0.22);
  background: #fff;
  color: var(--ink);
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--sea-glass);
  outline-offset: 1px;
}

.form__error {
  color: var(--coral-deep);
  font-size: 0.85rem;
  display: none;
}

.form__error.is-visible {
  display: block;
}

.form__status {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  display: none;
  font-size: 0.95rem;
}

.form__status.is-success {
  display: block;
  background: rgba(126, 184, 176, 0.25);
  color: var(--atlantic-deep);
  border: 1px solid var(--sea-glass);
}

.form__status.is-error {
  display: block;
  background: rgba(232, 160, 144, 0.25);
  color: var(--atlantic-deep);
  border: 1px solid var(--coral);
}

.is-invalid {
  border-color: var(--coral-deep) !important;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--brass-soft);
  border-radius: var(--radius);
  background: var(--paper);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th, td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(196, 165, 116, 0.25);
  vertical-align: top;
}

th {
  font-family: var(--font-serif);
  color: var(--atlantic);
  background: rgba(126, 184, 176, 0.12);
}

/* Legal prose */
.prose {
  max-width: 44rem;
}

.prose h2 {
  font-size: 1.45rem;
  margin-top: 2rem;
}

.prose ul {
  padding-left: 1.2rem;
}

.prose li {
  margin-bottom: 0.45rem;
}

/* Footer */
.footer {
  margin-top: 4rem;
  background: var(--atlantic-deep);
  color: rgba(247, 249, 248, 0.88);
  padding: 3.5rem 0 2rem;
}

.footer a {
  color: var(--sea-glass);
  text-decoration: none;
}

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

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(196, 165, 116, 0.3);
}

.footer__label {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--brass-soft);
  margin-bottom: 0.85rem;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.footer__brand {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer__address {
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(247, 249, 248, 0.75);
}

.footer__newsletter p {
  font-size: 0.92rem;
  color: rgba(247, 249, 248, 0.75);
  margin-bottom: 0.85rem;
}

.footer__newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__newsletter-form input {
  flex: 1 1 160px;
  border: 1px solid rgba(196, 165, 116, 0.45);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.footer__bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(247, 249, 248, 0.55);
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* Cookie banner */
.cookie {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 200;
  max-width: 520px;
  background: var(--paper);
  border: 1px solid var(--brass);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.35rem;
  display: none;
}

.cookie.is-visible {
  display: block;
}

.cookie p {
  font-size: 0.92rem;
  margin-bottom: 1rem;
  color: var(--ink-muted);
}

.cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.35s; }

.parallax-slow {
  will-change: transform;
}

/* Pricing rows */
.rate-row {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(196, 165, 116, 0.35);
}

.rate-row strong {
  font-family: var(--font-serif);
  color: var(--atlantic);
  font-size: 1.15rem;
}

.rate-row__price {
  font-weight: 600;
  color: var(--sea-glass-deep);
  text-align: right;
}

@media (max-width: 600px) {
  .rate-row {
    grid-template-columns: 1fr;
  }

  .rate-row__price {
    text-align: left;
  }
}

/* Process steps */
.steps {
  counter-reset: step;
  display: grid;
  gap: 1.25rem;
}

.steps__item {
  position: relative;
  padding-left: 3.2rem;
}

.steps__item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: var(--atlantic);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 0.95rem;
}

/* 404 */
.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.error-page h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.list-plain {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  margin-bottom: 0.45rem;
  padding-left: 1.1rem;
  position: relative;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--sea-glass);
}

.contact-aside {
  background: var(--paper);
  border: 1px solid var(--brass-soft);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-aside h2 {
  font-size: 1.2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 800px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.tag {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sea-glass-deep);
  margin-right: 0.5rem;
}

.post-cover {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--brass-soft);
  margin: 1.5rem 0 2rem;
  aspect-ratio: 21 / 9;
}

.post-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story {
  background: var(--paper);
  border: 1px solid var(--brass-soft);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-top: 2rem;
}

.story h3 {
  font-size: 1.3rem;
}
