:root {
  --bg: #0a0f14;
  --surface: rgba(255, 255, 255, 0.06);
  --text: #f3efe7;
  --muted: #c5c1b6;
  --primary: #d9a86c;
  --secondary: #7ea295;
  --stroke: rgba(255, 255, 255, 0.14);
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 14%, rgba(217, 168, 108, 0.24), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(126, 162, 149, 0.22), transparent 24%),
    radial-gradient(circle at 45% 84%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(135deg, #090d11 0%, #101822 55%, #0a0f14 100%);
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.site-shell {
  overflow: visible;
}

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding-top: 1.1rem;
  transition: padding-top 0.25s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 15, 20, 0.9), rgba(10, 15, 20, 0));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.site-header .container {
  position: relative;
  z-index: 2;
}

.site-header.is-scrolled {
  padding-top: 0.45rem;
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.glass {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.topbar {
  border-radius: 999px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: border-radius 0.25s ease, padding 0.25s ease, background-color 0.25s ease;
}

.topbar,
.desktop-nav,
.menu-toggle,
.mobile-nav,
.btn,
.hero-actions a {
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

.site-header.is-scrolled .topbar {
  border-radius: 1rem;
  padding: 0.65rem 0.9rem;
  background: linear-gradient(160deg, rgba(11, 16, 22, 0.92), rgba(11, 16, 22, 0.75));
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1;
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand-mark {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-content: center;
  border-radius: 999px;
  border: 1px solid rgba(217, 168, 108, 0.44);
  color: var(--primary);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.desktop-nav a {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  font-size: 0.92rem;
  transition: background-color 0.25s ease;
}

.desktop-nav a:hover {
  background-color: rgba(255, 255, 255, 0.09);
}

.desktop-nav a.nav-active,
.mobile-nav a.nav-active {
  background-color: rgba(217, 168, 108, 0.2);
  border: 1px solid rgba(217, 168, 108, 0.38);
  color: #f8e7d1;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  width: 2.7rem;
  height: 2.7rem;
  color: var(--text);
  cursor: pointer;
}

.mobile-nav {
  margin-top: 0;
  border-radius: 1.2rem;
  padding: 0.5rem;
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  right: 0;
  z-index: 80;
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scaleY(0.96);
  max-height: min(70vh, 420px);
  overflow-y: auto;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
}

.mobile-nav.mobile-nav-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scaleY(1);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
}

.mobile-nav a {
  display: block;
  padding: 0.8rem 0.95rem;
  border-radius: 0.8rem;
  font-size: 0.94rem;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.09);
}

.hidden {
  display: none;
}

main section[id] {
  scroll-margin-top: 7rem;
}

main {
  padding-top: 6.8rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.74rem;
}

.dot {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 14px rgba(217, 168, 108, 0.66);
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  margin: 0;
  line-height: 1;
}

.hero-copy h1 {
  margin-top: 1rem;
  font-size: clamp(2.8rem, 6.6vw, 5.2rem);
}

.lead {
  margin-top: 1.4rem;
  color: rgba(243, 239, 231, 0.86);
  line-height: 1.8;
  max-width: 55ch;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  font-weight: 700;
  transition: transform 0.26s ease, box-shadow 0.26s ease, filter 0.26s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #0d1116;
  background: linear-gradient(120deg, #f3c58e, var(--primary));
  box-shadow: 0 14px 28px rgba(217, 168, 108, 0.25);
}

.btn-outline {
  border: 1px solid rgba(126, 162, 149, 0.72);
  background: rgba(255, 255, 255, 0.04);
}

.stats {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.stats article {
  border-radius: 1rem;
  padding: 1rem;
}

.stats h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--primary);
}

.stats p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  padding-bottom: 2.7rem;
}

.main-image {
  margin: 0;
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid var(--stroke);
  min-height: 520px;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 11, 0.72), rgba(5, 8, 11, 0.15));
}

.main-image figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  border-radius: 999px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  text-align: center;
  padding: 0.45rem 0.8rem;
}

.accent-image {
  position: absolute;
  right: -1.1rem;
  bottom: 0;
  width: min(44%, 250px);
  border-radius: 1.3rem;
  overflow: hidden;
}

.accent-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-copy {
  border-radius: 1.6rem;
  padding: 1.55rem;
}

.about-copy h2,
.section-head h2,
.contact h2 {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  line-height: 1.07;
}

.about-copy p {
  line-height: 1.8;
  color: rgba(243, 239, 231, 0.88);
}

.about-pills {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.about-pills .glass {
  border-radius: 1rem;
  padding: 1rem;
}

.about-pills h3 {
  font-size: 1.55rem;
}

.about-pills p {
  margin: 0.45rem 0 0;
  font-size: 0.91rem;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.card {
  border-radius: 1.3rem;
  padding: 1.2rem;
  min-height: 190px;
  transition: transform 0.33s ease, border-color 0.33s ease;
}

.card:hover,
.service-card:hover,
.project-card:hover,
.testimonial:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 168, 108, 0.4);
}

