/* ─── PARHAB GROUP — premium editorial stylesheet ─── */

:root {
  --ink: #111111;
  --muted: #343434;
  --gold: #9b6b2c;
  --gold-soft: #b48a50;
  --line: #e7e2da;
  --paper: #ffffff;
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Montserrat", Arial, Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

/* ─── HEADER ─── */
.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 34px 56px 0;
  height: 108px;
  background: var(--paper);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-decoration: none;
  color: var(--ink);
}
.brand-main {
  font-family: var(--sans);
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .18em;
}
.brand-sub {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .34em;
  padding-left: 40px; /* centers GROUP under PARHAB */
}

.nav {
  display: flex;
  gap: 44px;
  padding-top: 9px;
}
.nav a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  position: relative;
  padding-bottom: 6px;
  color: var(--ink);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}
.nav a:hover::after,
.nav a[aria-current="page"]::after { right: 0; }

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--ink);
  margin: 6px 0;
  transition: transform .2s ease, opacity .2s ease;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #ede9e3;
}

/* artwork: positioned right, blends via multiply */
.hero-art {
    position: absolute;
    z-index: 0;
    right: 0;
    top: 0;
    width: 82%;
    object-fit: contain;
    object-position: right;
    mix-blend-mode: multiply;
    pointer-events: none;
}

/* editorial text column — left side */
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(480px, 40vw);
  padding: 62px 0 64px 56px;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 62px;
  line-height: 1.01;
  font-weight: 500;
  letter-spacing: -.04em;
  color: var(--ink);
}

.gold-rule {
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin: 34px 0 28px;
}

.hero-copy p {
  margin: 0;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: .01em;
  color: var(--muted);
  max-width: 300px;
  font-weight: 500;
}

/* "Access. No Noise." — centered at bottom of hero */
.hero-tag {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: -35px;
  transform: translateX(-12%);
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  letter-spacing: -.03em;
  color: var(--gold);
  white-space: nowrap;
  line-height: 1;
}
.hero-tag::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin: 10px auto 0;
}

/* ─── OUR FOCUS ─── */
.focus {
  padding: 42px 56px 12px;
  text-align: center;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .38em;
  color: var(--gold);
}

.focus-grid {
  max-width: 1020px;
  margin: 0 auto;
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.focus-card {
padding: 1px 50px 14px;
    position: relative;
}
.focus-card + .focus-card {
  border-left: 1px solid var(--line);
}

.icon {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold);
}
.icon svg {
  width: 68px;
  height: 68px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.focus-card h2 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  margin: 10px 0 16px;
  color: var(--ink);
}

.card-rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 16px;
}

.focus-card p {
  margin: 0 auto;
  max-width: 260px;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: var(--muted);
}

/* ─── BOTTOM STATEMENT ─── */
.statement {
  text-align: center;
  padding: 22px 20px 28px;
}

.statement h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--ink);
}
.statement h2 span {
  color: var(--gold);
}

.small-rule {
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin: 18px auto 16px;
}

.strap {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .44em;
  color: var(--muted);
}

/* ─── INNER PAGES ─── */
.page-hero {
    padding: 15px 56px 30px;
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(155, 107, 44, .12);
  border-radius: 50%;
  right: -140px;
  top: -180px;
  pointer-events: none;
}
.page-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -.04em;
  color: var(--ink);
}
.blank-page {
  min-height: 460px;
}

.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;
}

/* ─── ABOUT ─── */
.about-hero {
  padding-bottom: 15px;
}
.about-hero .eyebrow {
  margin: 0 0 18px;
}
.about-hero .gold-rule {
  margin: 10px 0 10px;
}
.about-lead {
  margin: 0;
  max-width: 420px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: .01em;
  font-weight: 500;
  color: var(--muted);
}

.about-body {
  padding: 40px 56px 1px;
}
.about-prose {
  max-width: 640px;
  margin: 0 auto;
}
.about-prose p {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--ink);
  text-align: center;
}
.about-prose p + p {
  color: var(--muted);
  font-size: 22px;
  line-height: 1.55;
}
.about-prose p:last-child {
  margin-bottom: 0;
}
.about-prose p.about-leader {
  margin-top: 8px;
  font-style: italic;
  color: var(--ink);
  font-size: 24px;
}

.about-markers {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 920px;
  margin: 0 auto;
  padding: 56px 56px 20px;
}
.marker {
  flex: 1;
  text-align: center;
  padding: 8px 28px 12px;
}
.marker-value {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--ink);
}
.marker-label {
  display: block;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}
.marker-rule {
  width: 1px;
  align-self: stretch;
  background: var(--line);
  flex-shrink: 0;
}

.about-statement {
  padding-top: 48px;
  padding-bottom: 56px;
}

/* ─── APPROACH ─── */
.approach-pillars {
  padding-top: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  max-width: 1000px;
}
.approach-pillars .marker-value {
  font-size: 32px;
}
.approach-pillars .marker-label {
  letter-spacing: .2em;
}

.approach-principles {
  text-align: center;
  padding: 64px 56px 12px;
  max-width: 640px;
  margin: 0 auto;
}
.approach-principles p {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.35;
  color: var(--ink);
}
.approach-principles .small-rule {
  margin: 28px auto 26px;
}
.approach-principles .approach-outcome {
  margin: 0;
  font-size: 20px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── CONTACT ─── */
.contact-channels {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 56px 20px;
}
.contact-channel {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 36px 32px;
  transition: color .2s ease;
}
.contact-channel:hover .contact-value,
.contact-channel:focus-visible .contact-value {
  color: var(--gold);
}
.contact-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 22px;
}
.contact-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.contact-value {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.2;
  color: var(--ink);
  transition: color .2s ease;
}
.contact-divider {
  width: 1px;
  align-self: stretch;
  background: var(--line);
  flex-shrink: 0;
}

