/* Minimal fallback rules for every class in the shared contract.
 *
 * Always prepended to the model-generated stylesheet, which overrides it via the normal
 * later-wins cascade. This exists because the stylesheet and the pages are generated by
 * separate model calls, so the stylesheet can omit a contract class -- which used to fail
 * the whole build (a real business, find-dog, died on a missing `btn-primary`). With this
 * in place a missed rule degrades to plain-but-styled instead of destroying the build.
 *
 * Keep these deliberately neutral and low-specificity: they are a safety net, not a design.
 */

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; line-height: 1.6; }
img { max-width: 100%; height: auto; }

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 1rem; }

/* Owner-uploaded pictures. Without explicit sizing an <img> renders at its natural size,
 * so a phone photo used as a logo would fill the whole header. */
.logo-mark { height: 2.5rem; width: auto; object-fit: contain; }
.hero-image { width: 100%; max-height: 420px; object-fit: cover; border-radius: .5rem; }
.gallery-image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: .5rem; }
.about-image { width: 100%; max-width: 420px; border-radius: .5rem; }

.site-header { padding: 1rem 0; }
.header-inner { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.logo { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; font-weight: 700; }
.logo-text { font-weight: 700; }
.main-nav { display: block; }
.nav-list { display: flex; flex-wrap: wrap; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.nav-link { text-decoration: none; }
.nav-link:hover, .nav-link:focus { text-decoration: underline; }
.is-current { font-weight: 700; }

.hero, .page-hero { padding: 3rem 0; }

/* A photo sitting BEHIND the hero text instead of above it. The picture itself is set as
 * an inline `background-image` on the element, because it is per-business data the
 * stylesheet cannot know; these rules supply the darkening overlay and the stacking that
 * keep the heading readable over any photo, light or dark.
 *
 * Exists because an owner asked twice for exactly this and there was no way to express
 * it -- the only picture vocabulary was `.hero-image`, an <img> in the normal page flow. */
.hero-bg { position: relative; background-size: cover; background-position: center;
  padding: 5rem 0; overflow: hidden; }
.hero-bg::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, .55); }
.hero-bg > * { position: relative; z-index: 1; }
.hero-bg .hero-title, .hero-bg .hero-subtitle { color: #fff; }
.hero-inner { display: flex; flex-direction: column; gap: 1rem; }
.hero-title { margin: 0; font-size: clamp(1.75rem, 4vw, 3rem); line-height: 1.15; }
.hero-subtitle { margin: 0; font-size: 1.125rem; }

.section { padding: 3rem 0; }
.section-alt { padding: 3rem 0; }
.section-title { margin: 0 0 1rem; font-size: clamp(1.4rem, 3vw, 2rem); }
.section-intro { margin: 0 0 1.5rem; max-width: 60ch; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.card { padding: 1.25rem; border: 1px solid rgba(0, 0, 0, .12); border-radius: .5rem; }
.card-title { margin: 0 0 .5rem; font-size: 1.125rem; }
.card-text { margin: 0; }

.steps { display: grid; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step-number { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 50%; border: 1px solid currentColor; font-weight: 700; }
.step-title { margin: 0 0 .25rem; font-size: 1.05rem; }
.step-text { margin: 0; }

/* FAQ items are <details>/<summary>: they expand on click with no JavaScript. */
html { scroll-behavior: smooth; }
.faq-list { display: grid; gap: 1rem; margin: 0; padding: 0; }
.faq-item { padding: 1rem; border: 1px solid rgba(0, 0, 0, .12); border-radius: .5rem; }
.faq-question { margin: 0; font-size: 1.05rem; font-weight: 700; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: "+"; font-weight: 700; flex: 0 0 auto; }
details[open] > .faq-question::after { content: "\2212"; }
.faq-answer { margin: .75rem 0 0; }

.cta-band { padding: 3rem 0; text-align: center; }
.cta-title { margin: 0 0 .5rem; font-size: clamp(1.3rem, 3vw, 1.9rem); }
.cta-text { margin: 0 0 1.25rem; }

.btn { display: inline-block; padding: .7rem 1.4rem; border-radius: .4rem; text-decoration: none;
  border: 1px solid currentColor; cursor: pointer; }
.btn:hover, .btn:focus { opacity: .85; }
.btn-primary { font-weight: 600; }
.btn-secondary { font-weight: 500; background: transparent; }

.contact-list { display: grid; gap: .75rem; list-style: none; margin: 0; padding: 0; }
.contact-item { display: flex; flex-wrap: wrap; gap: .5rem; }
.contact-label { font-weight: 600; }
.contact-value { }

.site-footer { padding: 2rem 0; }
.footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.footer-col { }
.footer-title { margin: 0 0 .5rem; font-size: 1rem; }
.footer-note { margin: 0; font-size: .9rem; }

@media (max-width: 640px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  .step { flex-direction: column; }
}

/* ---- generated ---- */
:root {
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Inter", sans-serif;
  --color-bg: #f5e9d3;
  --color-surface: #e2d5c5;
  --color-ink: #212121;
  --color-muted: #807b71;
  --color-border: #d5cbb8;
  --color-accent: #b08d57;
  --color-accent-ink: #111111;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-ink);
}

h1, h2, h3,
.hero-title, .section-title, .card-title, .cta-title, .step-title, .footer-title, .logo-text {
  font-family: var(--font-display);
}

:root {
  --clr-bg: #f5e9d3;
  --clr-raised: #e2d5c5;
  --clr-text: #212121;
  --clr-secondary: #807b71;
  --clr-border: #d5cbb8;
  --clr-accent: #b08d57;
  --clr-accent-ink: #111111;
  --ff-heading: "Cormorant Garamond", serif;
  --ff-body: "Inter", sans-serif;
  --spacing-xxs: 0.25rem;
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-xxl: 3rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
  --transition-base: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
}

/* Headings with gold hash */
h1::after,
h2::after,
h3::after,
h4::after,
h5::after,
h6::after,
.section-title::after,
.hero-title::after,
.page-hero .hero-title::after,
.card-title::after,
.step-title::after,
.faq-question::after,
.cta-title::after,
.footer-title::after {
  content: " #";
  color: var(--clr-accent);
  margin-left: 0.1em;
  font-size: 0.9em;
  vertical-align: baseline;
}

/* Layout container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Header */
.site-header {
  background-color: var(--clr-raised);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--spacing-sm) 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}
.logo-text {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  color: var(--clr-text);
  text-decoration: none;
}
.main-nav {
}
.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin: 0;
  padding: 0;
}
.nav-link {
  text-decoration: none;
  color: var(--clr-text);
  font-weight: 500;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-base), color var(--transition-base);
}
.nav-link:hover,
.nav-link:focus {
  background-color: var(--clr-accent);
  color: var(--clr-accent-ink);
}
.nav-link.is-current {
  font-weight: 600;
  background-color: var(--clr-accent);
  color: var(--clr-accent-ink);
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  min-height: 60vh;
  padding: var(--spacing-xl) 0;
  background-color: var(--clr-raised);
}
.hero-inner {
  text-align: center;
  flex: 1;
  max-width: 800px;
  width: 100%;
  padding: 0 var(--spacing-md);
}
.hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 8vw, 4rem);
  margin: 0 0 var(--spacing-sm) 0;
  line-height: 1.2;
  color: var(--clr-text);
}
.hero-subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  margin: 0;
  color: var(--clr-secondary);
}
.hero-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Page hero (other pages) */
.page-hero {
  display: flex;
  align-items: center;
  min-height: 40vh;
  padding: var(--spacing-lg) 0;
  background-color: var(--clr-raised);
}
.page-hero .hero-inner {
  text-align: center;
  max-width: 600px;
}
.page-hero .hero-title {
  font-size: clamp(2rem, 6vw, 3rem);
}

