/* ============================================================
   Plumify Management Services — editorial studio
   Palette: warm paper · ink · deep petrol · ochre
   Type: Fraunces (display serif) + Hanken Grotesk (body)
   ============================================================ */

:root {
  --paper:      #f4eee2;
  --paper-2:    #ece2d0;
  --ink:        #1b1714;
  --ink-soft:   #514a40;
  --muted:      #6f675b;
  --teal:       #0e564d;
  --teal-deep:  #0a3a34;
  --ochre:      #bd7a2c;
  --ochre-soft: #e9d8b8;
  --line:       rgba(27,23,20,.14);
  --line-soft:  rgba(27,23,20,.08);
  --maxw:       1240px;
  --ease:       cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}
/* paper grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--teal); color: var(--paper); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.narrow { max-width: 780px; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, .serif {
  font-family: 'Fraunces', Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 460;
  letter-spacing: -0.015em;
  line-height: 1.04;
  color: var(--ink);
}
h1 { font-size: clamp(46px, 8vw, 104px); font-weight: 420; }
h1 em { font-style: italic; font-weight: 400; color: var(--teal); }
h2 { font-size: clamp(32px, 4.4vw, 58px); font-weight: 440; }
h2 em { font-style: italic; color: var(--teal); }
h3 { font-size: 23px; font-weight: 500; letter-spacing: -0.01em; }
p { color: var(--ink-soft); }
.lead {
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}
.kicker {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: '';
  width: 28px; height: 1px; background: var(--ochre);
  display: inline-block;
}
.kicker.on-dark { color: var(--ochre-soft); }
.kicker.on-dark::before { background: var(--ochre); }
.idx {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ochre);
}

/* ---------- BUTTONS / LINKS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 15px; letter-spacing: .01em;
  padding: 15px 26px; border-radius: 2px;
  border: 1px solid var(--ink);
  background: var(--ink); color: var(--paper);
  transition: transform .25s var(--ease), background .25s, color .25s;
  cursor: pointer; white-space: nowrap;
}
.btn .ar { transition: transform .3s var(--ease); }
.btn:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-2px); }
.btn:hover .ar { transform: translateX(5px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-light:hover { background: var(--ochre-soft); border-color: var(--ochre-soft); color: var(--teal-deep); }

.tlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--ochre); padding-bottom: 3px;
  transition: color .2s, gap .25s var(--ease);
}
.tlink:hover { color: var(--teal); gap: 13px; }

/* ---------- HEADER ---------- */
.site-head {
  position: sticky; top: 0; z-index: 40;
  background: rgba(244,238,226,.86);
  backdrop-filter: blur(10px) saturate(1.3);
  -webkit-backdrop-filter: blur(10px) saturate(1.3);
  border-bottom: 1px solid var(--line);
}
.head-row { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 24px; }
.brand { display: inline-flex; align-items: baseline; gap: 3px; }
.brand-word { font-family: 'Fraunces', serif; font-size: 25px; font-weight: 500; letter-spacing: -0.02em; }
.brand-dot { color: var(--ochre); font-size: 25px; line-height: 1; }
.head-nav { display: flex; gap: 30px; }
.head-nav a {
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 4px 0;
}
.head-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--teal); transition: width .3s var(--ease);
}
.head-nav a:hover { color: var(--ink); }
.head-nav a:hover::after { width: 100%; }
.head-right { display: inline-flex; align-items: center; gap: 22px; }
.lang { display: inline-flex; gap: 4px; font-size: 12px; font-weight: 700; letter-spacing: .08em; }
.lang a, .lang span { padding: 3px 7px; border-radius: 2px; color: var(--muted); }
.lang a:hover { color: var(--ink); }
.lang .here { background: var(--ink); color: var(--paper); }

