:root {
  --bg: #f5f2eb;
  --surface: #ffffff;
  --text: #1e1a16;
  --muted-text: #49453d;
  --accent: #c59a52;
  --accent-dark: #9b7533;
  --border: #e1d9c9;
  --shadow: 0 10px 30px rgba(30, 26, 22, 0.06);
  --radius: 14px;
  --spacing: 24px;
}

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

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 12% 20%, rgba(198, 164, 105, 0.08), transparent 30%), radial-gradient(circle at 82% 8%, rgba(155, 117, 51, 0.08), transparent 22%), var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", "Times New Roman", serif;
  margin: 0 0 12px;
  line-height: 1.2;
  color: var(--text);
}

p {
  margin: 0 0 12px;
  color: var(--muted-text);
  line-height: 1.7;
}

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

a {
  color: var(--text);
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.section {
  padding: 96px 20px;
}

.section > .container {
  display: grid;
  gap: 28px;
}

.muted {
  background: linear-gradient(180deg, #efede7 0%, #f6f2eb 100%);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

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

.about-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 26px;
  align-items: stretch;
}

.about-copy {
  display: grid;
  gap: 14px;
  align-content: start;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--shadow);
}

.about-proof {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.about-proof ul {
  padding-left: 18px;
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--muted-text);
}

.about-proof h3 {
  margin: 0;
}

.about-right {
  display: grid;
  gap: 14px;
  align-content: start;
}

.about-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #0f0d0b;
  aspect-ratio: 3 / 4;
}

.about-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}

.photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 70%);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
}

