/* ==========================================================================
   Velvet Bear Poodles - shared stylesheet
   Palette: velvet plum + warm cream + antique gold + cocoa
   ========================================================================== */

:root {
  --plum-deep: #2b1430;
  --plum: #4a2545;
  --plum-soft: #6b3a63;
  --cocoa: #6b4c3b;
  --gold: #c8a35a;
  --gold-bright: #e0c27f;
  --cream: #faf6f0;
  --cream-warm: #f2e9dd;
  --blush: #e6cfcb;
  --ink: #2a2024;
  --ink-soft: #5c5157;
  --white: #ffffff;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-sm: 0 2px 8px rgba(43, 20, 48, 0.08);
  --shadow-md: 0 8px 24px rgba(43, 20, 48, 0.12);
  --shadow-lg: 0 18px 48px rgba(43, 20, 48, 0.18);

  --radius: 14px;
  --radius-lg: 26px;
  --wrap: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--plum); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--plum-deep);
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }

p { margin: 0 0 1.1em; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.narrow { width: min(100% - 2.5rem, 780px); margin-inline: auto; }

section { padding: clamp(3.5rem, 7vw, 6rem) 0; }

.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .95rem 2.1rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .84rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--plum-deep);
  box-shadow: var(--shadow-md);
}
.btn-gold:hover { box-shadow: var(--shadow-lg); }

.btn-plum { background: var(--plum); color: var(--cream); }
.btn-plum:hover { background: var(--plum-deep); }

.btn-ghost {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-bright);
}
.btn-ghost:hover { background: var(--gold); color: var(--plum-deep); }

.btn-outline {
  background: transparent;
  border-color: var(--plum);
  color: var(--plum);
}
.btn-outline:hover { background: var(--plum); color: var(--cream); }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--plum-deep);
  color: var(--gold-bright);
  text-align: center;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .6rem 1rem;
}
.announce a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-warm);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .8rem 0;
}
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand-mark {
  width: 52px; height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--plum-soft), var(--plum-deep));
  display: grid; place-items: center;
  color: var(--gold-bright);
  box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 28px; height: 28px; }
.brand-text { line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--plum-deep);
  display: block;
}
.brand-tag {
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--cocoa);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--plum);
  border-radius: 10px;
  color: var(--plum);
  font-size: 1.4rem;
  line-height: 1;
  padding: .35rem .6rem;
  cursor: pointer;
}

.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: .2rem; }
.main-nav li { position: relative; }
.main-nav > ul > li > a,
.main-nav > ul > li > button {
  display: block;
  background: none;
  border: 0;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--plum-deep);
  text-decoration: none;
  padding: .7rem .75rem;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > button:hover { background: var(--cream-warm); color: var(--plum); }
.main-nav > ul > li > a[aria-current="page"] { color: var(--gold); }
.main-nav .caret { font-size: .55em; margin-left: .35em; vertical-align: middle; }

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 235px;
  background: var(--white);
  border: 1px solid var(--cream-warm);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  display: none;
  flex-direction: column;
  gap: 0;
}
.has-sub:hover .submenu,
.has-sub.open .submenu { display: flex; }
.submenu a {
  display: block;
  padding: .6rem .8rem;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--plum-deep);
  text-decoration: none;
}
.submenu a:hover { background: var(--cream-warm); color: var(--plum); }

.nav-cta { flex: 0 0 auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 7.5rem) 0;
  color: var(--cream);
  background:
    radial-gradient(ellipse at 18% 12%, rgba(107, 58, 99, .85), transparent 58%),
    radial-gradient(ellipse at 82% 78%, rgba(200, 163, 90, .28), transparent 55%),
    linear-gradient(150deg, var(--plum-deep), var(--plum) 55%, #1d0d21);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,.035) 0 2px, transparent 2px 9px);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero h1 { color: var(--cream); margin-bottom: .35em; }
.hero .eyebrow {
  display: inline-block;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid rgba(224, 194, 127, .45);
  border-radius: 999px;
  padding: .45rem 1.2rem;
  margin-bottom: 1.6rem;
}
.hero-lead {
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
  color: var(--blush);
  max-width: 60ch;
  margin-inline: auto;
}
.hero-badges {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .6rem 1.6rem;
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.hero-badges li::before { content: "\2726"; margin-right: .5em; opacity: .7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.2rem; }

/* ---------- Page banner (interior pages) ---------- */
.page-banner {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  text-align: center;
  color: var(--cream);
  background:
    radial-gradient(ellipse at 70% 20%, rgba(200,163,90,.25), transparent 60%),
    linear-gradient(140deg, var(--plum-deep), var(--plum));
}
.page-banner h1 { color: var(--cream); margin-bottom: .3em; }
.page-banner p { color: var(--blush); max-width: 62ch; margin-inline: auto; margin-bottom: 0; }

/* ---------- Section headings ---------- */
.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}

.section-head { text-align: center; max-width: 68ch; margin: 0 auto clamp(2.2rem, 4vw, 3.2rem); }
.section-head .eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}
.section-head p { color: var(--ink-soft); margin-bottom: 0; }

