:root {
  --bg: #0c0a09;
  --bg-elevated: #161210;
  --bg-muted: #1a1612;
  --text: #f5efe6;
  --text-muted: #b7a99a;
  --accent: #d4af77;
  --accent-soft: #a8895c;
  --line: rgba(212, 175, 119, 0.22);
  --danger: #e8a090;
  --success: #b8c9a9;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --space: clamp(1.25rem, 3vw, 2.5rem);
  --wrap: min(1120px, calc(100% - 2 * var(--space)));
  --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-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(212, 175, 119, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(80, 50, 30, 0.35), transparent 45%),
    var(--bg);
  min-height: 100vh;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.25s var(--ease);
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  margin: 0 0 0.6rem;
}

p {
  margin: 0 0 1rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: var(--bg);
  padding: 0.5rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(12, 10, 9, 0.82);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.brand:hover {
  color: var(--accent);
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.45rem 0.75rem;
  cursor: pointer;
  font-family: var(--font-body);
}

.nav-toggle__bars {
  display: inline-block;
  width: 1.1rem;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 5px 0 var(--accent), 0 -5px 0 var(--accent);
  margin-left: 0.5rem;
  vertical-align: middle;
}

.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

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

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 10, 9, 0.35) 0%, rgba(12, 10, 9, 0.55) 40%, rgba(12, 10, 9, 0.92) 100%),
    linear-gradient(90deg, rgba(12, 10, 9, 0.75) 0%, rgba(12, 10, 9, 0.2) 55%, rgba(12, 10, 9, 0.5) 100%);
}

.hero__copy {
  position: relative;
  z-index: 1;
  width: var(--wrap);
  margin: 0 auto;
  padding: clamp(4rem, 12vh, 8rem) 0 clamp(3rem, 8vh, 5rem);
  max-width: 38rem;
  animation: riseIn 1.1s var(--ease) both;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.lede {
  color: var(--text-muted);
  font-size: 1.12rem;
  max-width: 36rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent-soft);
  margin-bottom: 0.75rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--accent);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn--primary {
  background: var(--accent);
  color: #1a120a;
}

.btn--primary:hover {
  background: var(--text);
  color: #1a120a;
  border-color: var(--text);
}

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

.btn--ghost:hover {
  background: rgba(212, 175, 119, 0.12);
  color: var(--text);
}

.text-link {
  color: var(--accent);
  font-weight: 500;
}

.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.section--tight {
  padding-top: clamp(2.5rem, 6vw, 4rem);
}

.section--muted {
  background: var(--bg-muted);
  border-block: 1px solid var(--line);
}

.section-intro {
  color: var(--text-muted);
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-cta {
  margin-top: 2rem;
}

.offer-list {
  display: grid;
  gap: 2.5rem;
}

.offer-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
  animation: riseIn 0.9s var(--ease) both;
}

.offer-row:nth-child(even) {
  direction: rtl;
}

.offer-row:nth-child(even) > * {
  direction: ltr;
}

.offer-row__image {
  overflow: hidden;
  text-decoration: none;
}

.offer-row__image img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  filter: saturate(0.85) contrast(1.05);
}

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

.meta {
  color: var(--accent-soft);
  font-size: 0.92rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split__figure {
  margin: 0;
  overflow: hidden;
}

.split__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.8);
}

.pull-quote {
  margin: 0;
  max-width: 42rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-style: italic;
  line-height: 1.35;
  border-left: 1px solid var(--accent);
  padding-left: 1.5rem;
}

.pull-quote footer {
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: normal;
  color: var(--text-muted);
}

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

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

.note-list a {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1.5rem;
  padding: 1.25rem 0;
  color: var(--text);
  text-decoration: none;
  transition: padding-left 0.35s var(--ease);
}

.note-list a:hover {
  padding-left: 0.5rem;
  color: var(--accent);
}

