/* ---------- Design tokens ---------- */
:root {
  --ink: #0d0d0d;
  --ink-soft: #1a1a1a;
  --paper: #f7f5f1;
  --paper-alt: #efece5;
  --muted: #6b6b66;
  --accent: #cbaa6b;
  --accent-soft: #e8d9b8;
  --accent-ink: #0d0d0d;
  --line: rgba(13,13,13,0.1);
  --line-on-dark: rgba(255,255,255,0.14);

  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --container: 1180px;
  --radius: 2px;
}

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@600;700;800;900&family=Inter:wght@400;500;600&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.05;
  text-transform: uppercase;
}

h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: 1.15rem; letter-spacing: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.eyebrow.center, .section-sub.center, h2.center { text-align: center; }

.section-sub {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 56px;
  font-size: 1.02rem;
}

.section { padding: 120px 0; }
.section-alt { background: var(--paper-alt); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

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

.btn-secondary {
  background: transparent;
  color: currentColor;
  border-color: currentColor;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(8px);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-on-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.site-nav a {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.site-nav a:hover { opacity: 1; }
.nav-cta {
  background: var(--accent);
  color: var(--accent-ink) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  opacity: 1 !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(203,170,107,0.10), transparent 60%),
    linear-gradient(160deg, #141414 0%, #0d0d0d 55%, #050505 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 120px);
  pointer-events: none;
}

.hero-inner {
  padding-top: 140px;
  padding-bottom: 80px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  height: 190px;
  width: auto;
  margin-bottom: 36px;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.45));
}

.hero .eyebrow { color: var(--accent); }

.hero h1 {
  font-size: clamp(2.75rem, 6.5vw, 5rem);
  color: #fff;
  margin-bottom: 26px;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.4); }
.hero .btn-secondary:hover { border-color: #fff; }

/* ---------- Placeholder blocks (photos/results) ---------- */
.placeholder-block {
  position: relative;
  background:
    linear-gradient(135deg, #d8d4c8 25%, transparent 25%) 0 0/24px 24px,
    linear-gradient(135deg, transparent 75%, #d8d4c8 75%) 0 0/24px 24px,
    #efece5;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 20px;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-brand-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12%;
  background: linear-gradient(160deg, #141414 0%, #0d0d0d 55%, #050505 100%);
}
.about-brand-panel .about-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.about-copy p {
  color: var(--muted);
  margin-top: 18px;
  max-width: 520px;
  font-size: 1.02rem;
}
.about-copy h2 { margin-bottom: 4px; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.service-card {
  background: var(--paper-alt);
  border: 1px solid var(--line);
  padding: 40px 32px;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}
.service-card:hover p { color: rgba(255,255,255,0.7); }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Results ---------- */
.transformation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.transformation-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.transformation-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(1.05) brightness(1.03);
}

.photo-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(13,13,13,0.85);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius);
}
.photo-tag-accent {
  background: var(--accent);
  color: var(--accent-ink);
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 20px;
}
.testimonial-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 28px;
  border-radius: var(--radius);
}
.testimonial-card p {
  font-size: 1.02rem;
  line-height: 1.55;
  margin-bottom: 20px;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Contact ---------- */
.contact-section {
  background: linear-gradient(160deg, #141414 0%, #0d0d0d 60%, #050505 100%);
  color: #fff;
}
.contact-section .section-sub { color: rgba(255,255,255,0.65); }
.contact-methods {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.contact-section .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.35); }
.contact-section .btn-secondary:hover { border-color: #fff; }

.contact-address {
  font-style: normal;
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-top: 36px;
}
.contact-areas {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  margin-top: 8px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #050505;
  color: rgba(255,255,255,0.55);
  padding: 32px 0;
  font-size: 0.82rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-social a { color: rgba(255,255,255,0.7); }
.footer-social a:hover { color: var(--accent); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .transformation-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: #0d0d0d;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .site-nav.open { transform: translateX(0); }
  .services-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .container { padding: 0 22px; }
}
