:root {
  --ink: #18231f;
  --muted: #66736d;
  --paper: #fbf8f1;
  --panel: #efe7d9;
  --action: #1d5a46;
  --accent: #c48b4b;
  --white: #fffdf8;
  --line: rgba(24, 35, 31, 0.14);
  --shadow: 0 24px 70px rgba(21, 28, 26, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

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

.trade-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 50;
  width: 0;
  height: 3px;
  background: var(--action);
}

.trade-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(251, 248, 241, 0.88);
  backdrop-filter: blur(18px);
}

.flagship-site .trade-header {
  position: fixed;
  right: 0;
  left: 0;
  border-bottom-color: rgba(255, 255, 255, 0.16);
  background: rgba(16, 23, 22, 0.42);
}

.flagship-site .brand-mark span {
  background: rgba(255, 253, 248, 0.92);
  color: var(--ink);
}

.flagship-site .brand-mark strong,
.flagship-site .trade-nav,
.flagship-site .trade-nav a {
  color: white;
}

.flagship-site .brand-mark em {
  color: rgba(255, 255, 255, 0.72);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

.brand-mark strong,
.brand-mark em {
  display: block;
  font-style: normal;
}

.brand-mark strong {
  font-size: 15px;
}

.brand-mark em {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.trade-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(24, 35, 31, 0.72);
  font-size: 14px;
}

.trade-nav a {
  text-decoration: none;
}

.button,
.button-soft {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
  text-decoration: none;
}

.button {
  background: var(--action);
  color: white;
  box-shadow: 0 14px 30px rgba(29, 90, 70, 0.25);
}

.button-soft {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 720px;
  padding: clamp(34px, 7vw, 92px) clamp(18px, 4vw, 56px);
  overflow: hidden;
}

.flagship-site .hero {
  min-height: 780px;
  padding-top: clamp(104px, 12vw, 150px);
  background: #101716;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.96) 0%, rgba(251, 248, 241, 0.84) 44%, rgba(251, 248, 241, 0.38) 68%, rgba(251, 248, 241, 0.9) 100%),
    var(--hero-image) center / cover;
  transform: scale(1.025);
  animation: tradePulse 14s ease-in-out infinite alternate;
}

.flagship-site .hero::before {
  background:
    linear-gradient(90deg, rgba(12, 18, 17, 0.88) 0%, rgba(12, 18, 17, 0.72) 34%, rgba(12, 18, 17, 0.18) 70%, rgba(12, 18, 17, 0.68) 100%),
    var(--hero-image) center / cover;
  filter: saturate(1.04) contrast(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(0deg, var(--paper), rgba(251, 248, 241, 0));
}

.flagship-site .hero::after {
  background: linear-gradient(0deg, var(--paper), rgba(251, 248, 241, 0));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.flagship-site h1 {
  max-width: 720px;
  font-size: clamp(42px, 6.2vw, 84px);
  line-height: 0.96;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--action);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.flagship-site .hero .eyebrow {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  color: rgba(24, 35, 31, 0.76);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.flagship-site .hero-copy {
  max-width: 600px;
}

.flagship-site .hero .hero-copy {
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(620px, 100%);
  margin-top: 30px;
}

.hero-metrics div {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.hero-metrics span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.66);
  color: rgba(24, 35, 31, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.flagship-site .hero .trust-chips span {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
}

.quote-panel {
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow);
}

.flagship-site .quote-panel {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  max-width: 440px;
}

.quote-panel h2 {
  margin-bottom: 10px;
  font-size: 26px;
}

.quote-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.quote-panel form {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.quote-label {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 7px 10px;
  background: color-mix(in srgb, var(--accent) 22%, white);
  color: color-mix(in srgb, var(--ink) 78%, var(--accent));
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.quote-checklist span {
  border-radius: 6px;
  padding: 8px 10px;
  background: color-mix(in srgb, var(--panel) 50%, white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.service-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 2px 0 0;
  border: 0;
  padding: 0;
}

.service-picker-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-picker legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.service-choice {
  cursor: pointer;
}

.service-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.service-choice span {
  display: grid;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.service-choice input:checked + span {
  border-color: var(--action);
  background: var(--action);
  color: white;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--action) 24%, transparent);
}

.service-choice input:focus-visible + span {
  outline: 3px solid color-mix(in srgb, var(--accent) 45%, transparent);
  outline-offset: 2px;
}

.service-picker-dark legend {
  color: rgba(255, 255, 255, 0.76);
}

.service-picker-dark .service-choice span {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.service-picker-dark .service-choice input:checked + span {
  border-color: white;
  background: white;
  color: var(--ink);
}

textarea {
  min-height: 104px;
  resize: vertical;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.6fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.service-board-copy {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)),
    color-mix(in srgb, var(--panel) 48%, white);
  box-shadow: 0 18px 48px rgba(21, 28, 26, 0.08);
}

.service-board-copy h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
}

.service-board-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.trust-strip {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: -54px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(21, 28, 26, 0.09);
  overflow: hidden;
}

.flagship-site .trust-strip {
  margin-top: -56px;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 20px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-weight: 900;
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
}

.trust-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.services-grid,
.proof-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card,
.proof-card,
.process-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  min-height: 220px;
  padding: 24px;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.flagship-site .service-card {
  background: #fffdf8;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(21, 28, 26, 0.1);
}

.service-card span {
  display: inline-flex;
  margin-bottom: 24px;
  border-radius: 999px;
  padding: 6px 10px;
  background: color-mix(in srgb, var(--action) 12%, white);
  color: var(--action);
  font-size: 12px;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.service-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--action);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.service-card.is-featured {
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--action) 92%, black), var(--ink));
  color: white;
}

.service-card.is-featured span {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
}

.service-card.is-featured p,
.service-card.is-featured a {
  color: rgba(255, 255, 255, 0.78);
}

.service-card p,
.proof-card p,
.process-card p,
.review-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.proof-band {
  background: var(--ink);
  color: var(--white);
}

.proof-band .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.proof-grid {
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
}

.proof-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.proof-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.flagship-site .proof-card img {
  filter: saturate(1.02) contrast(1.03);
}

.proof-card:first-child img {
  height: 390px;
}

.proof-card div {
  padding: 20px;
}

.proof-card p {
  color: rgba(255, 255, 255, 0.7);
}

.work-cta {
  display: grid;
  grid-template-columns: 0.55fr 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.06);
}

.work-cta strong {
  font-size: 18px;
}

.work-cta span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.work-cta a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  background: white;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.feature-row span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--action);
  color: white;
  font-weight: 900;
}

