* {
  box-sizing: border-box;
}

:root {
  --red: #7d1f1f;
  --red-dark: #5e1414;
  --yellow: #ffd35b;
  --cream: #fff8e9;
  --text: #2d1a12;
  --muted: #6f4637;
  --card: rgba(255, 248, 230, 0.90);
  --card-border: rgba(255, 255, 255, 0.55);
  --shadow: 0 24px 70px rgba(80, 31, 6, 0.24);
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 184, 0, 0.10), rgba(255, 123, 0, 0.18)),
    url("../images/background.jpg") center center / cover no-repeat fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(255, 174, 0, 0.12), rgba(255, 132, 0, 0.18));
}

.page-wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 24px 56px;
}

.hero-card {
  width: min(760px, 100%);
  text-align: center;
  padding: 36px;
  border-radius: 34px;
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-logo {
  display: block;
  width: min(430px, 88%);
  max-width: 100%;
  height: auto;
  margin: 0 auto 20px;
  filter: drop-shadow(0 14px 18px rgba(83, 25, 18, 0.20));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0 12px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(125, 31, 31, 0.10);
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--red-dark);
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.intro {
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 2.4vw, 19px);
  line-height: 1.55;
}

.contact-info {
  display: grid;
  gap: 12px;
  margin: 28px auto 0;
  font-style: normal;
  color: var(--text);
}

.address-line {
  line-height: 1.55;
  font-size: clamp(15px, 2.2vw, 18px);
}

.phone-link {
  color: var(--red);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  text-decoration: none;
}

.phone-link:hover {
  text-decoration: underline;
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), #b53a2e);
  box-shadow: 0 12px 24px rgba(125, 31, 31, 0.25);
}

.btn-secondary {
  color: var(--red-dark);
  background: #fff;
  border: 1px solid rgba(125, 31, 31, 0.16);
  box-shadow: 0 10px 22px rgba(96, 38, 8, 0.10);
}

.btn-instagram {
  color: #fff;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  box-shadow: 0 12px 24px rgba(131, 58, 180, 0.22);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  min-width: 20px;
  height: 20px;
  overflow: hidden;
  font-size: 17px;
  line-height: 1;
}

.ig-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px !important;
  min-width: 22px !important;
  max-width: 22px !important;
  height: 22px !important;
  min-height: 22px !important;
  max-height: 22px !important;
  overflow: hidden;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.92);
  color: #c13584;
  font-size: 9px !important;
  line-height: 1 !important;
  font-weight: 900;
  letter-spacing: -0.02em;
  flex: 0 0 22px;
}

.map-card {
  overflow: hidden;
  margin-top: 30px;
  border-radius: 24px;
  border: 1px solid rgba(125, 31, 31, 0.14);
  background: #fff;
  box-shadow: 0 16px 34px rgba(96, 38, 8, 0.14);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 290px;
  border: 0;
}

@media (max-width: 720px) {
  body {
    background-attachment: scroll;
  }

  .page-wrap {
    padding: 60px 14px 28px;
  }

  .hero-card {
    padding: 24px 16px 20px;
    border-radius: 26px;
  }

  .site-logo {
    width: min(310px, 88%);
    margin-bottom: 14px;
  }

  .eyebrow {
    font-size: 12px;
    padding: 7px 15px;
  }

  .action-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    padding: 13px 16px;
    font-size: 15px;
  }

  .map-card {
    margin-top: 24px;
    border-radius: 20px;
  }

  .map-card iframe {
    height: 220px;
  }
}

@media (max-width: 420px) {
  .page-wrap {
    padding: 40px 10px 20px;
  }

  .hero-card {
    padding: 20px 12px 16px;
    border-radius: 22px;
  }

  .site-logo {
    width: min(270px, 86%);
  }

  h1 {
    font-size: 27px;
  }

  .intro {
    font-size: 15px;
  }

  .address-line {
    font-size: 14px;
  }

  .phone-link {
    font-size: 20px;
  }

  .map-card iframe {
    height: 200px;
  }
}
