:root {
  --bg: #14110e;
  --bg-soft: #1c1814;
  --bg-warm: #2a221c;
  --cream: #f3ebe0;
  --cream-muted: #d8cbb8;
  --gold: #c5a059;
  --gold-soft: #d4b574;
  --gold-deep: #9a7a3c;
  --ink: #1a1511;
  --line: rgba(197, 160, 89, 0.28);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --space: clamp(1.25rem, 3vw, 2.5rem);
  --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-body);
  font-weight: 400;
  color: var(--cream);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.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;
}

/* Header / nav */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  justify-content: center;
  padding: 1.1rem var(--space);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.nav a {
  transition: color 0.25s var(--ease), opacity 0.25s var(--ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
}

.nav-sep {
  font-size: 0.45rem;
  opacity: 0.7;
}

.nav-toggle {
  display: none;
  position: absolute;
  right: 1.25rem;
  top: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: rgba(20, 17, 14, 0.55);
  backdrop-filter: blur(8px);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 1px;
  margin: 0.35rem auto;
  background: var(--gold-soft);
}

.mobile-nav {
  display: none;
}

/* Hero — image dictates size, never cropped */
.hero {
  position: relative;
  width: 100%;
  background: #0c0a09;
  overflow: hidden;
}

.hero-image {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(10, 8, 6, 0.55) 0%,
      rgba(10, 8, 6, 0.12) 18%,
      rgba(10, 8, 6, 0.02) 42%,
      rgba(10, 8, 6, 0.1) 72%,
      rgba(10, 8, 6, 0.7) 100%
    );
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(4.5rem, 10vh, 6.5rem) var(--space) clamp(1.75rem, 4vh, 2.75rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.hero-copy {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  padding-top: 0.35rem;
}

.hero-bottom {
  display: grid;
  justify-items: center;
  gap: 1.25rem;
}

.hero-brand {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-brand-name {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7.5vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 8%, #f0e2c4 38%, #d4b574 68%, #b8923f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
  animation: rise 1s var(--ease) both;
}

.hero-tagline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.8vw, 1.85rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9a24e;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  animation: rise 1s 0.12s var(--ease) both;
}

.hero-support {
  margin: 0;
  max-width: 28rem;
  font-size: 1rem;
  color: var(--cream-muted);
  animation: rise 1s 0.24s var(--ease) both;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  animation: rise 1s 0.34s var(--ease) both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold-soft);
}

.btn-ghost {
  border-color: rgba(197, 160, 89, 0.55);
  color: var(--cream);
  background: rgba(20, 17, 14, 0.35);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--gold);
  color: #fff;
}

/* Sections */
.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) var(--space);
  position: relative;
}

.section-inner {
  width: min(100%, 46rem);
  margin: 0 auto;
}

.section-about {
  background:
    radial-gradient(ellipse at top, rgba(197, 160, 89, 0.08), transparent 55%),
    linear-gradient(180deg, #171310 0%, #1b1612 100%);
}

.section-services {
  background:
    linear-gradient(180deg, #201a15 0%, #181410 100%);
  border-block: 1px solid var(--line);
}

.section-process {
  background:
    radial-gradient(ellipse at bottom right, rgba(197, 160, 89, 0.07), transparent 45%),
    #16120f;
}

.section-contact {
  background:
    linear-gradient(180deg, #1f1914 0%, #120f0c 100%);
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.section h2 {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
}

.section-intro,
.prose p {
  margin: 0 0 1.15rem;
  color: var(--cream-muted);
  font-size: 1.05rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.pullquote {
  margin: 2.75rem 0 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--line);
}

.pullquote h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--gold-soft);
}

.pullquote p {
  margin: 0;
  color: var(--cream);
  font-size: 1.08rem;
}

/* Services */
.service-list,
.process-list {
  list-style: none;
  margin: 2.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 2rem;
}

.service-item,
.process-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.service-num,
.process-num {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  min-width: 2.2rem;
}

.service-item h3,
.process-item h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
}

.service-lead {
  margin: 0 0 0.7rem;
  color: var(--gold-soft);
  font-weight: 500;
}

.service-item p,
.process-item p {
  margin: 0;
  color: var(--cream-muted);
}

/* Contact */
.contact-promise {
  margin: 0 0 2.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--gold-soft);
}

.contact-actions {
  display: grid;
  gap: 1rem;
}

.contact-link {
  display: grid;
  gap: 0.25rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  transition: color 0.25s var(--ease);
}

.contact-link:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-link:hover .contact-value,
.contact-link:focus-visible .contact-value {
  color: var(--gold-soft);
}

.contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-value {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  transition: color 0.25s var(--ease);
}

/* Footer */
.site-footer {
  padding: 2rem var(--space) 2.5rem;
  text-align: center;
  border-top: 1px solid var(--line);
  background: #0e0c0a;
}

.site-footer p {
  margin: 0;
  color: var(--cream-muted);
  font-size: 0.92rem;
}

.footer-meta {
  margin-top: 0.55rem !important;
  font-size: 0.78rem !important;
  opacity: 0.7;
}

/* Motion */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-nav {
    display: grid;
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    gap: 0.15rem;
    padding: 0.85rem;
    background: rgba(18, 15, 12, 0.94);
    border: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding: 0.85rem 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-soft);
  }

  .hero-content {
    padding-top: 5.5rem;
    text-align: left;
  }

  .hero-copy,
  .hero-bottom {
    justify-items: start;
  }

  .hero-brand {
    align-items: flex-start;
  }

  .hero-cta {
    justify-content: flex-start;
  }

  .service-item,
  .process-item {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-image,
  .hero-brand-name,
  .hero-tagline,
  .hero-support,
  .hero-cta,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
