:root {
  --cream: #f6f1e8;
  --cream-deep: #ebe2d4;
  --sand: #d9c9ae;
  --coffee: #695642;
  --coffee-dark: #3f3429;
  --navy: #10243a;
  --navy-soft: #183a4d;
  --teal: #285a58;
  --claret: #7b2637;
  --gold: #b88745;
  --gold-light: #d7ba76;
  --text: #25303a;
  --text-soft: #626b73;
  --white: #fffdf8;
  --border: rgba(16, 36, 58, 0.13);
  --shadow: 0 18px 50px rgba(18, 32, 46, 0.12);
  --container: 1180px;
  --radius-lg: 8px;
  --radius-md: 8px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  width: 32px;
  height: 1px;
  background: currentColor;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.16;
}

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: 0;
}

h1 em {
  display: block;
  color: var(--coffee);
  font-weight: 400;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.65rem);
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.button:hover {
  transform: translateY(-3px);
}

.button svg,
.header-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 26px rgba(16, 29, 43, 0.2);
}

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

.button-secondary {
  color: var(--navy);
  border-color: rgba(16, 29, 43, 0.24);
  background: rgba(255, 253, 249, 0.38);
}

.button-secondary:hover {
  color: var(--coffee-dark);
  border-color: var(--gold);
  background: rgba(255, 253, 249, 0.78);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(185, 155, 120, 0.2);
  background: rgba(248, 242, 233, 0.9);
  backdrop-filter: blur(18px);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 253, 249, 0.95);
  box-shadow: 0 9px 26px rgba(56, 42, 29, 0.08);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 30px;
}

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

.brand img {
  width: 62px;
  height: 54px;
  border-radius: 8px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  color: var(--navy);
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.brand-copy small {
  margin-top: 7px;
  color: var(--coffee);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.34em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 12px 17px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}

.header-cta:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

/* Floating contact */
.floating-contact {
  position: fixed;
  z-index: 1000;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  isolation: isolate;
}

.floating-contact-link {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: 50%;
  color: var(--white);
  box-shadow:
    0 18px 36px rgba(16, 36, 58, 0.22),
    0 4px 10px rgba(16, 36, 58, 0.14);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition);
}

.floating-contact-link:hover {
  box-shadow:
    0 22px 42px rgba(16, 36, 58, 0.26),
    0 7px 14px rgba(16, 36, 58, 0.16);
  transform: scale(1.06);
}

.floating-contact-link svg,
.floating-contact-link img {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.floating-contact-link svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.floating-contact-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.floating-phone {
  background: var(--navy);
}

.floating-phone:hover {
  background: var(--navy-soft);
}

.floating-whatsapp {
  background: #25d366;
}

.floating-whatsapp:hover {
  background: #20bd5a;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 17px;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  padding: 174px 0 90px;
  background:
    linear-gradient(105deg, rgba(255, 253, 248, 0.96) 0%, rgba(246, 241, 232, 0.9) 54%, rgba(40, 90, 88, 0.13) 100%),
    linear-gradient(135deg, #fffaf2 0%, #e9f0ed 100%);
}

.hero::before {
  position: absolute;
  top: 0;
  right: -160px;
  width: min(48vw, 700px);
  height: 100%;
  background: linear-gradient(155deg, rgba(16, 29, 43, 0.05), transparent 62%);
  clip-path: polygon(36% 0, 100% 0, 100% 100%, 0 100%);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 56px;
  grid-template-columns: minmax(0, 1.04fr) minmax(370px, 0.96fr);
}

.hero-text {
  max-width: 620px;
  margin-bottom: 32px;
  color: #5e615f;
  font-size: 1.12rem;
}

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

.hero-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 46px;
}

.hero-note-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(189, 148, 88, 0.32);
  border-radius: 50%;
  color: var(--gold);
}

.hero-note svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.hero-note p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.35;
}

.hero-note strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.hero-note span {
  color: var(--text-soft);
  font-size: 0.85rem;
}

.hero-metrics {
  display: grid;
  max-width: 640px;
  gap: 10px;
  margin-top: 30px;
  grid-template-columns: repeat(3, 1fr);
}

.hero-metrics p {
  min-height: 94px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(40, 90, 88, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.7);
}

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

.hero-metrics strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
  line-height: 1.2;
}