.card svg {
  width: 22px;
  color: var(--secondary);
}

.card h3 {
  margin-top: 0.9rem;
  font-size: 1.9rem;
}

.card p {
  margin-top: 0.5rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.section-head {
  max-width: 72ch;
  margin-bottom: 1.6rem;
}

.section-head p {
  color: var(--muted);
  line-height: 1.8;
}

.services-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  border-radius: 1.2rem;
  padding: 1.2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--primary);
}

.service-card h3 {
  margin-top: 0.75rem;
  font-size: 1.9rem;
}

.service-card p {
  margin-top: 0.5rem;
  line-height: 1.6;
  color: var(--muted);
}

.projects-grid {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card {
  border-radius: 1.2rem;
  overflow: hidden;
  position: relative;
  min-height: 355px;
  border: 1px solid var(--stroke);
  transition: transform 0.3s ease;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(8, 12, 16, 0.94), rgba(8, 12, 16, 0.4));
  padding: 1rem;
}

.project-overlay p {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #dfd9ca;
}

.project-overlay h3 {
  margin-top: 0.35rem;
  font-size: 2.05rem;
}

.project-overlay p:last-child {
  margin-top: 0.5rem;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.6;
  font-size: 0.92rem;
}

.testimonials-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial {
  border-radius: 1.2rem;
  padding: 1.2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial p {
  margin-top: 0;
  line-height: 1.8;
  color: #e3ddce;
}

.testimonial h3 {
  margin-top: 0.75rem;
  font-size: 1.6rem;
}

.testimonial span {
  color: var(--muted);
  font-size: 0.87rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.contact-grid article {
  border-radius: 1.2rem;
  padding: 1.3rem;
}

.contact-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #e4dfd3;
  padding: 0.65rem 0.75rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.legal-card h3 {
  font-size: 2.3rem;
}

.legal-card p {
  margin-top: 0.7rem;
  color: #ddd7c8;
  line-height: 1.7;
}

.legal-card .btn {
  margin-top: 1rem;
}

.legal-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.inner-hero {
  padding-top: 2.2rem;
}

.inner-hero .glass {
  border-radius: 1.5rem;
  padding: 1.4rem;
}

.inner-hero h1 {
  margin-top: 0.7rem;
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.inner-hero p {
  color: #ddd7ca;
  line-height: 1.75;
  max-width: 72ch;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.content-card {
  border-radius: 1.2rem;
  padding: 1.2rem;
}

.content-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.08;
}

.content-card h3 {
  margin-top: 1rem;
  font-size: 1.65rem;
}

.content-card p {
  margin-top: 0.65rem;
  color: #ddd8cb;
  line-height: 1.72;
}

.content-card ul {
  margin: 0.7rem 0 0;
  padding-left: 1.2rem;
  color: #ddd8cb;
  line-height: 1.7;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0.9rem;
}

.map-embed {
  border: 0;
  width: 100%;
  min-height: 300px;
  border-radius: 1rem;
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-inner {
  border-radius: 1.2rem;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
  color: #d4cec0;
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 680px;
  }

  .main-image {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(1200px, calc(100% - 1.2rem));
  }

  .site-header {
    padding-top: 0.55rem;
  }

  .site-header.is-scrolled {
    padding-top: 0.25rem;
  }

  main {
    padding-top: 5.1rem;
  }

  .section {
    padding: 3.1rem 0;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-content: center;
  }

  .topbar {
    padding: 0.55rem 0.7rem;
  }

  .brand {
    gap: 0.55rem;
    min-width: 0;
  }

  .brand-mark {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.2rem;
  }

  .brand strong {
    font-size: 1.35rem;
    white-space: nowrap;
  }

  .brand small {
    letter-spacing: 0.13em;
    font-size: 0.62rem;
  }

  .mobile-nav {
    top: calc(100% + 0.35rem);
    border-radius: 0.95rem;
    padding: 0.35rem;
    max-height: min(72vh, 460px);
  }

  .mobile-nav a {
    font-size: 0.89rem;
    padding: 0.68rem 0.75rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 10vw, 2.95rem);
  }

  .lead {
    line-height: 1.65;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .stats,
  .value-grid,
  .about-pills,
  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .main-image {
    min-height: 355px;
  }

  .accent-image {
    position: static;
    width: 100%;
    margin-top: 0.75rem;
  }

  .project-card {
    min-height: 300px;
  }

  .project-overlay h3 {
    font-size: 1.6rem;
  }

  .contact-grid article,
  .about-copy,
  .card,
  .service-card,
  .testimonial {
    padding: 1rem;
  }

  .legal-card h3 {
    font-size: 1.9rem;
  }

  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  main section[id] {
    scroll-margin-top: 5.4rem;
  }
}

@media (max-width: 420px) {
  .brand strong {
    font-size: 1.16rem;
  }

  .brand small {
    display: none;
  }

  .hero-actions {
    width: 100%;
  }

  .inner-hero .glass,
  .content-card {
    padding: 1rem;
  }
}
