:root {
  --color-ink: #14201f;
  --color-ink-soft: #3a4a48;
  --color-paper: #eef3f1;
  --color-paper-deep: #dce6e2;
  --color-teal: #0f3d3e;
  --color-teal-mid: #1a5c5e;
  --color-teal-soft: #c5d9d6;
  --color-gold: #b08d4a;
  --color-gold-soft: #e8d9b8;
  --color-white: #f7faf9;
  --color-error: #8b2e2e;
  --color-success: #1f5c45;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3.5rem;
  --space-2xl: 5.5rem;
  --radius: 0.35rem;
  --shadow-soft: 0 18px 40px rgba(15, 61, 62, 0.08);
  --max: 70rem;
  --header-h: 4.25rem;
  --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-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(176, 141, 74, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(26, 92, 94, 0.1), transparent 50%),
    linear-gradient(180deg, var(--color-paper) 0%, #e4ebe8 100%);
  min-height: 100vh;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-teal);
  margin: 0 0 var(--space-md);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 var(--space-md);
}

ul,
ol {
  margin: 0 0 var(--space-md);
  padding-left: 1.25rem;
}

.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% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: var(--space-xl) 0;
}

.section--tight {
  padding: var(--space-lg) 0;
}

.section__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.section__lead {
  font-size: 1.125rem;
  color: var(--color-ink-soft);
  max-width: 38rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.35rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

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

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

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

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

.btn--gold {
  background: var(--color-gold);
  color: var(--color-ink);
}

.btn--gold:hover {
  background: #9a7838;
  color: var(--color-ink);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(238, 243, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 61, 62, 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: var(--space-md);
}

.site-header__brand {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-teal);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}

.site-header__toggle-bar {
  display: block;
  width: 1.4rem;
  height: 2px;
  background: var(--color-teal);
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav__link {
  color: var(--color-ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.35rem 0;
}

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

.site-nav__link--cta {
  background: var(--color-teal);
  color: var(--color-white) !important;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius);
}

.site-nav__link--cta:hover {
  background: var(--color-teal-mid);
}

@media (max-width: 960px) {
  .site-header__toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-paper);
    border-bottom: 1px solid rgba(15, 61, 62, 0.1);
    padding: var(--space-md);
    display: none;
  }

  .site-nav.is-open {
    display: block;
    animation: slideDown 0.28s var(--ease);
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav__link--cta {
    text-align: center;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes inkReveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

/* Hero home — full bleed with brand first */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  color: var(--color-white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s var(--ease) infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(15, 61, 62, 0.92) 0%, rgba(15, 61, 62, 0.72) 42%, rgba(20, 32, 31, 0.45) 100%),
    linear-gradient(0deg, rgba(15, 61, 62, 0.55), transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: var(--space-2xl) 0 var(--space-xl);
  max-width: 40rem;
  margin-left: max(1rem, calc((100% - var(--max)) / 2));
  animation: fadeUp 0.9s var(--ease) both;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 700;
  margin: 0 0 var(--space-md);
  letter-spacing: -0.03em;
  color: var(--color-white);
  animation: inkReveal 1.1s var(--ease) 0.15s both;
}

.hero__headline {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 500;
  line-height: 1.45;
  margin: 0 0 var(--space-md);
  color: var(--color-gold-soft);
  max-width: 28rem;
}

.hero__text {
  color: rgba(247, 250, 249, 0.88);
  margin-bottom: var(--space-lg);
  max-width: 32rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.page-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  border-bottom: 1px solid rgba(15, 61, 62, 0.08);
  background:
    linear-gradient(135deg, rgba(15, 61, 62, 0.06), transparent 55%),
    linear-gradient(to bottom, rgba(197, 217, 214, 0.35), transparent);
}

.page-hero__title {
  animation: fadeUp 0.7s var(--ease) both;
}

.page-hero__lead {
  font-size: 1.15rem;
  color: var(--color-ink-soft);
  max-width: 40rem;
  animation: fadeUp 0.7s var(--ease) 0.1s both;
}

.page-hero--media {
  position: relative;
  min-height: 22rem;
  display: flex;
  align-items: flex-end;
  color: var(--color-white);
  overflow: hidden;
  border-bottom: 0;
  background: var(--color-teal);
}

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

.page-hero--media .page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.page-hero--media .wrap {
  position: relative;
  z-index: 1;
  padding-bottom: var(--space-xl);
}

.page-hero--media .page-hero__title,
.page-hero--media h1 {
  color: var(--color-white);
}

.page-hero--media .page-hero__lead {
  color: rgba(247, 250, 249, 0.9);
}

/* Offer grid */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

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

.offer-item {
  display: grid;
  gap: var(--space-md);
}

.offer-item__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
}

.offer-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.offer-item:hover .offer-item__image img {
  transform: scale(1.04);
}

.offer-item__title {
  margin-bottom: var(--space-xs);
}

.offer-item__text {
  color: var(--color-ink-soft);
  margin-bottom: var(--space-sm);
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
}

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

.split__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 18rem;
}

/* Quote strip */
.quote-strip {
  background: var(--color-teal);
  color: var(--color-white);
  padding: var(--space-xl) 0;
}

.quote-strip blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.35;
  max-width: 42rem;
}

.quote-strip cite {
  display: block;
  margin-top: var(--space-md);
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.95rem;
  color: var(--color-gold-soft);
}

/* Steps */
.steps {
  display: grid;
  gap: var(--space-lg);
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(15, 61, 62, 0.1);
}