/* ---------- HERO ---------- */
.hero { padding: 76px 0 40px; }
.hero-grid {
  display: grid; grid-template-columns: 1.35fr .9fr; gap: 56px; align-items: end;
}
.hero h1 { margin: 22px 0 0; max-width: 13ch; }
.hero-lead { margin-top: 30px; max-width: 46ch; }
.hero-ctas { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero-figure { position: relative; }
.hero-figure img {
  width: 100%; border-radius: 3px;
  box-shadow: 28px 28px 0 -2px var(--ochre-soft);
}
.hero-figure figcaption {
  position: absolute; left: 18px; bottom: 16px;
  background: rgba(10,58,52,.82); color: var(--paper);
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 12px; backdrop-filter: blur(4px); border-radius: 2px;
}
.hero-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line); margin-top: 64px; padding-top: 26px; gap: 24px;
}
.hero-meta dt { font-family: 'Fraunces', serif; font-size: 27px; font-weight: 480; }
.hero-meta dt em { font-style: italic; color: var(--teal); }
.hero-meta dd { font-size: 13.5px; color: var(--muted); margin-top: 2px; }

/* ---------- MARQUEE ---------- */
.marquee {
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
  background: var(--ink); color: var(--paper);
  overflow: hidden; padding: 16px 0; margin-top: 30px;
}
.marquee-track { display: flex; gap: 0; width: max-content; animation: slide 38s linear infinite; }
.marquee-track span {
  font-family: 'Fraunces', serif; font-style: italic; font-size: 26px;
  padding: 0 34px; white-space: nowrap; color: var(--paper);
}
.marquee-track span::after { content: '✶'; color: var(--ochre); margin-left: 34px; font-style: normal; font-size: 16px; vertical-align: middle; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- SECTIONS ---------- */
.section { padding: 104px 0; }
.section.alt { background: var(--paper-2); }
.section.dark { background: var(--ink); color: var(--paper); }
.section.dark h2, .section.dark h3 { color: var(--paper); }
.section.dark p { color: rgba(244,238,226,.74); }
.section-head { max-width: 60ch; }
.section-head h2 { margin: 16px 0 0; }
.section-head .lead { margin-top: 22px; }

/* ---------- APPROACH (editorial columns) ---------- */
.cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 64px; border-top: 1px solid var(--line); }
.col { padding: 34px 30px 34px 0; border-right: 1px solid var(--line); }
.col:last-child { border-right: none; padding-right: 0; }
.col .idx { display: block; margin-bottom: 18px; }
.col h3 { margin-bottom: 12px; }
.col p { font-size: 15.5px; }

/* ---------- SERVICES (numbered list) ---------- */
.svc-list { margin-top: 56px; border-top: 1px solid var(--line); }
.svc {
  display: grid; grid-template-columns: 64px 1fr 1.3fr; gap: 28px; align-items: baseline;
  padding: 30px 0; border-bottom: 1px solid var(--line);
  transition: padding-left .3s var(--ease), background .3s;
}
.svc:hover { padding-left: 14px; background: linear-gradient(90deg, rgba(189,122,44,.07), transparent 60%); }
.svc-num { font-family: 'Fraunces', serif; font-style: italic; font-size: 18px; color: var(--ochre); }
.svc h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 460; }
.svc:hover h3 { color: var(--teal); }
.svc p { font-size: 15.5px; }

/* ---------- FULL-BLEED IMAGE BAND ---------- */
.band { position: relative; min-height: 560px; display: grid; place-items: center; color: var(--paper); overflow: hidden; }
.band img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,58,52,.34), rgba(8,40,36,.72)); z-index: 1; }
.band-inner { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 80px 32px; }
.band-inner h2 { color: var(--paper); }
.band-inner h2 em { color: var(--ochre-soft); }
.band-quote { font-family: 'Fraunces', serif; font-size: clamp(26px, 3.6vw, 46px); font-style: italic; font-weight: 400; line-height: 1.22; }
.band-sub { margin-top: 22px; color: rgba(244,238,226,.82); font-size: 16px; letter-spacing: .02em; }

