:root {
  --bg: #f6f2eb;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --surface-soft: rgba(255, 248, 239, 0.86);
  --text: #1f2933;
  --muted: #61707b;
  --brand: #ef7d00;
  --brand-deep: #c95f00;
  --brand-soft: #fff0dc;
  --accent: #13354a;
  --accent-soft: #e6f0f5;
  --line: rgba(31, 41, 51, 0.09);
  --shadow: 0 24px 60px rgba(84, 62, 37, 0.12);
  --shadow-soft: 0 16px 40px rgba(48, 39, 29, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(239, 125, 0, 0.18), transparent 28%),
    radial-gradient(circle at right 10% top 18%, rgba(28, 84, 122, 0.12), transparent 22%),
    radial-gradient(circle at center bottom, rgba(255, 255, 255, 0.7), transparent 30%),
    linear-gradient(180deg, #fbf7f1 0%, var(--bg) 100%);
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(246, 242, 235, 0.8);
  border-bottom: 1px solid rgba(31, 41, 51, 0.06);
  box-shadow: 0 8px 28px rgba(31, 41, 51, 0.04);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-badge {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand), #ffb14d);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 12px 26px rgba(239, 125, 0, 0.24);
}

.brand-copy strong {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-links a {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 500;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: linear-gradient(135deg, rgba(239, 125, 0, 0.16), rgba(255, 210, 138, 0.26));
  color: var(--brand-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(239, 125, 0, 0.12);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #ff9f2e);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(239, 125, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(239, 125, 0, 0.28);
}

.utility-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.utility-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.pill-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(31, 41, 51, 0.08);
  border-color: rgba(239, 125, 0, 0.18);
  background: #fff;
}

.pill-link.whatsapp {
  background: #1fa855;
  border-color: #1fa855;
  color: #fff;
}

.pill-link.whatsapp:hover {
  box-shadow: 0 16px 30px rgba(31, 168, 85, 0.24);
}

.page {
  padding: 28px 0 44px;
}

.panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 251, 246, 0.76));
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero {
  overflow: hidden;
  position: relative;
  padding: 34px;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -70px;
  bottom: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 125, 0, 0.2), transparent 70%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.5), transparent 42%),
    linear-gradient(180deg, transparent 0%, rgba(255, 247, 236, 0.42) 100%);
  z-index: -1;
}

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

.eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(239, 125, 0, 0.14), rgba(255, 208, 133, 0.3));
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero h1,
.hero h2 {
  margin: 16px 0 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 1.04;
}

.hero p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.85;
  max-width: 62ch;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background: var(--text);
  color: #fff;
  box-shadow: 0 16px 26px rgba(31, 41, 51, 0.18);
}

.btn-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-secondary:hover {
  border-color: rgba(239, 125, 0, 0.2);
  box-shadow: 0 14px 24px rgba(31, 41, 51, 0.06);
}

.hero-card {
  padding: 26px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(239, 125, 0, 0.16), transparent 30%),
    linear-gradient(180deg, #fff7ec 0%, #ffffff 100%);
  border: 1px solid rgba(239, 125, 0, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), var(--shadow-soft);
}

.hero-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--brand-deep);
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.section {
  margin-top: 24px;
  padding: 28px;
  position: relative;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}

.section-head h2,
.section-head h3 {
  margin: 0;
  font-size: 1.5rem;
}

.section-head h2::after,
.section-head h3::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), rgba(239, 125, 0, 0.1));
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.cards-3,
.cards-2,
.cards-4 {
  display: grid;
  gap: 18px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(48, 39, 29, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(48, 39, 29, 0.11);
  border-color: rgba(239, 125, 0, 0.18);
}

.card-body {
  padding: 22px;
}

.card h3,
.card h4 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.card p,
.text-block p,
.seo-copy,
.list-copy li {
  color: var(--muted);
  line-height: 1.8;
}

.gradient-top {
  min-height: 170px;
  padding: 22px;
  display: flex;
  align-items: end;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  position: relative;
  overflow: hidden;
}

.gradient-top::after {
  content: "";
  position: absolute;
  inset: auto -20px -28px auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.g1 {
  background: linear-gradient(140deg, #ff8a00, #ffc65b);
}

.g2 {
  background: linear-gradient(140deg, #1e3f59, #58a6d8);
}

.g3 {
  background: linear-gradient(140deg, #1f6e49, #92d5a2);
}

.g4 {
  background: linear-gradient(140deg, #6c4a1d, #dd9f5e);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 244, 0.8));
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(48, 39, 29, 0.1);
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.7rem;
  color: var(--accent);
}

.service-list,
.faq-list,
.contact-list,
.catalog-grid {
  display: grid;
  gap: 16px;
}

.service-item,
.faq-item,
.contact-item {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 249, 241, 0.78));
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-item:hover,
.faq-item:hover,
.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(48, 39, 29, 0.1);
  border-color: rgba(239, 125, 0, 0.18);
}

.service-item h3,
.faq-item h3,
.contact-item h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.service-item p,
.faq-item p,
.contact-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.catalog-toolbar {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 244, 230, 0.84));
  border: 1px solid rgba(239, 125, 0, 0.1);
}

.catalog-search {
  width: 100%;
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 244, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.catalog-search:focus,
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(239, 125, 0, 0.36);
  box-shadow: 0 0 0 5px rgba(239, 125, 0, 0.1);
}

.catalog-hint {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-item {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 249, 241, 0.8));
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.catalog-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), rgba(88, 166, 216, 0.8));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.catalog-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(48, 39, 29, 0.12);
  border-color: rgba(239, 125, 0, 0.24);
}

.catalog-item:hover::before {
  opacity: 1;
}

.catalog-item h3 {
  margin: 0 0 10px;
  font-size: 1.04rem;
}

.catalog-item p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
}

.catalog-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(239, 125, 0, 0.14), rgba(255, 210, 138, 0.26));
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.catalog-empty {
  display: none;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(31, 41, 51, 0.15);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
}

.checklist {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.85;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: 0 10px 30px rgba(48, 39, 29, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(48, 39, 29, 0.12);
  border-color: rgba(239, 125, 0, 0.18);
}

.gallery-art {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-art {
  transform: scale(1.04);
}

.hero-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(239, 125, 0, 0.14);
  box-shadow: 0 18px 40px rgba(48, 39, 29, 0.08);
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(31, 41, 51, 0.08));
}

.gallery-caption {
  padding: 18px;
}

.gallery-caption h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.gallery-caption p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.95);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.site-footer {
  padding: 28px 0 40px;
  color: var(--muted);
}

.footer-panel {
  padding: 24px 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 246, 233, 0.78));
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(239, 125, 0, 0.14), rgba(255, 214, 150, 0.28));
  color: var(--brand-deep);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(239, 125, 0, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.quick-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(239, 125, 0, 0.14);
  background: linear-gradient(135deg, rgba(239, 125, 0, 0.18), rgba(255, 222, 172, 0.34));
}

@media (max-width: 980px) {
  .hero-grid,
  .cards-2,
  .cards-3,
  .cards-4,
  .catalog-grid,
  .gallery-grid,
  .split,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .utility-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 18px, 1180px);
  }

  .page {
    padding-top: 16px;
  }

  .hero,
  .section,
  .footer-panel {
    padding: 20px;
  }

  .catalog-toolbar {
    padding: 14px;
  }
}
