:root {
  --bg: #f7f3ed;
  --bg-2: #efe9e0;
  --ink: #0d1a24;
  --ink-2: #2a3d4d;
  --muted: #6b7f8e;
  --gold: #c9952e;
  --gold-soft: #e8a83a;
  --gold-light: #fef3dc;
  --line: rgba(13, 26, 36, 0.12);
  --shadow: 0 4px 24px rgba(13, 26, 36, 0.10);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
::selection { background: rgba(201, 149, 46, 0.22); color: var(--ink); }
:focus-visible {
  outline: 2px solid rgba(201, 149, 46, 0.5);
  outline-offset: 3px;
  border-radius: 4px;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 243, 237, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(13, 26, 36, 0.08);
}

.brand-text {
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
  color: var(--ink);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a:hover { color: var(--ink); }

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff !important;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(13, 26, 36, 0.18);
}

.hero {
  padding: clamp(48px, 7vw, 92px) 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: center;
}

.hero-copy {
  padding: clamp(24px, 4vw, 46px);
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.065em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.15rem, 8.8vw, 7.15rem);
  line-height: 0.86;
  color: var(--ink);
}

h2 {
  font-size: clamp(2rem, 4.6vw, 4.25rem);
  line-height: 0.9;
  color: var(--ink);
}

.lead {
  max-width: 58ch;
  margin: 22px 0 0;
  color: var(--ink-2);
  font-size: clamp(1.06rem, 1.4vw, 1.22rem);
}

.boundary {
  width: fit-content;
  margin: 18px 0 0;
  padding: 11px 14px;
  border: 1px solid rgba(201, 149, 46, 0.35);
  border-radius: 14px;
  background: var(--gold-light);
  color: var(--ink);
  font-size: 0.9rem;
}

.hero-actions, .card-actions, .scope-actions, .final-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.button.primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 24px rgba(13, 26, 36, 0.18);
}

.button.secondary {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.button:hover { transform: translateY(-1px); }
.button.primary:hover { box-shadow: 0 12px 32px rgba(13, 26, 36, 0.24); }

.trust-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.trust-row span {
  padding: 8px 13px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: #fff;
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-panel {
  border-radius: var(--radius);
  padding: 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.logo-card {
  display: grid;
  place-items: center;
  min-height: 260px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}

.logo-card img {
  width: min(100%, 300px);
  border-radius: 16px;
}

.panel-copy {
  padding: 18px 4px 4px;
}

.panel-label {
  margin: 0 0 8px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
}

.panel-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.panel-copy p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
}

.section {
  padding: clamp(34px, 5.5vw, 70px) 0;
}

.choose-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 22px;
  align-items: start;
}

.section-intro {
  position: sticky;
  top: 108px;
}

.section-intro p:not(.eyebrow), .section-heading p {
  color: var(--muted);
  max-width: 58ch;
  margin: 14px 0 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.choice-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.choice-card:hover { transform: translateY(-2px); }

.choice-card.dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.choice-card.dark .choice-number { color: var(--gold-soft); }
.choice-card.dark span:last-child { color: rgba(255,255,255,0.65); }

.choice-number {
  color: var(--gold);
  font-weight: 950;
  letter-spacing: 0.08em;
}

.choice-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.choice-card span:last-child {
  color: var(--muted);
}

.compact {
  max-width: 760px;
  margin-bottom: 18px;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.example-card {
  padding: 14px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.shot {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--bg-2);
}

.shot img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.shot:hover img { transform: scale(1.025); }

.shot span {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 8px 0 0;
}

.service-card p:not(.eyebrow), .scope-card p, .final-card p {
  color: var(--muted);
}

.service-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-2);
}

.service-card li {
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 950;
}

.card-actions { margin-top: auto; padding-top: 18px; }

.scope-note {
  margin: 12px 0 0;
  font-size: 0.92rem;
  color: var(--gold) !important;
  font-weight: 800;
}

.scope-card, .final-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.scope-actions, .final-actions {
  min-width: 250px;
  justify-content: flex-end;
}

.gallery { padding-top: 20px; }

.final-card {
  background: var(--ink);
  border-color: var(--ink);
}

.final-card h2 { color: #fff; }
.final-card p { color: rgba(255,255,255,0.65) !important; }

.contact-line {
  font-weight: 900;
  color: #fff !important;
}
.contact-line a { text-decoration: none; color: #fff; }
.contact-line span { color: var(--gold-soft); padding: 0 8px; }

.final-card .button.primary {
  background: linear-gradient(145deg, var(--gold-soft), var(--gold));
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(201, 149, 46, 0.3);
}

.final-card .button.secondary {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

.footer {
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 13px;
  border: 1px solid var(--line);
}

.footer-brand strong { display: block; color: var(--ink); }
.footer-brand span { display: block; font-size: 0.9rem; }
.footer p { margin: 0; }

@media (max-width: 980px) {
  .hero-grid, .choose-grid, .service-grid, .scope-card, .final-card {
    grid-template-columns: 1fr;
  }
  .section-intro { position: static; }
  h1 { max-width: 12ch; }
  .scope-actions, .final-actions { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .wrap { width: min(100% - 28px, 1160px); }
  .header-inner { min-height: auto; padding: 12px 0; }
  .brand-text { display: none; }
  .nav { gap: 10px; }
  .nav a:not(.nav-cta) { display: none; }
  .hero { padding-top: 28px; }
  .hero-copy { padding: 22px; }
  h1 { font-size: clamp(3.05rem, 16vw, 5rem); }
  .choice-grid, .examples-grid, .pair { grid-template-columns: 1fr; }
  .choice-card { min-height: 178px; }
  .shot, .shot img { min-height: 250px; }
  .hero-actions, .card-actions, .scope-actions, .final-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
}
