:root {
  --ink: #312923;
  --muted: #786d65;
  --paper: #fffdfb;
  --sand: #f3eee9;
  --copper: #b17b45;
  --line: rgba(49, 41, 35, 0.14);
  --deep: #4d2b18;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  height: 86px;
  background: rgba(255, 253, 251, 0.97);
  border-top: 2px solid #2d3a31;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav-wrap {
  width: min(100% - 72px, 1240px);
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 42px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--copper);
  white-space: nowrap;
}
.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  letter-spacing: 0.14em;
  font-weight: 500;
}
.brand-subtitle {
  margin-top: 6px;
  color: #a89a8d;
  font-size: 8px;
  letter-spacing: 0.32em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}
.main-nav a {
  color: #84766c;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--copper);
}
.language {
  color: var(--copper);
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 4px;
  cursor: pointer;
}
.page-main {
  padding-top: 86px;
}
.page-hero {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: #fff;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 19, 17, 0.76), rgba(22, 19, 17, 0.35) 70%),
    linear-gradient(0deg, rgba(18, 15, 13, 0.65), transparent 62%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 64px, 1180px);
  margin: 0 auto;
  padding: 90px 0 72px;
}
.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.page-hero .eyebrow {
  color: #d1a06b;
}
.page-title {
  max-width: 800px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(54px, 6.2vw, 86px);
  line-height: 0.98;
  font-weight: 500;
}
.page-title em,
.section-title em {
  color: var(--copper);
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}
.page-lede {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.65;
}
.section {
  padding: 100px 21px;
}
.section.alt {
  background: var(--sand);
}
.section-inner {
  width: min(100%, 1070px);
  margin: auto;
}
.section-heading {
  max-width: 700px;
  margin-bottom: 46px;
}
.section-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 400;
}
.section-copy {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split.reverse .visual {
  order: 2;
}
.visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.visual.tall {
  aspect-ratio: 4 / 5;
}
.kicker {
  color: var(--copper);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.body-copy {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.body-copy strong {
  color: var(--ink);
  font-weight: 500;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tile {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 24px;
}
.tile h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 29px;
  font-weight: 500;
}
.tile p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 45px;
  background: var(--line);
}
.metric {
  padding: 25px;
  background: var(--paper);
}
.metric strong {
  display: block;
  color: var(--copper);
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 500;
}
.metric span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.button {
  display: inline-block;
  min-width: 172px;
  padding: 16px 25px;
  border: 1px solid var(--copper);
  color: var(--copper);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  text-align: center;
  transition: 0.2s;
}
.button.primary {
  background: var(--copper);
  color: #fff;
}
.button:hover {
  background: var(--deep);
  border-color: var(--deep);
  color: #fff;
}
.actions,
.contact-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}
.contact-list {
  display: grid;
  gap: 18px;
}
.contact-item {
  padding: 23px 0;
  border-top: 1px solid var(--line);
}
.contact-item strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  font-weight: 500;
}
.contact-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.contact-panel {
  padding: 34px;
  background: var(--sand);
}
.contact-panel .visual {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  margin-bottom: 30px;
}
.contact-panel .section-title {
  font-size: clamp(30px, 3vw, 43px);
}
.contact-panel .body-copy {
  max-width: 490px;
}
.contact-actions {
  flex-wrap: wrap;
  margin-top: 26px;
}
.site-footer {
  padding: 64px 21px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  background: #f7f2ed;
}
.footer-inner {
  width: min(100%, 1070px);
  margin: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 54px;
  padding-bottom: 44px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--copper);
}
.footer-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.footer-brand strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.14em;
}
.footer-brand small {
  display: block;
  margin-top: 5px;
  color: #a89a8d;
  font-size: 8px;
  letter-spacing: 0.22em;
}
.footer-heading {
  margin: 0 0 15px;
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-links {
  display: grid;
  gap: 9px;
}
.footer-links a:hover {
  color: var(--copper);
}
.footer-contact p {
  margin: 0;
  line-height: 1.75;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 11px;
}
.whatsapp {
  position: fixed;
  right: 17px;
  bottom: 15px;
  z-index: 11;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--deep);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}
@media (max-width: 850px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    padding: 20px 36px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .main-nav.is-open {
    display: flex;
  }
  .menu-button {
    display: block;
  }
  .language {
    margin-left: auto;
  }
  .nav-wrap {
    width: min(100% - 36px, 1070px);
    gap: 14px;
  }
  .page-hero-content {
    width: min(100% - 42px, 1070px);
  }
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .split.reverse .visual {
    order: 0;
  }
  .grid-3,
  .metric-row {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 72px 21px;
  }
  .page-title {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .page-lede {
    max-width: 100%;
  }
  .button {
    min-width: 0;
  }
  .contact-panel {
    padding: 26px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 520px) {
  .site-header {
    height: 74px;
  }
  .main-nav {
    top: 74px;
  }
  .page-main {
    padding-top: 74px;
  }
  .brand {
    gap: 9px;
  }
  .brand img {
    width: 38px;
    height: 38px;
  }
  .brand-subtitle {
    display: none;
  }
  .brand-name {
    font-size: 19px;
  }
  .page-hero {
    min-height: 560px;
  }
  .page-title {
    font-size: clamp(40px, 12vw, 52px);
    line-height: 1;
  }
  .page-lede {
    margin-top: 22px;
    font-size: 14px;
  }
  .contact-panel {
    padding: 22px;
  }
  .contact-panel .visual {
    margin-bottom: 24px;
  }
  .contact-actions {
    flex-direction: column;
  }
  .contact-actions .button {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    overflow-wrap: anywhere;
  }
}
