html,
body {
  margin: 0;
  padding: 0;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #2b2b2b;
  background-color: #fffdf6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  line-height: 1.6;
  hyphens: auto;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  color: #1f1a11;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 0.75rem;
}

iframe,
img {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 196, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.5rem;
  gap: 0.75rem;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-wrap img {
  border-radius: 999px;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.nav-toggle {
  background: none;
  border: 0;
  padding: 0.25rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.18rem;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #1f1a11;
}

.main-nav {
  position: fixed;
  inset: 0 0 auto 0;
  top: 56px;
  background: rgba(255, 249, 196, 0.98);
  transform: translateY(-120%);
  transition: transform 0.25s ease;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.main-nav a {
  padding: 0.5rem 0;
  display: inline-flex;
  font-weight: 600;
}

.main-nav a.active {
  color: #b0871c;
}

body.nav-open .main-nav {
  transform: translateY(0);
}

.header-cta {
  display: none;
}

.hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
  background: radial-gradient(circle at top left, #ffdde7 0, #fff9c4 34%, #fffdf6 72%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.25rem;
}

.hero-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b0871c;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: 1.8rem;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37, #ffb6c1);
  color: #1f1a11;
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.45);
}

.btn-outline {
  border-color: #d4af37;
  color: #1f1a11;
  background: rgba(255, 249, 196, 0.8);
}

.btn-light {
  background: #fffdf6;
  color: #1f1a11;
  border-color: rgba(255, 255, 255, 0.8);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.hero-media {
  align-self: stretch;
}

.hero-image-card {
  max-width: 360px;
  margin: 0 auto;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #fff;
}

.floating-balloons {
  position: absolute;
  inset: auto -20% 0 auto;
  height: 180px;
  pointer-events: none;
  opacity: 0.5;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 205, 210, 0.9) 0, transparent 55%),
    radial-gradient(circle at 60% 40%, rgba(212, 175, 55, 0.8) 0, transparent 55%),
    radial-gradient(circle at 90% 70%, rgba(255, 249, 196, 0.9) 0, transparent 60%);
  animation: floatBalloons 24s ease-in-out infinite alternate;
}

.section {
  padding: 3.25rem 0;
}

.section-light {
  background: #fffbf0;
}

.section-accent {
  background: linear-gradient(135deg, #d4af37, #ffdde7);
  color: #1f1a11;
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.section-header.align-left {
  text-align: left;
  margin-left: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  color: #b0871c;
  margin-bottom: 0.75rem;
}

.card-list {
  padding-left: 1.1rem;
  margin: 0.5rem 0 0;
}

.photo-zones {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: flex-start;
}

.feature-list i {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fffbf0;
  color: #b0871c;
}

.photo-zones-media {
  border-radius: 1.5rem;
  overflow: hidden;
}

.gallery-snippet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.gallery-snippet-item {
  background: #ffffff;
  border-radius: 1.25rem;
  overflow: hidden;
}

.gallery-snippet-item figcaption {
  padding: 0.9rem 1rem 1.1rem;
  font-size: 0.95rem;
}

.gallery-snippet-cta {
  margin-top: 1.8rem;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.review-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
}

.review-stars {
  color: #d4af37;
  margin-bottom: 0.35rem;
}

.review-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #b0871c;
}

.text-link.light {
  color: #1f1a11;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.process-step {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.4rem 1.35rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.04);
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 205, 210, 0.6);
  color: #1f1a11;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.page-hero {
  padding: 3.25rem 0 2.25rem;
  background: radial-gradient(circle at top left, #ffdde7 0, #fff9c4 38%, #fffdf6 80%);
}

.page-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b0871c;
  margin-bottom: 0.55rem;
}

.page-hero h1 {
  font-size: 1.7rem;
}

.page-subtitle {
  max-width: 34rem;
}

.service-layout {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: flex-start;
}

.service-layout-reverse {
  flex-direction: column-reverse;
}

.service-media {
  border-radius: 1.5rem;
  overflow: hidden;
}

.service-list {
  padding-left: 1.2rem;
  margin: 0.75rem 0 0.75rem;
}

