:root {
  --chalk: #f7f5f0;
  --chalk-warm: #f0ebe3;
  --teal: #5b8a8a;
  --teal-deep: #3f6b6b;
  --coral: #c47b6a;
  --beige: #d4c4a8;
  --navy: #1a2744;
  --navy-soft: #243556;
  --ink: #1a2744;
  --text: #2a3348;
  --muted: #5c6578;
  --white: #fffdf9;
  --shadow: 0 10px 30px rgba(26, 39, 68, 0.08);
  --radius: 14px;
  --radius-pill: 999px;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Source Sans 3", "Segoe UI", sans-serif;
  --header-h: 4.25rem;
  --max: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(91, 138, 138, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(196, 123, 106, 0.1), transparent 50%),
    linear-gradient(180deg, var(--chalk) 0%, var(--chalk-warm) 45%, var(--beige) 160%);
  min-height: 100vh;
}

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

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

a:hover {
  color: var(--navy);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.wrap--narrow {
  width: min(100% - 2.5rem, 44rem);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(247, 245, 240, 0.78);
  border-bottom: 1px solid rgba(26, 39, 68, 0.08);
}

.site-header__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__brand {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.site-header__brand:hover {
  color: var(--teal-deep);
}

.site-header__toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(26, 39, 68, 0.2);
  border-radius: 8px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.site-header__toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--navy);
}

.site-header__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.15rem 1.1rem;
  margin: 0;
  padding: 0;
}

.site-header__list a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  position: relative;
}

.site-header__list a:not(.site-header__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2em;
  width: 100%;
  height: 1px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.site-header__list a:not(.site-header__cta):hover::after {
  transform: scaleX(1);
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--navy);
  color: var(--white) !important;
  transition: background 0.3s var(--ease);
}

.site-header__cta:hover {
  background: var(--teal);
}

/* Buttons & links */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.25s var(--ease);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}

.btn--navy:hover {
  background: var(--teal);
  color: var(--white);
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
}

.btn--teal:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 253, 249, 0.45);
  color: var(--white);
}

.cookie-banner .btn--ghost {
  border-color: rgba(26, 39, 68, 0.25);
  color: var(--navy);
}

.btn--ghost:hover {
  background: rgba(255, 253, 249, 0.1);
}

.text-link {
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  background-image: linear-gradient(var(--coral), var(--coral));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 0.35s var(--ease);
}

.text-link:hover {
  background-size: 100% 1px;
  color: var(--navy);
}

/* Cards */
.card {
  background: var(--white);
  border: 1px solid rgba(26, 39, 68, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(26, 39, 68, 0.12);
}

.card__media {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
}

.card__body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.card__meta {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 0.4rem;
}

.card--tint {
  background: rgba(91, 138, 138, 0.1);
}

.card--beige {
  background: rgba(212, 196, 168, 0.35);
}

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

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

.section__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.65rem;
}

.section__lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 38rem;
}

.section__head {
  margin-bottom: 2.25rem;
  max-width: 40rem;
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Home hero — asymmetric magazine */
.hero-home {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem 3rem;
  align-items: end;
  padding: 3.5rem 0 4rem;
  min-height: calc(100vh - var(--header-h));
}

.hero-home__copy {
  padding-bottom: 1.5rem;
}

.hero-home__brand {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.05;
}

.hero-home__headline {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--text);
  max-width: 28rem;
  margin-bottom: 1.5rem;
  line-height: 1.45;
}

.hero-home__support {
  color: var(--muted);
  max-width: 28rem;
  margin-bottom: 2rem;
}

.hero-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
}

.hero-home__visual {
  position: relative;
  min-height: 28rem;
}

.hero-home__img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) var(--radius) 4rem;
  border: 1px solid rgba(26, 39, 68, 0.12);
  box-shadow: var(--shadow);
  will-change: transform;
}

.hero-home__caption {
  position: absolute;
  left: -1rem;
  bottom: 2rem;
  max-width: 14rem;
  padding: 1rem 1.15rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
  border-radius: 12px;
}

/* Band image */
.band {
  position: relative;
  min-height: 22rem;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.band__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.band__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 39, 68, 0.72), rgba(26, 39, 68, 0.35));
}

.band__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, 40rem);
  color: var(--white);
  padding: 3rem 0;
}

.band__content h2 {
  color: var(--white);
}

.band__content p {
  color: rgba(255, 253, 249, 0.9);
}

/* Grids */
.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;
}

.asymmetric {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.asymmetric--flip {
  grid-template-columns: 1.1fr 0.9fr;
}

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

.stack-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(26, 39, 68, 0.12);
}

.stack-list strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