/* ---------- AUDIENCE (list + figure) ---------- */
.aud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 56px; }
.aud-figure img { border-radius: 3px; box-shadow: -24px 24px 0 -2px rgba(189,122,44,.28); }
.checks { list-style: none; display: grid; gap: 0; }
.checks li {
  display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start;
  padding: 20px 0; border-bottom: 1px solid rgba(244,238,226,.16); font-size: 17px;
  color: rgba(244,238,226,.92);
}
.checks li:first-child { border-top: 1px solid rgba(244,238,226,.16); }
.checks .n { font-family: 'Fraunces', serif; font-style: italic; color: var(--ochre); font-size: 16px; }

/* ---------- WHY / FIGURES ---------- */
.figures { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.fig { padding: 38px 30px; background: var(--paper); border: 1px solid var(--line); border-radius: 3px; }
.section.alt .fig { background: var(--paper); }
.fig strong { display: block; font-family: 'Fraunces', serif; font-weight: 460; font-size: clamp(34px, 4vw, 50px); color: var(--teal); line-height: 1; letter-spacing: -.02em; }
.fig span { display: block; margin-top: 14px; font-size: 15px; color: var(--ink-soft); }
.fineprint { margin-top: 40px; font-size: 13.5px; color: var(--muted); max-width: 78ch; font-style: italic; }

/* ---------- FAQ ---------- */
.faq { margin-top: 48px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 26px 0; }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 24px; align-items: baseline;
  font-family: 'Fraunces', serif; font-size: clamp(20px, 2.3vw, 27px); font-weight: 460; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '＋'; font-family: sans-serif; color: var(--ochre); font-size: 24px; transition: transform .3s var(--ease); }
.faq details[open] summary { color: var(--teal); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 16px; font-size: 16px; max-width: 70ch; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.contact-card {
  background: var(--teal); color: var(--paper); border-radius: 4px; padding: 48px;
  box-shadow: 22px 22px 0 -2px var(--teal-deep);
}
.contact-card h3 { color: var(--paper); font-size: 28px; margin-bottom: 10px; }
.contact-card p { color: rgba(244,238,226,.82); }
.contact-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.contact-note { margin-top: 22px; font-size: 13px; color: rgba(244,238,226,.6); }

/* ---------- FOOTER ---------- */
.foot { background: var(--ink); color: rgba(244,238,226,.7); padding: 72px 0 36px; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(244,238,226,.12); }
.foot-brand .brand-word { color: var(--paper); }
.foot-tag { margin-top: 16px; max-width: 38ch; color: rgba(244,238,226,.6); font-size: 15px; }
.foot h4 { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--ochre); margin-bottom: 16px; font-weight: 700; font-family: 'Hanken Grotesk', sans-serif; }
.foot ul { list-style: none; display: grid; gap: 10px; }
.foot ul a, .foot ul li { color: rgba(244,238,226,.72); font-size: 15px; }
.foot ul a:hover { color: var(--paper); }
.foot-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 28px; font-size: 13px; color: rgba(244,238,226,.5); }
.foot-bottom .lang a:hover { color: var(--paper); }
.foot-bottom .lang .here { background: rgba(244,238,226,.16); color: var(--paper); }

/* ---------- ENTRANCE ANIMATION ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); animation: rise .9s var(--ease) forwards; }
  .d1 { animation-delay: .05s; } .d2 { animation-delay: .15s; } .d3 { animation-delay: .25s; }
  .d4 { animation-delay: .35s; } .d5 { animation-delay: .45s; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-figure { max-width: 460px; }
  .hero-figure img { box-shadow: 18px 18px 0 -2px var(--ochre-soft); }
  .cols { grid-template-columns: 1fr; }
  .col { border-right: none; border-bottom: 1px solid var(--line); padding: 28px 0; }
  .col:last-child { border-bottom: none; }
  .aud-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .aud-figure { order: -1; max-width: 520px; }
  .figures { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .head-nav { display: none; }
  .wrap { padding: 0 20px; }
  .section { padding: 72px 0; }
  .svc { grid-template-columns: 40px 1fr; gap: 12px; }
  .svc p { grid-column: 2; }
  .hero-meta { grid-template-columns: 1fr; gap: 16px; }
  .contact-card { padding: 34px; box-shadow: 14px 14px 0 -2px var(--teal-deep); }
  .foot-top { grid-template-columns: 1fr; }
}
