/* ============================================================
   Variables & Reset
   ============================================================ */
:root {
  --bg:         #F5F0EA;
  --bg-alt:     #EDE8E0;
  --text:       #1C1C1C;
  --muted:      #6B6558;
  --accent:     #B85C38;
  --accent-dk:  #963F22;
  --secondary:  #4A4A3A;
  --white:      #FFFFFF;
  --wa:         #25D366;
  --wa-dk:      #1da851;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.09), 0 2px 6px rgba(0,0,0,.05);
  --radius:     6px;
  --container:  1120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }

p { color: var(--muted); line-height: 1.75; }

/* ============================================================
   Layout Utilities
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 96px 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section__title { margin-bottom: 48px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.12s;
  white-space: nowrap;
}

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

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(28,28,28,.35);
}
.btn--outline:hover {
  border-color: var(--text);
  background: var(--text);
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.8);
}

.btn--wa {
  background: var(--wa);
  color: var(--white);
  border-color: var(--wa);
  font-size: 1rem;
  padding: 15px 34px;
}
.btn--wa:hover {
  background: var(--wa-dk);
  border-color: var(--wa-dk);
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid rgba(0,0,0,.09);
}

.nav__inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}

.nav__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  margin-right: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--secondary);
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--accent); }

.nav__cta {
  font-size: 0.85rem;
  padding: 9px 18px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}

.nav.open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero — full-bleed image
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  background: url('images/hero.jpg') center center / cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(12, 8, 4, .72) 0%,
    rgba(12, 8, 4, .52) 50%,
    rgba(12, 8, 4, .18) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: var(--radius);
  padding: 48px 52px;
}

.hero__eyebrow { color: rgba(255,255,255,.7); }

.hero__title {
  color: var(--white);
  margin: 10px 0 18px;
}

.hero__tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   Services
   ============================================================ */
.services { background: var(--bg-alt); }

.services__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service {
  display: grid;
  grid-template-columns: 2fr 3fr;
  height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.07);
  background: var(--bg);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.service:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.service__img { overflow: hidden; height: 100%; }
.service__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.35s;
}
.service:hover .service__img img { transform: scale(1.04); }

.service__body {
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(184,92,56,.1);
  border-radius: var(--radius);
  color: var(--accent);
  margin-bottom: 16px;
}

.service:nth-child(3) .service__img img { object-position: center center; }

.service h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service p  { font-size: 0.96rem; }

/* ============================================================
   About
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__text .section__title { margin-bottom: 20px; }

.about__text p {
  font-size: 1rem;
  margin-bottom: 16px;
}
.about__text p:last-child { margin-bottom: 0; }

.about__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.about__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--accent);
  border-radius: var(--radius);
  padding: 16px 22px;
  text-align: center;
}

.about__number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: block;
}

.about__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-top: 6px;
}

/* ============================================================
   Portfolio / Work
   ============================================================ */
.work { background: var(--bg-alt); }

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

.work__item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.work__item:hover { transform: scale(1.02); }

.work__item--1 { background: #C8A898; }
.work__item--2 { background: #9EA88A; }
.work__item--3 { background: #BCA898; }
.work__item--4 { background: #8A9898; }
.work__item--5 { background: #C2AC94; }
.work__item--6 { background: #A09878; }

.work__label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(28,28,28,.7);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials { background: var(--bg); }

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.testimonial {
  background: var(--bg-alt);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius);
  padding: 36px;
}

.testimonial__stars {
  font-size: 1.05rem;
  color: #C8961A;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonial blockquote {
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--secondary);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial__author { display: flex; flex-direction: column; gap: 3px; }

.testimonial__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.testimonial__location {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============================================================
   Contact — 2-column with image
   ============================================================ */
.contact { background: var(--bg-alt); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.contact__img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 440px;
  position: relative;
}
.contact__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.contact__inner .section__title { margin-bottom: 14px; }

.contact__sub {
  font-size: 1rem;
  margin-bottom: 32px;
}

.contact__email {
  display: block;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.contact__email:hover { color: var(--accent); }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--text);
  padding: 28px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.footer__credit {
  font-size: 0.8rem;
  color: rgba(255,255,255,.45);
}
.footer__credit a {
  color: rgba(255,255,255,.65);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.footer__credit a:hover { color: var(--white); }

/* ============================================================
   Sticky WhatsApp (mobile only)
   ============================================================ */
.wa-sticky {
  display: none;
  position: fixed;
  bottom: 22px;
  right: 18px;
  z-index: 200;
  background: var(--wa);
  color: var(--white);
  border-radius: 50px;
  padding: 11px 20px;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(37,211,102,.38);
  transition: background 0.15s, transform 0.15s;
}
.wa-sticky:hover {
  background: var(--wa-dk);
  transform: translateY(-2px);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 767px) {
  /* Show sticky WhatsApp */
  .wa-sticky { display: inline-flex; }

  /* Nav */
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__burger { display: flex; }

  .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid rgba(0,0,0,.09);
    padding: 20px 28px 24px;
    gap: 18px;
    z-index: 99;
  }
  .nav.open .nav__links a { font-size: 1rem; }

  /* Hero */
  .hero { padding: 80px 0 72px; min-height: 90vh; }
  .hero__content { max-width: 100%; padding: 36px 28px; }

  /* Sections */
  .section { padding: 72px 0; }

  /* Services */
  .service { grid-template-columns: 1fr; height: auto; }
  .service__img { height: 200px; }
  .service__body { padding: 24px 28px; }

  /* About */
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__visual { min-height: 280px; }

  /* Work */
  .work__grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__img-wrap { min-height: 280px; }
}

@media (max-width: 479px) {
  .work__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