/* Quote / reviews */
.quote-block {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(26, 39, 68, 0.12);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-block p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
}

.quote-block__meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.quote-block__service {
  color: var(--teal-deep);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Page heroes */
.page-hero {
  padding: 3.5rem 0 2rem;
}

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

.page-hero p {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.page-hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.page-hero--split img {
  border-radius: var(--radius);
  border: 1px solid rgba(26, 39, 68, 0.12);
  box-shadow: var(--shadow);
  min-height: 18rem;
  object-fit: cover;
  width: 100%;
}

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

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

.form__row label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
}

.form__row input,
.form__row select,
.form__row textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(26, 39, 68, 0.2);
  background: var(--white);
  color: var(--text);
}

.form__row textarea {
  min-height: 9rem;
  resize: vertical;
}

.form__row input:focus,
.form__row select:focus,
.form__row textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
}

.field-error {
  color: #9b3d2e;
  font-size: 0.88rem;
  margin: 0;
}

.form-message {
  margin: 0.5rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 600;
}

.form-message--success {
  background: rgba(91, 138, 138, 0.18);
  color: var(--teal-deep);
}

.form-message--error {
  background: rgba(196, 123, 106, 0.2);
  color: #8a3f32;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-details {
  padding: 1.75rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
}

.contact-details h2 {
  color: var(--white);
}

.contact-details a {
  color: var(--beige);
}

.contact-details p {
  color: rgba(255, 253, 249, 0.88);
}

/* Legal */
.legal {
  padding-bottom: 4rem;
}

.legal h2 {
  margin-top: 2rem;
}

.legal table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 1.25rem 0 2rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(26, 39, 68, 0.12);
}

.legal th,
.legal td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(26, 39, 68, 0.1);
  vertical-align: top;
}

.legal th {
  background: rgba(91, 138, 138, 0.12);
  color: var(--navy);
}

/* Pricing */
.fee-block {
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid rgba(26, 39, 68, 0.12);
  background: var(--white);
  box-shadow: var(--shadow);
  margin-bottom: 1.25rem;
}

.fee-block__price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin: 0.35rem 0 0.75rem;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 253, 249, 0.88);
  margin-top: 3rem;
  padding: 3.5rem 0 0;
}

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

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.site-footer__name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.site-footer__tag,
.site-footer__news-copy {
  color: rgba(255, 253, 249, 0.75);
  font-size: 0.95rem;
}

.site-footer__contact {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.site-footer a {
  color: var(--beige);
  text-decoration: none;
}

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

.site-footer__heading {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.85rem;
}

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

.site-footer__links li {
  margin-bottom: 0.45rem;
}

.site-footer__form {
  display: grid;
  gap: 0.6rem;
}

.site-footer__form input {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 253, 249, 0.2);
  background: var(--navy-soft);
  color: var(--white);
}

.site-footer__form input::placeholder {
  color: rgba(255, 253, 249, 0.5);
}

.site-footer__strip {
  border-top: 1px solid rgba(255, 253, 249, 0.12);
  padding: 1.25rem 0 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.site-footer__legal {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 253, 249, 0.55);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  z-index: 60;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
}

.cookie-banner__inner {
  width: min(100%, 52rem);
  margin-inline: auto;
  background: var(--white);
  border: 1px solid rgba(26, 39, 68, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(26, 39, 68, 0.18);
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0 0 0.35rem;
}

.cookie-banner__text p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}

.cookie-banner__error {
  width: 100%;
  color: #8a3f32;
  margin: 0;
  font-size: 0.9rem;
}

/* 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);
}

/* Detail */
.detail-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
  padding: 3rem 0 1rem;
}

.detail-hero img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(26, 39, 68, 0.12);
  box-shadow: var(--shadow);
  object-fit: cover;
  min-height: 16rem;
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.5rem;
  border-bottom: 1px solid rgba(26, 39, 68, 0.08);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--teal);
}

.prose p {
  max-width: 42rem;
}

.prose h2 {
  margin-top: 2.25rem;
}

.post-meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-home,
  .asymmetric,
  .asymmetric--flip,
  .page-hero--split,
  .detail-hero,
  .contact-panel,
  .site-footer__grid,
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

  .hero-home {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-home__caption {
    left: 1rem;
    bottom: 1rem;
  }

  .site-header__toggle {
    display: inline-flex;
  }

  .site-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(247, 245, 240, 0.97);
    border-bottom: 1px solid rgba(26, 39, 68, 0.1);
    padding: 0.5rem 1.25rem 1.25rem;
    display: none;
  }

  .site-header__nav.is-open {
    display: block;
  }

  .site-header__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .site-header {
    position: sticky;
  }

  .site-header__inner {
    position: relative;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
