/* ============================================================
   v5 — Pawvera-inspired bold layout
   Dark/cream/amber alternating sections · Fraunces headlines
   Rounded image panels · High-contrast color blocks
   ============================================================ */

/* --- Reset & Base ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:      #1A1A1A;
  --dark-2:    #111111;
  --dark-3:    #242424;
  --amber:     #C8860A;
  --amber-bg:  #D4820A;
  --amber-lt:  #F5E5C0;
  --amber-pale:#FDF3E3;
  --green:     #2D4A3E;
  --green-lt:  #D4E4DF;
  --blue:      #5B8DB8;
  --blue-lt:   #D8E8F4;
  --cream:     #F4EEE4;
  --cream-2:   #EDE4D4;
  --white:     #FFFFFF;
  --text:      #1A1A1A;
  --muted:     #6B6460;
  --r-lg:      24px;
  --r-xl:      32px;
  --hh:        72px;
}

body.v5 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.v5 h1,
body.v5 h2,
body.v5 h3,
body.v5 h4 {
  font-family: 'Fraunces', Georgia, serif;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

/* --- Buttons -------------------------------------------- */
.btn-v5 {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity .18s, background .18s, border-color .18s;
  white-space: nowrap;
}
.btn-v5--amber    { background: var(--amber);  color: #fff; }
.btn-v5--amber:hover { background: #a06500; }
.btn-v5--white    { background: #fff; color: var(--amber); }
.btn-v5--white:hover { opacity: .9; }
.btn-v5--dark     { background: var(--dark);  color: #fff; }
.btn-v5--ghost {
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-v5--ghost:hover { border-color: rgba(255,255,255,.6); color: #fff; }

/* --- Labels --------------------------------------------- */
.label-v5 {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.label-v5--lt  { color: rgba(255,255,255,.45); }
.label-v5--dark { color: var(--amber); }

/* --- B&W Photo Treatment -------------------------------- */
.photo-bw {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}
.photo-bw img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  mix-blend-mode: multiply;
}
.photo-bw--amber { background: var(--amber-bg); }
.photo-bw--green { background: var(--green); }
.photo-bw--blue  { background: var(--blue); }

/* ============================================================
   HEADER
   ============================================================ */
.hdr-v5 {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--dark-2);
  border-bottom: 1px solid rgba(255,255,255,.07);
  height: var(--hh);
}
.hdr-v5-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.hdr-v5-logo {
  text-decoration: none;
  margin-right: auto;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.hdr-v5-logo-img {
  height: 30px;
  width: auto;
  display: block;
}
.hdr-v5-nav { display: flex; gap: 28px; }
.hdr-v5-nav a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .18s;
}
.hdr-v5-nav a:hover { color: #fff; }
.hdr-v5-cta {
  font-size: .875rem;
  font-weight: 500;
  padding: 10px 22px;
  background: var(--amber);
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  flex-shrink: 0;
  transition: background .18s;
}
.hdr-v5-cta:hover { background: #a06500; }

/* ============================================================
   HERO
   ============================================================ */
.hero-v5 {
  margin-top: var(--hh);
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - var(--hh));
  max-height: 900px;
  min-height: 560px;
  overflow: hidden;
}
.hero-v5-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 40px 48px 56px 80px;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,.06);
  min-height: 0;
  overflow: hidden;
}
.hero-v5-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 28px;
}
.hero-v5 h1 {
  font-size: clamp(2.75rem, 4.5vw, 5.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: .97;
}
.hero-v5 h1 em {
  font-style: italic;
  color: var(--amber);
}
.hero-v5-text > p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255,255,255,.65);
  max-width: 400px;
  margin-bottom: 36px;
}
.hero-v5-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-v5-stats {
  list-style: none;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-v5-stats li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-v5-stats strong {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.hero-v5-stats span {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero-v5-visual {
  display: flex;
  padding: 36px 56px 36px 36px;
  min-height: 0;
  overflow: hidden;
}
.hero-v5-panel {
  flex: 1;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.hero-v5-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  mix-blend-mode: multiply;
  display: block;
}

/* ============================================================
   MANIFESTO STRIP
   ============================================================ */
.manifesto-v5 {
  background: var(--amber);
  padding: 48px 80px;
  text-align: center;
}
.manifesto-v5 p {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-style: italic;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}
.manifesto-v5 em {
  font-style: normal;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-v5 {
  background: var(--cream);
  padding: 96px 80px;
}
.services-v5-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.services-v5-header h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.services-v5-header p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}
.svc-v5-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.svc-v5-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.svc-v5-card--amber { background: var(--amber-lt); }
.svc-v5-card--green { background: var(--green-lt); }
.svc-v5-card--blue  { background: var(--blue-lt); }
.svc-v5-card--cream { background: var(--cream-2); }
.svc-v5-card--dark  { background: var(--dark); }

.svc-v5-num {
  font-family: 'Fraunces', serif;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--amber);
  padding: 20px 20px 0;
  opacity: .55;
}
.svc-v5-card--dark .svc-v5-num { color: rgba(255,255,255,.35); }

.svc-v5-photo {
  height: 148px;
  margin: 10px 14px 0;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
.svc-v5-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.08);
  mix-blend-mode: multiply;
  display: block;
}
.svc-v5-body {
  padding: 16px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-v5-body--solo {
  padding: 24px 20px 28px;
  justify-content: center;
}
.svc-v5-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}
.svc-v5-card p {
  font-size: .8125rem;
  line-height: 1.55;
  color: var(--muted);
  flex: 1;
}
.svc-v5-card--dark h3 { color: #fff; }
.svc-v5-card--dark p  { color: rgba(255,255,255,.5); }

/* ============================================================
   APPROACH
   ============================================================ */
.approach-v5 {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.approach-v5-image {
  padding: 64px 32px 64px 80px;
  display: flex;
}
.approach-v5-panel {
  flex: 1;
  min-height: 420px;
}
.approach-v5-panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  mix-blend-mode: multiply;
  display: block;
}
.approach-v5-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 80px 64px 56px;
  color: #fff;
}
.approach-v5-text h2 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
}
.approach-v5-text p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255,255,255,.6);
  max-width: 420px;
  margin-bottom: 18px;
}
.approach-v5-text p:last-of-type { margin-bottom: 36px; }