.rule {
  width: 72px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.1rem auto 0;
  border: 0;
}

/* ---------- Backgrounds ---------- */
.bg-warm { background: var(--cream-warm); }
.bg-white { background: var(--white); }
.bg-plum { background: var(--plum-deep); color: var(--blush); }
.bg-plum h2, .bg-plum h3 { color: var(--cream); }
.bg-plum .section-head p { color: var(--blush); }
.bg-plum .section-head .eyebrow { color: var(--gold-bright); }

/* ---------- Grid + cards ---------- */
.grid { display: grid; gap: 1.8rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--cream-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-body { padding: 1.6rem 1.7rem 1.9rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: .4rem; }
.card-body p { color: var(--ink-soft); font-size: .96rem; }
.card-body .btn { margin-top: auto; align-self: flex-start; }

/* Card variant for use on the dark plum background */
.card-dark { background: rgba(255, 255, 255, .05); border-color: rgba(224, 194, 127, .2); }
.card-dark h3 { color: var(--gold-bright); }
.card-dark .card-body p { color: var(--blush); }

.price-tag {
  display: inline-block;
  background: var(--plum-deep);
  color: var(--gold-bright);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .1em;
  padding: .35rem 1rem;
  border-radius: 999px;
  margin-bottom: .9rem;
}

.spec-list { list-style: none; padding: 0; margin: 0 0 1.4rem; font-size: .92rem; }
.spec-list li { padding: .4rem 0; border-bottom: 1px dashed var(--cream-warm); display: flex; justify-content: space-between; gap: 1rem; }
.spec-list li:last-child { border-bottom: 0; }
.spec-list strong { color: var(--plum-deep); font-weight: 800; }

/* ---------- Photo placeholders ---------- */
.photo {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.25), transparent 62%),
    linear-gradient(150deg, var(--blush), var(--cream-warm) 45%, #d9c3bd);
  display: grid;
  place-items: center;
  color: var(--plum);
  position: relative;
  overflow: hidden;
}
.photo.tall { aspect-ratio: 3 / 4; }
.photo.wide { aspect-ratio: 16 / 10; }
.photo svg { width: 46%; max-width: 130px; opacity: .38; }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-note {
  position: absolute;
  bottom: .6rem;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(74, 37, 69, .5);
}

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split .photo { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split-text h2 { margin-bottom: .6rem; }
.split-text p { color: var(--ink-soft); }

/* ---------- Steps ---------- */
.steps { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; gap: 1.4rem; }
.step {
  counter-increment: step;
  position: relative;
  background: var(--white);
  border: 1px solid var(--cream-warm);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem 1.6rem 4.6rem;
  box-shadow: var(--shadow-sm);
}
.step::before {
  content: counter(step);
  position: absolute;
  left: 1.35rem;
  top: 1.5rem;
  width: 2.2rem; height: 2.2rem;
  border-radius: 50%;
  background: var(--plum-deep);
  color: var(--gold-bright);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}
.step h3 { margin-bottom: .3rem; }
.step p { margin-bottom: 0; color: var(--ink-soft); font-size: .96rem; }

/* ---------- Testimonials ---------- */
.quote {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
}
.quote p { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; color: var(--plum-deep); }
.quote footer { font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--cocoa); }
.stars { color: var(--gold); letter-spacing: .18em; margin-bottom: .7rem; }

/* ---------- FAQ accordion ---------- */
.faq { border-bottom: 1px solid var(--cream-warm); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem .5rem 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--plum-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 1.6rem; line-height: 1; flex: 0 0 auto; }
.faq[open] summary::after { content: "\2013"; }
.faq .faq-body { padding: 0 0 1.4rem; color: var(--ink-soft); }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-warm);
}
.field { margin-bottom: 1.2rem; }
.field label {
  display: block;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--plum-deep);
  margin-bottom: .45rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: .85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--cream-warm);
  border-radius: 10px;
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 0 1.2rem; }
.field-hint { font-size: .82rem; color: var(--ink-soft); margin: .4rem 0 0; }
.check { display: flex; gap: .7rem; align-items: flex-start; font-size: .93rem; color: var(--ink-soft); }
.check input { width: auto; margin-top: .35rem; flex: 0 0 auto; }

