:root {
  --ink: #2b2118;
  --paper: #faf6ef;
  --paper-alt: #f1e8d9;
  --accent: #b5652b;
  --accent-dark: #8e4c1d;
  --muted: #6b5d50;
  --white: #ffffff;
  --header-h: 84px;
  --radius: 10px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

h1, h2, h3 { font-family: var(--serif); line-height: 1.2; margin: 0 0 .6em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }
a { color: var(--accent-dark); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(250, 246, 239, .96);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(43, 33, 24, .15);
}
.brand { display: block; line-height: 0; }
.brand img { height: calc(var(--header-h) - 12px); width: auto; }

.site-nav { display: flex; gap: 28px; align-items: center; margin-left: auto; }
.site-nav a.current { color: var(--accent); }
.has-sub { position: relative; }
.has-sub > a::after { content: " \25BE"; font-size: .8em; }
.sub-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 230px;
  white-space: nowrap;
  padding: 8px 0;
  margin-top: 10px;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  display: none;
}
.sub-menu::before { content: ""; position: absolute; inset: -12px 0 auto 0; height: 12px; }
.has-sub:hover .sub-menu,
.has-sub:focus-within .sub-menu { display: block; }
.site-nav .sub-menu a { display: block; padding: 8px 18px; color: var(--white); font-weight: 400; }
.site-nav .sub-menu a:hover { color: #e7a86f; }

/* Inner pages: header is always solid */
.page .site-header { background: rgba(250, 246, 239, .97); box-shadow: 0 2px 12px rgba(43, 33, 24, .12); }
.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .02em;
}
.site-nav a:hover { color: var(--accent); }


.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--ink);
  overflow: hidden;
  /* Fallback if no images are available */
  background: linear-gradient(135deg, #f3e9da, #e3cfb3);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.4s ease, transform 8s linear;
}
.hero-bg .slide.active { opacity: 1; transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  /* The background photo is already soft and light; a gentle wash keeps the logo crisp */
  background: radial-gradient(ellipse at center, rgba(250,246,239,.72) 0%, rgba(250,246,239,.35) 60%, rgba(250,246,239,.15) 100%);
}
.hero-content {
  position: relative;
  padding: calc(var(--header-h) + 24px) 16px 64px;
  max-width: 820px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: .85rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--accent-dark);
}
.hero h1 { margin: 0 0 1.25rem; }
.hero-logo {
  display: block;
  width: min(560px, 82vw);
  height: auto;
  margin-inline: auto;
  /* Drops the logo's white box so it sits directly on the background */
  mix-blend-mode: multiply;
}
.tagline {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.8vw, 1.5rem);
  font-weight: 600;
  margin: 0 0 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}
.hero-dots button.active { background: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .8em 1.6em;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 9vw, 104px) 0; }
.section.alt { background: var(--paper-alt); }
.container { width: min(1120px, 100% - 32px); margin-inline: auto; }
.container.narrow { width: min(720px, 100% - 32px); text-align: center; }
.lead { font-size: 1.2rem; margin: 0 0 1em; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 1.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 4px 18px rgba(43, 33, 24, .08);
  border-top: 4px solid var(--accent);
}
.card p { margin: 0; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: start;
}

.contact-form { display: grid; gap: 16px; text-align: left; margin-top: 1.5rem; }
.contact-form label { display: grid; gap: 6px; font-weight: 600; }
.contact-form input, .contact-form textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid #d5c6ae;
  border-radius: 8px;
  background: var(--white);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.contact-form .btn { justify-self: start; }
.contact-alt { margin-top: 1.5rem; color: var(--muted); }

.site-footer {
  background: var(--ink);
  color: #d9ccb8;
  text-align: center;
  padding: 28px 16px;
  font-size: .95rem;
}
.site-footer p { margin: 0; }
.site-footer p + p { margin-top: .4rem; }
.site-footer a { color: #e7a86f; }
address { font-style: normal; }

/* ---------- Content pieces ---------- */
.page-hero {
  padding: calc(var(--header-h) + clamp(40px, 7vw, 80px)) 0 clamp(40px, 7vw, 72px);
  background: linear-gradient(rgba(250,246,239,.82), rgba(250,246,239,.9)), url("../images/background-1.jpg") center / cover;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.2rem, 6vw, 3.4rem); margin: 0 0 .3em; }
.page-hero p { margin: 0 auto; max-width: 640px; font-size: 1.15rem; color: var(--muted); }

.cta-band {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 40px 16px;
}
.cta-band h2 { font-size: clamp(1.4rem, 3.4vw, 2rem); margin-bottom: .8em; }
.cta-band .btn { background: var(--white); color: var(--accent-dark); }
.cta-band .btn:hover { background: var(--ink); color: var(--white); }
.cta-band p { margin: 1rem 0 0; }
.cta-band a:not(.btn) { color: var(--white); }

.list-clean { list-style: none; padding: 0; margin: 0; }
.list-check { list-style: none; padding: 0; margin: 0 0 1rem; }
.list-check li { position: relative; padding-left: 1.6em; margin: .45em 0; }
.list-check li::before { content: "\2713"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.card h3 a { color: inherit; text-decoration: none; }
.card h3 a:hover { color: var(--accent); }
.card .list-check { margin-top: .6rem; color: var(--muted); }
.card .more { display: inline-block; margin-top: .6rem; font-weight: 600; }

.service {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(43, 33, 24, .08);
  padding: clamp(24px, 4vw, 44px);
  margin-bottom: 32px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.service h2 { margin-bottom: .3em; }
.service .tag { color: var(--accent-dark); font-weight: 600; margin: 0 0 1.2rem; }
.service .cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px 40px; }
.service h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-top: 1rem; }
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.steps li { counter-increment: step; position: relative; padding: 0 0 18px 52px; }
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: -2px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--paper-alt); color: var(--accent-dark);
  font-weight: 700; display: grid; place-items: center;
}
.note { font-style: italic; color: var(--muted); }

