/* ============================================
   YOUR MAJESTY LOVES YOU — Standalone Styles
   ============================================ */

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

:root {
  --color-bg-dark: #0a0000;
  --color-bg-red: #4a0000;
  --color-red: #8b0000;
  --color-red-glow: #cc0000;
  --color-cream: #f5e6d3;
  --color-cream-muted: #c4a882;
  --color-white: #fff;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg-dark);
  color: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- Layout ---- */

.container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
  text-align: center;
}

/* ---- Section Backgrounds ---- */

.section-intro {
  background: linear-gradient(rgba(10, 0, 0, 0.8), rgba(10, 0, 0, 0.85)), url('images/sanguine-16.png') center/cover no-repeat;
}

.section-owned {
  background: linear-gradient(rgba(10, 0, 0, 0.75), rgba(74, 0, 0, 0.8), rgba(10, 0, 0, 0.75)), url('images/sanguine-6.png') center/cover no-repeat;
}

.cards-wrap {
  margin-top: 3.5rem;
}

.section-offerings {
  background: linear-gradient(rgba(10, 0, 0, 0.8), rgba(10, 0, 0, 0.85)), url('images/sanguine-13.png') center/cover no-repeat;
}

.section-cta {
  background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-red) 100%);
  padding-bottom: 8rem;
}

/* ---- Hero ---- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(139, 0, 0, 0.4) 0%, rgba(10, 0, 0, 0.7) 70%);
  pointer-events: none;
}

.hero-portrait {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 2rem;
  border: 3px solid rgba(139, 0, 0, 0.6);
  box-shadow: 0 0 40px rgba(139, 0, 0, 0.3);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-sub {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--color-cream-muted);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

/* ---- Typography ---- */

h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.tagline {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-cream-muted);
  margin-bottom: 2rem;
}

.body-text {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-cream);
  max-width: 640px;
  margin: 0 auto 1.25rem;
  line-height: 1.8;
}

.body-text.accent {
  color: var(--color-cream-muted);
  font-style: italic;
}

.body-text.fine-print {
  color: var(--color-cream-muted);
  font-size: 0.95rem;
}

.cta-label {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-cream-muted);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.referral {
  color: var(--color-cream-muted);
  font-size: 0.95rem;
  margin-top: 2rem;
}

.price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-white);
  margin-top: 1.5rem;
  font-weight: 600;
}

.closing {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-cream-muted);
  margin: 2rem 0;
  line-height: 1.6;
}

.closing span {
  font-size: 1.5rem;
  font-style: normal;
  color: var(--color-white);
  display: block;
  margin-top: 0.25rem;
}

/* ---- 3-Column Cards ---- */

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.card {
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.2) 0%, rgba(74, 0, 0, 0.3) 100%);
  border: 1px solid rgba(139, 0, 0, 0.35);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: left;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.card:hover {
  border-color: rgba(204, 0, 0, 0.5);
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.3) 0%, rgba(74, 0, 0, 0.4) 100%);
  transform: translateY(-2px);
}

.card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.card p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-cream-muted);
  line-height: 1.8;
}

/* ---- Offerings ---- */

.offerings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 600px;
  margin: 2rem auto 0;
}

.offering {
  background: rgba(139, 0, 0, 0.12);
  border: 1px solid rgba(139, 0, 0, 0.25);
  border-radius: 12px;
  padding: 2rem 1.5rem;
}

.offering h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

/* ---- Button ---- */

/* ---- Contact Form ---- */

.contact-form {
  max-width: 480px;
  margin: 2.5rem auto;
  text-align: left;
}

.form-group {
  margin-bottom: 1.25rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(139, 0, 0, 0.35);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-form select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c4a882' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
}

.contact-form select option {
  background: #1a0505;
  color: var(--color-cream);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-cream-muted);
  opacity: 0.7;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(204, 0, 0, 0.6);
  background-color: rgba(255, 255, 255, 0.09);
}

.form-checkbox {
  text-align: left;
}

.form-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-cream-muted);
  line-height: 1.6;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  flex-shrink: 0;
  margin-top: 0.3rem;
  accent-color: var(--color-red-glow);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn {
  width: 100%;
  text-align: center;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  padding: 1.1rem 2.5rem;
}

.thank-you {
  text-align: center;
  padding: 2rem 0;
}

.thank-you h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.thank-you p {
  color: var(--color-cream-muted);
  font-size: 1.05rem;
  font-weight: 300;
}

/* ---- Button ---- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-glow) 100%);
  padding: 1rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ---- Responsive ---- */

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .card {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .offerings {
    grid-template-columns: 1fr;
  }
}