.step:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.step__num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-gold);
  line-height: 1;
  min-width: 2.5rem;
}

/* Fees */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.fee-table th,
.fee-table td {
  text-align: left;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--color-paper-deep);
  vertical-align: top;
}

.fee-table th {
  background: var(--color-teal);
  color: var(--color-white);
  font-weight: 600;
}

.fee-table tr:last-child td {
  border-bottom: 0;
}

.fee-note {
  color: var(--color-ink-soft);
  font-size: 0.95rem;
}

/* Reviews */
.review-list {
  display: grid;
  gap: var(--space-lg);
}

.review {
  padding: var(--space-lg);
  background: var(--color-white);
  border-left: 3px solid var(--color-gold);
  box-shadow: var(--shadow-soft);
}

.review__quote {
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
}

.review__meta {
  font-size: 0.9rem;
  color: var(--color-ink-soft);
}

.review__service {
  display: inline-block;
  margin-top: var(--space-xs);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-teal-mid);
}

.story {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: linear-gradient(160deg, var(--color-teal-soft), var(--color-white));
  border-radius: var(--radius);
}

/* Blog */
.post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

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

.post-card {
  display: grid;
  gap: var(--space-md);
}

.post-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.post-card__meta {
  font-size: 0.85rem;
  color: var(--color-ink-soft);
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin-top: var(--space-xl);
}

.prose img {
  border-radius: var(--radius);
  margin: var(--space-lg) 0;
}

/* Forms */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: var(--space-xl);
}

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

.form {
  display: grid;
  gap: var(--space-md);
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.form__field {
  display: grid;
  gap: 0.35rem;
}

.form__label {
  font-weight: 600;
  font-size: 0.92rem;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--color-paper-deep);
  border-radius: var(--radius);
  font: inherit;
  background: var(--color-paper);
  color: var(--color-ink);
  transition: border-color 0.2s ease;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: 2px solid var(--color-teal-soft);
  border-color: var(--color-teal);
}

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

.form__error {
  color: var(--color-error);
  font-size: 0.85rem;
  min-height: 1.1em;
}

.form__input.is-invalid,
.form__select.is-invalid,
.form__textarea.is-invalid {
  border-color: var(--color-error);
}

.form__status {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  display: none;
}

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

.form__status--success {
  background: rgba(31, 92, 69, 0.12);
  color: var(--color-success);
}

.form__status--error {
  background: rgba(139, 46, 46, 0.1);
  color: var(--color-error);
}

.contact-aside {
  padding: var(--space-lg);
  background: var(--color-teal);
  color: var(--color-white);
  border-radius: var(--radius);
}

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

.contact-aside a {
  color: var(--color-gold-soft);
}

.contact-aside__block {
  margin-bottom: var(--space-md);
}

.contact-aside__label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
  margin-bottom: 0.25rem;
}

/* Legal */
.legal {
  max-width: 46rem;
}

.legal h2 {
  margin-top: var(--space-xl);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: var(--space-md) 0 var(--space-lg);
  background: var(--color-white);
}

.cookie-table th,
.cookie-table td {
  border: 1px solid var(--color-paper-deep);
  padding: 0.7rem 0.85rem;
  text-align: left;
  vertical-align: top;
}

.cookie-table th {
  background: var(--color-teal-soft);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: var(--space-md);
  background: rgba(15, 61, 62, 0.96);
  color: var(--color-white);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.18);
  animation: fadeUp 0.4s var(--ease);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.cookie-banner__text {
  margin: 0;
  flex: 1 1 18rem;
  color: rgba(247, 250, 249, 0.92);
}

.cookie-banner__text a {
  color: var(--color-gold-soft);
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-sm);
}

.cookie-banner .btn--ghost {
  border-color: rgba(247, 250, 249, 0.55);
  color: var(--color-white);
}

.cookie-banner .btn--ghost:hover {
  background: var(--color-white);
  color: var(--color-teal);
}

.cookie-banner .btn--primary {
  background: var(--color-gold);
  color: var(--color-ink);
}

/* Footer */
.site-footer {
  margin-top: var(--space-2xl);
  background: var(--color-teal);
  color: rgba(247, 250, 249, 0.88);
  padding-top: var(--space-xl);
}

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

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
}

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

@media (max-width: 500px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

.site-footer__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.site-footer__heading {
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

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

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

.site-footer__text {
  margin-bottom: 0.5rem;
  word-break: break-word;
}

.site-footer__bar {
  border-top: 1px solid rgba(247, 250, 249, 0.12);
  padding: var(--space-md) 0;
  text-align: center;
  font-size: 0.9rem;
}

.site-footer__bar p {
  margin: 0;
}

/* 404 */
.error-page {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
}

.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--color-teal-soft);
  line-height: 1;
  margin-bottom: var(--space-md);
}

/* Detail meta */
.meta-list {
  display: grid;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.meta-list__item strong {
  display: block;
  color: var(--color-teal);
  margin-bottom: 0.2rem;
}

.cta-band {
  margin: var(--space-xl) 0;
  padding: var(--space-xl);
  background: linear-gradient(120deg, var(--color-teal), var(--color-teal-mid));
  color: var(--color-white);
  border-radius: var(--radius);
  text-align: center;
}

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

.cta-band p {
  max-width: 34rem;
  margin-inline: auto;
  color: rgba(247, 250, 249, 0.9);
}

.reveal {
  animation: fadeUp 0.8s var(--ease) both;
}

.flagship-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
  margin-top: var(--space-lg);
}

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

.flagship-banner__image {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 16rem;
}

.flagship-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 16rem;
}
