:root {
  --primary: rgb(234, 107, 32);
  --secondary: #333333;
  --bg-color: #fbf7f3;
  --card-bg: #ffffff;
  --max-width: 1100px;
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Global reset / base */
html,
body {
  height: 100%;
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-color);
  color: var(--secondary);
}

/* Optional background image class (body.coming-soon-bg) */
body.coming-soon-bg {
  background-image: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.6)),
                    url('../images/coming-soon-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Page wrapper */
.wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

/* Card container */
.card {
  max-width: var(--max-width);
  width: 100%;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  padding: 48px;
  text-align: left;
  display: flex;
  gap: 28px;
  align-items: center;
}

/* Brand block */
.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Logo container - agrandi */
.logo-wrap {
  width: 300px;
  height: 140px;
  flex: 0 0 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  font-weight: 700;
  font-size: 34px;
}

/* If a custom logo image is used */
.site-logo img {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
  border-radius: 8px;
}

/* Site title and subtitle next to logo */
.brand > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand .site-title {
  font-weight: 700;
  color: var(--secondary);
  font-size: 20px;
}

.brand .site-sub {
  color: #666;
  font-size: 14px;
}

/* Heading */
h1 {
  margin: 18px 0 12px 0;
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 36px;
}

/* Lead paragraph */
p.lead {
  margin: 0 0 14px 0;
  color: var(--secondary);
  font-size: 18px;
  line-height: 1.45;
}

/* Meta text */
.meta {
  color: #666;
  font-size: 14px;
}

/* CTA */
.cta {
  margin-top: 18px;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .logo-wrap {
    width: 120px;
    height: 120px;
    flex: 0 0 120px;
    font-size: 30px;
  }
  h1 {
    font-size: 32px;
  }
}

@media (max-width: 820px) {
  .card {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }

  .logo-wrap {
    width: 96px;
    height: 96px;
    flex: 0 0 96px;
    font-size: 24px;
  }

  h1 {
    font-size: 26px;
  }

  p.lead {
    font-size: 16px;
  }
}
