:root {
  color-scheme: dark;
  --bg: #f2eee8;
  --card-bg: rgba(255, 255, 255, 0.95);
  --card-border: rgba(125, 15, 25, 0.14);
  --text: #302a26;
  --muted: #6e5f5a;
  --accent: #7d0f19;
  --accent-soft: #f2dad5;
  --shadow: 0 36px 90px rgba(43, 31, 28, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Manrope', sans-serif;
  background: radial-gradient(circle at top left, rgba(125, 15, 25, 0.08), transparent 34%),
              radial-gradient(circle at bottom right, rgba(125, 15, 25, 0.05), transparent 26%),
              var(--bg);
  color: var(--text);
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(125, 15, 25, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(125, 15, 25, 0.02) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.35;
  pointer-events: none;
}

.brand {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 28px;
  background: #000;
  z-index: 2;
  display: flex;
  align-items: center;
}

.brand-mark {
    width: 170px;
    height: 60px;
    object-fit: contain;
}

.corner-lines {
  position: absolute;
  left: 55px;
  bottom: 55px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
}

.corner-lines span {
  display: block;
  height: 3px;
  background: #7d0f19;
  border-radius: 2px;
}

.corner-lines span:first-child {
  width: 72px;
  opacity: 1;
}

.corner-lines span:last-child {
  width: 44px;
  opacity: 0.65;
}

.hero {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero-card {
  position: relative;
  background: transparent;
  border-radius: 0;
  padding: 72px 64px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.left-card {
  background: #ffffff;
}

.right-card {
  background-color: transparent;
  background-image: url('pexels-francogarciafilms-26855506.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.right-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(212 212 212 / 80%);
  z-index: 1;
}

.card-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
}

h1 {
  margin: 0;
  font-family: 'Caladea', serif;
  font-weight: 700;
  font-size: clamp(3rem, 4vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: #600011;
}

.accent {
  display: block;
  color: var(--accent);
  font-style: italic;
}

.hero-text {
  max-width: 520px;
  margin: 32px 0 40px;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(125, 15, 25, 0.22);
}

.contact-box {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  padding: 14px 18px;
  border-radius: 24px;
  max-width: fit-content;
}

.phone-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.phone-number {
  font-weight: 700;
  color: var(--accent);
}

@media (max-width: 992px) {
  .brand {
    position: static;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 40px 28px;
  }

  .corner-lines {
    left: auto;
    right: 28px;
  }
}

@media (max-width: 640px) {
  body {
    background: var(--bg);
  }

  body::before {
    display: none;
  }

  .brand {
    padding: 14px 20px;
  }

  .brand-mark {
    width: 64px;
    height: 64px;
  }

  .hero {
    padding: 0;
  }

  .hero-card {
    padding: 28px 20px;
  }

  .hero-text {
    margin: 24px 0 32px;
    font-size: 0.98rem;
  }
}

