/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --alabaster:    #FDFCF9;
  --iron-ore:     #121E26;
  --copper:       #C9A063;
  --copper-light: #C9A063;
  --mid:          #8A8880;

  --serif: 'PT Serif', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;

  --max:    1280px;
  --gutter: clamp(24px, 5vw, 80px);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--alabaster);
  color: var(--iron-ore);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--copper); color: #fff; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
strong { font-weight: 500; }

/* ─── NAV ────────────────────────────────────────────────── */
nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: inherit;
}
.nav-logo-title {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}
.nav-logo-sub {
  display: block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(18,30,38,0.5);
  line-height: 1;
  margin-top: 5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: color 0.2s, opacity 0.2s;
}
.nav-links a:hover { color: var(--copper); opacity: 1; }
.nav-links .nav-cta {
  border: 1px solid var(--iron-ore);
  padding: 9px 18px;
  opacity: 1;
  transition: background 0.2s, color 0.2s;
}
.nav-links .nav-cta:hover {
  background: var(--iron-ore);
  color: var(--alabaster);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--iron-ore);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--gutter) 96px;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.hero-headline em { font-style: italic; }
#cycling-text {
  display: inline-block;
  transition: opacity 0.5s ease;
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.8;
  max-width: 420px;
  margin-bottom: 32px;
}
.hero-cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  border-bottom: 1px solid var(--copper);
  padding-bottom: 4px;
  transition: opacity 0.2s;
}
.hero-cta:hover { opacity: 0.7; }

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── DATA STRIP ─────────────────────────────────────────── */
.data-strip {
  background: #2A1F14;
  color: var(--alabaster);
  padding: 80px var(--gutter);
}
.data-strip-heading {
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  font-style: italic;
  color: var(--copper);
  letter-spacing: 0.02em;
  max-width: var(--max);
  margin: 0 auto 48px;
}
.data-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  margin-bottom: 12px;
}
.stat-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.stat-desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(253,252,249,0.87);
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}

/* ─── BIO ────────────────────────────────────────────────── */
.bio {
  padding: 120px var(--gutter);
}
.bio-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.bio-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 48px;
}
.bio-quote strong {
  font-weight: 700;
}
.bio-body {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bio-body p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.9;
}
.bio-closer {
  font-weight: 500 !important;
  opacity: 1 !important;
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials {
  padding: 80px var(--gutter);
  background: var(--alabaster);
  border-top: 1px solid rgba(18,30,38,0.08);
}
.testimonials-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.testimonials-header .section-label { margin-bottom: 0; }
.testimonials-rule {
  flex: 1;
  height: 1px;
  background: rgba(18,30,38,0.1);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(18,30,38,0.1);
  border: 1px solid rgba(18,30,38,0.1);
  max-width: var(--max);
  margin: 0 auto;
}
.testimonial-card {
  background: var(--alabaster);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-text {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  font-style: italic;
  color: var(--iron-ore);
  flex: 1;
}
.testimonial-attr {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
}

/* ─── SERVICES ───────────────────────────────────────────── */
.work {
  background: var(--iron-ore);
  padding: 96px var(--gutter);
}
.work-header {
  max-width: var(--max);
  margin: 0 auto 72px;
  max-width: 780px;
}
.work-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B8935A;
  margin-bottom: 20px;
}
.work-headline {
  font-family: 'PT Serif', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--alabaster);
  margin-bottom: 32px;
}
.work-headline em { font-style: italic; }
.work-intro {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(253,252,249,0.62);
  margin-bottom: 20px;
}
.work-closing {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: rgba(253,252,249,0.5);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(253,252,249,0.08);
  max-width: 1024px;
  margin: 0 auto;
}
.service-card {
  background: var(--iron-ore);
  padding: 52px 48px;
  cursor: default;
}
.service-tag {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B8935A;
  margin-bottom: 20px;
  font-variant: small-caps;
}
.service-title {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--alabaster);
  margin-bottom: 20px;
}
.service-body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.82;
  color: rgba(253,252,249,0.75);
}

/* ─── INQUIRY ────────────────────────────────────────────── */
.inquiry {
  background: var(--alabaster);
  padding: 100px var(--gutter) 120px;
  border-top: 1px solid rgba(18,30,38,0.08);
}
.inquiry-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 96px;
  align-items: start;
}

