@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #F3E7C8;
  --card: #FFFDF7;
  --text: #24201E;
  --muted: #6B5040;
  --brand: #5B0710;
  --brand2: #B08A45;
  --border: #B08A45;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(91, 7, 16, .12);
  --max: 1300px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Outfit', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

footer {
  border-top: 1px solid var(--border);
  padding: 24px 0 30px;
  color: var(--muted);
  font-size: 13px;
}

/* Consolidated Global Components */

/* ── Section Label ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand2);
  margin-bottom: 10px;
}

.section-label::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--brand2);
  border-radius: 2px;
}

/* ── Page Hero Eyebrow ── */
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--brand2);
  border-radius: 2px;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand2);
}

/* ── Unified Global Container ── */
.container {
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ── Unified Form Inputs ── */
label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin: 12px 0 6px;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #FFFDF7;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(91, 7, 16, 0.08);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* ── Unified premium CTA Card ── */
.cta-section {
  padding: 0 0 88px;
}

.cta-card {
  background: linear-gradient(135deg, var(--brand) 0%, #7a0a15 60%, #8a0b18 100%);
  border-radius: 24px;
  padding: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 20px 50px rgba(91, 7, 16, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.06);
}

.cta-card::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 28%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.04);
}

@media (max-width: 680px) {
  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 38px 24px;
  }
}

.cta-card h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(22px, 3vw, 28px);
  color: #FFFDF7;
  margin: 0 0 10px;
  font-weight: 700;
}

.cta-card p {
  font-size: 15.5px;
  color: rgba(255, 253, 247, 0.78);
  margin: 0;
  line-height: 1.65;
  max-width: 520px;
}

.cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 680px) {
  .cta-btns {
    justify-content: center;
  }
}

/* ── Unified Action Buttons ── */
.btn-light,
.btn-cta-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FFFDF7;
  color: var(--brand);
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 15px;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-light:hover,
.btn-cta-light:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn-light svg,
.btn-cta-light svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.btn-ghost,
.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 253, 247, 0.12);
  border: 1.5px solid rgba(255, 253, 247, 0.4);
  color: #FFFDF7;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 15px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}

.btn-ghost:hover,
.btn-cta-ghost:hover {
  background: rgba(255, 253, 247, 0.22);
  transform: translateY(-1px);
}

.btn-ghost svg,
.btn-cta-ghost svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ── Shared Interior Page Hero ── */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FFFDF7 0%, rgba(176, 138, 69, 0.08) 60%, rgba(91, 7, 16, 0.05) 100%);
  border-bottom: 1px solid rgba(176, 138, 69, 0.22);
}

/* ── Section Heading ── */
.section-heading {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--brand);
  margin: 0 0 10px;
  font-weight: 700;
  line-height: 1.25;
}

/* ── Section Sub ── */
.section-sub {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 36px;
  line-height: 1.7;
  max-width: 600px;
}

/* ── Card ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

/* ── Form Row ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ── Note ── */
.note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 12px;
}

/* ── Base Button ── */
.btn {
  background: var(--brand);
  color: #FFFDF7;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.btn:hover {
  background: #7a0a15;
}

/* ── Absolute Suppression of Google Translate Bar & Banners ── */
iframe[id*="container"],
iframe[class*="VIpgJd-ZVi9od"],
div[class*="VIpgJd-ZVi9od"],
iframe.goog-te-banner-frame,
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover,
.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
}
.goog-te-gadget {
  color: transparent !important;
  font-size: 0 !important;
}
body {
  top: 0 !important;
  position: static !important;
}