.pricing-intro {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.75rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.pricing-card {
  background: #ffffff;
  border-radius: 1.3rem;
  padding: 1.4rem 1.3rem 1.6rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
}

.pricing-card-highlight {
  background: linear-gradient(135deg, #fff9c4, #ffdde7);
}

.pricing-from {
  font-weight: 700;
  color: #b0871c;
}

.pricing-card ul {
  padding-left: 1.1rem;
  margin: 0.75rem 0 0;
}

.pricing-note {
  font-size: 0.95rem;
  margin-top: 1.3rem;
  text-align: center;
}

.centered {
  text-align: center;
  margin-top: 1.4rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.filter-btn {
  border-radius: 999px;
  border: 1px solid rgba(31, 26, 17, 0.16);
  padding: 0.45rem 0.95rem;
  background: #fffdf6;
  font-size: 0.9rem;
  cursor: pointer;
}

.filter-btn.active {
  background: #d4af37;
  color: #1f1a11;
  border-color: #d4af37;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.gallery-item {
  margin: 0;
  background: #ffffff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
}

.gallery-item figcaption {
  padding: 0.9rem 1rem 1.1rem;
  font-size: 0.95rem;
}

.gallery-note {
  font-size: 0.95rem;
  margin-top: 1.25rem;
}

.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-form-wrap,
.contact-info {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.6rem 1.4rem 1.7rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-top: 0.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  border-radius: 0.75rem;
  border: 1px solid rgba(31, 26, 17, 0.12);
  padding: 0.6rem 0.7rem;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fffef9;
}

.form-group-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.5rem;
}

.form-group-checkbox input[type="checkbox"] {
  margin-top: 0.2rem;
}

.form-note {
  font-size: 0.9rem;
  margin-top: 0.9rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.contact-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 0.5rem;
}

.contact-list i {
  margin-top: 0.15rem;
  color: #b0871c;
}

.map-embed-wrap {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.08);
}

.map-embed-wrap iframe {
  width: 100%;
  min-height: 320px;
}

.thankyou-content {
  display: flex;
  justify-content: center;
}

.thankyou-card {
  max-width: 540px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 1.75rem;
  padding: 2rem 1.75rem 2.1rem;
  text-align: center;
}

.thankyou-icon {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.9rem;
  background: rgba(212, 175, 55, 0.14);
  color: #b0871c;
  font-size: 1.5rem;
}

.thankyou-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  align-items: center;
}

.legal-page h2 {
  margin-top: 1.4rem;
}

.site-footer {
  background: #1f1a11;
  color: #f6f2e7;
  padding-top: 2.2rem;
  margin-top: 2.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 18rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.footer-col h3 {
  color: #fff9c4;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.95rem;
}

.footer-col a {
  color: #f6f2e7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 1.3rem;
  padding: 0.9rem 0 1.2rem;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.85rem;
}

.footer-domain {
  opacity: 0.8;
}

.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0, rgba(255, 255, 255, 0.85) 40%, transparent 80%);
  transform: translateX(-120%);
  animation: shimmerMove 3.8s infinite;
}

.shimmer-border {
  position: relative;
  background-image: linear-gradient(135deg, rgba(212, 175, 55, 0.5), rgba(255, 205, 210, 0.8));
  padding: 20px;
}

.shimmer-border>img,
.shimmer-border>div {
  border-radius: inherit;
}

.shimmer-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.6), transparent 55%);
  opacity: 0.5;
  pointer-events: none;
}

.shimmer-border img {
  border-radius: inherit;
}

.shimmer-border>img {
  position: relative;
}

.shimmer-border::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
}

.shimmer-border>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shimmer-border {
  background-clip: padding-box;
}

@keyframes shimmerMove {
  0% {
    transform: translateX(-120%);
  }

  60% {
    transform: translateX(120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@keyframes floatBalloons {
  0% {
    transform: translateY(20px);
  }

  50% {
    transform: translateY(-16px);
  }

  100% {
    transform: translateY(12px);
  }
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-media {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .hero-text {
    flex: 1.1;
  }

  .hero-image-card {
    max-width: 380px;
  }

  .gallery-snippet-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .header-inner {
    padding-inline: 0;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    transform: none;
    background: transparent;
  }

  .main-nav ul {
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 1.25rem;
  }

  .main-nav a {
    padding: 0.25rem 0;
    font-size: 0.96rem;
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.9rem;
    border: 1px solid rgba(31, 26, 17, 0.12);
    background: #fffdf6;
  }

  .hero {
    padding: 5.1rem 0 3.8rem;
  }

  .section {
    padding: 3.75rem 0;
  }

  .card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .photo-zones {
    flex-direction: row;
    align-items: center;
  }

  .photo-zones-text {
    flex: 1.1;
  }

  .photo-zones-media {
    flex: 0.9;
  }

  .cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .service-layout {
    flex-direction: row;
    align-items: center;
  }

  .service-layout-reverse {
    flex-direction: row-reverse;
  }

  .service-text {
    flex: 1.1;
  }

  .service-media {
    flex: 1;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-layout {
    flex-direction: row;
  }

  .contact-form-wrap,
  .contact-info {
    flex: 1;
  }

  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .thankyou-actions {
    flex-direction: row;
  }
}