:root {
  color-scheme: light;
  --bg: #fffaf6;
  --surface: #ffffff;
  --surface-soft: #f8f1ea;
  --text: #231a17;
  --muted: #645853;
  --primary: #8b3f30;
  --primary-dark: #6f2f23;
  --line: #e8dbcf;
  --shadow: 0 12px 30px rgba(35, 26, 23, 0.08);
  --radius-lg: 22px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top right, #fff, var(--bg));
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 250, 246, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-image {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.78rem;
  color: var(--muted);
}

.header-nav {
  display: flex;
  gap: 1.1rem;
  font-size: 0.9rem;
}

.header-nav a {
  color: var(--muted);
}

.header-cta,
.hero-actions,
.cta-actions,
.portfolio-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.72rem 1.2rem;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary,
.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 700;
}

.section-title {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-title h2 {
  margin: 0.5rem 0 0.8rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
}

.section-title p {
  color: var(--muted);
}

.hero,
.why,
.services,
.process,
.packages,
.portfolio,
.testimonials,
.cta,
.contact {
  padding: 4.25rem 0;
}

.hero {
  padding-top: 2.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 2.4rem;
  align-items: start;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 4.6vw, 3.8rem);
  line-height: 1.05;
  margin: 0.65rem 0 1rem;
}

.hero-subtext {
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 1rem;
}

.hero-trust {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-trust span {
  background: var(--surface-soft);
  color: var(--text);
  border: 1px solid var(--line);
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  line-height: 1.35;
}

.hero-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
}

.hero-banner > img:first-child {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-logo {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 98px;
  padding: 0.35rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
}

.trust-strip {
  padding: 0 0 2rem;
}

.trust-strip-grid {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 0;
  overflow: hidden;
}

.trust-strip-grid > div {
  padding: 1.2rem 1.1rem;
  border-right: 1px solid var(--line);
}

.trust-strip-grid > div:last-child {
  border-right: 0;
}

.trust-strip-grid strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.trust-strip-grid p {
  color: var(--muted);
  font-size: 0.88rem;
}

.why,
.testimonials,
.contact {
  background: var(--surface-soft);
}

.why-grid,
.services-grid,
.process-grid,
.package-grid,
.testimonial-grid,
.contact-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.why-card,
.service-card,
.process-card,
.package-card,
.testimonial,
.contact-details,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.why-card h3,
.service-card h3,
.process-card h3,
.package-group-header h3,
.contact h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 0.42rem;
}

.why-card p,
.service-card p,
.process-card p,
.package-note,
.testimonial p,
.contact-details p,
.form-note {
  color: var(--muted);
}

.process-card span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.package-group {
  margin-bottom: 2.5rem;
}

.package-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.badge {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
}

.package-card {
  display: grid;
  gap: 0.8rem;
}

.featured {
  border-color: rgba(139, 63, 48, 0.45);
  background: linear-gradient(180deg, #fff, #fff8f4);
}

.package-header {
  display: grid;
  gap: 0.25rem;
}

.package-header h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.14rem;
  line-height: 1.3;
}

.package-price {
  color: var(--primary);
  font-size: 1.28rem;
  font-weight: 700;
}

.discount {
  align-self: flex-start;
  background: #f2e4da;
  color: var(--primary-dark);
  border-radius: 999px;
  font-size: 0.7rem;
  padding: 0.2rem 0.55rem;
}

.package-card ul {
  list-style: none;
  display: grid;
  gap: 0.3rem;
}

.package-card li::before {
  content: '•';
  margin-right: 0.45rem;
  color: var(--primary);
}

.portfolio {
  background: #1f1d24;
  color: #fff;
}

.portfolio .eyebrow,
.portfolio p {
  color: rgba(255, 255, 255, 0.76);
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.tab-list {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.tab {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  cursor: pointer;
}

.portfolio .tab {
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  border-color: rgba(255, 255, 255, 0.4);
}

.tab.active {
  border-color: var(--primary);
  color: var(--primary);
}

.portfolio .tab.active {
  color: #fff;
  border-color: #fff;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.gallery {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

.portfolio .gallery img {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.portfolio .btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.testimonial .stars {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: #e8b74f;
}

.testimonial .author {
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

.cta-card {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  background: linear-gradient(120deg, #7e3b2f, #5e2a21);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: #fff;
}

.cta-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0.4rem 0 0.6rem;
}

.cta-card .eyebrow,
.cta-card p {
  color: rgba(255, 255, 255, 0.9);
}

.cta-card .btn-outline {
  border-color: #fff;
  color: #fff;
}

.cta-actions {
  justify-self: end;
  justify-content: flex-end;
}

.map-wrap {
  margin-top: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  min-height: 240px;
  border: 0;
}

.map-link {
  margin-top: 0.7rem;
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
}

.form {
  display: grid;
  gap: 0.78rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}

input,
select,
textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.64rem 0.72rem;
  font: inherit;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 63, 48, 0.14);
}

.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 100;
}

.lightbox.show {
  display: flex;
}

.lightbox img {
  max-width: min(900px, 92vw);
  max-height: 84vh;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.mobile-cta {
  position: sticky;
  bottom: 0;
  z-index: 35;
  display: none;
  gap: 0.6rem;
  justify-content: center;
  padding: 0.6rem 0.9rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 246, 0.96);
}

.mobile-cta .btn {
  flex: 1;
}

.carousel-container {
  position: relative;
  margin: 2rem auto 0;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 0.9rem;
  will-change: transform;
}

.carousel-card {
  flex: 0 0 clamp(180px, 24vw, 260px);
}

.carousel-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.carousel-control.prev {
  left: -0.65rem;
}

.carousel-control.next {
  right: -0.65rem;
}

.carousel-control:disabled {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 960px) {
  .header-nav,
  .header-cta {
    display: none;
  }

  .hero,
  .why,
  .services,
  .process,
  .packages,
  .portfolio,
  .testimonials,
  .cta,
  .contact {
    padding: 3.3rem 0;
  }

  .hero-grid,
  .contact-grid,
  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip-grid > div:last-child {
    border-bottom: 0;
  }

  .mobile-cta {
    display: flex;
  }
}

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

  .btn {
    width: 100%;
  }

  .package-group-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-card {
    padding: 1.4rem;
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-self: start;
  }

  .carousel-card {
    flex-basis: 72vw;
  }

  .carousel-control {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
}
