:root {
  --cream: #fdf6ee;
  --cream-2: #f7ead9;
  --terracotta: #c8632f;
  --terracotta-dark: #a44f24;
  --gold: #e3a13e;
  --brown: #4a2f22;
  --brown-soft: #7a5c48;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 12px 30px rgba(74, 47, 34, 0.12);
  --font-head: "Fraunces", serif;
  --font-body: "Nunito Sans", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--brown);
  background: var(--cream);
  line-height: 1.6;
}

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

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

.eyebrow {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--terracotta-dark);
  margin-bottom: 12px;
}

.eyebrow.center { display: block; text-align: center; }

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--brown);
  font-weight: 600;
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; margin-bottom: 8px; }

h2.center { text-align: center; margin-bottom: 48px; }

h1 span, h2 span { color: var(--terracotta); }

p { color: var(--brown-soft); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-size: 0.98rem;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--terracotta-dark); }

.btn-outline {
  background: transparent;
  color: var(--terracotta-dark);
  border: 2px solid var(--terracotta);
}
.btn-outline:hover { background: var(--terracotta); color: var(--white); }

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-outline-light:hover { background: var(--white); color: var(--terracotta-dark); }

.btn-whatsapp {
  background: var(--brown);
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.92rem;
}
.btn-whatsapp:hover { background: var(--terracotta-dark); }

/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Language switch */
.lang-switch {
  display: flex;
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.lang-btn {
  border: none;
  background: transparent;
  color: var(--brown-soft);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-btn.is-active {
  background: var(--terracotta);
  color: var(--white);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 246, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(74, 47, 34, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown);
  text-decoration: none;
}
.logo span { color: var(--terracotta); }

.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  color: var(--brown);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}
.nav a:hover { color: var(--terracotta); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--brown);
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 150px 0 110px;
  background-size: cover;
  background-position: center;
}

.hero-inner {
  max-width: 780px;
}

.eyebrow-light { color: var(--gold); }

.hero-title { color: var(--white); }
.hero-title span { color: var(--gold); }

.hero-text {
  margin: 22px 0 34px;
  font-size: 1.15rem;
  max-width: 620px;
}

.hero-text-light { color: rgba(255, 255, 255, 0.9); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 44px;
  margin-top: 64px;
  flex-wrap: wrap;
  border-radius: var(--radius);
  padding: 26px 34px;
  width: fit-content;
}
.hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stats strong {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--white);
}
.hero-stats span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

/* About */
.about {
  padding: 90px 0;
  background: var(--white);
}

.about-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-points {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.about-points li {
  font-weight: 700;
  color: var(--brown);
}

/* Services */
.services {
  padding: 90px 0;
  background: var(--cream-2);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s ease;
}
.service-card:hover { transform: translateY(-6px); }

.service-photo-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.service-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.service-card:hover .service-photo-frame img { transform: scale(1.06); }

.service-photo.has-video { cursor: pointer; }
.service-photo.has-video:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 2px; }

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(74, 47, 34, 0.55);
  backdrop-filter: blur(2px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: transform 0.2s ease, background 0.2s ease;
}
.service-photo.has-video:hover .play-btn { transform: scale(1.1); background: var(--terracotta); }

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal.is-open { display: flex; }

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 18, 12, 0.86);
}

.video-modal-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  max-height: 88vh;
}

#videoModalPlayer {
  display: block;
  width: 100%;
  max-height: 88vh;
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-modal-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.15s ease;
}
.video-modal-close:hover { background: rgba(255, 255, 255, 0.3); }

body.no-scroll { overflow: hidden; }

.service-icon {
  font-size: 1.6rem;
  width: 46px;
  height: 46px;
  margin: -23px auto 14px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.service-body {
  padding: 34px 22px 26px;
}

.service-card p { font-size: 0.95rem; }

/* Process */
.process { padding: 90px 0; background: var(--white); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 36px;
  margin-top: 10px;
}

.process-step { text-align: center; padding: 0 12px; }

.process-num {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  background: var(--terracotta);
  width: 46px;
  height: 46px;
  line-height: 46px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.process-step p { font-size: 0.95rem; }

/* Gallery */
.gallery { padding: 90px 0; background: var(--cream-2); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.gallery-grid img:hover { transform: translateY(-6px); }

@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* CTA */
.cta {
  padding: 80px 0;
  background: var(--terracotta);
  text-align: center;
}
.cta h2 { color: var(--white); margin-bottom: 12px; }
.cta p { color: rgba(255,255,255,0.9); margin-bottom: 30px; }
.cta .btn-primary { background: var(--white); color: var(--terracotta-dark); }
.cta .btn-primary:hover { background: var(--cream); }

/* Contact */
.contact {
  padding: 90px 0;
  background:
    radial-gradient(circle at 88% 20%, rgba(227, 161, 62, 0.22), transparent 45%),
    radial-gradient(circle at 8% 85%, rgba(200, 99, 47, 0.16), transparent 45%),
    var(--white);
}

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

.contact-text { margin-top: 10px; }

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

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: var(--radius);
  padding: 18px 22px;
  text-decoration: none;
  color: var(--brown);
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}
.contact-card:hover { transform: translateX(4px); }

.contact-icon { font-size: 1.6rem; }

.contact-card strong {
  display: block;
  font-size: 1rem;
}
.contact-card span span {
  display: block;
  color: var(--brown-soft);
  font-size: 0.92rem;
}

/* Footer */
.site-footer {
  background: var(--brown);
  color: var(--cream-2);
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--cream-2); text-decoration: none; }
.footer-links a:hover { color: var(--gold); }

/* Responsive */
@media (max-width: 860px) {
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(74, 47, 34, 0.08);
  }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
}