.hero-metrics span {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.78rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  max-width: 610px;
  margin-left: auto;
  padding: 22px 0 76px 22px;
}

.hero-photo-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 9px solid rgba(255, 253, 249, 0.92);
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: 0 26px 62px rgba(56, 42, 29, 0.24);
}

.hero-photo-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-photo-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.48);
  content: "";
  pointer-events: none;
}

.hero-logo-badge {
  position: absolute;
  z-index: 3;
  right: -8px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(320px, calc(100% - 24px));
  padding: 14px 17px;
  border: 1px solid rgba(223, 194, 143, 0.24);
  border-radius: var(--radius-md);
  color: var(--cream);
  background: rgba(16, 29, 43, 0.95);
  box-shadow: 0 14px 28px rgba(16, 29, 43, 0.19);
}

.hero-logo-badge span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.hero-logo-badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  font-weight: 500;
}

.hero-logo-badge small {
  margin-top: 3px;
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.badge-logo {
  display: grid;
  width: 48px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(223, 194, 143, 0.52);
  border-radius: 7px;
  background: rgba(255, 253, 248, 0.96);
}

.badge-logo img {
  width: 39px;
  height: 32px;
  object-fit: contain;
}

.hero-side-card {
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 0;
  width: min(260px, 70%);
  padding: 18px;
  border-left: 4px solid var(--claret);
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 16px 34px rgba(16, 36, 58, 0.18);
}

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

.hero-side-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.25;
}

.hero-side-card span {
  margin-top: 8px;
  color: rgba(255, 253, 248, 0.75);
  font-size: 0.78rem;
  line-height: 1.45;
}

/* Trust strip */
.trust-strip {
  color: var(--white);
  background: var(--navy);
}

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

.trust-item {
  display: flex;
  min-height: 118px;
  align-items: center;
  gap: 16px;
  padding: 25px 32px;
  border-right: 1px solid rgba(223, 194, 143, 0.17);
}

.trust-item:first-child {
  border-left: 1px solid rgba(223, 194, 143, 0.17);
}

.trust-item svg {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.trust-item p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.4;
}

.trust-item strong {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.trust-item span {
  color: rgba(248, 242, 233, 0.68);
  font-size: 0.78rem;
}

/* Insight */
.insight {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 36, 58, 0.04), transparent 58%),
    var(--white);
}

.insight-grid {
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
}

.insight-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--text-soft);
}

.insight-gallery {
  display: grid;
  align-items: end;
  gap: 14px;
  grid-template-columns: 1.28fr 0.72fr;
}

.insight-gallery figure {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.insight-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.insight-gallery .gallery-main img {
  aspect-ratio: 4 / 3;
}

/* Section heading */
.section-heading {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--text-soft);
}

/* Services */
.services {
  background: var(--white);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 264px;
  padding: 58px 28px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(246, 241, 232, 0.82)),
    #fdfaf5;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  border-color: rgba(189, 148, 88, 0.52);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.service-card::after {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 94px;
  height: 94px;
  border: 1px solid rgba(40, 90, 88, 0.15);
  border-radius: 8px;
  content: "";
  transition: transform var(--transition);
  transform: rotate(12deg);
}

.service-card:hover::after {
  transform: rotate(12deg) scale(1.25);
}

.service-tag {
  position: absolute;
  top: 22px;
  left: 28px;
  color: var(--claret);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-number {
  position: absolute;
  top: 23px;
  right: 25px;
  color: rgba(118, 90, 64, 0.3);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.service-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid rgba(189, 148, 88, 0.34);
  border-radius: 50%;
  color: var(--coffee);
  background: var(--cream);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.service-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

/* About */
.about {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(40, 90, 88, 0.1), transparent 44%),
    var(--cream);
}

.about-grid {
  display: grid;
  align-items: center;
  gap: 82px;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.about-visual {
  position: relative;
  padding: 19px 19px 42px 0;
}

.about-visual::before {
  position: absolute;
  top: -28px;
  right: -18px;
  width: 83%;
  height: 94%;
  border: 1px solid rgba(189, 148, 88, 0.43);
  border-radius: var(--radius-lg);
  content: "";
}

.about-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-photo-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.05 / 1;
  object-fit: cover;
}

.about-stat {
  position: absolute;
  right: -34px;
  bottom: 0;
  display: flex;
  width: 196px;
  min-height: 126px;
  flex-direction: column;
  justify-content: center;
  padding: 19px 23px;
  border-radius: var(--radius-md);
  color: var(--cream);
  background: var(--navy);
  box-shadow: 0 16px 32px rgba(16, 29, 43, 0.18);
  line-height: 1.12;
}

.about-stat img {
  width: 48px;
  height: 40px;
  margin-bottom: 10px;
  border-radius: 6px;
  object-fit: contain;
  background: rgba(255, 253, 248, 0.96);
}

.about-stat strong,
.about-stat span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.48rem;
  font-weight: 500;
}

