:root {
  --ink: #111111;
  --ink-soft: #1a1a1a;
  --paper: #f6f5f2;
  --paper-deep: #eceae5;
  --mist: #7a756c;
  --line: rgba(17, 17, 17, 0.1);
  --gold: #b8924d;
  --gold-bright: #c9a65e;
  --gold-deep: #8f7040;
  --white: #faf9f7;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--gold-deep);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--white);
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
}

.shell {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.05rem clamp(1.25rem, 4vw, 2.5rem);
  color: var(--white);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-solid {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.logo img {
  width: auto;
  height: 2.05rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav {
  display: none;
  gap: 1.85rem;
  align-items: center;
}

.nav a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0.88;
}

.nav a:hover {
  opacity: 1;
  color: #fff;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  color: #fff;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}

.nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 0.4rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  background: currentColor;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(10, 10, 10, 0.98);
  display: grid;
  place-content: center;
  gap: 1.5rem;
  text-align: center;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  transform-origin: 50% 45%;
}

.hero.is-live .hero-media img {
  animation: hero-drift 16s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.42) 0%, rgba(8, 8, 8, 0.62) 45%, rgba(8, 8, 8, 0.94) 100%),
    radial-gradient(ellipse at 15% 20%, rgba(184, 146, 77, 0.1), transparent 50%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 7.5rem 0 4.75rem;
}

.hero-logo {
  width: 4.25rem;
  height: auto;
  margin: 0 0 1.4rem;
  filter:
    drop-shadow(0 0 12px rgba(201, 166, 94, 0.35))
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.5));
}

.hero-title {
  margin: 0;
  max-width: 13ch;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.55rem, 6.8vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 1.35rem 0 0;
  max-width: 36rem;
  font-weight: 300;
  font-size: clamp(1rem, 1.9vw, 1.12rem);
  color: rgba(250, 249, 247, 0.82);
}

.hero-tag {
  margin: 1.35rem 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--gold-bright);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  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(-1px);
  color: inherit;
}

.btn-primary {
  background: var(--gold);
  color: #111;
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: #111;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: transparent;
}

.btn-ghost:hover {
  border-color: #fff;
  color: #fff;
}

.btn-ghost-dark {
  border: 1px solid rgba(17, 17, 17, 0.2);
  color: var(--ink);
  background: transparent;
}

.btn-ghost-dark:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.section {
  padding: clamp(4.5rem, 9vw, 6.5rem) 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
}

.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 1rem 0 0;
  color: var(--mist);
  max-width: 40rem;
}

.about {
  background: #f8f7f4;
}

.about-grid {
  display: grid;
  gap: 2.5rem;
}

.about-copy p {
  margin: 0 0 1.15rem;
  max-width: 40rem;
  color: #2f2c28;
}

.about-aside {
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
}

.aside-label {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
}

.about-aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.about-aside li {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.2;
}

.services {
  background: var(--ink);
  color: var(--white);
}

.services .eyebrow {
  color: var(--gold-bright);
}

.services .section-lead {
  color: rgba(250, 249, 247, 0.68);
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.service-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.05rem 0;
}

.service-list span {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  line-height: 1.25;
  color: rgba(250, 249, 247, 0.95);
}

.network {
  padding: clamp(4rem, 8vw, 5.5rem) 0;
  background: var(--ink-soft);
  color: var(--white);
}

.network-inner {
  max-width: 36rem;
}

.network .eyebrow {
  color: var(--gold-bright);
}

.network h2 {
  margin: 0 0 1rem;
}

.network p {
  margin: 0;
  color: rgba(250, 249, 247, 0.72);
  font-weight: 300;
  font-size: 1.08rem;
}

.contact {
  background: var(--paper-deep);
}

.contact-layout {
  display: grid;
  gap: 2.5rem;
}

.contact .section-head {
  margin-bottom: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.contact-card {
  padding: 1.6rem 1.5rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0.35rem;
}

.contact-card p {
  margin: 0 0 0.55rem;
  color: #2f2c28;
}

.contact-card-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin-bottom: 0.85rem !important;
}

.contact-meta {
  color: var(--mist) !important;
  font-size: 0.92rem;
}

.contact-card a {
  text-decoration: none;
  font-weight: 500;
}

.site-footer {
  background: #0c0c0c;
  color: rgba(250, 249, 247, 0.62);
  padding: 2.25rem 0 1.75rem;
}

.footer-stack {
  display: grid;
  gap: 1.35rem;
}

.footer-top {
  display: grid;
  gap: 1.15rem;
  align-items: start;
}

.footer-mark {
  width: 2.2rem;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-id p {
  margin: 0.15rem 0;
  font-size: 0.9rem;
}

.footer-id strong {
  color: rgba(250, 249, 247, 0.92);
  font-weight: 500;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
}

.footer-nav a {
  text-decoration: none;
  font-size: 0.84rem;
  color: rgba(250, 249, 247, 0.7);
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: space-between;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: rgba(250, 249, 247, 0.7);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}

.page-legal .site-header {
  position: sticky;
  background: rgba(10, 10, 10, 0.96);
}

.doc {
  padding-top: 6rem;
  background: var(--paper);
}

.doc-inner {
  max-width: 46rem;
}

.doc h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
}

.doc-updated {
  margin: 0 0 2rem;
  color: var(--mist);
  font-size: 0.92rem;
}

.doc h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.doc p,
.doc li {
  color: #2f2c28;
}

.doc ul {
  padding-left: 1.2rem;
}

.doc-back {
  margin-top: 2.5rem;
}

.doc-back a {
  text-decoration: none;
  font-weight: 600;
  color: var(--gold-deep);
}

.cookie-bar {
  position: fixed;
  inset: auto 1rem 1rem;
  z-index: 60;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: space-between;
  left: 1rem;
  right: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(12, 12, 12, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  color: rgba(250, 249, 247, 0.82);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}

.cookie-bar[hidden] {
  display: none;
}

.cookie-bar p {
  margin: 0;
  flex: 1 1 14rem;
  font-size: 0.86rem;
  line-height: 1.4;
}

.cookie-bar a {
  color: #fff;
}

.cookie-bar .btn {
  flex: 0 0 auto;
  min-height: 2.4rem;
  padding: 0.45rem 1rem;
  font-size: 0.84rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
[data-delay="5"] { transition-delay: 0.4s; }

@keyframes hero-drift {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.18) translate3d(-2.8%, -1.8%, 0); }
}

@media (min-width: 760px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1.45fr 0.75fr;
    gap: 4rem;
    align-items: start;
  }

  .about-aside {
    border-top: 0;
    border-left: 1px solid var(--line);
    padding: 0 0 0 2rem;
  }

  .service-list {
    columns: 2;
    column-gap: 3rem;
  }

  .service-list li {
    break-inside: avoid;
  }

  .contact-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: start;
  }

  .footer-top {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
  }

  .cookie-bar {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(100% - 2rem, 34rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}
