/* =======================================================
   ARC Page — Standalone theme-aligned CSS
   (includes brand tokens + shared header/nav/footer)
   ======================================================= */

/* ===== Brand Tokens (same as global) ===== */
:root {
  --bg: #D9BCAF;         /* warm beige-pink */
  --ink: #011627;        /* deep navy */
  --burgundy: #795663;   /* mauve-rose */
  --sapphire: #283D3B;   /* pine teal */
  --emerald: #8A9688;    /* sage gray */
  --banner: #F4EEE9;     /* light banner */
  --gold: #D9BCAF;
  --white: #ffffff;
  --surface: #ffffff;
  --shadow: 0 4px 6px rgba(0,0,0,.10);
  --radius: 12px;

  --font-body: 'Lora', serif;
  --font-heading: 'Cormorant Garamond', serif;
  --font-luxury: 'Cinzel', serif;
}

/* ===== Base ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--banner), var(--bg) 320px);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== Header / Navbar ===== */
.site-header {
  background: var(--burgundy);
  color: var(--white);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow);
}
.site-header .brand img {
  height: 60px;
  width: auto;      /* Keeps proportions */
  display: block;
}
.navbar {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.navbar a {
  color: var(--white);
  font-weight: 700;
  padding: .25rem .5rem;
  border-radius: 6px;
  transition: background-color .2s ease, outline .2s ease;
}
/* Hover + focus */
.navbar a:hover,
.navbar a:focus {
  background: rgba(255,255,255,0.12);
}
/* Active page link outline */
.navbar a.active {
  outline: 2px solid var(--emerald);
  outline-offset: 2px;
}

/* ===== Page Banner ===== */
.page-header {
  background: var(--banner);
  padding: 3rem 1.25rem 2.5rem;
  text-align: center;
  border-bottom: 2px solid var(--gold);
}
.page-header h1 {
  margin: 0 0 .5rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--burgundy);
  letter-spacing: .02em;
}
.navbar a:hover,
    .navbar a:focus {
      background: rgba(255,255,255,0.12);
    }
    .navbar a.active {
      outline: 2px solid var(--emerald);
      outline-offset: 2px;
    }
.page-header p { margin: 0; font-size: 1.1rem; }

/* ===== Main Container ===== */
.arc-content,
.contact-section {         /* keep your existing class name working */
  max-width: 950px;
  margin: 0 auto;
  padding: 40px 20px 56px;
}

/* ===== Card / Section ===== */
section:nth-of-type(odd) { background: var(--bg); color: var(--ink); }
section:nth-of-type(even) { background: var(--burgundy); color: var(--white); }

section,
.contact-form,
.card {
  background: var(--burgundy, #795663);  /* mauve-rose */
  color: var(--white, #ffffff);
  border-radius: var(--radius, 12px);
  box-shadow: var(--shadow, 0 4px 6px rgba(0,0,0,.10));
  border: none;
}
section h2, section p, section li::before {
  color: var(--white, #ffffff);
}

.contact-form { padding: 28px 24px; }

/* ===== Headings ===== */
h2 {
  font-family: var(--font-heading);
  color: var(--sapphire);
  margin: 0 0 12px;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.2;
}

/* Optional luxe variant (apply to special titles) */
.luxury-title { font-family: var(--font-luxury); letter-spacing: .03em; }
.luxury-sub   { font-family: var(--font-luxury); letter-spacing: .02em; }

/* ===== Lists ===== */
ul { list-style: none; padding-left: 0; margin: 0 0 1rem; }
ul li {
  margin: 8px 0;
  padding-left: 26px;
  position: relative;
}
ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--burgundy);
  font-weight: 900;
  line-height: 1;
}

/* ===== Buttons (inline) ===== */
.btn, .button {
  display: inline-block;
  background: var(--burgundy);
  color: var(--white);
  padding: .65rem 1rem;
  border-radius: 10px;
  font-weight: 800;
  box-shadow: var(--shadow);
  transition: transform .12s ease, filter .12s ease, background-color .12s ease;
}
.btn:hover, .button:hover,
.btn:focus, .button:focus {
  background: var(--sapphire);
  filter: brightness(1.02);
  transform: translateY(-1px);
}

/* ===== Embedded form ===== */
.card iframe,
.contact-form iframe {
  width: 100%;
  min-height: 700px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

/* ===== Footer (matches global) ===== */
footer.site-footer, .site-footer, body footer {
  background: var(--sapphire) !important;
  color: var(--white);
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 2rem;
}
footer.site-footer a, .site-footer a, body footer a {
  color: var(--gold);
  text-decoration: underline;
  transition: color .3s ease;
}
footer.site-footer a:hover, .site-footer a:hover, body footer a:hover {
  color: var(--burgundy);
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
  .site-header { padding: .85rem 1rem; }
  .navbar { gap: .75rem; }
  .contact-form { padding: 22px 18px; }
}
