:root {
  --ink: #122033;
  --ink-soft: #2a3b52;
  --navy: #1a365d;
  --cream: #f6f1e8;
  --paper: #fffdf8;
  --white: #ffffff;
  --copper: #c4844a;
  --copper-dark: #9a6330;
  --line: rgba(18, 32, 51, 0.12);
  --muted: #5c6b7c;
  --shadow: 0 20px 50px rgba(18, 32, 51, 0.08);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
.serif { font-family: "Fraunces", "Times New Roman", serif; }

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.logo .serif { font-weight: 500; }
.logo span.web {
  font-weight: 400;
  position: relative;
}
.logo span.web::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -3px;
  height: 2px;
  background: var(--copper);
}
nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
nav a {
  display: block;
  padding: 8px 12px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-radius: 999px;
}
nav a:hover, nav a.active { color: var(--navy); background: rgba(18,32,51,0.05); }
nav .cta {
  background: var(--navy);
  color: #fff !important;
  padding: 10px 16px;
  margin-left: 8px;
}
nav .cta:hover { background: #0f2744; }

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 64px 0 28px;
  text-align: center;
}
.eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--copper-dark);
  font-weight: 600;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin: 0 auto 18px;
}
.hero h1 em {
  font-style: italic;
  color: var(--copper-dark);
}
.hero p.lede {
  max-width: 46ch;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.12rem;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: #0f2744; }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-copper { background: var(--copper); color: #fff; }
.btn-copper:hover { background: var(--copper-dark); }

.hero-stage {
  margin-top: 48px;
  position: relative;
  min-height: 380px;
}
.hero-collage {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr 0.9fr;
  gap: 18px;
  align-items: end;
}
.hero-collage figure {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.hero-collage img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage figure:nth-child(1) { transform: translateY(28px) rotate(-2.5deg); }
.hero-collage figure:nth-child(2) { transform: translateY(0); }
.hero-collage figure:nth-child(3) { transform: translateY(36px) rotate(2.2deg); }

/* Pillars */
.pillars { padding: 72px 0 24px; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.pillar {
  text-align: center;
  padding: 8px 6px 24px;
}
.icon-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.icon-circle svg { width: 26px; height: 26px; }
.pillar h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-weight: 600;
}
.pillar p { color: var(--muted); font-size: 0.95rem; }

/* Sections */
.section { padding: 80px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
}
.section-head h2, .page-hero h1, .dark h2 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.section-head p { color: var(--muted); max-width: 38ch; }

.dark {
  background: #0f1a28;
  color: #f4efe6;
}
.dark .muted, .dark p { color: rgba(244,239,230,0.74); }

/* Work */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
a.card { color: inherit; display: block; transition: transform 0.2s ease; }
a.card:hover { transform: translateY(-3px); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card img { width: 100%; height: 250px; object-fit: cover; }
.card-body { padding: 20px 22px 24px; }
.tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-dark);
  font-weight: 600;
  margin-bottom: 6px;
}
.card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.card p { color: var(--muted); font-size: 0.95rem; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.filter-btn {
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.88rem;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* Reviews */
.reviews { padding: 90px 0; }
.reviews h2 { text-align: center; margin-bottom: 48px; }
.reviews h2 em { font-style: italic; }
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
}
.review p { font-size: 1.02rem; margin-bottom: 16px; }
.review .who { font-weight: 600; color: #fff; }
.review .who span { font-weight: 400; color: rgba(244,239,230,0.6); }

/* News */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.news-card {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.news-card time { color: var(--muted); font-size: 0.86rem; }
.news-card h3 { margin: 8px 0 10px; font-size: 1.35rem; font-family: "Fraunces", serif; font-weight: 500; }

/* Footer */
.site-footer {
  background: #0c1520;
  color: #efe8dc;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer h3 { font-family: "Fraunces", serif; font-weight: 500; margin-bottom: 12px; }
.site-footer p, .site-footer a { color: rgba(239,232,220,0.72); }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  font-size: 0.86rem;
  color: rgba(239,232,220,0.5);
}

/* Page hero */
.page-hero {
  padding: 64px 0 36px;
  border-bottom: 1px solid var(--line);
}
.page-hero p { max-width: 56ch; color: var(--muted); margin-top: 12px; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.prose h2 { font-family: "Fraunces", serif; font-weight: 500; font-size: 2rem; margin: 0 0 14px; }
.prose p { color: var(--muted); margin-bottom: 14px; }
.prose ul { margin: 12px 0 20px 18px; color: var(--muted); }
.prose li { margin-bottom: 6px; }

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.service {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  background: #fff;
}
.service h3 { margin-bottom: 8px; font-size: 1.15rem; }
.service p { color: var(--muted); font-size: 0.96rem; }

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  padding: 22px 8px 8px 0;
  border-top: 1px solid var(--ink);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  color: var(--copper-dark);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  font-weight: 600;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* Forms */
form {
  display: grid;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 12px;
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
}
textarea { min-height: 120px; resize: vertical; }
.help { font-size: 0.8rem; color: var(--muted); font-weight: 400; margin-top: 4px; }
.checkboxes { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.checkboxes label { font-weight: 400; display: flex; gap: 8px; align-items: center; }
.form-success {
  display: none;
  background: #e9f6ee;
  border: 1px solid #b7ddc3;
  color: #1b5e32;
  padding: 16px 18px;
  border-radius: 12px;
}
.contact-bits { display: grid; gap: 18px; }
.contact-bits div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.contact-bits h3 { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37,211,102,0.35);
}
.whatsapp svg { width: 28px; height: 28px; }

.note {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  .pillars-grid, .process { grid-template-columns: 1fr 1fr; }
  .pillars-grid .pillar:last-child { grid-column: span 2; }
  .hero-collage { grid-template-columns: 1fr; }
  .hero-collage figure { transform: none !important; }
  .split, .review-grid, .work-grid, .news-grid, .footer-grid, .service-list, .row {
    grid-template-columns: 1fr;
  }
  nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px;
  }
  nav.open { display: block; }
  nav ul { flex-direction: column; align-items: stretch; }
  nav .cta { margin: 8px 0 0; text-align: center; }
  .menu-toggle { display: grid; place-items: center; }
  .section-head { flex-direction: column; align-items: start; }
}
