/* ===================== TOKENS ===================== */
:root {
  --ink: #0b0c0e;
  --ink-2: #0e1013;
  --surface: #14161a;
  --surface-2: #1b1e23;
  --line: rgba(241, 237, 228, 0.1);
  --line-strong: rgba(241, 237, 228, 0.2);
  --ivory: #f1ede4;
  --muted: #a39e92;
  --muted-dim: #6f6a60;
  --brass: #c7a35c;
  --brass-light: #dbc086;
  --brass-soft: rgba(199, 163, 92, 0.14);
  --juniper: #4c7766;
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --header-h: 80px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --font-display:
    "Iowan Old Style", "Palatino Linotype", Palatino, Georgia,
    "Times New Roman", serif;
  --font-body:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  --font-mono:
    ui-monospace, "SF Mono", "Cascadia Mono", "Roboto Mono", Menlo, Consolas,
    monospace;
}

/* ===================== RESET ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
.section {
  padding: 118px 0;
  position: relative;
}
section[id] {
  scroll-margin-top: var(--header-h);
}
@media (max-width: 720px) {
  .section {
    padding: 84px 0;
  }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}
.eyebrow svg {
  flex: none;
}
h2.h2 {
  font-size: clamp(30px, 4.4vw, 46px);
  max-width: 680px;
}
.lede {
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
  margin-top: 16px;
}

/* ===================== SCROLL PROGRESS ===================== */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--line);
  z-index: 1000;
}
.progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brass), var(--brass-light));
  transition: width 0.08s linear;
}

/* ===================== REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
}
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    transition:
      opacity 0.8s var(--ease),
      transform 0.8s var(--ease);
  }
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-stagger > * {
  transition-delay: calc(var(--i, 0) * 70ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===================== HEADER ===================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 12, 14, 0);
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
header.scrolled {
  background: rgba(11, 12, 14, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  border-color: var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.02em;
}
.brand img {
  height: 50px;
  width: auto;
}
.brand b {
  color: var(--brass);
  font-weight: 600;
}
nav.primary {
  display: flex;
  align-items: center;
  gap: 34px;
}
nav.primary a {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ivory);
  position: relative;
  padding: 6px 0;
}
nav.primary a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--brass);
  transition: width 0.3s var(--ease);
}
nav.primary a:hover::after {
  width: 100%;
}
.cta-pill {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  border: 1px solid var(--brass);
  color: var(--brass);
  padding: 10px 20px;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease);
}
.cta-pill:hover {
  background: var(--brass);
  color: var(--ink);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.burger {
  display: none;
  width: 38px;
  height: 38px;
  position: relative;
  z-index: 901;
}
.burger span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1.5px;
  background: var(--ivory);
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease);
}
.burger span:nth-child(1) {
  top: 14px;
}
.burger span:nth-child(2) {
  top: 19px;
}
.burger span:nth-child(3) {
  top: 24px;
}
.nav-open .burger span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.nav-open .burger span:nth-child(2) {
  opacity: 0;
}
.nav-open .burger span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

@media (max-width: 880px) {
  nav.primary {
    position: fixed;
    inset: 0;
    top: var(--header-h);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: var(--ink-2);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.35s var(--ease),
      transform 0.35s var(--ease),
      visibility 0.35s;
  }
  nav.primary a {
    font-size: 22px;
    font-family: var(--font-display);
  }
  .nav-open nav.primary {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .nav-actions .cta-pill {
    display: none;
  }
  .burger {
    display: block;
  }
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 90% at 50% -10%, #1a1c20 0%, var(--ink) 62%);
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px 28px 140px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero .eyebrow {
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 84px);
  max-width: 920px;
}
.hero h1 em {
  font-style: normal;
  color: var(--brass);
}
.hero .lede {
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 540px;
  margin-top: 24px;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.btn {
  font-family: var(--font-mono);
  font-size: 13.5px;
  letter-spacing: 0.04em;
  padding: 15px 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.btn-solid {
  background: var(--brass);
  color: var(--ink);
}
.btn-solid:hover {
  transform: translateY(-2px);
  background: var(--brass-light);
}
.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--ivory);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--brass);
  color: var(--brass);
}
.hero-stats {
  display: flex;
  gap: 42px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.hero-stats div b {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--brass);
}

.hero-stats div span {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.03em;
}
span#yearsExp {
  font-size: 30px;
}

.ridge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 18vh;
  min-height: 100px;
  z-index: 1;
  pointer-events: none;
}
.ridge-fill {
  fill: rgba(199, 163, 92, 0.07);
}
.ridge-line {
  fill: none;
  stroke: var(--brass);
  stroke-width: 1.4;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 2.6s var(--ease) 0.25s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .ridge-line {
    stroke-dashoffset: 0;
    animation: none;
  }
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.scrolldown {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
}
.scrolldown i {
  width: 1px;
  height: 30px;
  background: linear-gradient(var(--brass), transparent);
  display: block;
  animation: dn 1.8s ease-in-out infinite;
}
@keyframes dn {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .scrolldown i {
    animation: none;
  }
}

/* ===================== BRANDS STRIP ===================== */
.brands {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
  background: var(--ink-2);
}
.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
  flex-wrap: wrap;
}
.brands-row img {
  height: 70px;
  width: auto;
  filter: grayscale(1) brightness(1.5) opacity(0.55);
  transition:
    filter 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.brands-row img:hover {
  filter: none;
  transform: translateY(-2px);
}
.brands-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--muted-dim);
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* ===================== ABOUT ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}
@media (max-width: 880px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.about-text p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 18px;
  max-width: 540px;
}
.values {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.value {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.value:first-child {
  border-top: 1px solid var(--line-strong);
}
.value-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 10px;
}
.value-num {
  font-family: var(--font-mono);
  color: var(--brass);
  font-size: 13px;
}
.value h3 {
  font-size: 20px;
}
.value p {
  color: var(--muted);
  font-size: 15px;
  max-width: 460px;
}

/* ===================== QUOTE ===================== */
.quote {
  padding: 90px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  max-width: 880px;
  line-height: 1.4;
}
.quote cite {
  display: block;
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brass);
  font-style: normal;
  letter-spacing: 0.04em;
}

