:root {
  --ivory: #f8f6ef;
  --paper: #ffffff;
  --ink: #17201b;
  --muted: #69736d;
  --forest: #092817;
  --forest-2: #123f27;
  --gold: #c79b52;
  --copper: #8e5f33;
  --stone: #e4e0d7;
  --mist: #edf2eb;
  --cream: #fffaf0;
  --shadow: 0 20px 48px rgba(12, 34, 22, 0.12);
  --soft-shadow: 0 10px 28px rgba(12, 34, 22, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffdf7 0%, var(--ivory) 44%, #f3f4ef 100%);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

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

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.contact-strip {
  background: var(--forest);
  color: #ecf5ee;
  font-size: 0.82rem;
}

.strip-inner,
.quick-contact,
.social-links,
.nav-inner,
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
}

.strip-inner {
  min-height: 42px;
  justify-content: space-between;
  gap: 18px;
}

.quick-contact,
.social-links {
  gap: 16px;
  flex-wrap: wrap;
}

.social-links a {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--stone);
  backdrop-filter: blur(14px);
}

.nav-inner {
  min-height: 84px;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-logo {
  width: 76px;
  height: 58px;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
  flex: 0 0 auto;
}

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

.brand strong,
.brand em {
  display: block;
  line-height: 1;
}

.brand strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}

