:root {
  --bg: #fcfaf6;
  --bg-soft: #f4eef5;
  --surface: #fffdf9;
  --surface-strong: #f2eaf3;
  --text: #332936;
  --muted: #766879;
  --line: #e5d7e6;
  --accent: #4b214f;
  --accent-strong: #713279;
  --shadow: 0 12px 24px rgba(80, 52, 30, 0.08);
  --radius: 18px;
  --container: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--text);
  background: var(--bg);
}

body.nav-open {
  overflow: hidden;
}

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

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

svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 252, 248, 0.94);
  border-bottom: 1px solid rgba(75, 33, 79, 0.12);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  width: min(calc(100% - 24px), 1520px);
  margin: 0 auto;
}

.brand,
h1,
h2,
h3,
h4 {
  font-family: "Libre Baskerville", serif;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.site-nav {
  display: flex;
  gap: 2.25rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(75, 33, 79, 0.18);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.92);
  color: var(--accent);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-nav a {
  color: var(--muted);
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(29, 18, 9, 0.5), rgba(29, 18, 9, 0.58)),
    linear-gradient(120deg, rgba(55, 33, 17, 0.2), rgba(198, 138, 52, 0.12)),
    url("assets/hero-cover.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(36, 24, 14, 0.2), rgba(36, 24, 14, 0.48)),
    radial-gradient(circle at center, transparent 25%, rgba(17, 10, 5, 0.22) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 3rem 0;
}

.hero-kicker {
  margin: 0 0 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 245, 235, 0.78);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 1.02;
}

.hero-text {
  margin: 1.25rem auto 0;
  max-width: 720px;
  font-size: clamp(1.3rem, 2vw, 2rem);
  color: rgba(255, 248, 242, 0.92);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 2rem;
  border-radius: 10px;
  border: 0;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(116, 73, 33, 0.18);
}

.button-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 253, 249, 0.96);
}

section {
  padding: 5.75rem 0;
}

.section-tinted {
  background: var(--bg-soft);
}

.section-heading {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 3.75rem;
}

.section-heading h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
}

.section-heading h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 4.2vw, 4rem);
}

.section-heading p {
  margin: 0;
  font-size: clamp(1.15rem, 1.9vw, 1.6rem);
  color: var(--muted);
}

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

.service-card {
  padding: 2.35rem 2rem 2rem;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.icon-badge {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
}

.emoji-icon {
  font-size: 2rem;
  line-height: 1;
}

.service-card h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
}

.service-card p,
.cta-box p,
.quote-panel p,
.contact-details p,
.contact-form label span,
.site-footer p {
  color: var(--muted);
  line-height: 1.55;
}

.carousel-section {
  position: relative;
  background:
    radial-gradient(circle at top, rgba(208, 145, 52, 0.08), transparent 35%),
    var(--bg);
  padding-bottom: 3rem;
}

.carousel-section .section-heading {
  margin-bottom: 3.75rem;
}

.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.carousel-track {
  position: relative;
  flex: 0 1 100%;
  width: min(100%, 1200px);
  min-height: clamp(320px, 58vh, 720px);
}

.carousel-slide {
  display: none;
  justify-content: center;
  align-items: center;
  min-height: clamp(320px, 58vh, 720px);
}

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

.carousel-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: clamp(320px, 58vh, 720px);
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(80, 52, 30, 0.12);
}

.carousel-control {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.96);
  color: var(--accent);
  box-shadow: 0 10px 18px rgba(80, 52, 30, 0.1);
  cursor: pointer;
}

.carousel-control span {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(75, 33, 79, 0.24);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.carousel-dot.is-active {
  background: var(--accent);
  transform: scale(1.2);
}

.cta-section {
  background: var(--bg-soft);
  border-top: 1px solid #e6d8e8;
}

.cta-box {
  text-align: center;
  max-width: 780px;
  padding: 0;
}

.cta-box h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.cta-box p {
  margin: 0 auto 2rem;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.pricing-group + .pricing-group {
  margin-top: 3.5rem;
}

.pricing,
.contact {
  background: var(--bg);
}

.page-hero {
  padding-bottom: 2rem;
  background: var(--bg);
}

.pricing-page {
  padding-top: 1rem;
}

.pricing-narrow,
.contact-narrow {
  width: min(calc(100% - 48px), 980px);
}

.contact-page {
  padding-top: 1rem;
}

.thanks-section {
  min-height: 62vh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at top, rgba(75, 33, 79, 0.08), transparent 35%),
    var(--bg);
}

.thanks-card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.thanks-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
}

.thanks-icon svg {
  width: 36px;
  height: 36px;
}

