/* ===== Ramsbottom Wealth Management ===== */
:root {
  --red: #501114;
  --green: #283a29;
  --green-light: #3a5540;
  --blue: #111450;
  --red-dark: #380b0d;
  --blue-dark: #0a0c33;
  --cream: #f2e5d0;
  --cream-soft: #f8f0e2;
  --ink: #2b241c;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Open Sans", -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container { width: min(1080px, 90%); margin: 0 auto; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--blue); }
h1 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.35rem, 3vw, 1.7rem); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.45em;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.eyebrow-light { color: var(--cream); opacity: 0.75; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 229, 208, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(40, 58, 41, 0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo { height: 96px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 1.75rem; }
.site-nav a {
  text-decoration: none;
  color: var(--blue);
  font-weight: 500;
  font-size: 0.95rem;
}
.site-nav a:hover { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: var(--cream) !important;
  padding: 0.4rem 1.6rem;
  border-radius: 0;
}
.nav-cta:hover { background: var(--red-dark); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--blue);
  margin: 5px 0;
  transition: transform 0.2s, opacity 0.2s;
}

/* ===== Hero ===== */
.hero { padding: clamp(1.75rem, 4vw, 2.75rem) 0; text-align: center; }
.hero-sub {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  max-width: 34em;
  margin: 1rem auto 2rem;
  color: var(--ink);
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.6rem 2.8rem;
  border-radius: 0;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-primary { background: var(--blue); color: var(--cream); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-green { background: var(--green); color: var(--cream); }
.btn-green:hover { background: var(--green-light); }
.btn-ghost { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-ghost:hover { background: var(--blue); color: var(--cream); }
.btn-full { width: 100%; }

/* ===== Services ===== */
.services { padding: clamp(3rem, 7vw, 5.5rem) 0; background: var(--cream-soft); }
.services > .container > .eyebrow,
.services > .container > h2 { text-align: center; }
.service-card {
  background: #fff;
  border: 1px solid rgba(40, 58, 41, 0.12);
  border-radius: 0;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  margin-top: 1.5rem;
  box-shadow: 0 8px 30px rgba(40, 58, 41, 0.08);
}
.service-head { margin-bottom: 1rem; }
.service-price-note {
  color: var(--red);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
}
.service-points { margin: 1.25rem 0 1.5rem 1.2rem; }
.service-points li { margin-bottom: 0.5rem; }
.disclaimer {
  background: var(--cream);
  border-left: 4px solid var(--red);
  border-radius: 0;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
}
.coming-soon { margin-top: 1.5rem; font-style: italic; opacity: 0.8; }

/* ===== About ===== */
.about { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-text p { margin-bottom: 1rem; max-width: 38em; }
.about-badge { text-align: center; }
.about-badge img { width: min(360px, 90%); height: auto; }

/* ===== Contact ===== */
.contact { background: var(--green); color: var(--cream); padding: clamp(3rem, 7vw, 5.5rem) 0; }
.contact h2 { color: var(--cream); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-intro p { margin-bottom: 1rem; }
.contact-email a { color: var(--cream); font-weight: 600; }

.contact-form {
  background: var(--cream);
  border-radius: 0;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--ink);
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--green);
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid rgba(40, 58, 41, 0.25);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
  resize: none;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(80, 17, 20, 0.12);
}
.hidden-field { display: none; }
.form-status { font-weight: 600; text-align: center; }
.form-status:not(:empty) { margin-top: 0.9rem; }
.form-status.success { color: var(--green); }
.form-status.error { color: var(--red); }

/* ===== Footer ===== */
.site-footer {
  background: #101010;
  color: var(--cream);
  text-align: center;
  padding: 2.5rem 0;
  font-size: 0.9rem;
}
.footer-disclaimer { opacity: 0.75; font-size: 0.68rem; max-width: 62em; margin: 0.6rem auto 0; text-wrap: balance; }

/* ===== Mobile ===== */
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 1.25rem 5%;
    gap: 1.1rem;
    border-bottom: 1px solid rgba(40, 58, 41, 0.15);
    box-shadow: 0 12px 24px rgba(40, 58, 41, 0.12);
  }
  .site-nav.open { display: flex; }
  .nav-cta { text-align: center; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .about-badge { order: -1; }
  .about-badge img { width: 140px; }
}
