:root {
  color-scheme: light;
  --page: #f4f1ec;
  --ink: #1e1d1b;
  --muted: #6d6861;
  --line: rgba(30, 29, 27, 0.12);
  --accent: #7e1824;
  --accent-2: #b68b5e;
  --panel: #fffaf3;
  --panel-2: #eee6da;
  --dark: #191817;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.theme-control {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 16px 46px rgba(24, 23, 21, 0.16);
  backdrop-filter: blur(18px);
}

.theme-control > span {
  padding-left: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow,
.hero__kicker,
.note-card__tag {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.variant-switch {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.variant-switch button {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.variant-switch button.active {
  background: var(--ink);
  color: #fff;
}

.concept {
  display: none;
  padding: clamp(16px, 3vw, 36px);
}

.concept.is-visible {
  display: block;
}

.site-frame {
  overflow: hidden;
  min-height: 980px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(24, 23, 21, 0.12);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(22px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.05;
}

.brand__mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.site-nav__links {
  display: flex;
  gap: 28px;
  color: var(--muted);
}

.site-nav__links a,
.nav-phone {
  text-decoration: none;
}

.nav-phone {
  color: var(--accent);
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  padding: clamp(44px, 7vw, 94px) clamp(22px, 5vw, 72px) clamp(54px, 8vw, 104px);
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.96;
}

.hero__lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 22px;
  text-decoration: none;
  font-weight: 800;
}

.button--primary {
  background: var(--accent);
  color: #fff;
}

.button--secondary {
  border-color: var(--line);
  color: var(--ink);
}

.button--light {
  background: #fff;
  color: var(--ink);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.trust-row li {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.portrait-card {
  align-self: stretch;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(145deg, rgba(126, 24, 36, 0.12), rgba(182, 139, 94, 0.18));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.portrait-card__photo {
  display: block;
  width: 100%;
  flex: 1;
  border-radius: 6px;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 42%;
  filter: grayscale(1) contrast(1.05);
}

.concept--burgundy .portrait-card__photo {
  object-position: 50% 38%;
  filter: none;
}

.portrait-card__plate {
  margin-top: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 6px;
}

.portrait-card__plate strong,
.portrait-card__plate span {
  display: block;
}

.portrait-card__plate span {
  margin-top: 4px;
  color: var(--muted);
}

.services,
.proof,
.cta,
.approach,
.expertise,
.testimonial {
  padding: clamp(44px, 7vw, 88px) clamp(22px, 5vw, 72px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2,
.proof h2,
.cta h2 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.02;
}

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

.service-grid article {
  min-height: 230px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-grid span {
  color: var(--accent);
  font-weight: 900;
}

.service-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.service-grid p,
.proof-list p,
.testimonial span {
  color: var(--muted);
}

.proof {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 40px;
  background: var(--panel-2);
}

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

.proof-list p {
  margin: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--accent);
  color: #fff;
}

.cta .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.concept--navy {
  --page: #eef2f5;
  --ink: #142337;
  --muted: #657286;
  --line: rgba(20, 35, 55, 0.14);
  --accent: #164a7a;
  --accent-2: #d6b56d;
  --panel: #f7f9fb;
  --panel-2: #e6edf3;
}

.concept--navy .site-frame {
  background: var(--panel);
}

.hero--split {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
}

.case-panel {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(20, 35, 55, 0.1);
}

.case-panel__portrait {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: 50% 42%;
  border-radius: 6px;
  filter: grayscale(1) contrast(1.03);
}

.case-panel__label {
  margin: 0;
  color: var(--accent);
  font-weight: 900;
}

.case-panel__item {
  padding: 20px;
  background: #f1f5f8;
  border-radius: 6px;
}

.case-panel__item strong,
.case-panel__item span {
  display: block;
}

.case-panel__item span {
  margin-top: 6px;
  color: var(--muted);
}

.service-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services--quiet .service-grid h3 {
  margin-top: 0;
}

.approach {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: var(--panel-2);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.approach article {
  min-height: 230px;
  padding: 24px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.approach span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
}

.approach h3 {
  margin: 42px 0 10px;
  font-size: 21px;
}

.approach p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.concept--noir {
  --page: #111111;
  --ink: #f4efe7;
  --muted: #bbb0a0;
  --line: rgba(244, 239, 231, 0.16);
  --accent: #b7935d;
  --accent-2: #7e1824;
  --panel: #171717;
  --panel-2: #211f1c;
}

.concept--noir .site-frame {
  background: var(--panel);
  color: var(--ink);
}

.concept--noir .site-nav,
.concept--noir .button--secondary {
  border-color: var(--line);
}

.concept--noir .button--secondary {
  color: var(--ink);
}

.hero--premium {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.premium-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(183, 147, 93, 0.12), rgba(126, 24, 36, 0.2)),
    #222;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.premium-card img {
  width: 100%;
  height: 180px;
  margin-bottom: auto;
  object-fit: cover;
  object-position: 50% 42%;
  border-radius: 6px;
  filter: grayscale(1) contrast(1.08);
}

.premium-card span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 96px;
  line-height: 0.9;
  color: var(--accent);
}

.premium-card strong {
  margin-top: 10px;
  font-size: 30px;
}

.premium-card p {
  color: var(--muted);
}

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

.expertise article {
  min-height: 250px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.expertise span,
.testimonial span {
  display: block;
  color: var(--accent);
  font-weight: 800;
}

.expertise strong {
  display: block;
  margin-top: 58px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.05;
}

.testimonial {
  background: #111;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonial p {
  max-width: 860px;
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.05;
}

@media (max-width: 920px) {
  .theme-control,
  .site-nav,
  .section-heading,
  .cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .overview,
  .hero,
  .proof,
  .trust-row,
  .service-grid,
  .service-grid--three,
  .approach,
  .expertise {
    grid-template-columns: 1fr;
  }

  .site-nav__links {
    flex-wrap: wrap;
  }

  .portrait-card,
  .premium-card {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .theme-control {
    right: 10px;
    bottom: 10px;
    left: 10px;
    align-items: stretch;
    border-radius: 8px;
  }

  .theme-control > span {
    padding: 10px 0 0 10px;
  }

  .variant-switch {
    width: 100%;
    justify-content: space-between;
    border-radius: 8px;
  }

  .variant-switch button {
    flex: 1;
    padding-inline: 10px;
  }

  .concept {
    padding-inline: 12px;
    padding-bottom: 120px;
  }

  .hero h2 {
    font-size: 40px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