/* ===================== PORTFOLIO ===================== */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
@media (max-width: 980px) {
  .pf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .pf-grid {
    grid-template-columns: 1fr;
  }
}
.pf-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  aspect-ratio: 4/3;
}
.pf-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s var(--ease),
    filter 0.6s var(--ease);
}
.pf-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.1);
}
.pf-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(
    180deg,
    transparent 35%,
    rgba(11, 12, 14, 0.92) 100%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.pf-card:hover .pf-overlay,
.pf-card:focus-within .pf-overlay {
  opacity: 1;
}
.pf-overlay span {
  font-family: var(--font-display);
  font-size: 18px;
}
.pf-overlay small {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--brass);
  letter-spacing: 0.06em;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pf-card[data-static] .pf-overlay small {
  color: var(--muted);
}
.pf-more {
  text-align: center;
  margin-top: 44px;
}

/* ===================== PRICING ===================== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
@media (max-width: 980px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease);
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background: var(--surface-2);
}
.price-card.featured {
  border-color: var(--brass);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
}
.price-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--brass);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.price-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.price-card ul {
  margin: 20px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.price-card li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--muted);
}
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--brass);
  border-radius: 50% 50% 50% 0;
  transform: rotate(45deg);
}
.price-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.price-from {
  font-size: 11px;
  color: var(--muted-dim);
  display: block;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 25px;
  color: var(--ivory);
}
.price-order {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--brass);
  border: 1px solid var(--brass);
  padding: 9px 16px;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease);
}
.price-order:hover {
  background: var(--brass);
  color: var(--ink);
}
.price-note {
  margin-top: 46px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14.5px;
  max-width: 820px;
}
.price-note b {
  color: var(--ivory);
}

/* ===================== PROCESS ===================== */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 56px;
  position: relative;
}
@media (max-width: 880px) {
  .process-row {
    grid-template-columns: 1fr 1fr;
    gap: 38px 26px;
  }
}
@media (max-width: 560px) {
  .process-row {
    grid-template-columns: 1fr;
  }
}
.process-row::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--line-strong) 0 8px,
    transparent 8px 16px
  );
}
@media (max-width: 880px) {
  .process-row::before {
    display: none;
  }
}
.proc {
  position: relative;
}
.proc-num {
  font-family: var(--font-mono);
  color: var(--muted-dim);
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.proc img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: invert(1) sepia(1) saturate(3) hue-rotate(330deg) brightness(0.95);
}
.proc h3 {
  font-size: 17px;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.proc p {
  color: var(--muted);
  font-size: 14.5px;
}

/* ===================== USEFUL / FAQ ===================== */
.faq-list {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-rows: auto 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}
.faq-item.open {
  grid-template-rows: auto 1fr;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  text-align: left;
  width: 100%;
}
.faq-q h3 {
  font-size: 19px;
  font-weight: 600;
  font-family: var(--font-display);
}
.faq-q .plus {
  position: relative;
  width: 18px;
  height: 18px;
  flex: none;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--brass);
  transition: transform 0.35s var(--ease);
}
.faq-q .plus::before {
  left: 0;
  top: 8px;
  width: 18px;
  height: 1.4px;
}
.faq-q .plus::after {
  left: 8px;
  top: 0;
  width: 1.4px;
  height: 18px;
}
.faq-item.open .plus::after {
  transform: scaleY(0);
}
.faq-a {
  overflow: hidden;
  min-height: 0;
}
.faq-a-inner {
  padding: 0 4px 28px;
  max-width: 760px;
  color: var(--muted);
  font-size: 15px;
}
.faq-a-inner p {
  margin-bottom: 14px;
}
.faq-a-inner p:last-child {
  margin-bottom: 0;
}
.faq-short {
  padding: 0 4px 22px;
  max-width: 680px;
  color: var(--muted);
  font-size: 15px;
}

/* ===================== CONTACTS ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.contact-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-line span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted-dim);
  text-transform: uppercase;
}
.contact-line a {
  font-size: 18px;
}
.contact-line a:hover {
  color: var(--brass);
}
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  background: var(--surface);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05) brightness(0.92);
}

/* ===================== FOOTER ===================== */
footer {
  border-top: 1px solid var(--line);
  padding: 54px 0 40px;
  background: var(--ink-2);
}
.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}
.foot-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.foot-nav a {
  font-size: 13.5px;
  color: var(--muted);
}
.foot-nav a:hover {
  color: var(--brass);
}
.foot-copy {
  color: var(--muted-dim);
  font-size: 12.5px;
  margin-top: 30px;
  font-family: var(--font-mono);
}

/* misc */
.vis-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
