:root {
  --ink: #11100f;
  --ink-soft: #1a1816;
  --paper: #f4f1eb;
  --paper-soft: #faf8f4;
  --white: #fff;
  --gold: #b99245;
  --gold-light: #d5b56e;
  --wood: #755438;
  --muted: #746f68;
  --line: rgba(17, 16, 15, 0.13);
  --line-light: rgba(255, 255, 255, 0.16);
  --green: #1fbf67;
  --display: "Manrope", Arial, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
  --container: min(1180px, calc(100% - 48px));
  --shadow: 0 24px 70px rgba(30, 24, 17, 0.13);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper-soft);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

button {
  border: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  font-weight: 700;
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: none;
}

.topbar {
  position: relative;
  z-index: 60;
  color: rgba(255, 255, 255, 0.72);
  background: #0a0908;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.topbar__inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
}

.topbar p {
  margin: 0;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

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

.topbar svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.header {
  position: absolute;
  z-index: 50;
  top: 36px;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition:
    background 0.35s,
    box-shadow 0.35s,
    transform 0.35s;
}

.header.is-sticky {
  position: fixed;
  top: 0;
  color: var(--ink);
  background: rgba(250, 248, 244, 0.93);
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(21, 18, 15, 0.08);
  backdrop-filter: blur(16px);
}

.header__inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  position: relative;
  display: flex;
  width: 144px;
  height: 78px;
  flex-shrink: 0;
  align-items: center;
}

.brand img {
  width: 144px;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.2));
}

.header.is-sticky .brand img {
  filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.1));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.6vw, 38px);
  margin-left: auto;
}

.nav a {
  position: relative;
  padding-block: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.25s;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

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

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header.is-sticky .nav a {
  color: #47423d;
}

.header.is-sticky .nav a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  position: absolute;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle span:first-child {
  transform: translateY(-7px);
}

.nav-toggle span:last-child {
  transform: translateY(7px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 26px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 0.25s var(--ease),
    color 0.25s,
    background 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}

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

.button svg,
.text-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 0.25s var(--ease);
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.button--header {
  min-height: 46px;
  padding-inline: 20px;
  flex-shrink: 0;
  color: var(--ink);
  background: var(--gold-light);
}

.button--header:hover {
  background: var(--white);
}

.header.is-sticky .button--header {
  color: var(--white);
  background: var(--ink);
}

.button--primary {
  color: var(--ink);
  background: var(--gold-light);
  box-shadow: 0 12px 35px rgba(185, 146, 69, 0.18);
}

.button--primary:hover {
  background: #e2c47c;
  box-shadow: 0 18px 42px rgba(185, 146, 69, 0.25);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button--full {
  width: 100%;
}

.hero {
  position: relative;
  display: flex;
  min-height: 790px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #0c0b0a;
}

.hero::after {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  height: 180px;
  content: "";
  background: linear-gradient(to top, rgba(8, 7, 6, 0.45), transparent);
  pointer-events: none;
}

.hero__backdrop {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 68%;
  height: 100%;
  overflow: hidden;
}

.hero__backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #0c0b0a 0%, rgba(12, 11, 10, 0.9) 12%, rgba(12, 11, 10, 0.18) 62%, rgba(12, 11, 10, 0.2) 100%),
    linear-gradient(0deg, rgba(9, 8, 7, 0.45), transparent 50%);
}

.hero__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  opacity: 0.94;
  transform: scale(1.015);
  animation: heroZoom 14s ease-out both;
}

.hero__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 9, 8, 0.98) 0%, rgba(10, 9, 8, 0.92) 31%, transparent 70%);
  pointer-events: none;
}

.hero__texture {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 5;
  display: flex;
  padding-top: 112px;
  align-items: flex-end;
  justify-content: space-between;
}