/* Sections */
.section {
  padding: var(--spacing-xl) 0;
}
.section-alt {
  background-color: var(--clr-raised);
}
.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.875rem, 5vw, 2.5rem);
  margin: 0 0 var(--spacing-sm) 0;
  text-align: center;
  color: var(--clr-text);
}
.section-intro {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--spacing-lg);
  color: var(--clr-secondary);
}

/* Cards */
.card-grid {
  display: grid;
  gap: var(--spacing-lg);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background-color: var(--clr-raised);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card:hover,
.card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin: 0 0 var(--spacing-sm) 0;
  color: var(--clr-text);
}
.card-text {
  flex-grow: 1;
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--clr-text);
  line-height: 1.5;
}

/* Steps */
.steps {
  display: grid;
  gap: var(--spacing-lg);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.step-number {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 600;
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: var(--spacing-xs);
}
.step-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin: 0 0 var(--spacing-sm) 0;
  color: var(--clr-text);
}
.step-text {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--clr-text);
}

/* FAQ */
.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-sm);
  background-color: var(--clr-raised);
  transition: background-color var(--transition-base);
}
.faq-item[open] {
  background-color: var(--clr-accent);
}
.faq-question {
  padding: var(--spacing-md);
  margin: 0;
  font-family: var(--ff-heading);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--clr-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-question::after {
  content: " #";
  color: var(--clr-accent);
  margin-left: 0.2em;
  font-size: 0.9em;
  transition: transform var(--transition-base);
}
.faq-item[open] .faq-question::after {
  transform: rotate(90deg);
}
.faq-answer {
  padding: 0 var(--spacing-md) var(--spacing-md);
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--clr-text);
  line-height: 1.5;
}