.about-stat span {
  color: var(--gold-light);
}

.about-stat small {
  margin-top: 12px;
  color: rgba(248, 242, 233, 0.72);
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin-bottom: 28px;
  color: #636664;
}

.lawyer-signature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 23px;
  border-top: 1px solid rgba(118, 90, 64, 0.18);
}

.lawyer-signature > span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-style: italic;
}

.lawyer-signature div {
  display: flex;
  flex-direction: column;
}

.lawyer-signature strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 500;
}

.lawyer-signature small {
  color: var(--coffee);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Process */
.process {
  background: var(--navy);
}

.process .section-heading h2 {
  color: var(--cream);
}

.process .section-heading p:last-child {
  color: rgba(248, 242, 233, 0.65);
}

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

.process-card {
  position: relative;
  min-height: 226px;
  padding: 31px 25px;
  border: 1px solid rgba(223, 194, 143, 0.18);
  background: rgba(255, 255, 255, 0.035);
  transition: background var(--transition), transform var(--transition);
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-6px);
}

.process-step {
  display: block;
  margin-bottom: 41px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
}

.process-step::after {
  display: inline-block;
  width: 44px;
  height: 1px;
  margin: 0 0 8px 12px;
  background: rgba(223, 194, 143, 0.33);
  content: "";
}

.process-card h3 {
  color: var(--cream);
  font-size: 1.32rem;
}

.process-card p {
  margin: 0;
  color: rgba(248, 242, 233, 0.6);
  font-size: 0.88rem;
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 60%, rgba(223, 194, 143, 0.24), transparent 23%),
    var(--cream);
}

.contact::after {
  position: absolute;
  right: -130px;
  bottom: -190px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(189, 148, 88, 0.21);
  border-radius: 50%;
  content: "";
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 80px;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
}

.contact-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 29px;
  color: var(--text-soft);
}

.contact-card {
  padding: 10px 30px;
  border: 1px solid rgba(118, 90, 64, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.82);
  box-shadow: var(--shadow);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(118, 90, 64, 0.13);
}

.contact-row:last-child {
  border: 0;
}

a.contact-row {
  transition: transform var(--transition);
}