/* ─── FOOTER ─── */
.site-footer {
    border-top: 1px solid var(--line);
    padding: 15px 56px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: #2d2c2a;
}
.footer-brand .brand-main { font-size: 20px;
    color: #fff; }
.footer-brand .brand-sub {
  font-size: 10px;
  padding-left: 28px;
  letter-spacing: .32em;
  color: #fff;
}
.footer-copy {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .18em;
  color: #ffffff;
}
.footer-links {
  display: flex;
  gap: 26px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .18em;
  color: #ffffff;
}
.footer-links a { transition: color .2s ease; }
.footer-links a:hover { color: var(--gold); }

/* ─── TABLET (1050px) ─── */
@media (max-width: 1050px) {
  .hero-art { width: 84%; right: -6%; }
  .hero h1 { font-size: 52px; }
  .hero-tag { font-size: 38px; }
  .hero-copy { width: min(420px, 44vw); padding-left: 40px; }
}

/* ─── MOBILE (760px) ─── */
@media (max-width: 760px) {
  /* Header */
  .site-header {
    height: auto;
    padding: 24px 22px 20px;
    align-items: center;
  }
  .brand-main { font-size: 22px; }
  .brand-sub { font-size: 10px; padding-left: 30px; letter-spacing: .28em; }

  /* Hamburger nav */
  .nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    padding: 18px 22px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 20px;
    z-index: 19;
  }
  .nav.open { display: flex; }
  .nav a { font-size: 10px; letter-spacing: .16em; }
  .menu-toggle { display: block; }

  /* Hero — stacked layout */
  .hero { min-height: 680px; }
  .hero-copy {
    width: 100%;
    padding: 46px 24px 0;
  }
  .hero h1 {
    font-size: 46px;
    max-width: 380px;
    letter-spacing: -.03em;
  }
  .gold-rule { margin: 24px 0 20px; }
  .hero-copy p { font-size: 13px; max-width: 300px; }

  .hero-art {
    top: 230px;
    right: -30%;
    width: 150%;
    height: 370px;
    object-position: center center;
    mix-blend-mode: multiply;
  }

  .hero-tag {
    left: 50%;
    transform: translateX(-50%);
    bottom: 22px;
    font-size: 30px;
  }

  /* Focus — single column */
  .focus { padding: 36px 22px 4px; }
  .focus-grid {
    grid-template-columns: 1fr;
    margin-top: 12px;
  }
  .focus-card { padding: 22px 28px 30px; }
  .focus-card + .focus-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .icon { height: 64px; }
  .icon svg { width: 58px; height: 58px; }
  .focus-card h2 { font-size: 12px; }
  .focus-card p { font-size: 12px; }

  /* Statement */
  .statement { padding: 16px 20px 34px; }
  .statement h2 { font-size: 32px; }
  .strap { font-size: 8px; letter-spacing: .3em; }

  /* Inner pages */
  .page-hero { padding: 62px 24px 52px; }
  .page-hero h1 { font-size: 52px; }
  .blank-page { min-height: 500px; }

  /* About */
  .about-hero { padding-bottom: 25px; }
  .about-lead { font-size: 13px; max-width: 340px; }
  .about-body { padding: 48px 24px 16px; }
  .about-prose p { font-size: 22px; margin-bottom: 22px; }
  .about-prose p + p { font-size: 18px; }
  .about-prose p.about-leader { font-size: 20px; }
  .about-markers {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 40px 24px 8px;
  }
  .marker { padding: 22px 16px; width: 100%; }
  .marker-value { font-size: 30px; }
  .marker-rule {
    width: 36px;
    height: 1px;
    align-self: center;
  }
  .about-statement { padding-top: 36px; padding-bottom: 48px; }

  /* Approach */
  .approach-pillars {
    padding-top: 36px;
    padding-bottom: 8px;
  }
  .approach-pillars .marker-value { font-size: 28px; }
  .approach-principles { padding: 48px 24px 8px; }
  .approach-principles p { font-size: 24px; }
  .approach-principles .approach-outcome { font-size: 17px; }

  /* Contact */
  .contact-channels {
    flex-direction: column;
    align-items: center;
    padding: 40px 24px 8px;
  }
  .contact-channel { padding: 28px 16px; width: 100%; }
  .contact-value { font-size: 24px; }
  .contact-divider {
    width: 36px;
    height: 1px;
    align-self: center;
  }

  /* Footer */
  .site-footer {
    padding: 28px 22px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-links { gap: 18px; flex-wrap: wrap; }
}

/* ─── FOCUS STATES (accessibility) ─── */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ─── ENTRANCE ANIMATIONS ─── */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy { animation: fadeUp .65s ease both; }
  .focus-card { animation: fadeUp .65s ease both; }
  .focus-card:nth-child(2) { animation-delay: .08s; }
  .focus-card:nth-child(3) { animation-delay: .16s; }
  .about-hero h1,
  .about-hero .about-lead { animation: fadeUp .65s ease both; }
  .about-hero .about-lead { animation-delay: .1s; }
  .about-prose p { animation: fadeUp .7s ease both; }
  .about-prose p:nth-child(2) { animation-delay: .12s; }
  .marker { animation: fadeUp .65s ease both; }
  .marker:nth-child(3) { animation-delay: .08s; }
  .marker:nth-child(5) { animation-delay: .16s; }
  .approach-principles p { animation: fadeUp .7s ease both; }
  .approach-principles p:nth-child(2) { animation-delay: .08s; }
  .approach-principles .approach-outcome { animation-delay: .18s; }
  .contact-channel { animation: fadeUp .65s ease both; }
  .contact-channel:nth-of-type(2) { animation-delay: .1s; }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: none; }
  }
}