/* CTA band */
.cta-band {
  background-color: var(--clr-accent);
  color: var(--clr-accent-ink);
  text-align: center;
  padding: var(--spacing-xl) 0;
}
.cta-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.875rem, 5vw, 2.5rem);
  margin: 0 0 var(--spacing-sm) 0;
}
.cta-text {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin: 0 0 var(--spacing-lg) 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: background-color var(--transition-base), color var(--transition-base), transform var(--transition-base);
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 1rem;
}
.btn-primary {
  background-color: var(--clr-accent);
  color: var(--clr-accent-ink);
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #9c7a4a;
  color: var(--clr-accent-ink);
}
.btn-secondary {
  background-color: var(--clr-raised);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--clr-border);
  color: var(--clr-text);
}

/* Contact details */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--spacing-sm);
}
.contact-item {
  display: flex;
  align-items: flex-start;
}
.contact-label {
  font-weight: 600;
  color: var(--clr-secondary);
  min-width: 80px;
}
.contact-value {
  color: var(--clr-text);
}

/* Footer */
.site-footer {
  background-color: var(--clr-raised);
  border-top: 1px solid var(--clr-border);
  padding: var(--spacing-lg) 0;
}
.footer-inner {
  display: grid;
  gap: var(--spacing-lg);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.footer-col {
}
.footer-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin: 0 0 var(--spacing-sm) 0;
  color: var(--clr-text);
}
.footer-note {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: var(--clr-secondary);
  line-height: 1.4;
}

/* JS state classes (safe defaults) */
.is-open {
  /* e.g., mobile menu */
}
.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.is-active {
  background-color: var(--clr-accent);
  color: var(--clr-accent-ink);
}
.is-hidden {
  opacity: 0;
  transform: translateY(20px);
}
.is-hidden,
.is-visible {
  transition: opacity var(--transition-base), transform var(--transition-base);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Responsive breakpoints */
@media (min-width: 1200px) {
  .container {
    padding: 0 var(--spacing-xl);
  }
}
@media (max-width: 992px) {
  .nav-list {
    gap: var(--spacing-sm);
  }
  .hero {
    min-height: 50vh;
  }
}
@media (max-width: 600px) {
  .hero {
    min-height: 40vh;
    padding: var(--spacing-lg) 0;
  }
  .section {
    padding: var(--spacing-lg) 0;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-label {
    min-width: auto;
    margin-bottom: var(--spacing-xs);
  }
}

/* General typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: var(--spacing-sm);
}
p {
  margin-top: 0;
  margin-bottom: var(--spacing-sm);
}
a {
  color: var(--clr-accent);
  text-decoration: underline;
}
a:hover,
a:focus {
  color: #9c7a4a;
}
img,
video {
  max-width: 100%;
  height: auto;
}