:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --text: #231f1a;
  --muted: #6f665e;
  --line: rgba(35, 31, 26, 0.12);
  --brand: #b68a56;
  --brand-deep: #8e6536;
  --shadow: 0 24px 60px rgba(32, 24, 18, 0.12);
  --container: 1180px;
  --font-display: "Georgia", "Times New Roman", serif;
  --font-body: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  line-height: 1.15;
  font-family: var(--font-display);
  font-weight: 500;
}

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

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand img {
  width: 168px;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  position: relative;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.site-nav a.active {
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 78svh;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(18, 15, 11, 0.18) 0%, rgba(18, 15, 11, 0.72) 100%),
    url("./images/uploads/2019/07/SLIDE-2.jpg") center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.08) 0 26%, transparent 26% 29%, rgba(255, 255, 255, 0.08) 29% 58%, transparent 58% 61%, rgba(255, 255, 255, 0.08) 61% 100%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.hero-content {
  position: relative;
  min-height: 78svh;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  letter-spacing: 0.03em;
}

.hero p,
.page-hero p {
  max-width: 56ch;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.4rem;
  border-radius: 999px;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button {
  background: var(--brand);
  color: #fff;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

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

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
  background:
    radial-gradient(circle at top right, rgba(182, 138, 86, 0.22), transparent 24%),
    linear-gradient(180deg, #2a211a 0%, #1c1611 100%);
  color: #fff;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -10rem auto;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background: rgba(182, 138, 86, 0.16);
  filter: blur(24px);
}

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

.section {
  padding: 5rem 0;
}

.section-header {
  max-width: 720px;
  margin-bottom: 2.2rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-header p,
.lede {
  color: var(--muted);
  font-size: 1.04rem;
}

.cards-3,
.cards-2,
.stats,
.contact-grid,
.project-grid,
.gallery-grid,
.about-grid {
  display: grid;
  gap: 1.4rem;
}

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

.cards-2,
.contact-grid,
.about-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.service-card,
.project-card,
.contact-card,
.founder-card,
.feature-banner,
.info-panel,
.form-panel {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.service-card {
  overflow: hidden;
}

.service-card img,
.project-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.service-card-body,
.project-card-body,
.contact-card,
.founder-card,
.info-panel,
.form-panel {
  padding: 1.5rem;
}

.service-card h3,
.project-card h3 {
  font-size: 1.35rem;
}

.service-card p,
.project-card p,
.contact-card p,
.info-panel p,
.founder-card p {
  color: var(--muted);
}

.feature-banner {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

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

.feature-banner-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.feature-banner-content .eyebrow {
  color: var(--brand-deep);
}

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

.project-details {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.detail-box {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.detail-box strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

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

.gallery-grid a {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.gallery-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  transition: transform 0.35s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.05);
}

.about-grid {
  align-items: start;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.mosaic img {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.founder-card {
  display: grid;
  gap: 1.2rem;
}

.founder-card img {
  width: min(100%, 360px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
  border: 10px solid rgba(182, 138, 86, 0.15);
}

.stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.stat {
  padding: 1.2rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 2rem;
  font-family: var(--font-display);
}

.contact-grid {
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 0.5rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
  color: var(--muted);
}

.contact-list strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.field textarea {
  min-height: 170px;
  resize: vertical;
}

.map-frame {
  overflow: hidden;
  min-height: 360px;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.clients {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.client-chip {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
}

.client-chip img {
  max-height: 52px;
  width: auto;
  max-width: 100%;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer-brand {
  display: block;
  text-align: left;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .cards-3,
  .cards-2,
  .project-grid,
  .gallery-grid,
  .about-grid,
  .contact-grid,
  .stats,
  .feature-banner,
  .clients {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
  }

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

  .hero-content,
  .page-hero {
    padding-top: 5rem;
  }

  .mosaic,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 560px) {
  .hero {
    min-height: 68svh;
  }

  .mosaic,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