/* ============================================================
   ABOUT / FOUNDERS
   ============================================================ */
.about-v5 {
  background: var(--cream);
  padding: 96px 80px;
}
.about-v5-header {
  text-align: center;
  margin-bottom: 56px;
}
.about-v5-header h2 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
}
.founder-v5-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.founder-v5-card {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.founder-v5-photo {
  height: 340px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.founder-v5-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  mix-blend-mode: multiply;
  display: block;
}
.founder-v5-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 7rem;
  font-weight: 800;
  color: rgba(255,255,255,.35);
}
.founder-v5-bio { padding: 28px 32px 32px; }
.founder-v5-bio h3 {
  font-size: 1.625rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.pending {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 400;
  color: #bbb;
  letter-spacing: 0;
}
.founder-v5-role {
  font-size: .875rem;
  font-weight: 500;
  color: var(--amber);
  margin-bottom: 14px;
}
.founder-v5-bio p {
  font-size: .9375rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   ETHICS
   ============================================================ */
.ethics-v5 {
  background: var(--dark);
  padding: 96px 80px;
}
.ethics-v5-header {
  margin-bottom: 64px;
}
.ethics-v5-header h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #fff;
}
.ethics-v5-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 40px;
}
.ethics-v5-marker {
  width: 32px;
  height: 3px;
  background: var(--amber);
  margin-bottom: 20px;
  opacity: .7;
}
.ethics-v5-item h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.ethics-v5-item p {
  font-size: .9375rem;
  line-height: 1.65;
  color: rgba(255,255,255,.45);
}

/* ============================================================
   COLLABORATION
   ============================================================ */
.collab-v5 {
  background: var(--amber);
  padding: 96px 80px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.collab-v5-text h2 {
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}
.collab-v5-text > p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  max-width: 340px;
}
.collab-v5-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 4px;
}
.collab-v5-card {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  backdrop-filter: blur(6px);
}
.collab-v5-card h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.collab-v5-card p {
  font-size: .9375rem;
  line-height: 1.6;
  color: rgba(255,255,255,.68);
  margin: 0;
}

/* ============================================================
   GESTATION CALCULATOR
   ============================================================ */
.calc-v5 {
  background: var(--green);
  padding: 80px;
}
.calc-v5-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.calc-v5-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.calc-v5-text p {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,.6);
}
.calc-v5-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.calc-v5-form label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
}
.calc-v5-form input[type="date"] {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color .18s;
}
.calc-v5-form input[type="date"]:focus {
  outline: none;
  border-color: var(--amber);
}
.calc-v5-result {
  padding: 16px 18px;
  background: rgba(255,255,255,.1);
  border-radius: 14px;
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  min-height: 52px;
  display: flex;
  align-items: center;
}
.calc-v5-result:empty { display: none; }
.calc-v5-result strong { color: #fff; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-v5 {
  background: var(--dark);
  padding: 96px 80px;
}
.contact-v5-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.contact-v5-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}
.contact-v5-text > p {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
  margin-bottom: 36px;
  max-width: 360px;
}
.contact-v5-details p {
  font-size: .9375rem;
  line-height: 1.75;
  color: rgba(255,255,255,.45);
  margin-bottom: 10px;
}
.contact-v5-details strong { color: rgba(255,255,255,.75); }
.contact-v5-details a { color: var(--amber); text-decoration: none; }
.contact-v5-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-field label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: #fff;
  font-size: .9375rem;
  font-family: inherit;
  transition: border-color .18s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,.2); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--amber); }
.form-field select option { background: #2a2a2a; color: #fff; }
.form-field textarea { resize: vertical; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-v5 {
  background: var(--dark-2);
  padding: 56px 80px 28px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-v5-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-v5-logo-img {
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 12px;
  opacity: .85;
}
.footer-v5-brand p {
  font-size: .875rem;
  line-height: 1.6;
  color: rgba(255,255,255,.35);
  max-width: 240px;
}
.footer-v5-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: flex-end;
  max-width: 400px;
}
.footer-v5-nav a {
  font-size: .875rem;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .18s;
}
.footer-v5-nav a:hover { color: rgba(255,255,255,.85); }
.footer-v5-copy {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 24px;
}
.footer-v5-copy p {
  font-size: .8125rem;
  color: rgba(255,255,255,.25);
}