.hero__copy {
  max-width: 700px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow i {
  display: block;
  width: 30px;
  height: 1px;
  background: currentColor;
}

.eyebrow--dark {
  color: #9b7335;
}

.hero h1 {
  max-width: 690px;
  margin: 25px 0 26px;
  font-family: var(--display);
  font-size: clamp(52px, 5.45vw, 79px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.hero h1 em,
.section-heading h2 em,
.story__copy h2 em,
.quote__intro h2 em {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero__copy > p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 12px;
}

.hero__seal {
  display: grid;
  width: 148px;
  height: 148px;
  margin: 0 12px 8px 40px;
  flex-shrink: 0;
  align-content: center;
  justify-items: center;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(213, 181, 110, 0.55);
  border-radius: 50%;
  background: rgba(11, 10, 9, 0.25);
  backdrop-filter: blur(9px);
  font-size: 9px;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.hero__seal::before {
  position: absolute;
  width: 158px;
  height: 158px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.hero__seal strong {
  margin-block: -4px;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 50px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero__seal span:last-child {
  max-width: 90px;
}

.hero__scroll {
  position: absolute;
  z-index: 5;
  bottom: 30px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__scroll span {
  display: grid;
  width: 22px;
  height: 34px;
  place-items: start center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 20px;
}

.hero__scroll span::after {
  width: 3px;
  height: 6px;
  margin-top: 7px;
  content: "";
  background: var(--gold-light);
  border-radius: 4px;
  animation: mouseScroll 1.8s infinite;
}

.trust {
  position: relative;
  z-index: 10;
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line);
}

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

.trust__item {
  display: grid;
  min-height: 168px;
  padding: 42px clamp(20px, 3vw, 45px);
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 22px;
}

.trust__item + .trust__item {
  border-left: 1px solid var(--line);
}

.trust__number {
  margin-top: 2px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 17px;
}

.trust__item h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.section {
  padding-block: 120px;
}

.section-heading {
  display: flex;
  margin-bottom: 58px;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.section-heading h2,
.story__copy h2,
.quote__intro h2 {
  max-width: 720px;
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 1.08;
}

.section-heading p {
  max-width: 390px;
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.projects {
  overflow: hidden;
  background: var(--paper);
}

.carousel {
  position: relative;
}

.carousel__viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.carousel__track {
  display: flex;
  gap: 22px;
  transition: transform 0.65s var(--ease);
  will-change: transform;
}

.project-card {
  min-width: calc((100% - 44px) / 3);
}

.project-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.86;
  background: #d8d2c8;
}

.project-card__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(11, 10, 9, 0.58), transparent 40%);
  pointer-events: none;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.project-card:hover img {
  transform: scale(1.045);
}

.project-card__index {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-family: Georgia, serif;
  font-size: 14px;
}

.project-card__content {
  padding-top: 20px;
}

.project-card__content span {
  color: #9b7335;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-card__content h3 {
  margin: 5px 0 0;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.carousel__controls {
  display: flex;
  margin-top: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.carousel__progress {
  display: flex;
  width: min(540px, 70%);
}

.carousel__progress button {
  position: relative;
  width: 100%;
  height: 20px;
  padding: 0;
  cursor: pointer;
  background: transparent;
}

.carousel__progress button::after {
  position: absolute;
  top: 9px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: rgba(17, 16, 15, 0.18);
}

.carousel__progress button.is-active::after {
  height: 2px;
  background: var(--gold);
}

.carousel__arrows {
  display: flex;
  gap: 8px;
}

.icon-button {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition:
    color 0.25s,
    background 0.25s,
    transform 0.25s;
}

.icon-button:hover {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-2px);
}

.icon-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.story {
  background: var(--paper-soft);
}

.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(70px, 9vw, 130px);
}

.story__visual {
  position: relative;
  min-height: 620px;
}

.story__image {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story__image--main {
  top: 0;
  left: 0;
  width: 73%;
  height: 520px;
}

.story__image--detail {
  right: 0;
  bottom: 0;
  width: 49%;
  height: 320px;
  border: 10px solid var(--paper-soft);
}

.story__badge {
  position: absolute;
  bottom: 18px;
  left: 15px;
  display: grid;
  width: 130px;
  height: 130px;
  align-content: center;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.story__badge strong {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.story__badge span {
  max-width: 80px;
  margin: 7px auto 0;
  font-size: 9px;
  letter-spacing: 0.09em;
  line-height: 1.45;
  text-transform: uppercase;
}

.story__copy h2 em {
  color: #9b7335;
}

.story__lead {
  margin: 32px 0 15px;
  color: #36322e;
  font-size: 18px;
  line-height: 1.65;
}

.story__copy > p:not(.story__lead) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.story blockquote {
  margin: 29px 0;
  padding: 6px 0 6px 24px;
  color: #49433d;
  border-left: 2px solid var(--gold);
  font-family: Georgia, serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  padding-bottom: 5px;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  border-bottom: 1px solid rgba(17, 16, 15, 0.34);
  font-size: 13px;
  font-weight: 700;
}

.process {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(185, 146, 69, 0.13), transparent 28%),
    #12110f;
}

.process::after {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.process .container {
  position: relative;
  z-index: 2;
}

.section-heading--light p {
  color: rgba(255, 255, 255, 0.55);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.process-card {
  position: relative;
  min-height: 330px;
  padding: 34px 28px 38px;
}

.process-card + .process-card {
  border-left: 1px solid var(--line-light);
}

.process-card > span {
  display: block;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 13px;
}

.process-card svg {
  width: 48px;
  height: 48px;
  margin: 48px 0 30px;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.process-card h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.75;
}

.quote {
  background: var(--paper);
}

.quote__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(70px, 10vw, 140px);
}

.quote__intro h2 em {
  color: #9b7335;
}

.quote__intro > p {
  max-width: 500px;
  margin: 28px 0 35px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.quote__contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 26px;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.quote__contact span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote__contact a,
.quote__contact p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.quote-form {
  padding: 44px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.field + .field,
.field-row {
  margin-top: 23px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field-row .field {
  margin-top: 0;
}

.field label {
  color: #514b45;
  font-size: 12px;
  font-weight: 700;
}

.field input,
.field select {
  width: 100%;
  height: 54px;
  padding: 0 15px;
  color: var(--ink);
  background: #fbfaf8;
  border: 1px solid rgba(17, 16, 15, 0.17);
  border-radius: 0;
  outline: 0;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.field input::placeholder {
  color: #9b958e;
}

.field input:focus,
.field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 146, 69, 0.12);
}

.quote-form .button {
  margin-top: 30px;
}

.quote-form small {
  display: block;
  margin-top: 13px;
  color: #918a82;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.location {
  color: var(--white);
  background: #1b1815;
}

.location__inner {
  display: grid;
  min-height: 210px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.location__mark {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(213, 181, 110, 0.32);
  border-radius: 50%;
}

.location__mark svg {
  width: 32px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.4;
}

.location span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.location h2 {
  margin: 5px 0 0;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 600;
}

.location p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.text-link--light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.footer {
  color: rgba(255, 255, 255, 0.58);
  background: #0c0b0a;
}

.footer__main {
  display: grid;
  padding-block: 70px 60px;
  grid-template-columns: 1fr auto;
  gap: 80px;
}

.footer__brand img {
  width: 160px;
  height: 115px;
  object-fit: contain;
}

.footer__brand p {
  max-width: 420px;
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.8;
}

.footer__links {
  display: flex;
  gap: clamp(70px, 9vw, 120px);
}

.footer__links > div {
  display: flex;
  min-width: 120px;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer__links h2 {
  margin: 0 0 7px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer__links a,
.footer__links p {
  margin: 0;
  font-size: 13px;
  transition: color 0.2s;
}

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

.footer__bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
  letter-spacing: 0.05em;
}

.footer__bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  z-index: 45;
  right: 24px;
  bottom: 22px;
  display: inline-flex;
  min-height: 56px;
  padding: 0 20px 0 17px;
  align-items: center;
  gap: 10px;
  color: var(--white);
  background: #1ebd65;
  border-radius: 100px;
  box-shadow: 0 12px 34px rgba(12, 111, 56, 0.28);
  font-size: 12px;
  font-weight: 700;
  transition:
    transform 0.25s var(--ease),
    background 0.25s;
}

.whatsapp-float:hover {
  background: #16a956;
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 24px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes heroZoom {
  from { transform: scale(1.07); }
  to { transform: scale(1.015); }
}

@keyframes mouseScroll {
  0% { opacity: 0; transform: translateY(0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(12px); }
}

@media (max-width: 1060px) {
  :root {
    --container: min(calc(100% - 40px), 960px);
  }

  .nav {
    gap: 18px;
  }

  .nav a {
    font-size: 13px;
  }

  .button--header {
    display: none;
  }

  .hero__seal {
    display: none;
  }

  .hero__copy {
    max-width: 650px;
  }

  .project-card {
    min-width: calc((100% - 22px) / 2);
  }

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

  .process-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line-light);
  }

  .process-card:nth-child(4) {
    border-top: 1px solid var(--line-light);
  }

  .story__grid,
  .quote__grid {
    gap: 65px;
  }

  .story__visual {
    min-height: 560px;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(calc(100% - 36px), 720px);
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar p {
    display: none;
  }

  .header__inner {
    min-height: 78px;
  }

  .brand {
    z-index: 2;
    width: 126px;
    height: 68px;
  }

  .brand img {
    width: 126px;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: flex;
    margin-left: auto;
  }

  .nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    padding: 130px 30px 50px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--white);
    background: rgba(12, 11, 10, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition:
      opacity 0.3s,
      transform 0.3s;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav a,
  .header.is-sticky .nav a {
    color: var(--white);
    font-family: var(--display);
    font-size: 25px;
  }

  .header:has(.nav.is-open) {
    color: var(--white);
    background: transparent;
    box-shadow: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero__backdrop {
    width: 100%;
  }

  .hero__backdrop::after {
    background:
      linear-gradient(90deg, rgba(10, 9, 8, 0.78), rgba(10, 9, 8, 0.16)),
      linear-gradient(0deg, rgba(8, 7, 6, 0.8) 0%, rgba(8, 7, 6, 0.18) 65%);
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(10, 9, 8, 0.78), rgba(10, 9, 8, 0.15) 90%);
  }

  .hero__content {
    padding-top: 120px;
  }

  .hero h1 {
    max-width: 620px;
  }

  .trust__grid {
    grid-template-columns: 1fr;
    padding-block: 15px;
  }

  .trust__item {
    min-height: 0;
    padding: 26px 4px;
  }

  .trust__item + .trust__item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding-block: 90px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .section-heading p {
    max-width: 590px;
  }

  .story__grid,
  .quote__grid {
    grid-template-columns: 1fr;
  }

  .story__visual {
    width: min(100%, 580px);
    min-height: 610px;
  }

  .story__copy {
    max-width: 620px;
  }

  .quote__grid {
    gap: 50px;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 580px) {
  :root {
    --container: calc(100% - 32px);
  }

  .topbar {
    font-size: 10px;
  }

  .header {
    top: 36px;
  }

  .header.is-sticky {
    top: 0;
  }

  .header__inner {
    min-height: 72px;
  }

  .brand,
  .brand img {
    width: 112px;
  }

  .brand {
    height: 64px;
  }

  .hero {
    min-height: 720px;
  }

  .hero__backdrop img {
    object-position: 56% center;
  }

  .hero__content {
    padding-top: 112px;
  }

  .eyebrow {
    gap: 9px;
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .eyebrow i {
    width: 22px;
  }

  .hero h1 {
    margin-block: 20px;
    font-size: clamp(42px, 12.8vw, 60px);
    line-height: 1.02;
  }

  .hero__copy > p {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 28px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__scroll {
    display: none;
  }

  .trust__item {
    grid-template-columns: 28px 1fr;
    gap: 12px;
  }

  .section {
    padding-block: 76px;
  }

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

  .section-heading h2,
  .story__copy h2,
  .quote__intro h2 {
    font-size: clamp(35px, 10.5vw, 48px);
  }

  .project-card {
    min-width: 84%;
  }

  .project-card__image {
    aspect-ratio: 0.84;
  }

  .carousel__controls {
    margin-top: 26px;
  }

  .carousel__progress {
    width: calc(100% - 112px);
  }

  .story__visual {
    min-height: 480px;
  }

  .story__image--main {
    width: 83%;
    height: 410px;
  }

  .story__image--detail {
    width: 52%;
    height: 235px;
    border-width: 7px;
  }

  .story__badge {
    bottom: 4px;
    width: 105px;
    height: 105px;
  }

  .story__badge strong {
    font-size: 30px;
  }

  .story__lead {
    font-size: 17px;
  }

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

  .process-card {
    min-height: 0;
    padding: 30px 10px 34px;
  }

  .process-card + .process-card {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .process-card svg {
    margin: 26px 0 20px;
  }

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

  .quote-form {
    margin-inline: -5px;
    padding: 28px 20px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .location__inner {
    padding-block: 44px;
    grid-template-columns: auto 1fr;
    gap: 20px;
  }

  .location__mark {
    width: 55px;
    height: 55px;
  }

  .location__mark svg {
    width: 26px;
  }

  .location h2 {
    font-size: 20px;
  }

  .location .text-link {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 8px;
  }

  .footer__main {
    padding-block: 52px 40px;
  }

  .footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .footer__bottom {
    padding-block: 20px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 14px;
    width: 56px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
