:root {
  --ink: #0c1218;
  --ink-soft: #1a2430;
  --paper: #f3eee6;
  --paper-dim: #e6dfd4;
  --muted: #8a928a;
  --accent: #b8894a;
  --accent-bright: #d4a85c;
  --line: rgba(243, 238, 230, 0.14);
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Outfit", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--paper);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

address {
  font-style: normal;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(12, 18, 24, 0.88);
  backdrop-filter: blur(12px);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--paper);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(243, 238, 230, 0.78);
  transition: color 0.25s ease;
}

.site-nav a:hover {
  color: var(--paper);
}

.nav-cta {
  padding: 0.55rem 1.15rem;
  border: 1px solid rgba(243, 238, 230, 0.28);
  color: var(--paper) !important;
  transition: border-color 0.25s ease, background 0.25s ease !important;
}

.nav-cta:hover {
  border-color: var(--accent);
  background: rgba(184, 137, 74, 0.12);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  background: var(--paper);
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem) clamp(3.5rem, 8vh, 6rem);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: hero-zoom 18s var(--ease) forwards;
}

@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 18, 24, 0.35) 0%, rgba(12, 18, 24, 0.55) 45%, rgba(12, 18, 24, 0.92) 100%),
    linear-gradient(90deg, rgba(12, 18, 24, 0.55) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 38rem;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin-bottom: 1.35rem;
}

.hero h1 {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.45;
  color: rgba(243, 238, 230, 0.92);
  max-width: 28rem;
  margin-bottom: 1.1rem;
}

.hero-lead {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(243, 238, 230, 0.68);
  max-width: 26rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
}

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

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

.btn-primary:hover {
  background: var(--accent-bright);
}

.btn-ghost {
  border-color: rgba(243, 238, 230, 0.35);
  color: var(--paper);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--paper);
}

.section {
  padding: clamp(4.5rem, 12vh, 8rem) clamp(1.25rem, 4vw, 3.5rem);
}

.section-inner {
  max-width: 68rem;
  margin: 0 auto;
}

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

.section h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  max-width: 18ch;
  margin-bottom: 1.35rem;
}

.section-copy {
  font-weight: 300;
  font-size: 1.1rem;
  color: rgba(243, 238, 230, 0.72);
  max-width: 38rem;
}

.about {
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(184, 137, 74, 0.08), transparent 55%),
    var(--ink);
  border-top: 1px solid var(--line);
}

.services {
  background: var(--ink-soft);
}

.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 3.5rem;
  border-top: 1px solid var(--line);
}

.service-list li {
  padding: 2rem 2rem 2rem 0;
  border-bottom: 1px solid var(--line);
}

.service-list li:nth-child(odd) {
  padding-right: 2.5rem;
  border-right: 1px solid var(--line);
}

.service-list li:nth-child(even) {
  padding-left: 2.5rem;
}

.service-list h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 0.65rem;
  color: var(--paper);
}

.service-list p {
  font-weight: 300;
  font-size: 0.98rem;
  color: rgba(243, 238, 230, 0.62);
  max-width: 28rem;
}

.presence {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  max-width: none;
  padding-left: 0;
  padding-right: clamp(1.25rem, 4vw, 3.5rem);
}

.presence-media {
  overflow: hidden;
  height: clamp(28rem, 70vh, 40rem);
}

.presence-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 1.2s var(--ease);
}

.presence-media:hover img {
  transform: scale(1.04);
}

.presence-copy {
  padding-right: clamp(0, 4vw, 2rem);
}

.presence-note {
  margin-top: 1.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact {
  background:
    linear-gradient(160deg, #141c26 0%, var(--ink) 55%),
    var(--ink);
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}

.contact-block h3 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.contact-block a {
  color: var(--accent-bright);
  font-size: 1.15rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}

.contact-block a:hover {
  border-bottom-color: var(--accent-bright);
}

.contact-block p,
.contact-block address {
  font-weight: 300;
  color: rgba(243, 238, 230, 0.78);
  line-height: 1.7;
}

.contact-mail {
  margin-top: 0.5rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.75rem clamp(1.25rem, 4vw, 3.5rem);
}

.footer-inner {
  max-width: 68rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
}

.footer-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.32s; }
.delay-4 { transition-delay: 0.44s; }

.hero .reveal {
  opacity: 0;
  transform: translateY(1.6rem);
  animation: hero-in 1s var(--ease) forwards;
}

.hero .delay-1 { animation-delay: 0.15s; }
.hero .delay-2 { animation-delay: 0.3s; }
.hero .delay-3 { animation-delay: 0.45s; }

@keyframes hero-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .service-list li:nth-child(odd),
  .service-list li:nth-child(even) {
    padding: 1.75rem 0;
    border-right: 0;
  }

  .presence {
    grid-template-columns: 1fr;
    padding-left: clamp(1.25rem, 4vw, 3.5rem);
  }

  .presence-media {
    height: 22rem;
    margin-left: calc(-1 * clamp(1.25rem, 4vw, 3.5rem));
    margin-right: calc(-1 * clamp(1.25rem, 4vw, 3.5rem));
    width: calc(100% + 2 * clamp(1.25rem, 4vw, 3.5rem));
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
    z-index: 110;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    background: rgba(12, 18, 24, 0.97);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    font-size: 1.25rem;
  }

  .nav-cta {
    border: 0;
    padding: 0;
  }

  .brand-mark {
    font-size: clamp(2.1rem, 10vw, 2.8rem);
  }

  .hero {
    align-items: flex-end;
    padding-bottom: 3rem;
  }
}

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

  .reveal,
  .hero .reveal,
  .hero-media img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