.feature-row h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.feature-row p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.image-stack {
  position: relative;
  min-height: 520px;
}

.image-stack img {
  position: absolute;
  border: 10px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.image-stack img:first-child {
  inset: 0 auto auto 0;
  width: 72%;
  height: 390px;
}

.image-stack img:last-child {
  right: 0;
  bottom: 0;
  width: 56%;
  height: 300px;
}

.reviews {
  background: color-mix(in srgb, var(--panel) 62%, white);
}

.review-wrap {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
}

.rating-card {
  border-radius: 8px;
  padding: 30px;
  background: var(--action);
  color: white;
}

.flagship-site .rating-card {
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--action) 88%, black), var(--ink));
}

.rating-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: 1;
}

.rating-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.review-list {
  display: grid;
  gap: 12px;
}

.review-card {
  padding: 20px;
}

.stars {
  color: var(--accent);
  letter-spacing: 0;
}

.process-card {
  padding: 22px;
}

.process-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--accent);
  font-weight: 900;
}

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.areas span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 14px;
  background: var(--white);
  font-weight: 800;
}

.contact-band {
  background: var(--ink);
  color: var(--white);
}

.contact-band .section-heading p,
.contact-band .contact-details p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
}

.contact-details,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-details a {
  display: block;
  margin-top: 12px;
  color: white;
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border-color: rgba(255, 255, 255, 0.18);
}

.legal-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  background: #101716;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.legal-footer a {
  margin-left: 14px;
  color: inherit;
  text-decoration: none;
}

.mobile-contact-bar {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 45;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 8px;
  background: rgba(16, 23, 22, 0.88);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.mobile-contact-bar a {
  display: grid;
  min-height: 44px;
  place-items: center;
  border-radius: 999px;
  background: var(--action);
  color: white;
  font-weight: 900;
  text-decoration: none;
}

.mobile-contact-bar a:last-child {
  background: white;
  color: var(--ink);
}

[data-reveal] {
  transform: translateY(22px);
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  transform: none;
  opacity: 1;
}

@keyframes tradePulse {
  from {
    transform: scale(1.025);
  }
  to {
    transform: scale(1.07);
  }
}

@media (max-width: 920px) {
  .trade-nav a:not(.button) {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .section-heading,
  .split,
  .review-wrap,
  .service-board,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-board-copy {
    position: static;
  }

  .quote-panel {
    margin-top: 28px;
  }

  .trust-strip-grid,
  .services-grid,
  .proof-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics,
  .quote-checklist,
  .work-cta,
  .service-picker {
    grid-template-columns: 1fr;
  }

  .service-picker-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .image-stack {
    min-height: 380px;
  }

  .image-stack img:first-child {
    width: 78%;
    height: 280px;
  }

  .image-stack img:last-child {
    width: 64%;
    height: 220px;
  }
}

@media (max-width: 560px) {
  .trade-header {
    padding: 12px 14px;
  }

  .brand-mark em {
    display: none;
  }

  .trade-nav .button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  h1 {
    font-size: 44px;
  }

  .section {
    padding: 54px 16px;
  }

  .hero {
    padding: 34px 16px 80px;
  }

  .flagship-site .hero {
    padding-top: 96px;
  }

  .flagship-site h1 {
    font-size: 42px;
  }

  .service-picker-compact {
    grid-template-columns: 1fr;
  }

  .mobile-contact-bar {
    display: grid;
  }

  .legal-footer {
    padding-bottom: 92px;
  }
}
