﻿:root {
  --cream: #faf5f1;
  --cream-2: #f3e9e3;
  --ink: #33241e;
  --muted: #6d5950;
  --gold: #b8876d;
  --gold-deep: #895f4c;
  --line: #e8d9d0;
  --wa: #25d366;
  --ig1: #f9ce34;
  --ig2: #ee2a7b;
  --ig3: #6228d7;
  --radius: 20px;
  --shadow: 0 16px 40px rgba(103, 72, 57, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% -15%, rgba(184, 135, 109, 0.2), transparent 30%),
    radial-gradient(circle at 90% 5%, rgba(215, 176, 158, 0.17), transparent 34%),
    linear-gradient(180deg, #fffdfb 0%, var(--cream) 46%, var(--cream-2) 100%);
}

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

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

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.86), rgba(255, 247, 241, 0.66)),
    url("assets/images/IMG_6808.PNG") center top/cover no-repeat;
  opacity: 0.22;
}

.hero-ghosts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ghost {
  position: absolute;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(184, 135, 109, 0.2);
  opacity: 0.2;
  filter: saturate(0.9) blur(0.2px);
  box-shadow: 0 20px 45px rgba(70, 44, 33, 0.18);
}

.ghost-left {
  width: clamp(140px, 18vw, 240px);
  left: 3%;
  top: 21%;
  transform: rotate(-7deg);
}

.ghost-left-bottom {
  width: clamp(130px, 16vw, 210px);
  left: 10%;
  top: 55%;
  transform: rotate(-4deg);
}

.ghost-right {
  width: clamp(140px, 17vw, 230px);
  right: 4%;
  top: 20%;
  transform: rotate(7deg);
}

.ghost-bottom {
  width: clamp(125px, 15vw, 200px);
  right: 10%;
  bottom: 14%;
  transform: rotate(-6deg);
  opacity: 0.14;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  backdrop-filter: blur(10px);
}

.brand img {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  border: 1px solid rgba(184, 135, 109, 0.34);
  box-shadow: 0 8px 28px rgba(120, 83, 64, 0.14);
}

.top-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-links a {
  text-decoration: none;
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.top-links a:hover {
  color: #6f4b3b;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px 0 72px;
  max-width: 900px;
}

.hero-seo-line {
  margin: 0 auto 22px;
  max-width: 70ch;
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 0.94rem;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-family: "Great Vibes", cursive;
  font-size: clamp(3rem, 9.5vw, 5.6rem);
  line-height: 1.12;
  color: var(--gold-deep);
  margin-bottom: 18px;
  font-weight: 400;
}

.intro-text {
  margin: 6px auto 0;
  max-width: 66ch;
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.14rem);
}

.concept-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.concept-list li {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(251, 244, 239, 0.86));
  border: 1px solid rgba(184, 135, 109, 0.26);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.92rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cta {
  border: 0;
  text-decoration: none;
  color: #fff;
  padding: 12px 18px;
  border-radius: 13px;
  font-weight: 800;
  font-size: 0.96rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.cta:hover {
  transform: translateY(-2px);
  filter: saturate(1.06);
}

.cta.wa {
  background: linear-gradient(135deg, #30d875, #18b85d);
}

.cta.ig {
  background: linear-gradient(135deg, var(--ig1), var(--ig2) 52%, var(--ig3));
}

.section {
  padding: clamp(52px, 8vw, 86px) 0;
}

.section-head {
  margin-bottom: 22px;
}

.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 5vw, 3rem);
  color: #2f211c;
  position: relative;
}

.section-head h2::after {
  content: "";
  display: block;
  width: 76px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.center {
  text-align: center;
}

.service-grid,
.why-grid {
  display: grid;
  gap: 14px;
  justify-content: center;
}

.service-grid article,
.why-grid article {
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 135, 109, 0.09), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(251, 244, 239, 0.78));
  border: 1px solid rgba(184, 135, 109, 0.22);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 14px 30px rgba(103, 72, 57, 0.08);
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-grid article:hover,
.why-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(103, 72, 57, 0.13);
}

.service-grid h3,
.why-grid h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
  color: #3a2923;
}

.service-grid p,
.why-grid p {
  margin: 0;
  color: var(--muted);
}

.strip-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 0%, rgba(184, 135, 109, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 252, 249, 0.86), rgba(251, 242, 236, 0.92));
}

.photo-strip {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.strip-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: slide 56s linear infinite;
  padding: 8px 0 2px;
}

.strip-track img {
  width: clamp(170px, 27vw, 280px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(184, 135, 109, 0.25);
  box-shadow: 0 12px 26px rgba(95, 64, 49, 0.16);
}

.gallery-note {
  text-align: center;
  padding-top: 14px;
}

.gallery-note p {
  margin: 0 auto;
  max-width: 74ch;
  color: var(--muted);
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 135, 109, 0.09), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(251, 244, 239, 0.78));
  border: 1px solid rgba(184, 135, 109, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(103, 72, 57, 0.08);
  padding: 16px 18px;
}

.final-cta {
  padding-top: 8px;
}

.cta-panel {
  text-align: center;
  background:
    radial-gradient(circle at 20% 0%, rgba(184, 135, 109, 0.2), transparent 40%),
    rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(184, 135, 109, 0.32);
  border-radius: 24px;
  padding: clamp(24px, 5vw, 40px);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4.8vw, 2.8rem);
  color: #2f211c;
}

.cta-panel p {
  margin: 8px auto 18px;
  color: var(--muted);
}

.floating-wa {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 45;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #2cd66f, #14ba5d);
  border-radius: 999px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 28px rgba(24, 163, 79, 0.35);
}

.floating-wa svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer {
  text-align: center;
  padding: 26px 0 38px;
  color: #69534a;
  font-size: 0.92rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(246, 234, 227, 0.72));
  border-top: 1px solid rgba(184, 135, 109, 0.2);
}

.footer p {
  margin: 6px 0;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 880px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 1200px) {
  .ghost-left {
    left: 4%;
    top: 22%;
  }

  .ghost-left-bottom {
    left: 11%;
    top: 58%;
  }

  .ghost-right {
    right: 4%;
    top: 18%;
  }

  .ghost-bottom {
    right: 12%;
    bottom: 12%;
  }

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

  .why-grid article:last-child {
    grid-column: 2 / span 2;
  }
}

@media (max-width: 540px) {
  .brand img {
    width: 92px;
    height: 92px;
  }

  .top-links {
    gap: 10px;
  }

  .top-links a {
    font-size: 0.83rem;
  }

  .cta {
    width: 100%;
  }

  .ghost {
    opacity: 0.12;
  }

  .ghost-left {
    width: 98px;
    left: -10%;
    top: 19%;
  }

  .ghost-left-bottom {
    display: none;
  }

  .ghost-right {
    width: 96px;
    right: -8%;
    top: 21%;
  }

  .ghost-bottom {
    display: none;
  }
}