/* ---------- Contact list ---------- */
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.4rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ico {
  flex: 0 0 44px; width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--plum-deep);
  color: var(--gold-bright);
  display: grid; place-items: center;
  font-size: 1.1rem;
}
.contact-list .lbl {
  display: block;
  font-size: .7rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--cocoa);
}
.contact-list a { color: var(--plum); font-weight: 700; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

/* ---------- Banner CTA ---------- */
.cta-band {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(107,58,99,.9), transparent 60%),
    linear-gradient(120deg, var(--plum-deep), #1d0d21);
  color: var(--cream);
  text-align: center;
}
.cta-band h2 { color: var(--cream); }
.cta-band p { color: var(--blush); max-width: 58ch; margin-inline: auto; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.1rem; }
.gallery-grid .photo { border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* ---------- Badge strip ---------- */
.strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 3rem;
  list-style: none; padding: 0; margin: 0;
  font-size: .76rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--cocoa);
}

/* ---------- Footer ---------- */
.site-footer { background: var(--plum-deep); color: var(--blush); padding: clamp(3rem, 6vw, 4.5rem) 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; }
.site-footer h4 {
  color: var(--gold-bright);
  font-family: var(--font-body);
  font-size: .74rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: var(--blush); text-decoration: none; font-size: .94rem; }
.site-footer a:hover { color: var(--gold-bright); }
.site-footer p { font-size: .94rem; }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand .brand-tag { color: var(--gold); }
.socials { display: flex; gap: .7rem; margin-top: 1.1rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(224,194,127,.35);
  display: grid; place-items: center;
  color: var(--gold-bright);
  font-size: .95rem;
}
.socials a:hover { background: var(--gold); color: var(--plum-deep); }
.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(230, 207, 203, .16);
  padding: 1.4rem 0;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(230, 207, 203, .65);
}

/* ---------- Utility ---------- */
.note {
  background: var(--cream-warm);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.5rem;
  font-size: .95rem;
  color: var(--ink-soft);
}
.note strong { color: var(--plum-deep); }
.tag {
  display: inline-block;
  font-size: .66rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  padding: .3rem .8rem; border-radius: 999px;
  background: var(--gold); color: var(--plum-deep);
}
.tag.available { background: #4c7a4c; color: #fff; }
.tag.reserved { background: var(--cocoa); color: #fff; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: .8rem; }
.mt-2 { margin-top: 1.7rem; }
.mt-3 { margin-top: 2.5rem; }
.mb-3 { margin-bottom: 2.5rem; }
.tight { max-width: 950px; margin-inline: auto; }
.pad-sm { padding-block: 2.2rem; }

/* A tag pill sitting directly above a heading needs a little air */
.card-body .tag + h3 { margin-top: .7rem; }

/* The oversized deposit figure on deposit.html */
.big-figure {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 4.6rem);
  line-height: 1;
  color: var(--plum-deep);
  margin: .2rem 0 .6rem;
}

/* Component recolouring for the dark plum background */
.bg-plum .spec-list li { border-bottom-color: rgba(230, 207, 203, .18); }
.bg-plum .spec-list strong { color: var(--gold-bright); }
.bg-plum .field-hint { color: var(--blush); }

/* Social icons sitting on a light background */
.bg-warm .socials a, .bg-white .socials a {
  border-color: rgba(74, 37, 69, .3);
  color: var(--plum);
}
.socials.centered { justify-content: center; }

/* ---------- Mobile ---------- */
@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-top: 1px solid var(--cream-warm);
    box-shadow: var(--shadow-lg);
    padding: 1rem 1.25rem 1.6rem;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav > ul > li > a,
  .main-nav > ul > li > button { width: 100%; text-align: left; padding: .85rem .6rem; border-bottom: 1px solid var(--cream-warm); border-radius: 0; }
  .submenu { position: static; display: none; box-shadow: none; border: 0; background: var(--cream-warm); border-radius: 0; padding: .3rem .3rem .6rem 1.2rem; }
  .has-sub:hover .submenu { display: none; }
  .has-sub.open .submenu { display: flex; }
  .header-inner { position: relative; flex-wrap: wrap; }
  .nav-cta { display: none; }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .brand-mark { width: 44px; height: 44px; flex-basis: 44px; }
  .brand-name { font-size: 1.25rem; }
  .hero-actions .btn { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
