:root {
  --bg: #0f1114;
  --bg-soft: #16191e;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f1ea;
  --muted: rgba(245, 241, 234, 0.72);
  --line: rgba(255, 255, 255, 0.16);
  --accent: #7ecb72;
  --accent-2: #d2b58a;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --hero-1: linear-gradient(135deg, #2f2d2c 0%, #6b5e54 45%, #d9d0c4 100%);
  --hero-2: linear-gradient(135deg, #24313f 0%, #51606d 48%, #d8c7a8 100%);
  --hero-3: linear-gradient(135deg, #2f332f 0%, #7d6a4a 45%, #e0d6c6 100%);
  --hero-4: linear-gradient(135deg, #40362f 0%, #8a7a68 45%, #efe5d8 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top, rgba(126, 203, 114, 0.12), transparent 30%),
    linear-gradient(180deg, #111317 0%, #0c0d10 100%);
  color: var(--text);
}

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

button {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  pointer-events: auto;
}

.brand img {
  width: 168px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.32));
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: auto;
}

.pill,
.menu-button,
.nav-arrow,
.dot,
.cta-primary,
.cta-secondary {
  border: 0;
  cursor: pointer;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.pill:hover,
.cta-primary:hover,
.cta-secondary:hover,
.nav-arrow:hover {
  transform: translateY(-1px);
}

.pill-outline {
  color: #171412;
  background: linear-gradient(135deg, #f4ead7 0%, #e1cfb0 100%);
  border: 1px solid rgba(226, 204, 169, 0.36);
  box-shadow: 0 0 0 4px rgba(226, 204, 169, 0.14);
}

.pill-solid {
  color: #111317;
  background: rgba(255, 255, 255, 0.96);
}

.menu-button {
  width: 58px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  gap: 3px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.menu-button span {
  width: 19px;
  height: 1.8px;
  border-radius: 99px;
  background: linear-gradient(90deg, #1a1d22, #5b5246);
  display: block;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slider,
.slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.slide {
  display: block;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.65s ease, transform 0.9s ease;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

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

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0.08), rgba(8, 9, 11, 0.4)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15), transparent 26%),
    radial-gradient(circle at 75% 15%, rgba(255, 255, 255, 0.12), transparent 18%);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(8, 10, 12, 0.16) 0%, rgba(8, 10, 12, 0.32) 45%, rgba(8, 10, 12, 0.88) 100%),
    radial-gradient(circle at center, transparent 18%, rgba(0, 0, 0, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr);
  align-items: center;
  gap: 32px;
  padding: 120px 32px 72px;
}

.hero-copy {
  max-width: 700px;
  padding-bottom: 0;
  margin: clamp(1.75rem, 6vh, 4rem) auto 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(245, 241, 234, 0.76);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.contact-card h2 {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  font-weight: 800;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  max-width: 11ch;
  text-wrap: balance;
  font-style: italic;
  letter-spacing: -0.03em;
  margin-inline: auto;
}

.hero-text {
  margin: 18px auto 0;
  max-width: 54ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.18rem);
  line-height: 1.7;
  font-family: "Bodoni Moda", serif;
  font-weight: 800;
  font-style: normal;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  justify-content: center;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  font-weight: 800;
}

.cta-primary {
  color: #171412;
  background: linear-gradient(135deg, #f4ead7 0%, #e1cfb0 100%);
  box-shadow: 0 16px 35px rgba(226, 204, 169, 0.22);
}

.cta-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 18px;
}

.nav-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--text);
  background: rgba(20, 22, 26, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 2rem;
  line-height: 1;
}

.dots {
  display: inline-flex;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(10, 11, 13, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
  padding: 0;
}

.dot.is-active {
  width: 34px;
  border-radius: 999px;
  background: #f8f3ea;
}

.services,
.about,
.projects,
.contact {
  padding: 88px 32px;
  background: linear-gradient(180deg, rgba(8, 9, 12, 0.88) 0%, rgba(12, 13, 16, 1) 100%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 28px;
}

.section-heading h2,
.contact-card h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.services-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 22px;
  align-items: start;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.service-card {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(245, 241, 234, 0.08);
  border: 1px solid rgba(245, 241, 234, 0.16);
  box-shadow: none;
  text-align: left;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease,
    color 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: #f0e4d1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  z-index: -1;
}

.service-card:hover,
.service-card:focus-visible {
  background: rgba(245, 241, 234, 0.12);
  border-color: rgba(240, 228, 209, 0.42);
  transform: translateY(-5px);
}

.service-card:hover::before,
.service-card:focus-visible::before,
.service-card.is-active::before {
  transform: scaleX(1);
}

.service-card.is-active {
  background: #f0e4d1;
  border-color: #f0e4d1;
  color: #1f1a17;
}

.service-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #1f1a17;
  background: #f0e4d1;
  border: 1px solid rgba(31, 26, 23, 0.08);
  transition:
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.service-card:hover .service-icon,
.service-card:focus-visible .service-icon {
  transform: translateX(4px);
}

.service-card.is-active .service-icon {
  color: #f0e4d1;
  background: #1f1a17;
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-title {
  max-width: none;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.24;
  font-weight: 700;
  font-style: normal;
  color: rgba(255, 255, 255, 0.92);
}

.service-card.is-active .service-title {
  color: #1f1a17;
}

.service-detail {
  position: sticky;
  top: 118px;
  min-height: 374px;
  padding: 28px;
  border-radius: 8px;
  background: #f0e4d1;
  color: #1f1a17;
  border: 1px solid rgba(31, 26, 23, 0.12);
}

.service-detail .eyebrow {
  color: rgba(31, 26, 23, 0.58);
}

.service-detail h3 {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 0.98;
}

.service-detail p:last-child {
  margin: 18px 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(31, 26, 23, 0.72);
}

.service-detail.is-changing {
  animation: serviceDetailIn 260ms ease both;
}

@keyframes serviceDetailIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.about {
  background: linear-gradient(180deg, #eadfcb 0%, #efe5d5 100%);
  color: #1f1a17;
}

.about .eyebrow {
  color: rgba(31, 26, 23, 0.72);
}

.about-layout {
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
  gap: 28px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.about-copy {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 8px 0;
}

.about-copy h2 {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 0.98;
  font-style: italic;
  font-weight: 800;
  max-width: 14ch;
  color: #1f1a17;
}

.about-text {
  margin: 0;
  max-width: 56ch;
  color: rgba(31, 26, 23, 0.78);
  line-height: 1.8;
  font-size: 1.02rem;
}

.about-points {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.about-points li {
  position: relative;
  padding-left: 18px;
  color: rgba(31, 26, 23, 0.9);
  line-height: 1.55;
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4ead7 0%, #e1cfb0 100%);
  box-shadow: 0 0 0 4px rgba(225, 207, 176, 0.32);
}

.seo-section {
  padding: 76px 32px;
  background: #f3f3f1;
  color: #1f1a17;
}

.seo-content {
  max-width: 1200px;
  margin: 0 auto;
}

.seo-content .eyebrow {
  color: rgba(31, 26, 23, 0.58);
}

.seo-content h2 {
  max-width: 980px;
  margin: 0;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2.1rem, 3.8vw, 4rem);
  line-height: 1;
}

.seo-text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.seo-text-grid p {
  margin: 0;
  color: rgba(31, 26, 23, 0.78);
  line-height: 1.75;
}

.projects .section-heading,
.contact .section-heading {
  margin-bottom: 22px;
}

.projects {
  background: #f3f3f1;
  color: #1f1a17;
  overflow: hidden;
}

.projects .section-heading {
  margin-left: 0;
  text-align: left;
}

.projects .eyebrow {
  color: rgba(31, 26, 23, 0.58);
}

.project-grid {
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 26px);
  align-items: stretch;
}

.project-slot {
  position: relative;
  min-height: clamp(480px, 58vw, 720px);
  aspect-ratio: 3 / 5;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform-origin: center;
  transition:
    transform 260ms ease,
    z-index 0ms linear 260ms;
}

.project-slot:hover {
  z-index: 3;
  transform: scale(1.06);
  transition:
    transform 260ms ease,
    z-index 0ms;
}

.project-slot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.slot-1 {
  grid-column: auto;
  grid-row: auto;
}

.slot-2 {
  grid-column: auto;
  grid-row: auto;
}

.slot-3 {
  grid-column: auto;
  grid-row: auto;
}

.slot-4 {
  grid-column: auto;
  grid-row: auto;
}

.project-slot span {
  display: none;
}

.faq-section {
  padding: 82px 32px;
  background: #f3f3f1;
  color: #1f1a17;
}

.faq-content {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-section .section-heading {
  margin-left: 0;
  text-align: left;
}

.faq-section .eyebrow {
  color: rgba(31, 26, 23, 0.58);
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.faq-list details {
  border: 1px solid rgba(31, 26, 23, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  font-size: 1.2rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: rgba(31, 26, 23, 0.74);
  line-height: 1.7;
}

.contact-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  box-shadow: none;
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.contact-intro {
  margin: 0;
  max-width: 42ch;
  color: rgba(245, 241, 234, 0.72);
  line-height: 1.7;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.contact-links a {
  width: fit-content;
  padding: 0 0 6px;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(245, 241, 234, 0.36);
  color: rgba(255, 255, 255, 0.9);
}

.contact-links a:hover {
  color: #f4ead7;
}

.contact-addresses {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-addresses div {
  padding-top: 12px;
  border-top: 1px solid rgba(245, 241, 234, 0.18);
}

.contact-addresses span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.56);
}

.contact-addresses p {
  margin: 0;
  color: rgba(245, 241, 234, 0.82);
  line-height: 1.55;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

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

.field-full {
  grid-column: 1 / -1;
}

.field span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(245, 241, 234, 0.72);
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(245, 241, 234, 0.2);
  border-radius: 6px;
  background: rgba(245, 241, 234, 0.06);
  color: var(--text);
  padding: 14px 16px;
  outline: none;
  font: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(245, 241, 234, 0.42);
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(226, 204, 169, 0.7);
  background: rgba(245, 241, 234, 0.09);
}

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

.contact-submit {
  justify-self: start;
  margin-top: 2px;
  border-radius: 6px;
  background: #f0e4d1;
  box-shadow: none;
  filter: none;
}

.contact-submit:hover {
  background: #fff7e9;
  box-shadow: none;
}

.site-footer {
  padding: 52px 32px 28px;
  background: #191919;
  color: rgba(255, 255, 255, 0.94);
}

.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 20px;
  max-width: 320px;
}

.footer-logo img {
  width: 90px;
  height: auto;
  display: block;
}

.footer-block {
  display: grid;
  gap: 8px;
}

.footer-label {
  margin: 0;
  color: #b8cad7;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.84rem;
  font-weight: 800;
}

.footer-text {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
}

.footer-column {
  display: grid;
  gap: 18px;
}

.footer-column h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
}

.footer-column a,
.footer-column span {
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.footer-column a:hover {
  color: #f0e4d1;
}

.footer-muted {
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom {
  max-width: 1320px;
  margin: 48px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .services-layout {
    grid-template-columns: 1fr;
  }

  .service-detail {
    position: static;
    min-height: 260px;
  }

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

  .about-layout {
    grid-template-columns: 1fr;
  }

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

  .project-slot {
    min-height: clamp(420px, 72vw, 640px);
  }

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

@media (max-width: 760px) {
  .topbar {
    padding: 18px 16px;
  }

  .brand img {
    width: 118px;
  }

  .topbar-actions {
    gap: 8px;
  }

  .pill {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.92rem;
  }

  .menu-button {
    width: 50px;
    height: 40px;
  }

  .hero-content {
    padding: 96px 16px 84px;
  }

  .hero-copy {
    margin-top: clamp(1.25rem, 4vh, 2.5rem);
  }

  .hero h1 {
    font-size: clamp(2.15rem, 9vw, 3.2rem);
  }

  .hero-text {
    font-size: clamp(1rem, 3.8vw, 1.12rem);
  }

  .services,
  .seo-section,
  .projects,
  .faq-section,
  .contact {
    padding: 70px 16px;
  }

  .service-grid,
  .seo-text-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-auto-rows: auto;
    gap: 14px;
  }

  .project-slot,
  .slot-1,
  .slot-2,
  .slot-3,
  .slot-4 {
    grid-column: auto;
    grid-row: auto;
    min-height: 460px;
    aspect-ratio: 3 / 5;
  }

  .service-title {
    max-width: none;
    font-size: 1.14rem;
  }

  .service-detail {
    padding: 22px;
  }

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

  .contact-card {
    grid-template-columns: 1fr;
    padding: 0;
    border-radius: 0;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    justify-self: stretch;
  }

  .site-footer {
    padding: 42px 16px 22px;
  }

  .footer-bottom {
    margin-top: 34px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