.about-card.slim {
  padding: 18px;
  gap: 10px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.four-col {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card,
.about-card,
.panel-card,
.step-card {
  background: linear-gradient(180deg, #ffffff 0%, #faf7f0 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card {
  color: inherit;
  text-decoration: none;
}

.card:hover,
.about-card:hover,
.panel-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 18px 44px rgba(30, 26, 22, 0.12);
}

.eyebrow {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.small {
  font-size: 14px;
  color: var(--muted-text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 246, 243, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(30, 26, 22, 0.08);
  border-color: rgba(225, 217, 201, 0.8);
  background: rgba(247, 244, 237, 0.98);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
  position: relative;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav a[href="#reviews"] {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links a {
  padding: 8px 10px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.nav-cta {
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--accent-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

.hero {
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero-copy {
  display: grid;
  gap: 16px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(32px, 5vw, 46px);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0;
}

.trust-bar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  margin: 0;
}

.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e6d5b8;
  font-weight: 900;
  font-size: 18px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin: 0;
}

.stat-number {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
}

.stat-label {
  font-size: 14px;
  color: var(--muted-text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: var(--shadow);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(30, 26, 22, 0.14);
}

.btn.ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}

.btn.full {
  width: 100%;
}

.proof {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  margin: 0;
}

.check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e6d5b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.hero-panel .panel-card {
  background: linear-gradient(180deg, #ffffff 0%, #f2ede3 100%);
}

.panel-img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 14px;
  object-fit: cover;
  max-height: 320px;
}

.panel-title {
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.metric-number {
  font-size: 30px;
  font-weight: 800;
  display: block;
  color: var(--text);
}

.metric-label {
  font-size: 14px;
  color: var(--muted-text);
}

.card-grid ul,
.about-card ul,
.services-grid ul {
  padding-left: 18px;
  margin: 0;
  color: var(--muted-text);
  display: grid;
  gap: 10px;
}

.about-image img,
.case-image img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about-image {
  align-self: stretch;
  position: relative;
}

.case-image {
  align-self: center;
}

.about-image figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(30, 26, 22, 0.8);
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: var(--shadow);
}

.services-grid {
  align-items: stretch;
}

.card.emphasized {
  border: 1px solid var(--accent);
  background: #fffaf2;
}

.tag {
  display: inline-block;
  background: #e6d5b8;
  color: var(--text);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
}

.tag.secondary {
  background: #e0e4ec;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 14px auto 0;
  max-width: 1100px;
  justify-items: stretch;
  align-items: stretch;
}

.step-card {
  display: grid;
  gap: 8px;
  align-content: start;
  height: 100%;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e6d5b8;
  font-weight: 800;
}

.broken {
  color: #7a3b3b;
  font-weight: 600;
}

.fix {
  color: #2d4737;
  font-weight: 600;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 10px;
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-list details[open] {
  border-color: var(--accent);
  box-shadow: 0 18px 44px rgba(30, 26, 22, 0.1);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin-top: 8px;
}

.contact form {
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.form-group {
  display: grid;
  gap: 6px;
  margin: 0;
}

label {
  font-weight: 700;
  color: var(--text);
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: inherit;
  font-size: 15px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
}

.error {
  color: #7a3b3b;
  font-size: 13px;
  min-height: 16px;
}

.has-error input,
.has-error textarea,
.has-error select {
  border-color: #7a3b3b;
}

.thank-you {
  background: #e6f1e8;
  border: 1px solid #b7d1be;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.proof-callout {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: var(--shadow);
}

.form-banner {
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  margin-bottom: 12px;
  font-weight: 700;
}

.form-banner.success {
  background: #e9f2e7;
  border-color: #b6d1b3;
  color: #1f3b2d;
}

.form-banner.error {
  background: #f6eaea;
  border-color: #d7b4b4;
  color: #5f2f2f;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.footer {
  border-top: 1px solid var(--border);
  background: #f0eee7;
  padding: 20px;
}

.footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 12px;
}

.nav-links a:focus-visible,
.footer a:focus-visible,
.btn:focus-visible {
  outline-offset: 3px;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 28px;
  align-items: start;
}

.reviews-summary {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-meta-card {
  padding: 18px;
}

.review-meta-card .venue-name {
  font-weight: 800;
  font-size: 18px;
}

.review-meta-card .review-count {
  font-weight: 700;
  color: var(--text);
  margin-top: 6px;
}

.review-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.review-gallery img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 160px;
}

.review-rotator {
  background: #0f172a;
  color: #f8fafc;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
  position: relative;
  overflow: hidden;
}

.review-rotator-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.review-stars {
  font-size: 24px;
  letter-spacing: 2px;
}

.review-slides {
  min-height: 180px;
  position: relative;
}

.review-slide {
  display: none;
  flex-direction: column;
  gap: 10px;
}

.review-slide.is-active {
  display: flex;
}

.review-quote {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.review-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #cbd5e1;
}

.review-meta-row .venue-tag {
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  color: #e2e8f0;
}

.review-link {
  color: #a5b4fc;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.review-rating {
  color: #fbbf24;
  font-weight: 800;
  letter-spacing: 2px;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.review-nav {
  background: #1f2937;
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.review-nav:hover {
  background: #334155;
  transform: translateY(-1px);
}

.review-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex: 1;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.review-dot.is-active {
  background: #fbbf24;
  transform: scale(1.1);
}

.review-disclaimer {
  margin-top: 6px;
  font-size: 13px;
  color: #cbd5e1;
}

.review-fallback {
  margin-top: 8px;
  color: #fecdd3;
  font-weight: 700;
}

.review-rotator .eyebrow {
  color: #cbd5e1;
}

.contact .container {
  grid-template-columns: 1fr;
}

.booking-embed {
  margin: 20px auto 0;
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: 900px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.booking-frame {
  margin-top: 6px;
  border: 0;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  box-shadow: none;
  background: #fff;
}

.booking-frame iframe {
  width: 100%;
  height: 840px;
  min-height: 840px;
  border: 0;
  display: block;
}

.contact-actions {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(260px, 1fr);
  gap: 18px;
}

.contact-form-card {
  display: grid;
  gap: 12px;
}

/* Inline CTAs and section bridges */
.text-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--accent-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.text-cta:hover {
  color: #6e511f;
}

.section-cta {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
}

/* Floating CTA for mobile */
.floating-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 30;
  box-shadow: 0 16px 40px rgba(30, 26, 22, 0.18);
  display: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-cta.is-hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

/* Scroll reveal */
[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Blog pages */
.blog-hero {
  display: grid;
  gap: 12px;
}

.blog-meta {
  font-size: 14px;
  color: var(--muted-text);
  font-weight: 600;
}

.blog-body {
  margin-top: 10px;
}

.blog-body article {
  display: grid;
  gap: 14px;
}

.blog-body article p,
.blog-body article li {
  max-width: 68ch;
}

.blog-body h2 {
  margin-top: 32px;
}

.blog-body h3 {
  margin-top: 18px;
}

.blog-cta {
  margin-top: 28px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .floating-cta {
    display: inline-flex;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 62px;
    right: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
    gap: 8px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .review-rotator {
    order: -1;
  }

  .hero {
    padding-top: 80px;
  }

  .about-feature {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 60px 16px;
  }

  .card,
  .about-card,
  .panel-card,
  .step-card {
    padding: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .booking-frame iframe {
    height: 980px;
    min-height: 980px;
  }
}