a.contact-row:hover {
  transform: translateX(4px);
}

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(189, 148, 88, 0.3);
  border-radius: 50%;
  color: var(--coffee);
  background: var(--cream);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.contact-row > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-row small {
  color: var(--coffee);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-row strong {
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  color: rgba(248, 242, 233, 0.67);
  background: #0d1925;
}

.footer-grid {
  display: grid;
  gap: 52px;
  padding-top: 65px;
  padding-bottom: 57px;
  grid-template-columns: 1.45fr 0.8fr 1.05fr;
}

.brand-footer {
  min-width: 0;
}

.brand-footer img {
  opacity: 0.93;
}

.brand-footer .brand-copy strong {
  color: var(--cream);
}

.brand-footer .brand-copy small {
  color: var(--gold-light);
}

.footer-brand p {
  max-width: 390px;
  margin: 21px 0 0;
  font-size: 0.9rem;
}

.footer-grid h2 {
  margin: 0 0 17px;
  color: var(--gold-light);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
}

.footer-links a {
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-links address {
  font-style: normal;
}

.footer-bottom {
  border-top: 1px solid rgba(223, 194, 143, 0.14);
}

.footer-bottom .container {
  display: flex;
  min-height: 67px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: rgba(248, 242, 233, 0.48);
  font-size: 0.73rem;
  letter-spacing: 0.04em;
}

.footer-credit a {
  color: var(--gold-light);
  transition: color var(--transition);
}

.footer-credit a:hover {
  color: var(--white);
}

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

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

@media (max-width: 1040px) {
  .main-nav {
    gap: 20px;
  }

  .header-cta {
    padding-inline: 14px;
  }

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

  .hero-grid {
    gap: 34px;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.95fr);
  }

  .hero-logo-badge {
    right: -5px;
  }

  .about-grid,
  .contact-grid,
  .insight-grid {
    gap: 52px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  }
}

@media (max-width: 860px) {
  .container {
    width: min(var(--container), calc(100% - 36px));
  }

  .section {
    padding: 84px 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 56px;
    height: 48px;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 74px;
    right: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px 18px 19px;
    border-bottom: 1px solid rgba(118, 90, 64, 0.12);
    background: rgba(255, 253, 249, 0.98);
    box-shadow: 0 15px 25px rgba(56, 42, 29, 0.09);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }

  .main-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 15px 2px;
    border-bottom: 1px solid rgba(118, 90, 64, 0.12);
  }

  .main-nav a:last-child {
    border: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    padding: 11px 14px;
    font-size: 0.68rem;
  }

  .header-cta svg {
    display: none;
  }

  .floating-contact {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
  }

  .floating-contact-link,
  .floating-contact-link:hover {
    width: 54px;
    height: 54px;
  }

  .floating-contact-link:hover {
    transform: scale(1.05);
  }

  .hero {
    padding: 142px 0 72px;
  }

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

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

  .hero-visual {
    max-width: 650px;
    margin: 12px auto 0;
  }

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

  .insight-gallery {
    max-width: 680px;
  }

  .trust-item {
    padding-inline: 17px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-visual {
    width: min(580px, 92%);
    margin-left: 0;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-copy {
    max-width: 650px;
  }

  .contact-card {
    max-width: 650px;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section {
    padding: 70px 0;
  }

  .brand {
    gap: 6px;
  }

  .brand img {
    width: 49px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 1.02rem;
    letter-spacing: 0.11em;
  }

  .brand-copy small {
    margin-top: 6px;
    font-size: 0.5rem;
    letter-spacing: 0.24em;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 121px;
  }

  .hero::before {
    right: -260px;
    width: 580px;
  }

  .hero-decoration-one {
    right: -240px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-note {
    align-items: flex-start;
    margin-top: 34px;
  }

  .hero-note span {
    max-width: 255px;
  }

  .hero-visual {
    padding: 12px 7px 50px 0;
  }

  .hero-photo-frame {
    border-width: 6px;
    border-radius: var(--radius-md);
  }

  .hero-logo-badge {
    right: 0;
    bottom: 18px;
    width: min(298px, calc(100% - 17px));
    padding: 11px 13px;
  }

  .hero-logo-badge strong {
    font-size: 0.84rem;
  }

  .hero-logo-badge small {
    font-size: 0.55rem;
  }

  .badge-logo {
    width: 40px;
    height: 36px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-side-card {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 12px;
  }

  .insight-gallery {
    grid-template-columns: 1fr;
  }

  .insight-gallery img,
  .insight-gallery .gallery-main img {
    aspect-ratio: 4 / 3;
  }

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

  .trust-item,
  .trust-item:first-child {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid rgba(223, 194, 143, 0.17);
    border-left: 0;
  }

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

  .section-heading {
    margin-bottom: 35px;
  }

  .section-heading .eyebrow {
    font-size: 0.67rem;
    letter-spacing: 0.16em;
  }

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

  .service-card {
    min-height: 236px;
  }

  .about-grid {
    gap: 42px;
  }

  .about-visual {
    width: calc(100% - 18px);
    padding-bottom: 36px;
  }

  .about-stat {
    right: -19px;
    width: 166px;
    min-height: 104px;
    padding: 15px 18px;
  }

  .about-stat strong,
  .about-stat span {
    font-size: 1.25rem;
  }

  .about-stat small {
    margin-top: 9px;
    font-size: 0.61rem;
  }

  .process-card {
    min-height: 194px;
  }

  .process-step {
    margin-bottom: 28px;
  }

  .contact-grid {
    gap: 34px;
  }

  .contact-card {
    padding: 6px 17px;
  }

  .contact-row {
    gap: 12px;
    padding: 14px 0;
  }

  .contact-icon {
    width: 37px;
    height: 37px;
  }

  .contact-icon svg {
    width: 18px;
    height: 18px;
  }

  .contact-row strong {
    font-size: 0.88rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 49px;
    padding-bottom: 43px;
  }

  .footer-bottom .container {
    min-height: 78px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
  }
}
