:root {
  --ink: #161515;
  --paper: #f7f4ef;
  --paper-strong: #fffaf2;
  --muted: #726b62;
  --line: rgba(22, 21, 21, 0.14);
  --wine: #7a1f2b;
  --wine-dark: #54151d;
  --moss: #53624a;
  --gold: #c79f53;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 24px 80px rgba(22, 21, 21, 0.18);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--paper-strong);
  background: linear-gradient(
    180deg,
    rgba(22, 21, 21, 0.72),
    rgba(22, 21, 21, 0)
  );
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 250, 242, 0.46);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.9rem;
}

.nav-links a,
.header-cta {
  color: rgba(255, 250, 242, 0.84);
}

.nav-links a:hover,
.header-cta:hover {
  color: var(--paper-strong);
}

.header-actions,
.header-social {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 14px;
}

.header-social {
  gap: 8px;
}

.header-social a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 250, 242, 0.34);
  border-radius: 50%;
  color: rgba(255, 250, 242, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.header-social a:hover {
  border-color: rgba(255, 250, 242, 0.7);
  color: var(--paper-strong);
}

.header-cta {
  padding: 11px 16px;
  border: 1px solid rgba(255, 250, 242, 0.38);
  border-radius: 999px;
  font-size: 0.86rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  padding: 150px clamp(18px, 5vw, 72px) 44px;
  color: var(--paper-strong);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(22, 21, 21, 0.9) 0%,
      rgba(22, 21, 21, 0.66) 42%,
      rgba(22, 21, 21, 0.18) 100%
    ),
    linear-gradient(0deg, rgba(22, 21, 21, 0.72), rgba(22, 21, 21, 0.08) 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  align-self: center;
  padding-bottom: 26px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
  margin: 0;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 21px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  background: var(--wine);
  color: var(--paper-strong);
  box-shadow: 0 18px 40px rgba(122, 31, 43, 0.34);
}

.button.primary:hover {
  background: var(--wine-dark);
}

.button.secondary {
  color: var(--paper-strong);
  border-color: rgba(255, 250, 242, 0.42);
  background: rgba(255, 250, 242, 0.08);
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(920px, 100%);
  align-self: end;
  margin-top: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, 0.14);
  backdrop-filter: blur(14px);
}

.hero-panel > div {
  min-height: 138px;
  padding: 24px;
  background: rgba(22, 21, 21, 0.42);
}

.stat {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.stat-label {
  display: block;
  margin-top: 10px;
  color: rgba(255, 250, 242, 0.72);
  line-height: 1.45;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: var(--paper-strong);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(22, 21, 21, 0.06);
}

.trust-strip p {
  margin: 0;
  min-height: 76px;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.section,
.split-section,
.proof-section,
.contact-section,
.profile-section,
.visual-section {
  padding: clamp(64px, 10vw, 124px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(32px, 8vw, 110px);
  align-items: end;
}

.intro > p,
.split-copy > p,
.proof-copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
  overflow: hidden;
}

.service-card {
  min-height: 300px;
  padding: 28px;
  background: var(--paper-strong);
}

.service-number {
  display: inline-block;
  margin-bottom: 80px;
  color: var(--wine);
  font-weight: 900;
}

.service-card p {
  color: var(--muted);
  line-height: 1.65;
}

.profile-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(280px, 0.9fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(83, 98, 74, 0.11), rgba(255, 250, 242, 0)),
    var(--paper-strong);
}

.profile-image-wrap {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.profile-image {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.photo-label {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 250, 242, 0.34);
  border-radius: var(--radius-md);
  background: rgba(22, 21, 21, 0.74);
  color: var(--paper-strong);
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.profile-copy > p,
.visual-heading > p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.profile-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.profile-facts span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--moss);
  font-size: 0.86rem;
  font-weight: 900;
}

.social-panel,
.contact-social {
  margin-top: 22px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 242, 0.72);
}

.social-panel p,
.contact-social > span {
  display: block;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-links a,
.footer-social a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-strong);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 7px 10px;
}

.social-links a:hover,
.footer-social a:hover {
  border-color: rgba(122, 31, 43, 0.42);
  color: var(--wine);
}

.social-links span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--wine);
  color: var(--paper-strong);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.social-links.compact a {
  min-height: 32px;
  padding: 6px 10px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 0.8fr);
  gap: clamp(34px, 6vw, 90px);
  background: #20201d;
  color: var(--paper-strong);
}

.split-copy > p {
  margin-top: 24px;
  color: rgba(255, 250, 242, 0.74);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 250, 242, 0.8);
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 14px;
  height: 14px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.timeline {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, 0.16);
}

.timeline-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  min-height: 148px;
  padding: 28px;
  background: rgba(255, 250, 242, 0.06);
}

.timeline-item span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #20201d;
  font-weight: 900;
}

.timeline-item p {
  color: rgba(255, 250, 242, 0.7);
  line-height: 1.6;
}

.visual-section {
  background: #ece5d8;
}

.visual-heading {
  width: min(780px, 100%);
  margin-bottom: 34px;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 18px;
}

.photo-card {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
}

.photo-card.large {
  grid-row: span 2;
  min-height: 560px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(22, 21, 21, 0.78), transparent);
  content: "";
}

.photo-card:hover img {
  transform: scale(1.035);
}

.photo-card figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: var(--paper-strong);
  font-weight: 900;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: center;
  background: var(--paper-strong);
}

.proof-copy > p {
  margin-top: 24px;
}

.proof-grid {
  display: grid;
  gap: 16px;
}

.proof-grid > div {
  display: grid;
  gap: 8px;
  padding: 26px;
  border-left: 5px solid var(--moss);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 12px 40px rgba(22, 21, 21, 0.06);
}

.proof-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 0.78fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: start;
}

.contact-copy > p {
  margin-top: 24px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  color: var(--wine);
  font-weight: 800;
}

.contact-details span {
  color: var(--muted);
}

.contact-social {
  background: var(--paper-strong);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  border-radius: var(--radius-lg);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

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

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(199, 159, 83, 0.32);
  border-color: var(--gold);
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0;
}

.site-footer p + p {
  margin-top: 8px;
  max-width: 820px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-social a {
  min-height: 38px;
  background: transparent;
  font-size: 0.82rem;
  padding: 8px 12px;
}

@media (max-width: 980px) {
  .site-header {
    color: var(--paper-strong);
    background: rgba(22, 21, 21, 0.86);
  }

  .nav-links {
    display: none;
  }

  .header-social {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
  }

  .hero-panel,
  .trust-strip,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .intro,
  .split-section,
  .proof-section,
  .contact-section,
  .profile-section {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .photo-card.large {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .hero {
    padding: 112px 16px 28px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(22, 21, 21, 0.9), rgba(22, 21, 21, 0.58)),
      linear-gradient(0deg, rgba(22, 21, 21, 0.78), rgba(22, 21, 21, 0.12));
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-panel,
  .trust-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel > div,
  .service-card {
    min-height: auto;
  }

  .service-number {
    margin-bottom: 34px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .profile-image-wrap,
  .profile-image,
  .photo-card.large {
    min-height: 420px;
  }

  .site-footer {
    display: grid;
  }

  .footer-social {
    justify-content: flex-start;
  }
}
