* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --surface: #fdf9f4;
  --surface-low: #f6f0e7;
  --surface-high: #ffffff;
  --primary: #94442e;
  --primary-dark: #70301f;
  --accent: #be7a3d;
  --text: #1f1b17;
  --text-muted: #66594f;
  --border: #e7d9c9;
  --shadow-soft: 0 18px 48px rgba(51, 31, 20, 0.12);
  --font-body: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  --container: 1120px;
}

html {
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top left, rgba(190, 122, 61, 0.18), transparent 34rem),
    linear-gradient(135deg, #fffaf4 0%, var(--surface) 46%, #f5eadf 100%);
  color: var(--text);
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  line-height: 1.5;
  min-height: 100vh;
}

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

a {
  color: inherit;
}

.site-header {
  padding: clamp(18px, 3vw, 32px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(148, 68, 46, 0.14);
  flex: 0 0 56px;
}

.brand span {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 0.01em;
}

.brand small {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.coming-soon {
  align-items: center;
  display: grid;
  flex: 1;
  padding: 24px clamp(18px, 5vw, 56px) 56px;
}

.hero {
  margin: 0 auto;
  max-width: var(--container);
  text-align: center;
  width: 100%;
}

.eyebrow {
  color: var(--primary);
  font-size: clamp(0.82rem, 1.6vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.banner {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  color: #fff;
  display: inline-flex;
  font-size: clamp(1.05rem, 3vw, 1.6rem);
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 28px;
  padding: 16px clamp(28px, 7vw, 64px);
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.45rem, 8vw, 5.6rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0 auto;
  max-width: 980px;
}

.intro {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin: 22px auto 0;
  max-width: 680px;
}

.contact-panel {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 34px auto 0;
  max-width: 780px;
}

.contact-link {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(51, 31, 20, 0.08);
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 22px;
  place-content: center;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: rgba(148, 68, 46, 0.42);
  box-shadow: 0 18px 34px rgba(51, 31, 20, 0.12);
  outline: none;
  transform: translateY(-2px);
}

.contact-link span {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-link strong {
  color: var(--primary-dark);
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  overflow-wrap: anywhere;
}

.site-footer {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 18px;
  text-align: center;
}

@media (max-width: 720px) {
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-link {
    min-height: 104px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
