@font-face {
  font-family: "CAB Display";
  src: url("fonts/635-font.otf") format("opentype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CAB Sans";
  src: url("fonts/DIN Alternate Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f6f1ea;
  --ink: #1f1a14;
  --muted: #6b5f52;
  --accent: #c8a67e;
  --accent-dark: #8c6b45;
  --card: #ffffff;
  --soft: #efe6db;
  --shadow: 0 20px 60px rgba(26, 20, 12, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "CAB Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(246, 241, 234, 0.85), rgba(240, 229, 216, 0.9)),
    url("images/foto92.JPG") left center/75% fixed no-repeat;
}

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

.hero {
  padding: 24px 8vw 80px;
  background: transparent;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 70px;
}

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

.logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.brand-title {
  font-family: "CAB Display", serif;
  font-size: 20px;
  letter-spacing: 0.8px;
}

.brand-sub {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--muted);
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: #23170d;
}

.btn-ghost {
  border-color: var(--accent);
  color: #3c2a18;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-light {
  border-color: var(--ink);
  color: var(--ink);
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--accent-dark);
  margin: 0 0 12px;
}

h1 {
  font-family: "CAB Display", serif;
  font-size: clamp(32px, 4vw, 54px);
  margin: 0 0 16px;
}

h2,
h3 {
  font-family: "CAB Display", serif;
  letter-spacing: 0.4px;
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 520px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0;
}

.hero-meta {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.meta-title {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  align-content: start;
}

.info-panel .card-title {
  font-weight: 600;
  font-size: 16px;
}

.info-panel .card-sub {
  color: var(--muted);
  line-height: 1.5;
}

.instagram-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(35, 23, 13, 0.15);
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
}

.instagram-button img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 6px;
}

.instagram-button.icon-only {
  width: 48px;
  height: 48px;
  padding: 0;
  justify-content: center;
}

.instagram-button.icon-only img {
  width: 26px;
  height: 26px;
}

.map-embed {
  background: rgba(241, 232, 222, 0.7);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 12px;
}

.map-embed-title {
  font-weight: 600;
}

.map-embed iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 12px;
}

.card-title {
  font-weight: 600;
  font-size: 18px;
}

.card-sub {
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5;
}

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

.card-note {
  font-size: 12px;
  color: var(--muted);
}

.section {
  padding: 80px 8vw;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  background: #f9f4ee;
  padding: 24px 8vw;
}

.stat-number {
  font-family: "CAB Display", serif;
  font-size: 16px;
}

.stat-label {
  color: var(--muted);
  margin-top: 4px;
  font-size: 14px;
}

.stat-label-subtle {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 4px;
}

.stat-label-same {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 2px;
}

.meta-instagram {
  display: flex;
  align-items: flex-start;
}

.stat-logo {
  width: 84px;
  height: 32px;
  object-fit: contain;
}

.stat {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-text {
  display: grid;
  gap: 4px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-lead {
  color: var(--muted);
  line-height: 1.6;
}

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

.services .service-card,
.team-card,
.contact-card {
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(30, 22, 14, 0.08);
}

.service-card h3 {
  margin-top: 0;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
  background: #fff9f3;
}

.about-panel {
  background: var(--card);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--soft);
  font-size: 12px;
  margin-bottom: 16px;
}

.about-list {
  display: grid;
  gap: 16px;
}

.about-title {
  font-weight: 600;
}

.about-text {
  color: var(--muted);
  font-size: 14px;
}

.team {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(140deg, #c4a989, #f0e3d5);
  margin-bottom: 14px;
}

.team-name {
  font-weight: 600;
}

.team-role {
  color: var(--muted);
  margin-top: 6px;
}

.cta-block {
  background: var(--ink);
  color: #fff;
  padding: 48px;
  border-radius: var(--radius-lg);
  display: grid;
  gap: 24px;
  align-items: center;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.contact-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.map {
  display: none;
}

.footer {
  padding: 16px 8vw 24px;
  background: #f0e5d8;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero {
    padding: 20px 6vw 60px;
  }
}

@media (max-width: 600px) {
  .card-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-block {
    padding: 32px;
  }
}