/* LEFT COLUMN */
.inquiry-left { position: sticky; top: 100px; }
.inquiry-eyebrow {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}
.inquiry-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--iron-ore);
  margin-bottom: 24px;
}
.inquiry-headline em { font-style: italic; }
.inquiry-intro {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(18,30,38,0.8);
  margin-bottom: 40px;
}
.inquiry-divider {
  width: 100%;
  height: 1px;
  background: rgba(18,30,38,0.15);
  margin-bottom: 36px;
}
.inquiry-conf-label {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18,30,38,0.55);
  margin-bottom: 12px;
}
.inquiry-conf-text {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(18,30,38,0.75);
}

/* RIGHT COLUMN */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.ig-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ig-label {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(18,30,38,0.65);
}
.ig-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(18,30,38,0.25);
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--iron-ore);
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
  resize: none;
  height: 56px;
}
.ig-input::placeholder { color: rgba(18,30,38,0.42); }
.ig-input:focus { border-bottom-color: var(--copper); }
.ig-textarea {
  line-height: 1.75;
  padding-top: 8px;
  height: auto;
  min-height: 72px;
}
.inquiry-btn {
  width: 100%;
  background: var(--iron-ore);
  color: var(--alabaster);
  border: none;
  padding: 20px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
  margin-top: 8px;
}
.inquiry-btn:hover { background: var(--copper); }
.form-confirm {
  font-size: 14px;
  color: var(--copper);
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 8px;
}

/* ─── RESPONSIVE: INQUIRY ────────────────────────────────── */
@media (max-width: 860px) {
  .inquiry-inner { grid-template-columns: 1fr; gap: 56px; }
  .inquiry-left { position: static; }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--iron-ore);
  color: rgba(253,252,249,0.4);
  padding: 48px var(--gutter);
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ─── STATS BAR ──────────────────────────────────────────── */
.stats-bar {
  background: var(--alabaster);
  border-top: 1px solid rgba(18,30,38,0.08);
  border-bottom: 1px solid rgba(18,30,38,0.08);
  padding: 64px var(--gutter);
}
.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 0 40px;
}
.stat-big {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  line-height: 1;
  color: var(--iron-ore);
  display: block;
  width: 100%;
  text-align: center;
}
.stat-small {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(18,30,38,0.6);
  text-align: center;
}
.stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(18,30,38,0.12);
  flex-shrink: 0;
  align-self: center;
}

/* ─── BIO LINK ───────────────────────────────────────────── */
.bio-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--copper);
  transition: opacity 0.2s;
}
.bio-link:hover { opacity: 0.7; }

/* ─── SCROLL ANIMATIONS ──────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 860px) {
  /* Hero */
  .hero { grid-template-columns: 1fr; }
  .hero-portrait { order: -1; }
  .portrait-placeholder { aspect-ratio: 3/2; }

  /* Stats bar */
  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .stat-divider { display: none; }
  .stat-item { padding: 0 16px; }

  /* Data strip */
  .data-strip-inner { grid-template-columns: 1fr; gap: 56px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Inquiry */
  .inquiry-inner { grid-template-columns: 1fr; gap: 56px; }
  .inquiry-left { position: static; }

  /* Work header */
  .work-header { max-width: 100%; }

  /* Nav */
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--alabaster);
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 99;
  }
  .nav-links.open a { font-size: 15px; opacity: 1; }
  .nav-hamburger { display: flex; position: relative; z-index: 101; }
}

@media (max-width: 540px) {
  /* Nav logo */
  .nav-logo-title { font-size: 18px; }
  .nav-logo-sub { font-size: 11px; }

  /* Hero */
  .hero { padding: 48px var(--gutter) 64px; }

  /* Stats bar — single column */
  .stats-inner { grid-template-columns: 1fr; gap: 32px; }
  .stat-item { padding: 0; }

  /* Bio */
  .bio { padding: 72px var(--gutter); }
  .bio-inner { text-align: left; }
  .bio-quote { text-align: left; }

  /* Data strip */
  .data-strip { padding: 56px var(--gutter); }

  /* Testimonials */
  .testimonial-card { padding: 32px 24px; }

  /* Services */
  .service-card { padding: 40px 28px; }

  /* Inquiry */
  .inquiry { padding: 64px var(--gutter) 80px; }
  .inquiry-form { gap: 32px; }

  /* Footer */
  footer { padding: 32px var(--gutter); }
}
