:root {
  --background: #ffffff;
  --foreground: #334155;
  --card: #ffffff;
  --primary: #1f2937;
  --primary-light: #4b5b70;
  --primary-foreground: #fffbeb;
  --secondary: #fbf3df;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --accent: #e3bd6d;
  --accent-foreground: #1f2937;
  --border: #e2e8f0;
  --shadow-elegant: 0 10px 40px -10px rgba(31, 41, 55, 0.2);
  --shadow-gold: 0 5px 20px -5px rgba(227, 189, 109, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--foreground);
  background: var(--background);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.serif,
h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
}

.container {
  width: min(100% - 2rem, 80rem);
  margin: 0 auto;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(8px);
}

.nav-inner {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 500;
}

.nav-links a,
.footer a {
  transition: color 0.2s ease;
}

.nav-links a:hover,
.footer a:hover,
.contact-link:hover {
  color: var(--accent);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.nav-phone .inline-icon {
  width: 1rem;
  height: 1rem;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 0.375rem;
  background: transparent;
  color: var(--primary);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 1.45rem;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.main-offset {
  padding-top: 5rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 5rem);
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  color: var(--primary-foreground);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after,
.page-hero {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.92), rgba(75, 91, 112, 0.9));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(31, 41, 55, 0.7), rgba(31, 41, 55, 0.3));
}

.hero-content {
  max-width: 64rem;
  padding: 0 1rem;
  transform: translateY(1rem);
}

.hero h1,
.page-hero h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
}

.hero .lead,
.page-hero .lead {
  max-width: 56rem;
  margin: 0 auto 1rem;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.hero .sublead {
  margin: 0 auto 2rem;
  color: rgba(255, 251, 235, 0.82);
  font-size: 1.1rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--secondary);
}

.page-hero {
  padding: 5rem 0;
  color: var(--primary-foreground);
  text-align: center;
}

.section-head {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-head h2,
.section-title {
  margin: 0 0 1.5rem;
  color: var(--primary);
  font-size: clamp(2.25rem, 5vw, 3rem);
  line-height: 1.1;
}

.section-head p,
.large-text {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 1.25rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.card.section-alt {
  background: var(--secondary);
}

.card-pad {
  padding: 2rem;
}

.card:hover {
  box-shadow: var(--shadow-elegant);
}

.icon {
  width: 4rem;
  height: 4rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  background: rgba(227, 189, 109, 0.1);
  color: var(--accent);
}

.icon svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3,
.card h4 {
  margin: 0 0 0.85rem;
  color: var(--primary);
}

.card h3 {
  font-size: 1.5rem;
}

.card p {
  margin: 0;
  color: var(--muted-foreground);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  border: 2px solid transparent;
  padding: 0.65rem 2rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button-primary {
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: var(--shadow-gold);
}

.button-primary:hover {
  background: #d9ad55;
}

.button-outline {
  border-color: var(--primary);
  color: var(--primary);
}

.button-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.button-light {
  background: var(--background);
  border-color: var(--background);
  color: var(--foreground);
}

.button-light:hover {
  background: var(--foreground);
  color: var(--background);
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  gap: 1.5rem 2.5rem;
  margin-top: 2.25rem;
  color: rgba(255, 251, 235, 0.9);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
}

.contact-strip a:last-child {
  grid-column: 1 / -1;
  justify-self: center;
}

.contact-strip a,
.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-strip .inline-icon {
  width: 1.8rem;
  height: 1.8rem;
}

.inline-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.6rem;
}

.check-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 1.1rem;
}

.price {
  color: var(--accent);
  font-weight: 700;
}

.process-list {
  display: grid;
  gap: 1rem;
}

.process-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.process-item > span {
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-foreground);
  font-weight: 700;
}

.process-item h4 {
  margin: 0 0 0.2rem;
  color: var(--foreground);
  font-size: 1rem;
}

.process-item p {
  margin: 0;
}

.photo-grid img,
.gallery-card img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-elegant);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}

.gallery-card span {
  position: absolute;
  inset: auto 0 0;
  padding: 1.5rem;
  color: var(--primary-foreground);
  background: linear-gradient(180deg, transparent, rgba(31, 41, 55, 0.8));
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.badges img {
  width: 125px;
  height: 125px;
  object-fit: contain;
}

.venue-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.venue-list p {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin: 0;
  padding: 0.85rem;
  border-radius: 0.5rem;
  background: var(--secondary);
  color: var(--foreground);
  font-weight: 600;
}

.venue-list .inline-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}

.service-state-grid .card {
  text-align: center;
}

.feature-band {
  padding: 2rem;
  border-radius: 0.5rem;
  background: var(--secondary);
  border: 1px solid var(--border);
}

.quote {
  text-align: center;
  box-shadow: var(--shadow-elegant);
}

.quote blockquote {
  margin: 0 0 1rem;
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-style: italic;
  line-height: 1.25;
}

.stars {
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.stats .card {
  text-align: center;
}

.stat {
  margin: 0 0 0.5rem;
  color: var(--accent);
  font-size: 3rem;
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 1fr);
  gap: 3rem;
}

.form-grid {
  display: grid;
  gap: 1.5rem;
}

.form-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--foreground);
  font-size: 0.9rem;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  background: var(--background);
  color: var(--foreground);
  padding: 0.75rem;
  font: inherit;
}

textarea {
  min-height: 7rem;
  resize: vertical;
}

.form-message {
  display: none;
  padding: 0.85rem 1rem;
  border-radius: 0.375rem;
  background: var(--secondary);
  color: var(--primary);
}

.form-message.is-visible {
  display: block;
}

.contact-info-list {
  display: grid;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-info-icon {
  width: 5.75rem;
  height: 5.75rem;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(227, 189, 109, 0.1);
  color: var(--accent);
}

.contact-info-icon .inline-icon {
  width: 2rem;
  height: 2rem;
}

.contact-info-item h4 {
  margin: 0 0 0.4rem;
  color: var(--foreground);
  font-size: 1.35rem;
}

.contact-info-item p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 1.35rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.gradient-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--primary-foreground);
}

.gradient-card h3,
.gradient-card p {
  color: inherit;
}

.footer {
  background: var(--primary);
  color: var(--primary-foreground);
}

.footer-inner {
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2rem;
}

.footer h3,
.footer h4 {
  margin: 0 0 1rem;
}

.footer p,
.footer a {
  color: rgba(255, 251, 235, 0.78);
}

.footer ul {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer .icon-link {
  align-items: center;
  gap: 0.75rem;
}

.footer .inline-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: currentColor;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 251, 235, 0.2);
  color: rgba(255, 251, 235, 0.7);
  text-align: center;
}

.footer-bottom a {
  color: rgba(255, 251, 235, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1024px) {
  .grid-4,
  .grid-3,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-phone {
    display: none;
  }
}

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

  .nav-links {
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    background: var(--background);
    border-bottom: 1px solid var(--border);
  }

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

  .nav-links a {
    padding: 0.8rem 0;
  }

  .grid-4,
  .grid-3,
  .venue-list,
  .grid-2,
  .contact-layout,
  .form-two,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .card-pad {
    padding: 1.5rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-content {
    transform: none;
  }

  .contact-strip {
    grid-template-columns: 1fr;
    font-size: 1.25rem;
  }

  .contact-strip a:last-child {
    grid-column: auto;
  }

  .contact-info-item {
    gap: 1rem;
  }

  .contact-info-icon {
    width: 4rem;
    height: 4rem;
  }

  .contact-info-icon .inline-icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .contact-info-item h4,
  .contact-info-item p {
    font-size: 1.05rem;
  }
}
