:root {
  --bg: #f1ebe0;
  --bg-soft: #e8e0d1;
  --paper: #faf6ee;
  --ink: #14110d;
  --ink-soft: #2a2520;
  --muted: #6b6258;
  --line: #14110d;
  --accent: #c0382b;
  --accent-soft: #e9b4ad;
  --olive: #4f5b3c;
  --shadow: 0 18px 40px rgba(20, 17, 13, 0.08);
  --radius-sm: 4px;
  --radius-md: 10px;
  --container: min(1200px, calc(100% - 32px));
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.55;
  background: var(--bg);
  background-image:
    radial-gradient(circle at 0% 0%, rgba(192, 56, 43, 0.06), transparent 35%),
    radial-gradient(circle at 100% 100%, rgba(79, 91, 60, 0.05), transparent 35%);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: var(--container); margin: 0 auto; }
section { padding: 96px 0; }

h1, h2, h3, p { margin-top: 0; }
em { font-style: italic; color: var(--accent); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(241, 235, 224, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 900;
  font-style: italic;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0;
}
.logo-text {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.logo-text em {
  color: var(--accent);
  font-weight: 700;
  margin-inline-start: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  color: var(--ink-soft);
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
}
.nav a:hover,
.nav a:focus-visible {
  color: var(--accent);
  background: rgba(20, 17, 13, 0.05);
}
.nav-cta {
  border: 1px solid var(--ink);
  margin-inline-start: 8px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--ink) !important; color: var(--paper) !important; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 12px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 56px;
  align-items: end;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 22px;
}

h1 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  font-weight: 700;
  margin-bottom: 18px;
}
h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-text,
.section-sub,
.service-card p,
.about-card p,
.review-card p,
.contact-copy p,
.price-card li,
.muted {
  color: var(--muted);
  font-size: 1rem;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 40px;
}

/* ---------- Buttons ---------- */
.btn {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover,
.btn:focus-visible { transform: translateY(-1px); }
.btn-primary {
  color: var(--paper);
  background: var(--ink);
}
.btn-primary:hover { background: var(--accent); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--paper); }
.btn-whatsapp {
  background: #128c7e;
  color: #fff;
  font-weight: 600;
}
.btn-whatsapp:hover { background: #0e6e63; }
.full { width: 100%; }

/* ---------- Highlights ---------- */
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.highlight-card {
  padding: 22px 18px;
  border-inline-end: 1px solid var(--line);
}
.highlight-card:last-child { border-inline-end: none; }
.highlight-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--ink);
}
.highlight-card span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- Hero panel (hours) ---------- */
.hero-panel {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 32px 28px 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-panel h2 {
  color: var(--paper);
  font-size: 2rem;
  margin-bottom: 22px;
}
.hero-panel h2 em {
  color: var(--accent-soft);
  font-style: italic;
  font-weight: 400;
}
.panel-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--paper);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  font-weight: 700;
}
.hours-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  border-top: 1px solid rgba(250, 246, 238, 0.15);
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(250, 246, 238, 0.15);
  font-size: 0.95rem;
}
.hours-list li span:last-child {
  color: var(--accent-soft);
  font-variant-numeric: tabular-nums;
}
.hero-panel .btn-primary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.hero-panel .btn-primary:hover { background: var(--accent); color: var(--paper); }
.panel-foot {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: rgba(250, 246, 238, 0.6);
  text-align: center;
}

