:root {
  --bg: #f7f2ea;
  --bg-alt: #efe6d8;
  --text: #2b2621;
  --muted: #746a5c;
  --accent: #FF590F;
  --accent-light: #FF7E26;
  --accent-dark: #d94500;
  --line: #ddd0bd;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Jost", "Segoe UI", sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

h1, h2, h3, .signature {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-weight: 500;
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

p {
  margin: 0 0 1em;
  color: var(--muted);
}

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.72rem;
  color: var(--accent);
  margin-bottom: 0.8em;
  display: block;
}

/* Header */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 234, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand img {
  height: 112px;
}

nav.links {
  display: flex;
  gap: 2.2rem;
}

nav.links a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
}

nav.links a.active,
nav.links a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text);
}

/* Hero */
.hero-section {
  padding: 90px 0 70px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero img {
  border-radius: 4px;
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.hero-media {
  position: relative;
  margin-bottom: 50px;
}

.hero-cta-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: -28px;
  background: var(--white);
  border-radius: 4px;
  padding: 22px 24px;
  text-align: center;
  box-shadow: 0 16px 34px rgba(20, 16, 12, 0.18);
}

.hero-cta-card .eyebrow {
  margin-bottom: 0.6em;
}

.hero-cta-card .btn {
  display: block;
  width: 100%;
}

.btn {
  display: inline-block;
  border: 1px solid var(--text);
  padding: 12px 28px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: var(--text);
  color: var(--bg);
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.btn.primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* Sections */
section {
  padding: 70px 0;
}

section.alt {
  background: var(--bg-alt);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px 28px;
  border-radius: 4px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.project-card img {
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.project-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(20,16,12,0.75), transparent);
  color: #fff;
}

.project-caption .eyebrow {
  color: #e8caa9;
}

.project-caption h3 {
  color: #fff;
  margin: 0;
  font-size: 1.3rem;
}

.carousel-wrap {
  position: relative;
}

.gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.gallery::-webkit-scrollbar {
  height: 8px;
}

.gallery::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 4px;
}

.gallery img {
  flex: 0 0 auto;
  width: min(75%, 380px);
  border-radius: 4px;
  aspect-ratio: 4/5;
  object-fit: cover;
  cursor: zoom-in;
  scroll-snap-align: start;
}

.card-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.card-carousel::-webkit-scrollbar {
  height: 8px;
}

.card-carousel::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 4px;
}

.card-carousel .project-card {
  flex: 0 0 auto;
  width: min(80%, 340px);
  scroll-snap-align: start;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(20, 16, 12, 0.15);
}

.carousel-btn.prev {
  left: -8px;
}

.carousel-btn.next {
  right: -8px;
}

@media (max-width: 640px) {
  .carousel-btn {
    display: none;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 12, 10, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 60px 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 4px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 1.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}

.testimonial-card .stars {
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 0.8em;
  font-size: 0.95rem;
}

.testimonial-card p {
  color: var(--text);
  font-size: 0.95rem;
  flex-grow: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 1rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
  object-fit: cover;
}

.testimonial-card .name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--muted);
}

footer.site {
  background: #211d19;
  color: #d8cfc2;
  padding: 56px 0 28px;
}

footer.site a:hover {
  color: var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

footer.site h3 {
  color: #fff;
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid #3a342d;
  padding-top: 20px;
  font-size: 0.8rem;
  color: #8b8175;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 60;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.page-header {
  padding: 60px 0 20px;
  text-align: center;
}

.service-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-item .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

form.contact input,
form.contact textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  margin-bottom: 14px;
  border-radius: 3px;
  color: var(--text);
}

form.contact label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}

@media (max-width: 860px) {
  nav.links {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    display: none;
  }

  nav.links.open {
    display: flex;
  }

  nav.links a {
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
  }

  .menu-toggle {
    display: block;
  }

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

  .hero-section {
    padding-top: 40px;
  }

  .grid-3, .grid-2, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .hero img {
    aspect-ratio: 4/3;
  }
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq-item summary {
  cursor: pointer;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  margin: 14px 0 0;
}
