:root {
  --bg: #f5efe5;
  --paper: rgba(255, 255, 255, 0.84);
  --paper-strong: rgba(255, 255, 255, 0.92);
  --border: rgba(94, 86, 81, 0.12);
  --text: #49423e;
  --muted: #6d6561;
  --shadow: 0 22px 60px rgba(61, 50, 43, 0.10);
  --coral: #f296a7;
  --aqua: #9bebed;
  --button-text: #403936;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 48%),
    linear-gradient(180deg, #f8f3ea 0%, var(--bg) 100%);
  position: relative;
  overflow-x: hidden;
}

.background-glow {
  position: fixed;
  z-index: 0;
  width: 32rem;
  height: 32rem;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.24;
  pointer-events: none;
}

.glow-left {
  left: -10rem;
  top: 4rem;
  background: var(--coral);
}

.glow-right {
  right: -10rem;
  top: 6rem;
  background: var(--aqua);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 32px;
}

.hero-card {
  background: linear-gradient(180deg, var(--paper-strong), var(--paper));
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(250px, 360px) 1fr;
  gap: 28px;
  align-items: center;
}

.logo-wrap {
  display: grid;
  place-items: center;
  padding: 20px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(242, 150, 167, 0.05), rgba(155, 235, 237, 0.05)),
    rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(94, 86, 81, 0.08);
}

.logo {
  display: block;
  width: min(100%, 300px);
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.08));
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  font-weight: 500;
}

.lead {
  margin: 20px 0 0;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 60ch;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(94, 86, 81, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--button-text);
  font-size: 0.96rem;
  line-height: 1;
}

.contact-panel {
  margin-top: 26px;
  padding: 18px 20px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(242, 150, 167, 0.07), rgba(155, 235, 237, 0.07)),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(94, 86, 81, 0.12);
}

.contact-label {
  margin: 0 0 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.email-link {
  color: var(--text);
  font-size: 1.4rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(73, 66, 62, 0.25);
}

.email-link:hover,
.email-link:focus-visible {
  border-bottom-color: rgba(73, 66, 62, 0.7);
}

.contact-note {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.info-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  box-shadow: 0 14px 38px rgba(61, 50, 43, 0.06);
}

.info-card h2 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 500;
}

.info-card p {
  margin: 0;
  line-height: 1.75;
  color: var(--muted);
}

.site-footer {
  margin-top: 18px;
  padding: 18px 20px 4px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 20px, 1080px);
    padding-top: 20px;
  }

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

  .hero-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .logo {
    width: min(100%, 260px);
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 7vw, 2.8rem);
  }

  .lead {
    font-size: 1.02rem;
  }

  .email-link {
    font-size: 1.18rem;
  }
}