.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; text-align: left; }
.values li { background: var(--white); border-left: 4px solid var(--accent); border-radius: 6px; padding: 16px 18px; }

.locations { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin: 1.5rem 0; }
.locations address { background: var(--white); border-radius: var(--radius); padding: 20px; box-shadow: 0 4px 18px rgba(43,33,24,.06); }
.locations strong { display: block; font-family: var(--serif); font-size: 1.1rem; margin-bottom: .3em; }

.quick-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 1.2rem; }
.quick-links a {
  padding: .5em 1.1em; border: 1px solid #d5c6ae; border-radius: 999px;
  text-decoration: none; background: var(--white); font-weight: 600;
}
.quick-links a:hover { border-color: var(--accent); }

.social { display: flex; gap: 16px; justify-content: center; margin-top: .6rem; }

/* ---------- Mobile ---------- */
@media (max-width: 720px) {
  :root { --header-h: 72px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--ink);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .site-nav.open { max-height: 80vh; overflow-y: auto; }
  .site-nav a { display: block; color: var(--white); padding: 14px 24px; border-top: 1px solid rgba(255,255,255,.08); }
  .site-nav { align-items: stretch; z-index: 60; isolation: isolate; }
  .site-nav a.current { color: #e7a86f; }
  .sub-menu { display: block; position: static; margin: 0; padding: 0; box-shadow: none; background: transparent; min-width: 0; }
  .sub-menu::before { display: none; }
  .site-nav .sub-menu a { padding-left: 44px; font-size: .95rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg .slide { transition: opacity .01s; transform: none; }
}

/* ---------- Auctions page ---------- */
.narrow-text { max-width: 720px; margin: 0 auto 2rem; text-align: center; }
.auction-panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: var(--ink);
  color: #f3e9da;
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 52px);
  box-shadow: 0 8px 28px rgba(43, 33, 24, .18);
}
.auction-panel h3 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); color: var(--white); }
.auction-panel .eyebrow { color: #e0be9a; }
.auction-panel .btn { margin: .6rem 0 1.2rem; font-size: 1.1rem; }
.auction-links { font-size: .95rem; margin: 0; }
.auction-panel a:not(.btn) { color: #e0be9a; }

/* ---------- Announcement pop-up (home page) ---------- */
.announce {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(20, 15, 10, .72);
  overflow-y: auto;
}
.announce[hidden] { display: none; }
.announce-box {
  position: relative;
  width: min(760px, 100%);
  margin: auto;
  background: var(--ink);
  color: var(--white);
  border-radius: 12px;
  padding: clamp(28px, 5vw, 48px) clamp(20px, 5vw, 48px);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
}
.announce-box h2 {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  color: #ab9567;
  margin-bottom: 1rem;
}
.announce-box h3 { font-family: var(--sans); font-size: 1.2rem; margin: 0 0 .3rem; color: var(--white); }
.announce-box p { margin: 0 0 1rem; }
.announce-box a { color: #e0be9a; font-weight: 600; }
.announce-lead { font-size: 1.1rem; }
.announce-contact { font-size: clamp(1.1rem, 3vw, 1.5rem); font-weight: 700; }
.announce-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-bottom: 1.2rem; }
.announce-cols > div { border: 1px solid rgba(224, 190, 154, .3); border-radius: 8px; padding: 14px; }
.announce-cols p { margin: 0; color: #e6dccd; }
.announce-cta { font-size: 1.1rem; font-weight: 600; }
.announce-cta .btn { margin-top: .6rem; color: var(--white); }
.announce-links { border-top: 1px solid rgba(224, 190, 154, .3); padding-top: 1rem; color: #e0be9a; }
.announce-close {
  position: absolute; top: 10px; right: 14px;
  background: none; border: 0; color: var(--white);
  font-size: 2rem; line-height: 1; cursor: pointer;
}
.announce-back {
  background: none; border: 1px solid rgba(255,255,255,.5); color: var(--white);
  font: inherit; padding: .5em 1.4em; border-radius: 999px; cursor: pointer;
}
.announce-back:hover, .announce-close:hover { color: #e0be9a; border-color: #e0be9a; }
body.no-scroll { overflow: hidden; }

/* ---------- Constant Contact sign-up form ---------- */
.ctct-inline-form { max-width: 560px; margin: 0 auto; text-align: left; }
.ctct-inline-form .ctct-form-defaults { background: var(--white) !important; border-radius: var(--radius); box-shadow: 0 4px 18px rgba(43, 33, 24, .08); }
.ctct-inline-form .ctct-form-button { background-color: var(--accent) !important; border-color: var(--accent) !important; border-radius: 999px !important; }

/* ---------- Service area badge ---------- */
.area-badge {
  display: inline-block;
  margin: 0 0 1.1rem;
  padding: .55em 1.3em;
  border-radius: 6px;
  background: var(--ink);
  color: #f3e9da;
  border-bottom: 3px solid var(--accent);
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 5vw, 2.9rem);
  line-height: 1.2;
  padding: .45em 1em;
  letter-spacing: .01em;
  box-shadow: 0 4px 14px rgba(43, 33, 24, .3);
}
.announce-box .area-badge { font-size: clamp(1.5rem, 4.6vw, 2.4rem); background: transparent; color: #e0be9a; border: 1px solid rgba(224, 190, 154, .6); border-bottom-width: 3px; box-shadow: none; margin-bottom: 1.2rem; }