.thanks-card h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.thanks-card p {
  max-width: 560px;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.thanks-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.pricing h3,
.contact h3 {
  margin: 0 0 1.8rem;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.price-card,
.menu-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.65rem 1.8rem;
  background: rgba(255, 253, 249, 0.82);
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(80, 52, 30, 0.04);
}

.price-card span,
.menu-card span {
  font-size: 1.15rem;
  font-weight: 600;
}

.price-card strong,
.menu-card strong {
  color: var(--accent);
  font-size: 1.35rem;
  font-family: "Libre Baskerville", serif;
}

.menu-list {
  display: grid;
  gap: 1.25rem;
}

.quote-panel {
  max-width: 840px;
  margin: 3.75rem auto 0;
  padding: 2.8rem 2rem;
  text-align: center;
  background: var(--surface-strong);
  border-radius: 16px;
}

.quote-panel h3 {
  margin-bottom: 1rem;
}

.quote-panel p {
  margin: 0 auto 1.75rem;
  font-size: 1.1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 4rem;
  align-items: start;
}

.contact-details {
  padding-top: 1rem;
}

.detail-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.detail-icon {
  flex: 0 0 24px;
  height: 24px;
  color: var(--accent);
}

.detail-item h4 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.detail-item p {
  margin: 0;
  font-size: 1rem;
}

.contact-form {
  display: grid;
  gap: 1.35rem;
}

.contact-form h3 {
  margin-bottom: 0.5rem;
}

.form-feedback {
  display: none;
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  background: rgba(75, 33, 79, 0.1);
  color: var(--accent);
  font-weight: 700;
}

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

.contact-form label {
  display: grid;
  gap: 0.55rem;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.radio-group legend {
  flex: 0 0 100%;
  margin-bottom: 0.1rem;
  color: var(--text);
  font-weight: 700;
}

.radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 253, 249, 0.92);
  cursor: pointer;
}

.radio-group input {
  accent-color: var(--accent);
}

.contact-form label span {
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 253, 249, 0.92);
  color: var(--text);
  font: inherit;
}

.contact-form input {
  min-height: 50px;
}

.contact-form .radio-group input {
  width: 1rem;
  height: 1rem;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.contact-form .radio-group label span {
  color: var(--text);
  font-weight: 600;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(75, 33, 79, 0.2);
  border-color: rgba(75, 33, 79, 0.48);
}

.button-submit {
  width: 100%;
}

.site-footer {
  padding: 3.2rem 0 1.3rem;
  background: #3f1845;
  color: #fff8f0;
}

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

.site-footer h3 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

.site-footer p {
  margin: 0.4rem 0;
  color: rgba(255, 248, 240, 0.92);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 32px;
  height: 32px;
  color: #fff8f0;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 248, 240, 0.24);
  text-align: center;
}

@media (max-width: 1100px) {
  .card-grid,
  .price-grid,
  .footer-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 640px;
  }

  .card-grid {
    gap: 1.5rem;
  }

  .carousel-track {
    width: min(100%, 980px);
  }

  .contact-details {
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    position: relative;
    min-height: 72px;
    padding: 0.8rem 0;
  }

  .brand {
    max-width: calc(100% - 68px);
    font-size: 1rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
    background: rgba(255, 252, 248, 0.98);
    border: 1px solid rgba(75, 33, 79, 0.12);
    border-radius: 18px;
    box-shadow: 0 18px 34px rgba(80, 52, 30, 0.14);
  }

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

  .site-nav a {
    padding: 0.95rem 1rem;
    border-radius: 12px;
    font-size: 1rem;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(75, 33, 79, 0.08);
  }

  .hero {
    min-height: 500px;
    background-position: 58% center;
  }

  .hero-content {
    padding: 2.5rem 0;
  }

  .hero-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

  .hero-text {
    margin-top: 1rem;
    font-size: 1.1rem;
    line-height: 1.45;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
  }

  .hero-actions .button,
  .cta-box .button,
  .quote-panel .button {
    width: min(100%, 320px);
  }

  .carousel {
    gap: 0.75rem;
  }

  .carousel-track {
    width: 100%;
  }

  .carousel-image {
    max-height: clamp(300px, 52vh, 620px);
    border-radius: 18px;
  }

  .carousel-control {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  section {
    padding: 4.25rem 0;
  }

  .section-heading {
    margin-bottom: 2.5rem;
  }

  .section-heading p {
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .service-card,
  .quote-panel {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .price-card,
  .menu-card,
  .detail-item {
    gap: 0.75rem;
  }

  .price-card,
  .menu-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
  }

  .price-card span,
  .menu-card span {
    font-size: 1.05rem;
  }

  .price-card strong,
  .menu-card strong {
    font-size: 1.2rem;
  }

  .pricing-narrow,
  .contact-narrow {
    width: min(calc(100% - 28px), 980px);
  }

  .contact-layout {
    gap: 2.2rem;
  }

  .contact-form {
    gap: 1rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
  }

  .site-footer {
    padding-top: 2.6rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .footer-bottom {
    margin-top: 1.8rem;
    padding-top: 1.4rem;
  }
}

@media (max-width: 420px) {
  .container,
  .pricing-narrow,
  .contact-narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero {
    min-height: 460px;
  }

  .carousel {
    display: block;
  }

  .carousel-track {
    width: 100%;
    margin: 0 auto;
  }

  .carousel-image {
    max-height: clamp(240px, 42vh, 420px);
    border-radius: 16px;
  }

  .carousel-control {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
  }

  .carousel-control.prev {
    left: 10px;
  }

  .carousel-control.next {
    right: 10px;
  }

  .hero-content {
    padding: 2rem 0;
  }

  .button {
    min-height: 52px;
    padding: 0 1.25rem;
  }

  section {
    padding: 3.6rem 0;
  }

  .site-nav {
    top: calc(100% + 8px);
  }

  .service-card {
    padding-top: 1.9rem;
  }
}
