:root {
  --ink: #152033;
  --muted: #66615b;
  --paper: #f7f3ea;
  --paper-soft: #fcfaf4;
  --gold: #aa7d34;
  --gold-dark: #7d5924;
  --gold-light: #d7b16b;
  --sage: #66745f;
  --sage-soft: #e7ece2;
  --blush: #e7b5aa;
  --blush-soft: #faebe6;
  --line: #e4d8c5;
  --rose: #d88478;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(45, 35, 22, 0.12);
  --shadow-strong: 0 28px 80px rgba(21, 32, 51, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 18%, rgba(231, 181, 170, 0.22), transparent 22rem),
    radial-gradient(circle at 92% 32%, rgba(102, 116, 95, 0.18), transparent 24rem),
    linear-gradient(90deg, rgba(170, 125, 52, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper-soft) 0%, #f8f1e5 48%, var(--paper-soft) 100%);
  background-size: auto, auto, 72px 72px, auto;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(252, 250, 244, 0.9);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(45, 35, 22, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 230px;
}

.brand img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  object-position: center 38%;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

nav a {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

nav a:hover {
  color: var(--gold-dark);
}

nav a {
  position: relative;
  padding-block: 8px;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  transition: transform 180ms ease;
}

nav a:hover::after {
  transform: scaleX(1);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.language-switcher span {
  text-transform: uppercase;
}

.language-switcher select {
  min-height: 38px;
  max-width: 138px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 30px 8px 10px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(247, 243, 234, 0.98) 0%, rgba(250, 235, 230, 0.9) 42%, rgba(231, 236, 226, 0.58) 100%),
    url("assets/legacy-logo.jpg") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 75% 18%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(180deg, transparent 70%, rgba(252, 250, 244, 0.92) 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: 1180px;
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) clamp(20px, 4vw, 40px);
}

.hero-copy {
  max-width: 720px;
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-kicker span {
  border: 1px solid rgba(170, 125, 52, 0.28);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
}

.hero-kicker span:nth-child(2) {
  border-color: rgba(102, 116, 95, 0.32);
  color: var(--sage);
  background: rgba(231, 236, 226, 0.74);
}

.hero-kicker span:nth-child(3) {
  border-color: rgba(216, 132, 120, 0.32);
  color: #9d5c53;
  background: rgba(250, 235, 230, 0.74);
}

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

h1,
h2,
h3,
blockquote {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 1.16;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 7vw, 86px);
  max-width: 760px;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.44);
}

.hero-subtitle {
  margin: 16px 0 22px;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
}

.hero-text {
  max-width: 660px;
  margin: 0;
  color: #3f3d39;
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(125, 89, 36, 0.26);
}

.button.secondary {
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  background: rgba(255, 255, 255, 0.68);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(45, 35, 22, 0.16);
}

.hero-panel {
  border: 1px solid rgba(170, 125, 52, 0.3);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(10px);
}

.hero-panel img {
  aspect-ratio: 1.15;
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.hero-panel-note {
  display: grid;
  gap: 3px;
  margin-top: 14px;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}

.hero-panel-note strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.hero-panel-note span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.trust-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: -38px auto 0;
  padding-inline: clamp(20px, 4vw, 40px);
  position: relative;
  z-index: 2;
}

.trust-ribbon div {
  min-height: 118px;
  border: 1px solid rgba(170, 125, 52, 0.24);
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(45, 35, 22, 0.08);
}

.trust-ribbon div:first-child {
  border-radius: 8px 0 0 8px;
}

.trust-ribbon div:last-child {
  border-radius: 0 8px 8px 0;
}

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

.trust-ribbon strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.15;
}

.trust-ribbon span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.section {
  scroll-margin-top: 96px;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(66px, 8vw, 104px) clamp(20px, 4vw, 40px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
}

.intro > p,
.why-copy p,
.commitment p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.services {
  border-top: 1px solid var(--line);
}

.services-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.58fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 0;
}

.showcase-summary {
  position: relative;
  border: 1px solid rgba(170, 125, 52, 0.26);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(21, 32, 51, 0.94), rgba(102, 116, 95, 0.86)),
    url("assets/legacy-logo.jpg") center / cover no-repeat;
  color: var(--white);
  box-shadow: var(--shadow);
}

