:root {
  --cream: #FBF7F1;
  --cream-alt: #F3ECE1;
  --charcoal: #2B2622;
  --terracotta: #B5603F;
  --terracotta-dark: #93492E;
  --sage: #6E7A5E;
  --gold: #C9A15E;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --radius: 14px;
  --shadow: 0 20px 45px rgba(43, 38, 34, 0.12);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; margin: 0 0 .5em; color: var(--charcoal); }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); line-height: 1.15; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--terracotta);
  margin: 0 0 .8em;
}
.eyebrow.center { text-align: center; }
h2.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 500;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 10px 24px rgba(37,211,102,.3); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); }
.btn-outline { border-color: var(--charcoal); color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--cream); }
.btn-primary { background: var(--terracotta); color: #fff; border: none; }
.btn-primary:hover { background: var(--terracotta-dark); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43,38,34,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 20px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  white-space: nowrap;
}
.logo span { color: var(--terracotta); font-style: italic; font-weight: 500; }
.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--terracotta);
  transition: width .25s ease;
}
.nav a:hover::after { width: 100%; }
.header-cta { margin-left: 20px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; }

/* Hero */
.hero { padding: 70px 0 90px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero-sub { font-size: 1.1rem; color: #55504A; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 30px; }
.hero-art img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* About */
.about { padding: 90px 0; background: var(--cream-alt); }
.about-grid {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 60px;
  align-items: center;
}
.about-photo img {
  border-radius: 50%;
  width: 220px;
  height: 220px;
  object-fit: cover;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow);
  margin: 0 auto;
}
.about-text p { color: #4B4640; max-width: 620px; }
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--terracotta);
  text-decoration: none;
  font-weight: 500;
  margin-top: 8px;
}
.ig-link:hover { text-decoration: underline; }

/* Services */
.services { padding: 90px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  padding-bottom: 26px;
}
.service-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.service-card h3 { margin-top: 20px; }
.service-card p { color: #55504A; padding: 0 22px; font-size: .95rem; margin-bottom: 0; }

/* Gallery */
.gallery { padding: 90px 0; background: var(--cream-alt); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 18px;
  margin-top: 50px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; display: block; box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

/* CTA strip */
.cta-strip {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
  color: #fff;
  padding: 70px 0;
  text-align: center;
}
.cta-strip h2 { color: #fff; }
.cta-strip p { color: rgba(255,255,255,.85); max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-strip .btn-whatsapp { background: #fff; color: var(--whatsapp-dark); box-shadow: none; }
.cta-strip .btn-whatsapp:hover { background: var(--cream); }

/* Contact */
.contact { padding: 90px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
}
.contact-info p { color: #55504A; max-width: 420px; }
.contact-list { list-style: none; padding: 0; margin: 30px 0 0; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; align-items: center; gap: 12px; font-size: 1rem; }
.contact-list svg { color: var(--terracotta); flex-shrink: 0; }
.contact-list a { color: var(--charcoal); text-decoration: none; }
.contact-list a:hover { color: var(--terracotta); }

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}
.contact-form .hp { position: absolute; left: -9999px; opacity: 0; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: .9rem; font-weight: 500; margin-bottom: 6px; color: #4B4640; }
.form-row input, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #E0D8CC;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--cream);
  color: var(--charcoal);
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}
.contact-form button { width: 100%; justify-content: center; margin-top: 6px; }
.form-status { text-align: center; font-size: .9rem; margin-top: 14px; min-height: 1.2em; }
.form-status.ok { color: var(--sage); }
.form-status.err { color: #B33; }

/* Footer */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.75); padding: 30px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-inner p { margin: 0; font-size: .85rem; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,.75); text-decoration: none; font-size: .85rem; }
.footer-links a:hover { color: #fff; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37,211,102,.4);
  z-index: 90;
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20,17,15,.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 30px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 20px; right: 30px;
  background: none; border: none; color: #fff;
  font-size: 2.4rem; line-height: 1; cursor: pointer;
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { order: -1; max-width: 420px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-text p { margin-left: auto; margin-right: auto; }
  .ig-link { justify-content: center; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 220px; }
}

@media (max-width: 820px) {
  .nav { position: fixed; top: 68px; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 20px 24px; gap: 18px; border-bottom: 1px solid rgba(43,38,34,.08); transform: translateY(-140%); transition: transform .3s ease; }
  .nav.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-row: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
}

@media (max-width: 480px) {
  .header-inner { padding: 14px 16px; }
  .hero { padding: 40px 0 60px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .contact-form { padding: 26px 20px; }
}
