﻿:root {
  --bg: #f7f3ec;
  --bg-deep: #e9decf;
  --surface: #fffdf8;
  --surface-2: #f4ede3;
  --ink: #1d2220;
  --ink-soft: #54524d;
  --forest: #1f332e;
  --forest-soft: #314b44;
  --accent: #b57a42;
  --accent-strong: #8f5a2f;
  --sand: #d9bf9f;
  --line: #dfd1c0;
  --title: "Cormorant Garamond", "Times New Roman", serif;
  --body: "Sora", "Segoe UI", sans-serif;
  --container: 1180px;
  --shadow-soft: 0 14px 40px rgba(35, 27, 21, 0.08);
  --shadow-card: 0 20px 50px rgba(23, 22, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(181, 122, 66, 0.12), transparent 36%),
    radial-gradient(circle at 85% 85%, rgba(31, 51, 46, 0.06), transparent 44%),
    var(--bg);
  font-family: var(--body);
  line-height: 1.5;
}

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

img {
  max-width: 100%;
}

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-topbar {
  background: #2c2d2f;
  color: #f1f1f1;
}

.site-topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.84rem;
}

.site-topbar__inner p {
  margin: 0;
}

.site-topbar__right {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.site-topbar__right > a {
  color: #f1f1f1;
  font-size: 0.82rem;
}

.site-topbar__socials {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-topbar__socials a {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
  color: #f3f3f3;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-topbar__socials a:hover {
  transform: translateY(-1px);
  border-color: rgba(181, 122, 66, 0.75);
  color: #d9a56f;
}

.site-topbar__socials svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.site-header {
  position: relative;
  z-index: 30;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-row {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  overflow: visible;
}

.brand img {
  width: auto;
  height: 60px;
  object-fit: contain;
  display: block;
}

.header-row .brand img {
  transform: scale(1.8);
  transform-origin: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  font-size: 1rem;
}

.main-nav a {
  position: relative;
  color: var(--ink);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.55rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

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

.nav-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(26, 38, 34, 0.25);
  background: transparent;
  border-radius: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.header-cta {
  min-height: 50px;
  min-width: 184px;
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
  color: var(--accent-strong);
  background: #fff;
  border: 2px solid var(--accent);
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: #faf3ea;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #0d0d0d;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(rgba(8, 8, 8, 0.68), rgba(8, 8, 8, 0.68));
}

.hero__grid {
  position: relative;
  z-index: 2;
  min-height: clamp(580px, 78vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__content {
  max-width: 920px;
  text-align: center;
  color: #fff;
}

.eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: rgba(255, 255, 255, 0.96);
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: clamp(46px, 6vw, 76px);
  height: 2px;
  background: var(--accent);
}

.hero h1 {
  margin: 1.4rem 0 0;
  font-family: var(--title);
  font-size: clamp(2.5rem, 6vw, 5.7rem);
  letter-spacing: 0;
  line-height: 1.03;
  font-weight: 600;
  color: #fff;
}

.hero__lead {
  margin: 1.5rem auto 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.6;
}

.hero__actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.btn {
  min-height: 52px;
  padding: 0.8rem 1.35rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.72rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

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

.btn--solid {
  color: #fff;
  background: linear-gradient(120deg, #9a612f, #b57a42);
}

.btn--outline {
  color: #fff;
  border-color: rgba(255, 233, 209, 0.7);
  background: rgba(255, 236, 216, 0.08);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn--outline-dark {
  border-color: rgba(33, 63, 54, 0.45);
  color: var(--forest);
  background: rgba(255, 255, 255, 0.52);
}

.hero__facts {
  margin: 2.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero__facts li {
  border: 1px solid rgba(255, 235, 214, 0.35);
  border-radius: 14px;
  background: rgba(17, 26, 23, 0.38);
  backdrop-filter: blur(3px);
  padding: 0.9rem 0.7rem;
  text-align: center;
}

.hero__facts strong {
  display: block;
  font-family: var(--title);
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 600;
  color: #fff;
}

.hero__facts span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero__media {
  position: relative;
  justify-self: end;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: -1rem -1rem auto auto;
  width: min(24vw, 250px);
  aspect-ratio: 1;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.hero__media img {
  width: min(530px, 100%);
  aspect-ratio: 5 / 6;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
}

.hero__badge {
  position: absolute;
  left: -1rem;
  bottom: 1.2rem;
  padding: 0.65rem 0.9rem;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10, 17, 15, 0.86);
  border: 1px solid rgba(255, 235, 214, 0.32);
}

.about-highlight {
  margin-top: 0;
  padding: 5.1rem 0 5.4rem;
  background: linear-gradient(180deg, #f2f3f4 0%, #eceeef 100%);
  position: relative;
  overflow: hidden;
}

.about-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 16%, rgba(181, 122, 66, 0.14), transparent 34%),
    radial-gradient(circle at 8% 84%, rgba(17, 29, 25, 0.09), transparent 36%);
}

.about-highlight .container {
  position: relative;
  z-index: 1;
}

.about-highlight__header {
  text-align: center;
}

.about-highlight__header h2 {
  margin: 0;
  color: #111;
  font-family: var(--body);
  letter-spacing: 0.04em;
  font-size: clamp(2rem, 3.1vw, 2.85rem);
  font-weight: 700;
  opacity: 0;
  transform: translateY(10px);
}

.about-highlight__line {
  display: block;
  width: 88px;
  height: 3px;
  margin: 1.1rem auto 0;
  background: var(--accent);
  transform: scaleX(0.25);
  transform-origin: center;
  opacity: 0.35;
}

.about-highlight__header p {
  max-width: 860px;
  margin: 2rem auto 0;
  color: #59616a;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(12px);
}

.about-highlight__header.is-visible h2 {
  animation: aboutTextRise 0.66s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.about-highlight__header.is-visible .about-highlight__line {
  animation: aboutLineIn 0.72s ease 0.08s both;
}

.about-highlight__header.is-visible p {
  animation: aboutTextRise 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) 0.16s both;
}

.about-highlight__body {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: minmax(280px, 520px) 1fr;
  gap: clamp(1.4rem, 3vw, 3.2rem);
  align-items: center;
}

.about-highlight__image-wrap {
  justify-self: center;
  width: min(100%, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 24px 44px rgba(21, 29, 35, 0.16);
}

.about-highlight__image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
}

.about-highlight__image-wrap.is-visible img {
  animation: aboutPhotoFloat 7.2s ease-in-out 0.2s infinite;
}

.about-highlight__features {
  display: grid;
  gap: 2rem;
}

.about-highlight__feature {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 1.25rem;
}

.about-highlight__icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid #d7dbe0;
  background: rgba(255, 255, 255, 0.46);
  display: grid;
  place-items: center;
}

.about-highlight__icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-highlight__feature h3 {
  margin: 0;
  font-family: var(--body);
  font-size: clamp(1.1rem, 1.5vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #16181c;
  opacity: 0;
  transform: translateY(10px);
}

.about-highlight__feature p {
  margin: 0.65rem 0 0;
  color: #616b76;
  line-height: 1.7;
  font-size: clamp(0.95rem, 1.1vw, 1.07rem);
  opacity: 0;
  transform: translateY(10px);
}

.about-highlight__feature.is-visible h3 {
  animation: aboutTextRise 0.56s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.about-highlight__feature.is-visible p {
  animation: aboutTextRise 0.62s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s both;
}

.about-highlight__feature:nth-child(2).is-visible h3 {
  animation-delay: 0.14s;
}

.about-highlight__feature:nth-child(2).is-visible p {
  animation-delay: 0.22s;
}

.about-highlight__feature:nth-child(3).is-visible h3 {
  animation-delay: 0.24s;
}

.about-highlight__feature:nth-child(3).is-visible p {
  animation-delay: 0.32s;
}

.about-highlight__feature.is-visible .about-highlight__icon {
  animation: aboutIconPulse 3.4s ease-in-out infinite;
}

.about-highlight__feature:nth-child(2).is-visible .about-highlight__icon {
  animation-delay: 0.15s;
}

.about-highlight__feature:nth-child(3).is-visible .about-highlight__icon {
  animation-delay: 0.3s;
}

.why-choose {
  background: #eff0f1;
  padding: 4.6rem 0 4.9rem;
}

.why-choose__header {
  text-align: center;
}

.why-choose__header h2 {
  margin: 0;
  color: #191d22;
  font-family: var(--body);
  letter-spacing: 0.03em;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
}

.why-choose__line {
  display: block;
  width: 100px;
  height: 3px;
  margin: 1rem auto 0;
  background: var(--accent);
}

.why-choose__grid {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(1rem, 2.2vw, 2.2rem);
  row-gap: 1.7rem;
}

.why-choose__item {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: flex-start;
  gap: 1.1rem;
}

.why-choose__icon {
  width: 88px;
  height: 88px;
  border-radius: 2px;
  background: #e7e8ea;
  display: grid;
  place-items: center;
}

.why-choose__icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-choose__item h3 {
  margin: 0;
  color: #2a2d31;
  font-family: var(--body);
  font-size: clamp(1.1rem, 1.35vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.why-choose__item p {
  margin: 0.55rem 0 0;
  color: #7a7f86;
  font-size: clamp(0.95rem, 1vw, 1.04rem);
  line-height: 1.72;
}

.why-choose__item:hover .why-choose__icon {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(17, 29, 25, 0.08);
}

.section-head {
  max-width: 760px;
}

.section-head .eyebrow {
  color: var(--accent-strong);
}

.section-head h2 {
  margin: 0.7rem 0 0;
  font-family: var(--title);
  letter-spacing: 0.012em;
  line-height: 0.97;
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  font-weight: 600;
  color: var(--forest);
}

.section-head--light .eyebrow,
.section-head--light h2 {
  color: #fff;
}

.services,
.process {
  padding: 5rem 0;
}

.services {
  position: relative;
  background:
    radial-gradient(circle at 12% 14%, rgba(181, 122, 66, 0.22), transparent 34%),
    radial-gradient(circle at 90% 78%, rgba(17, 29, 25, 0.11), transparent 36%),
    linear-gradient(180deg, #f7f2e8 0%, #eceff2 100%);
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2) 2px, transparent 2px, transparent 22px);
  opacity: 0.25;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services__header {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.services__kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.services__header h2 {
  margin: 0.75rem 0 0;
  font-family: var(--title);
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: 0.01em;
  color: #1d2925;
}

.services__intro {
  margin: 1.25rem auto 0;
  max-width: 760px;
  color: #616a73;
  line-height: 1.7;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
}

.services__grid {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  counter-reset: serviceCounter;
}

.service-card {
  position: relative;
  border: 1px solid rgba(143, 90, 47, 0.2);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
  box-shadow: 0 16px 34px rgba(22, 30, 35, 0.08);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  counter-increment: serviceCounter;
  transform: translateY(0) scale(1);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(181, 122, 66, 0.4);
  box-shadow: 0 24px 40px rgba(17, 29, 25, 0.16);
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #8f5a2f, #b57a42);
}

.service-card::after {
  content: counter(serviceCounter, decimal-leading-zero);
  position: absolute;
  right: 0.85rem;
  top: 0.7rem;
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.65rem;
  color: rgba(143, 90, 47, 0.7);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-card__body {
  padding: 1.15rem 1rem 1.25rem;
}

.service-card h3 {
  margin: 0;
  font-family: var(--title);
  font-size: clamp(1.8rem, 2vw, 2.25rem);
  letter-spacing: 0.01em;
  font-weight: 600;
  color: var(--forest);
}

.service-card p {
  margin: 0.62rem 0 0;
  color: #63707a;
  line-height: 1.58;
  font-size: 0.97rem;
}

.service-card[data-reveal] {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
}

.service-card[data-reveal].is-visible {
  animation: serviceCardIn 0.72s cubic-bezier(0.2, 0.8, 0.2, 1) var(--service-delay, 0s) both;
}

.service-card:nth-child(1) { --service-delay: 0.03s; }
.service-card:nth-child(2) { --service-delay: 0.09s; }
.service-card:nth-child(3) { --service-delay: 0.15s; }
.service-card:nth-child(4) { --service-delay: 0.21s; }
.service-card:nth-child(5) { --service-delay: 0.27s; }
.service-card:nth-child(6) { --service-delay: 0.33s; }

@keyframes serviceCardIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.projects {
  padding: 5.2rem 0;
  background:
    linear-gradient(rgba(11, 20, 18, 0.9), rgba(16, 26, 23, 0.88)),
    url("https://images.unsplash.com/photo-1513467655676-561b7d489a88?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
}

.project-filters {
  margin-top: 1.7rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.project-filter {
  border: 1px solid rgba(255, 235, 214, 0.45);
  background: rgba(255, 235, 214, 0.06);
  color: #fff;
  border-radius: 999px;
  min-height: 40px;
  padding: 0.45rem 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: 0.68rem;
  cursor: pointer;
}

.project-filter.is-active,
.project-filter:hover {
  background: linear-gradient(120deg, #7f502a, #b57a42);
  border-color: transparent;
}

.projects__grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.project-card {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 235, 214, 0.24);
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

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

.project-card.is-hidden {
  display: none;
}

.process {
  position: relative;
  background:
    radial-gradient(circle at 10% 18%, rgba(181, 122, 66, 0.22), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(17, 29, 25, 0.1), transparent 36%),
    linear-gradient(180deg, #f6f1e9 0%, #ebeef1 100%);
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(98deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2) 2px, transparent 2px, transparent 24px);
  opacity: 0.22;
}

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

.process__header {
  text-align: center;
  max-width: 910px;
  margin: 0 auto;
}

.process__kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.process__header h2 {
  margin: 0.75rem 0 0;
  font-family: var(--title);
  font-size: clamp(2.35rem, 4vw, 4.1rem);
  line-height: 0.96;
  color: #1e2925;
  letter-spacing: 0.01em;
}

.process__intro {
  margin: 1.2rem auto 0;
  max-width: 780px;
  color: #646e78;
  line-height: 1.72;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
}

.process__grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  position: relative;
}

.process__grid::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 38px;
  height: 2px;
  background: linear-gradient(90deg, rgba(143, 90, 47, 0.1), rgba(181, 122, 66, 0.9), rgba(143, 90, 47, 0.1));
}

.process-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 14px;
  border: 1px solid rgba(143, 90, 47, 0.22);
  padding: 1.2rem 1.1rem 1.25rem;
  box-shadow: 0 16px 34px rgba(21, 30, 35, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #8f5a2f, #b57a42);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 42px rgba(17, 29, 25, 0.16);
  border-color: rgba(181, 122, 66, 0.44);
}

.process-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.process-card__step {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(120deg, #7f502a, #b57a42);
  color: #fff;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.process-card__phase {
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(143, 90, 47, 0.3);
  color: #87552d;
  background: rgba(181, 122, 66, 0.1);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.process-card h3 {
  margin: 0.95rem 0 0;
  font-family: var(--title);
  letter-spacing: 0.01em;
  font-size: clamp(1.9rem, 2.25vw, 2.35rem);
  font-weight: 600;
  color: var(--forest);
}

.process-card p {
  margin: 0.62rem 0 0;
  color: #66717c;
  line-height: 1.64;
  font-size: 0.97rem;
}

.process-card[data-reveal] {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
}

.process-card[data-reveal].is-visible {
  animation: processCardIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) var(--process-delay, 0s) both;
}

.process-card:nth-child(1) { --process-delay: 0.04s; }
.process-card:nth-child(2) { --process-delay: 0.14s; }
.process-card:nth-child(3) { --process-delay: 0.24s; }

.process__cta {
  margin-top: 2.2rem;
  display: flex;
  justify-content: center;
}

@keyframes processCardIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.testimonials {
  position: relative;
  padding: 5.2rem 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(181, 122, 66, 0.24), transparent 38%),
    radial-gradient(circle at 84% 80%, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(135deg, #101715, #1a2824);
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(102deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05) 2px, transparent 2px, transparent 26px);
  opacity: 0.18;
}

.testimonials__inner {
  position: relative;
  z-index: 1;
}

.testimonials__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.testimonials__kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 700;
  color: #f4d8b8;
}

.testimonials__kicker::before,
.testimonials__kicker::after {
  content: "";
  width: clamp(54px, 7vw, 86px);
  height: 2px;
  background: rgba(181, 122, 66, 0.9);
}

.testimonials__header h2 {
  margin: 0.8rem 0 0;
  color: #f9f2ea;
  font-family: var(--title);
  font-size: clamp(2.45rem, 4.4vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0.012em;
}

.testimonials__intro {
  margin: 1.2rem auto 0;
  max-width: 760px;
  color: rgba(241, 234, 226, 0.84);
  line-height: 1.7;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
}

.testimonial-slider {
  margin-top: 2rem;
  position: relative;
}

.testimonial-shell {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
}

.testimonial-track {
  max-width: 860px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
  padding: 0 1.15rem;
}

.testimonial-slide.is-active {
  display: block;
  animation: fade-up 0.52s ease;
}

.testimonial-slide__card {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 235, 214, 0.32);
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(8, 12, 11, 0.3);
  backdrop-filter: blur(6px);
  padding: clamp(1.3rem, 2.5vw, 2rem);
}

.testimonial-slide__rating {
  margin: 0;
  color: #d8a56f;
  font-size: 0.9rem;
  letter-spacing: 0.28em;
  font-weight: 700;
}

.testimonial-slide__quote {
  margin: 0;
  margin-top: 1.05rem;
  color: #f5eee7;
  font-size: clamp(1.06rem, 1.6vw, 1.34rem);
  line-height: 1.75;
}

.testimonial-slide__meta {
  margin-top: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testimonial-slide__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 235, 214, 0.65);
}

.testimonial-slide__meta h3 {
  margin: 0;
  color: #fff;
  font-family: var(--body);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonial-slide__meta span {
  display: block;
  margin-top: 0.2rem;
  color: rgba(246, 232, 217, 0.82);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 1px solid rgba(255, 235, 214, 0.42);
  background: rgba(181, 122, 66, 0.28);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform 0.24s ease, background-color 0.24s ease;
}

.testimonial-arrow:hover {
  transform: translateY(-52%);
  background: rgba(181, 122, 66, 0.45);
}

.testimonial-arrow--left {
  left: -2px;
}

.testimonial-arrow--right {
  right: -2px;
}

.quote-banner {
  padding: 3.1rem 0 2.8rem;
  background: linear-gradient(180deg, #ebe8e3 0%, #e4e1dc 100%);
}

.quote-banner__inner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8efdc 0%, #f0e4cf 56%, #eadbc5 100%);
  border: 1px solid rgba(143, 90, 47, 0.24);
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(25, 31, 36, 0.11);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.6rem);
  padding: clamp(1.3rem, 2.8vw, 2.15rem);
}

.quote-banner__inner::before {
  content: "";
  position: absolute;
  right: -140px;
  top: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 122, 66, 0.22), rgba(181, 122, 66, 0));
  pointer-events: none;
}

.quote-banner__left {
  position: relative;
  z-index: 1;
}

.quote-banner__kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #8f5a2f;
}

.quote-banner__kicker::before,
.quote-banner__kicker::after {
  content: "";
  width: clamp(54px, 7vw, 92px);
  height: 2px;
  background: rgba(143, 90, 47, 0.65);
}

.quote-banner__inner h2 {
  margin: 0.7rem 0 0;
  font-family: var(--title);
  font-size: clamp(2.35rem, 4.5vw, 4.65rem);
  line-height: 0.96;
  font-weight: 600;
  color: #1e3a34;
  letter-spacing: 0.012em;
}

.quote-banner__text {
  margin: 0.95rem 0 0;
  max-width: 640px;
  color: #5f6973;
  line-height: 1.65;
  font-size: clamp(0.96rem, 1.15vw, 1.08rem);
}

.quote-banner__actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
}

.quote-banner__button {
  min-width: 182px;
  min-height: 62px;
  padding: 0.72rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

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

.quote-banner__button.is-solid {
  background: linear-gradient(120deg, #915a2d, #b57a42);
  color: #fff;
  box-shadow: 0 12px 24px rgba(143, 90, 47, 0.28);
}

.quote-banner__button.is-outline {
  border-color: rgba(30, 58, 52, 0.32);
  color: #1e3a34;
  background: rgba(255, 255, 255, 0.55);
}

.quote-banner__button.is-outline:hover {
  background: rgba(255, 255, 255, 0.9);
}

.site-footer {
  margin-top: 1.6rem;
  background: #121513;
  color: #e2d8ca;
}

.footer-grid {
  padding: 3.2rem 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
}

.brand--footer img {
  height: 48px;
  transform: scale(2.3);
  transform-origin: left center;
}

.site-footer h3 {
  margin: 0;
  color: #fff;
  font-family: var(--title);
  letter-spacing: 0.01em;
  font-size: 2.35rem;
  font-weight: 600;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #e2d8ca;
  line-height: 1.65;
}

.site-footer ul {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.site-footer__socials {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(226, 216, 202, 0.25);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  place-items: center;
  color: #e2d8ca;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-footer__socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(181, 122, 66, 0.75);
  color: #d8a56f;
}

.site-footer__socials svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
  margin: 0;
  min-height: 62px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0 0.6rem;
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}

[data-reveal].is-visible {
  animation: reveal 0.58s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutTextRise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutLineIn {
  from {
    transform: scaleX(0.25);
    opacity: 0.35;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes aboutPhotoFloat {
  0% {
    transform: scale(1.02) translateY(0);
  }

  50% {
    transform: scale(1.07) translateY(-8px);
  }

  100% {
    transform: scale(1.02) translateY(0);
  }
}

@keyframes aboutIconPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(181, 122, 66, 0);
  }

  50% {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(181, 122, 66, 0.18);
  }
}

@media (max-width: 1080px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .services__grid,
  .projects__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services__header h2 {
    font-size: clamp(2.2rem, 4.8vw, 3.5rem);
  }

  .process__grid,
  .about-highlight__body,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process__grid::before {
    display: none;
  }

  .process__header h2 {
    font-size: clamp(2.25rem, 5.2vw, 3.5rem);
  }

  .about-highlight__body {
    justify-items: center;
  }

  .about-highlight__features {
    width: min(100%, 780px);
  }

  .why-choose__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-shell {
    padding: 0 3rem;
  }
}

@media (max-width: 900px) {
  .site-topbar {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    width: min(320px, 94vw);
    border-radius: 14px;
    border: 1px solid rgba(31, 43, 39, 0.2);
    background: #fffdf8;
    box-shadow: var(--shadow-soft);
    padding: 0.8rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    z-index: 40;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 0.7rem;
    border-radius: 8px;
  }

  .main-nav a:hover {
    background: #f2e9dc;
  }

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

  .hero {
    padding: 0;
  }

  .hero__grid {
    min-height: 72vh;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 8.8vw, 4.3rem);
  }

  .hero__lead {
    font-size: 1rem;
    line-height: 1.7;
  }

  .quote-banner__inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .quote-banner__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

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

  .brand img,
  .brand--footer img {
    height: 42px;
  }

  .header-row .brand img {
    transform: scale(1.7);
  }

  .about-highlight__header p,
  .about-highlight__feature p,
  .service-card p,
  .process-card p {
    font-size: 0.95rem;
  }

  .quote-banner__kicker {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .quote-banner__inner h2 {
    line-height: 1;
  }

  .quote-banner__text {
    font-size: 0.94rem;
  }

  .quote-banner__actions {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .quote-banner__button {
    width: 100%;
    min-height: 56px;
  }

  .process__kicker {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
  }

  .process__intro {
    font-size: 0.95rem;
  }

  .process-card {
    padding: 1rem 0.92rem 1.1rem;
  }

  .process-card__step {
    width: 46px;
    height: 46px;
    font-size: 0.76rem;
  }

  .services__kicker {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
  }

  .services__header h2 {
    line-height: 1.02;
  }

  .services__intro {
    font-size: 0.95rem;
  }

  .service-card__body {
    padding: 1rem 0.92rem 1.12rem;
  }

  .service-card::after {
    right: 0.62rem;
    top: 0.56rem;
  }

  .about-highlight {
    padding: 3.8rem 0 4.2rem;
  }

  .why-choose {
    padding: 3.6rem 0 3.9rem;
  }

  .why-choose__grid {
    margin-top: 2rem;
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }

  .why-choose__item {
    grid-template-columns: 72px 1fr;
    gap: 0.9rem;
  }

  .why-choose__icon {
    width: 72px;
    height: 72px;
  }

  .why-choose__icon svg {
    width: 36px;
    height: 36px;
  }

  .about-highlight__body {
    margin-top: 2.4rem;
  }

  .about-highlight__image-wrap {
    width: min(100%, 360px);
  }

  .about-highlight__feature {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-highlight__icon {
    margin: 0 auto;
  }

  .hero__content {
    padding: 0 0.4rem;
  }

  .hero__video {
    object-position: 58% center;
  }

  .eyebrow {
    font-size: 0.96rem;
    gap: 0.7rem;
  }

  .hero h1 {
    margin-top: 1.2rem;
    line-height: 1.06;
  }

  .hero__lead {
    margin-top: 1.1rem;
    font-size: 0.98rem;
  }

  .services,
  .process,
  .projects,
  .testimonials {
    padding: 3.8rem 0;
  }

  .services__grid,
  .projects__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__kicker {
    font-size: 0.66rem;
    letter-spacing: 0.15em;
    gap: 0.65rem;
  }

  .testimonials__intro {
    font-size: 0.94rem;
  }

  .testimonial-shell {
    padding: 0 0 3.2rem;
  }

  .testimonial-slide {
    padding: 0;
  }

  .testimonial-slide__card {
    padding: 1rem 0.88rem;
  }

  .testimonial-slide__quote {
    margin-top: 0.88rem;
    font-size: 1rem;
  }

  .testimonial-slide__avatar {
    width: 56px;
    height: 56px;
  }

  .testimonial-arrow {
    top: auto;
    bottom: 0;
    transform: none;
    width: 44px;
    height: 44px;
  }

  .testimonial-arrow:hover {
    transform: none;
  }

  .testimonial-arrow--left {
    left: calc(50% - 50px);
  }

  .testimonial-arrow--right {
    right: auto;
    left: calc(50% + 6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }

  .service-card,
  .service-card img,
  .service-card.is-visible {
    animation: none;
    transform: none;
    transition: none;
  }

  .process-card,
  .process-card.is-visible {
    animation: none;
    transform: none;
    transition: none;
  }

  .about-highlight__header h2,
  .about-highlight__header p,
  .about-highlight__feature h3,
  .about-highlight__feature p {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .about-highlight__line {
    transform: none;
    opacity: 1;
    animation: none;
  }

  .about-highlight__image-wrap img,
  .about-highlight__feature .about-highlight__icon {
    animation: none;
    transform: none;
    box-shadow: none;
  }
}
