:root {
  --ink: #081714;
  --ink-soft: #10231f;
  --ink-card: #142d27;
  --gold: #c89a3a;
  --gold-light: #e3c578;
  --ivory: #f5f0e6;
  --paper: #fbfaf6;
  --muted: #6a746f;
  --line: rgba(10, 36, 30, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Aptos", "Segoe UI", Arial, sans-serif;
  --shadow: 0 28px 70px rgba(3, 15, 12, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--gold);
  color: var(--ink);
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.topbar {
  position: relative;
  z-index: 60;
  background: #050f0d;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 0.045em;
}

.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-links {
  display: flex;
  gap: 24px;
}

.topbar a {
  transition: color 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(200, 154, 58, 0.22);
  background: rgba(8, 23, 20, 0.94);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 154, 58, 0.62);
  border-radius: 50% 50% 45% 45%;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.06em;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  bottom: 6px;
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.brand-mark img {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.brand-copy small {
  margin-top: 7px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.33em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 1px;
  background: var(--gold);
  transition: right 180ms ease;
}

.desktop-nav a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.desktop-nav a:hover::after {
  right: 0;
}

.desktop-nav a[aria-current="page"] {
  color: var(--gold-light);
}

.desktop-nav a[aria-current="page"]::after {
  right: 0;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button-gold {
  background: var(--gold);
  color: #091512;
}

.button-gold:hover {
  background: var(--gold-light);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
}

.button-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

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

.button-dark:hover {
  background: var(--ink-card);
}

.nav-cta {
  min-height: 44px;
  padding-inline: 19px;
  font-size: 10px;
}

.mobile-menu {
  display: none;
  margin-left: auto;
  position: relative;
}

.mobile-menu summary {
  width: 45px;
  height: 45px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  width: 20px;
  height: 1px;
  background: #fff;
}

.mobile-menu nav {
  position: absolute;
  top: 55px;
  right: 0;
  width: min(320px, calc(100vw - 32px));
  padding: 15px;
  display: grid;
  border: 1px solid rgba(200, 154, 58, 0.25);
  background: #0b1b17;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.38);
}

.mobile-menu nav a {
  padding: 13px 14px;
  color: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.mobile-menu nav a:last-child {
  margin-top: 10px;
  border-bottom: 0;
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  font-weight: 800;
}

.hero {
  min-height: 690px;
  display: grid;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 17, 14, 0.97) 0%, rgba(5, 17, 14, 0.82) 46%, rgba(5, 17, 14, 0.2) 78%),
    linear-gradient(0deg, rgba(4, 16, 13, 0.9) 0%, transparent 32%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
  padding-block: 70px;
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(50px, 6.1vw, 84px);
  font-weight: 400;
  line-height: 0.99;
  letter-spacing: -0.048em;
}

.hero h1 span {
  display: block;
  color: var(--gold-light);
  font-style: italic;
  font-size: 0.82em;
  margin-top: 12px;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.8;
}

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

.hero-note {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.hero-note span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(200, 154, 58, 0.12);
}

.hero-emblem {
  justify-self: end;
  width: min(390px, 100%);
  padding: 14px;
  border: 1px solid rgba(200, 154, 58, 0.25);
  background: rgba(4, 15, 12, 0.5);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-emblem img {
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.trust-strip {
  border-top: 1px solid rgba(200, 154, 58, 0.2);
  border-bottom: 1px solid rgba(200, 154, 58, 0.22);
  background: #071411;
}

.trust-grid {
  min-height: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

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

.trust-grid span {
  color: var(--gold);
}

.section {
  padding-block: 112px;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 100px;
  align-items: start;
}

.section-heading h2,
.section-title-row h2,
.craft-copy h2,
.cta-panel h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.intro-copy {
  padding-top: 46px;
  font-size: 17px;
  color: #4f5f59;
}

.intro-copy p {
  margin: 0 0 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--gold);
  font-size: 18px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.services-section {
  background:
    linear-gradient(rgba(245, 240, 230, 0.87), rgba(245, 240, 230, 0.87)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 89px,
      rgba(14, 36, 30, 0.06) 90px
    );
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}

.section-title-row .eyebrow {
  margin-bottom: 14px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(15, 42, 35, 0.15);
  border: 1px solid rgba(15, 42, 35, 0.15);
}

.service-card {
  min-height: 310px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.service-card:hover {
  position: relative;
  z-index: 2;
  background: #fff;
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(8, 23, 20, 0.09);
}

.service-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 14px;
}

.service-card h3 {
  margin: 54px 0 14px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.service-card a {
  margin-top: auto;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  border-top: 1px solid rgba(14, 36, 30, 0.12);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-card a span {
  color: var(--gold);
  font-size: 16px;
}

.service-card:nth-child(7) {
  grid-column: 1 / -1;
  min-height: 250px;
  background:
    linear-gradient(90deg, rgba(200, 154, 58, 0.09), transparent 52%),
    var(--paper);
}

.service-card:nth-child(7) h3 {
  margin-top: 38px;
}

.service-card:nth-child(11) {
  grid-column: 1 / -1;
  min-height: 250px;
  background:
    linear-gradient(90deg, rgba(200, 154, 58, 0.09), transparent 52%),
    var(--paper);
}

.service-card:nth-child(11) h3 {
  margin-top: 38px;
}

.craft-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 86px;
  align-items: center;
}

.craft-image {
  position: relative;
}

.craft-image::before {
  content: "";
  position: absolute;
  inset: -15px 50px 50px -15px;
  border: 1px solid rgba(200, 154, 58, 0.45);
  z-index: -1;
}

.craft-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-caption {
  position: absolute;
  right: -20px;
  bottom: 28px;
  padding: 13px 18px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.craft-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.check-list {
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 13px 0 13px 30px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}

.check-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.applications-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.applications-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -180px;
  top: -230px;
  border: 1px solid rgba(200, 154, 58, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(200, 154, 58, 0.03),
    0 0 0 110px rgba(200, 154, 58, 0.02);
}

.section-title-row.light h2 {
  color: #fff;
}

.section-title-row.light > p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.application-item {
  min-height: 92px;
  display: grid;
  grid-template-columns: 50px 1fr 30px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: padding 180ms ease;
}

.application-item:nth-child(odd) {
  padding-right: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.application-item:nth-child(even) {
  padding-left: 34px;
}

.application-item:hover {
  padding-left: 12px;
}

.application-item:nth-child(even):hover {
  padding-left: 46px;
}

.application-item span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 13px;
}

.application-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.application-item div {
  color: var(--gold);
}

.section-heading.centered {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

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

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(200, 154, 58, 0.45);
}

.process-grid article {
  position: relative;
  padding: 0 25px;
  text-align: center;
}

.process-grid article > span {
  width: 56px;
  height: 56px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--paper);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 13px;
}

.process-grid h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.projects-section {
  background: #eee8dc;
}

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

.project-card {
  background: var(--paper);
  box-shadow: 0 15px 36px rgba(12, 30, 25, 0.06);
}

.project-art {
  height: 240px;
  position: relative;
  overflow: hidden;
  background-color: #122b25;
}

.project-art::before,
.project-art::after {
  content: "";
  position: absolute;
}

.art-1 {
  background:
    linear-gradient(135deg, transparent 0 47%, rgba(200, 154, 58, 0.8) 48% 49%, transparent 50%),
    linear-gradient(45deg, #193b33 0 30%, #0c211c 30% 70%, #31564c 70%);
}

.art-1::before {
  inset: 22% 15%;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.art-2 {
  background:
    radial-gradient(circle at 30% 30%, rgba(200, 154, 58, 0.24), transparent 24%),
    repeating-linear-gradient(90deg, #0a1f1a 0 30px, #14342c 31px 60px);
}

.art-2::before {
  width: 7px;
  top: 0;
  bottom: 0;
  left: calc(50% - 3px);
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(5, 19, 15, 0.7);
}

.art-3 {
  background:
    linear-gradient(160deg, rgba(200, 154, 58, 0.16), transparent 55%),
    repeating-linear-gradient(0deg, #15372f 0 8px, #0b211c 9px 18px);
}

.art-3::before {
  left: 12%;
  right: 12%;
  top: 48%;
  height: 4px;
  background: var(--gold);
  box-shadow: 0 9px 0 rgba(255, 255, 255, 0.18);
}

.project-art span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 2;
  padding: 8px 10px;
  background: rgba(4, 16, 13, 0.75);
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-content {
  padding: 26px;
}

.project-content h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
}

.project-content p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.portfolio-note {
  margin: 24px 0 0;
  color: #7d7b70;
  font-size: 11px;
  text-align: right;
}

.cta-section {
  padding-block: 90px;
  background:
    linear-gradient(90deg, rgba(7, 22, 18, 0.98), rgba(12, 41, 33, 0.94)),
    var(--ink);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 70px;
  padding: 56px 64px;
  border: 1px solid rgba(200, 154, 58, 0.38);
  position: relative;
}

.cta-panel::before,
.cta-panel::after {
  content: "✦";
  position: absolute;
  color: var(--gold);
  font-size: 17px;
}

.cta-panel::before {
  left: -8px;
  top: -15px;
}

.cta-panel::after {
  right: -8px;
  bottom: -15px;
}

.cta-panel h2 {
  color: #fff;
  font-size: clamp(36px, 3.8vw, 52px);
}

.cta-panel > div > p:last-child {
  max-width: 690px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.site-footer {
  padding-top: 80px;
  background: #050f0d;
  color: rgba(255, 255, 255, 0.62);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr 1.1fr;
  gap: 54px;
  padding-bottom: 65px;
}

.footer-monogram {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 46px;
  letter-spacing: 0.16em;
}

.footer-brand p {
  max-width: 280px;
  margin: 18px 0 0;
  font-size: 14px;
}

.site-footer h3 {
  margin: 0 0 19px;
  color: #fff;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
}

.site-footer a {
  display: block;
  margin: 9px 0;
  font-size: 13px;
  transition: color 180ms ease;
}

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

.footer-contact p {
  margin: 12px 0 0;
  font-size: 13px;
}

.footer-bottom {
  min-height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: #176b4d;
  color: #fff;
  box-shadow: 0 12px 30px rgba(4, 28, 19, 0.3);
  font-size: 11px;
  transition: transform 180ms ease;
}

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

.whatsapp-float span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  font-size: 10px;
  font-weight: 900;
}

.whatsapp-float strong {
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-hero {
  min-height: 430px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 30%, rgba(200, 154, 58, 0.12), transparent 26%),
    linear-gradient(135deg, #061310, #11342a);
  color: #fff;
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: 8%;
  top: 70px;
  border: 1px solid rgba(200, 154, 58, 0.24);
  border-radius: 50% 50% 45% 45%;
  box-shadow: 0 0 0 25px rgba(200, 154, 58, 0.025);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  padding-block: 78px;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.page-hero-inner > p:last-child {
  max-width: 690px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
}

.content-section {
  padding-block: 100px;
}

.content-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}

.content-grid h2,
.inner-section-title h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.12;
}

.prose {
  color: var(--muted);
  font-size: 16px;
}

.prose p {
  margin: 0 0 18px;
}

.values-grid,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card,
.detail-card {
  padding: 30px;
  border: 1px solid var(--line);
  background: #fff;
}

.value-card span,
.detail-card span {
  color: var(--gold);
  font-family: var(--serif);
}

.value-card h3,
.detail-card h3 {
  margin: 28px 0 12px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
}

.value-card p,
.detail-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.inner-section-title {
  max-width: 760px;
  margin-bottom: 44px;
}

.inner-services {
  padding-block: 100px;
  background: var(--ivory);
}

.inner-services .services-grid {
  margin-top: 40px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 60px;
}

.contact-panel {
  padding: 38px;
  background: var(--ink);
  color: #fff;
}

.contact-panel h2 {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
}

.contact-row {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-row span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-row a,
.contact-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.contact-form {
  padding: 42px;
  border: 1px solid var(--line);
  background: #fff;
}

.contact-form h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
}

.contact-form > p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #50605a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(9, 30, 24, 0.18);
  border-radius: 0;
  background: #faf9f5;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease;
}

.field input,
.field select {
  height: 50px;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.form-note {
  margin-top: 18px !important;
  color: #7c817e !important;
  font-size: 10px !important;
}

.form-alert {
  margin: 0 0 22px;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: #f4efe4;
  color: var(--ink);
  font-size: 13px;
}

.form-alert.success {
  border-color: #277b5b;
  background: #eaf5ef;
}

.form-alert.error {
  border-color: #a64035;
  background: #faecea;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent-line {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #69746f;
  font-size: 11px;
  line-height: 1.55;
}

.consent-line input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.consent-line a {
  text-decoration: underline;
}

.map-shell {
  margin-top: 24px;
  height: 270px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 19px;
  }

  .nav-cta {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr 0.55fr;
    gap: 30px;
  }

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

  .craft-grid {
    gap: 55px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 800px) {
  .container {
    width: min(100% - 34px, 700px);
  }

  .topbar-inner > span,
  .topbar-links a:last-child {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .nav-shell {
    min-height: 72px;
  }

  .hero,
  .hero-inner {
    min-height: 720px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-content: center;
    padding-block: 70px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 17, 14, 0.96), rgba(5, 17, 14, 0.65)),
      linear-gradient(0deg, rgba(4, 16, 13, 0.93), transparent 45%);
  }

  .hero-copy {
    padding-top: 60px;
  }

  .hero-emblem {
    display: none;
  }

  .hero h1 {
    font-size: clamp(48px, 12vw, 68px);
  }

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

  .trust-grid div {
    min-height: 62px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 9px;
  }

  .section {
    padding-block: 82px;
  }

  .split-layout,
  .craft-grid,
  .cta-panel,
  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .section-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .section-title-row.light > p {
    max-width: 100%;
  }

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

  .application-item:nth-child(odd),
  .application-item:nth-child(even) {
    padding-inline: 0;
    border-right: 0;
  }

  .application-item:nth-child(even):hover,
  .application-item:hover {
    padding-left: 8px;
  }

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

  .process-grid::before {
    display: none;
  }

  .project-grid,
  .values-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    padding: 38px 30px;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .brand-copy strong {
    font-size: 19px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .hero {
    min-height: 670px;
  }

  .hero-inner {
    min-height: 670px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-lead {
    font-size: 15px;
  }

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

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

  .trust-grid div {
    border-right: 0;
  }

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

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

  .craft-image::before {
    display: none;
  }

  .image-caption {
    right: 0;
    bottom: 15px;
  }

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

  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div,
  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    padding-block: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-float strong {
    display: none;
  }

  .whatsapp-float {
    padding-right: 8px;
  }

  .page-hero {
    min-height: 360px;
  }

  .contact-form,
  .contact-panel {
    padding: 28px 22px;
  }
}

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