.note-list__date {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.page-hero {
  padding: clamp(3rem, 8vw, 5.5rem) 0 1rem;
  animation: riseIn 0.8s var(--ease) both;
}

.page-hero--center {
  text-align: center;
  padding-bottom: 5rem;
}

.page-hero--center .lede {
  margin-inline: auto;
}

.page-figure {
  margin: 0 0 2.5rem;
  overflow: hidden;
}

.page-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.85);
}

.page-figure--narrow {
  max-width: 820px;
}

.prose,
.prose-wide {
  max-width: 42rem;
}

.prose-wide {
  max-width: 48rem;
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
  color: var(--text-muted);
}

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

.rate-table {
  display: grid;
  gap: 0;
  margin-bottom: 3rem;
}

.rate-row {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.rate-row__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.callout {
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.testimonial-stack {
  display: grid;
  gap: 2rem;
}

.testimonial {
  margin: 0;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.testimonial p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.4;
}

.testimonial footer {
  display: grid;
  gap: 0.2rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.testimonial cite {
  font-style: normal;
  color: var(--text);
  font-weight: 500;
}

.testimonial__service {
  color: var(--accent-soft);
}

.story-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

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

.service-card,
.blog-card {
  display: grid;
  gap: 1rem;
}

.service-card__media,
.blog-card__media {
  overflow: hidden;
  text-decoration: none;
}

.service-card__media img,
.blog-card__media img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  filter: saturate(0.85);
}

.service-card__media:hover img,
.blog-card__media:hover img {
  transform: scale(1.03);
}

.service-card h2,
.blog-card h2 {
  font-size: 1.55rem;
}

.service-card h2 a,
.blog-card h2 a {
  color: var(--text);
  text-decoration: none;
}

.service-card h2 a:hover,
.blog-card h2 a:hover {
  color: var(--accent);
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.detail-layout__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cycle-list {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
  counter-reset: none;
}

.cycle-list li {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  max-width: 44rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.intake-form {
  display: grid;
  gap: 1.1rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 1px solid var(--accent);
  border-color: var(--accent);
}

.form-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position: calc(100% - 18px) 55%, calc(100% - 12px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

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

.form-status {
  margin: 0.5rem 0 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
}

.form-status.is-success {
  color: var(--success);
  border-color: rgba(184, 201, 169, 0.4);
}

.form-status.is-error {
  color: var(--danger);
  border-color: rgba(232, 160, 144, 0.4);
}

.office-block {
  font-style: normal;
  color: var(--text-muted);
}

.aside-figure {
  margin: 0 0 1.5rem;
}

.aside-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
}

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

th, td {
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  color: var(--accent);
  font-weight: 500;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 2.5rem;
  margin-top: 2rem;
  background: #090807;
}

.site-footer__inner {
  width: var(--wrap);
  margin-inline: auto;
  display: grid;
  gap: 2rem;
}

.site-footer__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.site-footer__tag,
.site-footer__contact {
  color: var(--text-muted);
}

.site-footer__contact p {
  margin: 0 0 0.25rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.site-footer__links a {
  color: var(--text-muted);
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--accent);
}

.site-footer__copy {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 200;
  background: rgba(12, 10, 9, 0.96);
  border-top: 1px solid var(--line);
  padding: 1.25rem var(--space);
  animation: riseIn 0.5s var(--ease) both;
}

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

.cookie-banner__inner {
  width: var(--wrap);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__inner p {
  margin: 0;
  flex: 1 1 20rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.02) translateY(0);
  }
  to {
    transform: scale(1.08) translateY(-1.5%);
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(12, 10, 9, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--space) 1.5rem;
    display: none;
  }

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

  .site-nav__list {
    flex-direction: column;
    gap: 0.85rem;
  }

  .offer-row,
  .offer-row:nth-child(even),
  .split,
  .detail-layout,
  .contact-grid,
  .service-grid,
  .blog-grid {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .note-list a {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .hero {
    min-height: 85vh;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