.brand em {
  margin-top: 4px;
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #3d4942;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

nav a {
  position: relative;
  padding: 8px 0;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

nav a:hover::after {
  transform: scaleX(1);
}

.quote-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 4px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.quote-btn,
.btn-gold {
  background: var(--gold);
  color: #1d1609;
  box-shadow: 0 8px 20px rgba(199, 155, 82, 0.28);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: #fff;
}

.quote-btn:hover,
.btn:hover {
  transform: translateY(-1px);
}

.btn-outline.light {
  color: #fff;
  border-color: rgba(255,255,255,0.48);
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #07160f;
}

.hero img,
.hero-shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero img {
  opacity: 0.88;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5,20,12,0.92) 0%, rgba(5,20,12,0.58) 42%, rgba(5,20,12,0.04) 100%),
    linear-gradient(180deg, rgba(5,20,12,0.12) 60%, rgba(5,20,12,0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 88px 0 112px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.02;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: 5.15rem;
}

h2 {
  margin-bottom: 16px;
  font-size: 3.2rem;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 590px;
  color: #edf3ee;
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-kpis span {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #f3f6f1;
  backdrop-filter: blur(10px);
}

.hero-kpis strong {
  color: #fff;
}

.hero-actions,
.cta-actions {
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.stats-band {
  background: var(--paper);
  border-bottom: 1px solid var(--stone);
}

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

.stats-grid article {
  min-height: 132px;
  padding: 26px 18px;
  display: grid;
  place-items: center;
  text-align: center;
  border-left: 1px solid var(--stone);
  background: linear-gradient(180deg, #fff, #fbfaf5);
}

.stats-grid article:last-child {
  border-right: 1px solid var(--stone);
}

.stats-grid strong {
  display: block;
  color: var(--forest);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.stats-grid span,
.content-panel p,
.service-card p,
.reason-grid p,
.process-line p,
.testimonial-grid p,
.footer p,
.footer a,
.footer-bottom {
  color: var(--muted);
  line-height: 1.65;
}

.section {
  padding: 82px 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 44px;
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel img {
  height: 520px;
}

.content-panel {
  max-width: 680px;
}

.content-panel p {
  margin-bottom: 14px;
}

.mini-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.mini-features span {
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: var(--mist);
  font-weight: 800;
}

.section-title {
  max-width: 780px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-title h2 {
  text-wrap: balance;
}

.service-grid,
.project-grid,
.reason-grid,
.process-line,
.testimonial-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.project-card,
.reason-grid article,
.process-line article,
.testimonial-grid article {
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.service-card,
.reason-grid article,
.process-line article,
.testimonial-grid article {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.reason-grid article:hover,
.process-line article:hover,
.testimonial-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 155, 82, 0.52);
  box-shadow: var(--shadow);
}

.service-card img {
  height: 210px;
}

.service-card h3,
.service-card p {
  padding-left: 18px;
  padding-right: 18px;
}

.service-card h3 {
  margin-top: 18px;
}

.service-card p {
  margin-bottom: 20px;
}

.project-section {
  background: #f1f4f0;
}

.project-grid {
  grid-template-columns: repeat(4, 1fr);
}

.project-card {
  min-height: 360px;
  position: relative;
  box-shadow: var(--shadow);
}

.project-card img {
  height: 100%;
  position: absolute;
  inset: 0;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,20,12,0.04), rgba(6,20,12,0.86));
}

.project-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 22px;
  color: #fff;
}

.project-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.project-card p {
  margin-bottom: 0;
  color: #e9eee9;
}

.wide-card {
  grid-column: span 2;
}

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

.reason-grid article,
.process-line article,
.testimonial-grid article {
  padding: 24px;
}

.reason-grid strong,
.process-line span {
  color: var(--gold);
  font-weight: 800;
}

.reason-grid strong {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.82rem;
}

.process-section {
  background: var(--paper);
}

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

.process-line article {
  position: relative;
}

.process-line span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.testimonial-section {
  background: #f8f8f4;
}

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

.testimonial-grid p {
  font-size: 1.02rem;
}

.testimonial-grid article {
  position: relative;
}

.testimonial-grid article::before {
  content: "\"";
  position: absolute;
  top: 8px;
  right: 22px;
  color: rgba(199, 155, 82, 0.22);
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 1;
}

.testimonial-grid strong,
.testimonial-grid span {
  display: block;
}

.testimonial-grid span {
  margin-top: 4px;
  color: var(--gold);
  font-weight: 800;
}

.cta-band {
  position: relative;
  padding: 66px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9,40,23,0.98), rgba(9,40,23,0.82)),
    url("assets/hero-villa.png") center / cover;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  margin-bottom: 10px;
}

.cta-inner p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 0;
  color: #dfe9e1;
  line-height: 1.7;
}

.footer {
  padding: 58px 0 22px;
  background: #06190f;
  color: #ecf5ee;
}

.footer-grid {
  grid-template-columns: 1.4fr repeat(3, 1fr);
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-brand {
  margin-bottom: 16px;
}

.footer .brand-logo {
  background: #fff;
}

.footer h3 {
  color: #fff;
}

.footer a {
  display: block;
  margin-bottom: 9px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  font-size: 0.86rem;
}

@media (max-width: 1060px) {
  .nav-inner {
    min-height: 78px;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 610px;
  }

  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .service-grid,
  .project-grid,
  .reason-grid,
  .process-line,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid {
    align-items: stretch;
  }

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

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 24px, 1180px);
  }

  .contact-strip {
    display: none;
  }

  .nav-inner {
    min-height: 70px;
    padding: 10px 0;
  }

  .quote-btn {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0;
    display: inline-flex;
  }

  .quote-btn::after {
    content: "Quote";
    font-size: 0.72rem;
  }

  .brand-logo {
    width: 58px;
    height: 46px;
  }

  .brand strong {
    font-size: 1.28rem;
  }

  .brand em {
    font-size: 0.66rem;
  }

  .hero {
    min-height: 620px;
    align-items: end;
  }

  .hero img {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5,20,12,0.3), rgba(5,20,12,0.96)),
      linear-gradient(90deg, rgba(5,20,12,0.72), rgba(5,20,12,0.18));
  }

  .hero-content {
    padding: 84px 0 44px;
  }

  h1 {
    font-size: 3rem;
    max-width: 9ch;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.62;
  }

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

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

  .hero-kpis {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .stats-grid,
  .about-layout,
  .service-grid,
  .project-grid,
  .reason-grid,
  .process-line,
  .testimonial-grid,
  .footer-grid,
  .cta-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .stats-grid article {
    border-right: 1px solid var(--stone);
    min-height: 108px;
    padding: 20px 14px;
  }

  .section {
    padding: 58px 0;
  }

  .about-layout {
    gap: 28px;
  }

  .image-panel img {
    height: 360px;
  }

  .mini-features {
    grid-template-columns: 1fr;
  }

  .wide-card {
    grid-column: auto;
  }

  .project-card {
    min-height: 330px;
  }

  .reason-grid article,
  .process-line article,
  .testimonial-grid article {
    padding: 20px;
  }

  .cta-inner {
    gap: 12px;
  }

  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 420px) {
  .brand-copy {
    display: none;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2rem;
  }

  .service-card img {
    height: 185px;
  }

  .project-card {
    min-height: 300px;
  }
}