.showcase-summary::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(231, 181, 170, 0.38), rgba(215, 177, 107, 0.2), rgba(102, 116, 95, 0.22));
}

.showcase-summary div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px 4px;
}

.showcase-summary div:last-child {
  border-bottom: 0;
}

.showcase-summary strong {
  min-width: 72px;
  color: #f1d59b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1;
}

.showcase-summary span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf1 100%);
  box-shadow: 0 14px 36px rgba(45, 35, 22, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.service-card:hover,
.directory-card:hover,
.estate-panel:hover,
.document-grid div:hover {
  transform: translateY(-4px);
  border-color: rgba(170, 125, 52, 0.45);
  box-shadow: 0 22px 58px rgba(45, 35, 22, 0.12);
}

.service-card span {
  display: block;
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 24px;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 23px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card:nth-child(2n) {
  background: linear-gradient(180deg, #ffffff 0%, var(--sage-soft) 100%);
}

.service-card:nth-child(3n) {
  background: linear-gradient(180deg, #ffffff 0%, var(--blush-soft) 100%);
}

.service-card:nth-child(2n)::before {
  background: linear-gradient(90deg, var(--sage), var(--gold-light));
}

.service-card:nth-child(3n)::before {
  background: linear-gradient(90deg, #b46a60, var(--gold-light));
}

.service-card:nth-child(2n) span {
  color: var(--sage);
}

.service-card:nth-child(3n) span {
  color: #b46a60;
}

.service-directory {
  margin-top: clamp(46px, 7vw, 76px);
  border-top: 1px solid var(--line);
  padding-top: clamp(44px, 6vw, 68px);
}

.directory-heading {
  max-width: 900px;
  margin-bottom: 28px;
}

.directory-heading p:last-child {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.directory-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f0 100%);
  box-shadow: 0 12px 32px rgba(45, 35, 22, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.directory-card:nth-child(2n) {
  background: linear-gradient(180deg, #ffffff 0%, var(--sage-soft) 100%);
}

.directory-card:nth-child(3n) {
  background: linear-gradient(180deg, #ffffff 0%, var(--blush-soft) 100%);
}

.directory-card h3 {
  min-height: 58px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 24px;
}

.directory-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.directory-card li {
  position: relative;
  padding-left: 22px;
  color: #3a3630;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.directory-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.estate-guide {
  border-top: 1px solid var(--line);
}

.section-heading p {
  max-width: 840px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.estate-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 38px);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(45, 35, 22, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.estate-panel.muted-panel {
  background: #fbf7ef;
}

.estate-panel h3 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 34px);
}

.estate-panel p {
  margin: 0 0 22px;
  color: var(--muted);
}

.estate-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.estate-panel li {
  position: relative;
  padding-left: 26px;
  color: #312d28;
  font-weight: 700;
}

.estate-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.process-band {
  background:
    linear-gradient(135deg, rgba(21, 32, 51, 0.96), rgba(63, 52, 39, 0.92)),
    url("assets/legacy-logo.jpg") center / cover no-repeat;
  border-block: 1px solid var(--line);
}

.process-band h2 {
  color: var(--white);
}

.process-band .eyebrow {
  color: #d5af70;
}

.process-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(66px, 8vw, 96px) clamp(20px, 4vw, 40px);
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  min-height: 96px;
  border: 1px solid rgba(215, 177, 107, 0.28);
  border-radius: 8px;
  padding: 22px 22px 22px 76px;
  background: rgba(255, 255, 255, 0.92);
  counter-increment: process;
}

.process-list li::before {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  left: 22px;
  top: 24px;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list strong {
  color: var(--ink);
  font-size: 18px;
}

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

.documents {
  border-top: 1px solid var(--line);
}

.compact-heading {
  max-width: 820px;
}

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

.document-grid div {
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
  color: #302c27;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(45, 35, 22, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.note {
  max-width: 900px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.why {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.why-copy p {
  margin-top: 18px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 20px 20px 48px;
  background: rgba(255, 255, 255, 0.86);
  color: #35312c;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(45, 35, 22, 0.05);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 27px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(170, 125, 52, 0.14);
}

.commitment {
  scroll-margin-top: 96px;
  background:
    linear-gradient(135deg, rgba(21, 32, 51, 0.96), rgba(21, 32, 51, 0.9)),
    url("assets/legacy-logo.jpg") center / cover no-repeat;
  color: var(--white);
}

.commitment > div {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(68px, 8vw, 100px) clamp(20px, 4vw, 40px);
}

.commitment .eyebrow {
  color: #d5af70;
}

blockquote {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
}

.commitment p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 34px clamp(10px, 2vw, 26px);
  z-index: -1;
  border: 1px solid rgba(170, 125, 52, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 28px 70px rgba(45, 35, 22, 0.08);
}

.contact-role {
  margin: 12px 0 16px;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
}

.contact-intro {
  max-width: 520px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
}

.inquiry-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(170, 125, 52, 0.28);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 32px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-strong);
}

.form-heading {
  margin-bottom: 4px;
}

.form-heading h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
}

.form-heading p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.inquiry-form label {
  display: grid;
  gap: 7px;
}

.inquiry-form label span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 132px;
}

.inquiry-form button {
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(125, 89, 36, 0.22);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

dl div {
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  background: rgba(255, 255, 255, 0.52);
  border-radius: 0 8px 8px 0;
  padding-block: 8px;
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

dd {
  margin: 2px 0 0;
  color: #292622;
  font-size: 17px;
  font-weight: 700;
}

dd a {
  color: var(--gold-dark);
}

.qr-panel {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 240, 0.96));
  box-shadow: var(--shadow-strong);
}

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

.qr-card {
  display: grid;
  gap: 10px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fffdf8;
  text-align: center;
  box-shadow: inset 0 0 0 4px rgba(170, 125, 52, 0.035);
}

.qr-card p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.qr-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  object-fit: contain;
  background: var(--white);
  padding: 8px;
}

.qr-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.contact-cta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(170, 125, 52, 0.32);
  border-radius: 8px;
  padding: 22px clamp(22px, 4vw, 34px);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  box-shadow: 0 18px 48px rgba(125, 89, 36, 0.22);
}

.contact-cta strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.contact-cta span {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

footer p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: auto;
    justify-content: flex-start;
  }

  .language-switcher {
    order: 4;
  }

  .hero-inner,
  .intro,
  .services-showcase,
  .estate-layout,
  .process-inner,
  .why,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .trust-ribbon {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding-top: 18px;
  }

  .trust-ribbon div,
  .trust-ribbon div:first-child,
  .trust-ribbon div:last-child {
    border-radius: 8px;
  }

  .service-grid,
  .directory-grid,
  .feature-list,
  .document-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    gap: 14px;
  }

  .brand {
    min-width: 100%;
  }

  nav {
    order: 2;
    width: 100%;
    gap: 16px;
    overflow-x: auto;
  }

  .language-switcher {
    order: 4;
    width: 100%;
    justify-content: space-between;
  }

  .language-switcher select {
    max-width: none;
    width: min(220px, 58vw);
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(247, 243, 234, 0.98), rgba(247, 243, 234, 0.88)),
      url("assets/legacy-logo.jpg") center / cover no-repeat;
  }

  .hero-actions,
  footer,
  .contact-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .directory-grid,
  .feature-list,
  .document-grid {
    grid-template-columns: 1fr;
  }

  .directory-card h3 {
    min-height: auto;
  }

  .service-card {
    min-height: auto;
  }

  .qr-grid {
    grid-template-columns: 1fr;
  }

  .contact::before {
    inset: 20px 8px;
  }

}