.stripes {
  position: absolute;
  inset: -10px -30px auto auto;
  width: 220px;
  height: 110px;
  transform: rotate(-12deg);
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0 14px,
    var(--paper) 14px 28px,
    var(--ink-soft) 28px 42px
  );
  opacity: 0.18;
  pointer-events: none;
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.marquee-track {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 22px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span:nth-child(odd) { color: var(--accent-soft); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

/* ---------- Section heading ---------- */
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .section-sub { margin-inline: auto; }
.section-sub { margin-top: 12px; font-size: 1.05rem; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-inline-start: 1px solid var(--line);
}
.service-card {
  padding: 28px 24px 24px;
  border-bottom: 1px solid var(--line);
  border-inline-end: 1px solid var(--line);
  background: var(--paper);
  transition: background 0.2s ease;
  position: relative;
}
.service-card:hover { background: var(--bg-soft); }
.service-number {
  display: block;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 22px;
  font-weight: 700;
}
.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: 0.95rem; margin-bottom: 18px; }
.service-meta {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 20px;
  align-items: stretch;
}
.about-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
}
.about-card h2 { margin-bottom: 18px; }
.about-card p { margin-bottom: 14px; }
.large-card { padding: 40px 36px; }
.small-card .card-label,
.about-card .card-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 700;
}
.small-card a {
  margin-top: auto;
  align-self: flex-start;
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.accent-card {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.accent-card h3 { color: var(--paper); }
.accent-card .card-label { color: var(--accent-soft); }
.accent-card .muted { color: rgba(250, 246, 238, 0.7); }

.check-list {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  border-top: 1px dashed var(--line);
  padding-top: 18px;
}
.check-list div {
  display: flex;
  gap: 10px;
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.check-list span {
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Pricing ---------- */
.pricing { background: var(--bg-soft); border-block: 1px solid var(--line); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-label {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 12px;
}
.price {
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.price .currency {
  font-size: 1.6rem;
  font-weight: 700;
  vertical-align: super;
  margin-inline-end: 4px;
  color: var(--accent);
}
.price-card ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid var(--line);
}
.price-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(20, 17, 13, 0.1);
  font-size: 0.95rem;
}
.price-card li:last-child { border-bottom: none; }
.price-card .btn { margin-top: auto; }

.featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.featured .price-label { color: var(--accent-soft); }
.featured .price { color: var(--paper); }
.featured .price .currency { color: var(--accent-soft); }
.featured ul { border-color: rgba(250, 246, 238, 0.2); }
.featured li { border-color: rgba(250, 246, 238, 0.12); color: rgba(250, 246, 238, 0.85); }
.featured .btn-primary { background: var(--accent); color: var(--paper); }
.featured .btn-primary:hover { background: var(--paper); color: var(--ink); }

.badge {
  position: absolute;
  top: -14px;
  inset-inline-end: 24px;
  background: var(--accent);
  color: var(--paper);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.pricing-note {
  margin-top: 28px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.stars {
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.review-card p {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin-bottom: 22px;
  font-weight: 400;
}
.review-card footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
}
.review-card footer strong { color: var(--ink); }
.review-card footer span { color: var(--muted); }

/* ---------- Contact ---------- */
.contact { background: var(--ink); color: var(--paper); }
.contact .eyebrow { color: var(--accent-soft); }
.contact h2 { color: var(--paper); }
.contact h2 em { color: var(--accent-soft); }
.contact-copy p { color: rgba(250, 246, 238, 0.75); }

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

.contact-info {
  display: grid;
  gap: 14px;
  margin: 28px 0 28px;
  border-top: 1px solid rgba(250, 246, 238, 0.15);
  border-bottom: 1px solid rgba(250, 246, 238, 0.15);
  padding: 18px 0;
}
.contact-info > div {
  display: flex;
  justify-content: space-between;
  font-size: 0.96rem;
}
.contact-info strong {
  color: var(--accent-soft);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  align-self: center;
}
.contact-info span { color: var(--paper); font-variant-numeric: tabular-nums; }

.contact-form {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.form-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.form-head h3 { margin: 0; }
.form-step {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 700;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin-bottom: 16px;
  min-height: 50px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  transition: border 0.15s ease, box-shadow 0.15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(192, 56, 43, 0.15);
}
.contact-form textarea {
  min-height: 110px;
  padding: 12px 14px;
  resize: vertical;
}
.form-message {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 28px 0 32px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
  color: var(--muted);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--ink);
}
.footer-meta { margin: 0; }
.back-top {
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  color: var(--ink);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .large-card { grid-column: 1 / -1; }
}

@media (max-width: 880px) {
  section { padding: 72px 0; }
  .hero { padding-top: 48px; }
  .hero-grid,
  .contact-grid,
  .pricing-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav-cta { margin-inline-start: 0; margin-top: 6px; }
  .marquee-track { font-size: 1.2rem; }
}

@media (max-width: 560px) {
  .hero-highlights { grid-template-columns: 1fr; }
  .highlight-card { border-inline-end: none; border-bottom: 1px solid var(--line); }
  .highlight-card:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.6rem; }
  .price { font-size: 2.6rem; }
  .review-card p { font-size: 1rem; }
  .footer-inner { flex-direction: column; text-align: center; }
}
