/* =========================================================
   Sohni Stitchery, stylesheet
   Palette taken from the logo: maroon, gold, cream.
   ========================================================= */

:root {
  --cream: #f7f0e0;
  --cream-deep: #efe4ca;
  --cream-card: #fffaf0;
  --maroon: #6e1b35;
  --maroon-dark: #3f0e1c;
  --maroon-ink: #4a1023;
  --gold: #bf9430;
  --gold-soft: #d8b85f;
  --ink: #2c2024;
  --muted: #7a6a63;
  --line: #e3d6bd;
  --shadow: 0 12px 30px rgba(74, 16, 35, 0.10);
  --shadow-sm: 0 6px 16px rgba(74, 16, 35, 0.08);
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1120px;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography helpers ---------- */
.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--maroon);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.15;
}
.section__lead { color: var(--muted); max-width: 60ch; margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--maroon { background: var(--maroon); color: #fff; box-shadow: var(--shadow-sm); }
.btn--maroon:hover { background: var(--maroon-ink); }
.btn--gold { background: var(--gold); color: #fff; box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: #a87e22; }
.btn--ghost { background: transparent; color: var(--maroon); border-color: var(--maroon); }
.btn--ghost:hover { background: var(--maroon); color: #fff; }

/* ---------- Stars ---------- */
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.stars--lg { font-size: 1.5rem; }

/* ---------- Section base ---------- */
.section { padding: 86px 0; }
.section--alt { background: var(--cream-deep); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section__head .section__lead { margin-left: auto; margin-right: auto; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 240, 224, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { height: 50px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-weight: 500; color: var(--maroon-ink); font-size: 0.96rem; transition: color 0.2s; }
.nav__links a:hover { color: var(--gold); }
.nav__cta { color: #fff; }
.nav__cta:hover { color: #fff; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span { width: 26px; height: 2.5px; background: var(--maroon); border-radius: 2px; transition: 0.3s; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  text-align: center;
  padding: 70px 24px 90px;
  background:
    radial-gradient(1100px 500px at 50% -10%, #fffaf0 0%, var(--cream) 60%);
  overflow: hidden;
}
.hero__decor {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 30%, rgba(191, 148, 48, 0.10) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 24%, rgba(110, 27, 53, 0.08) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 70%, rgba(191, 148, 48, 0.10) 0 2px, transparent 3px),
    radial-gradient(circle at 20% 78%, rgba(110, 27, 53, 0.07) 0 2px, transparent 3px);
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 760px; margin: 0 auto; }
.hero__logo { width: min(320px, 70%); margin: 0 auto 18px; }
.hero__eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}
.hero__title {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--maroon);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.12;
}
.hero__sub { color: var(--muted); font-size: 1.08rem; max-width: 56ch; margin: 18px auto 26px; }

.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--cream-card);
  border: 1px solid var(--line);
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.hero__rating-text { font-size: 0.95rem; color: var(--ink); }
.hero__rating-text strong { color: var(--maroon); }

.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__note { margin-top: 22px; color: var(--muted); font-size: 0.85rem; letter-spacing: 0.02em; }

/* =========================================================
   ABOUT
   ========================================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about__text p { margin-bottom: 16px; color: var(--ink); }
.about__highlights { list-style: none; margin: 22px 0 28px; display: grid; gap: 11px; }
.about__highlights li { position: relative; padding-left: 32px; color: var(--ink); font-weight: 500; }
.about__highlights li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 2px;
  width: 21px; height: 21px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.about__text .btn { margin-top: 10px; }
.about__media { position: relative; }
.about__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
}
.about__badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--maroon);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

/* =========================================================
   SERVICES
   ========================================================= */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.price-card__title {
  font-family: var(--font-head);
  color: var(--maroon);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--line);
}
.price-card__sub {
  margin: -8px 0 16px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-list { list-style: none; }
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.price-list li:last-child { border-bottom: none; }
.price-list .price { font-weight: 600; color: var(--maroon); white-space: nowrap; }

.services__feature { display: flex; flex-direction: column; background: var(--maroon); color: #fbeede; border-color: var(--maroon); }
.services__feature .price-card__title { color: #fff; border-bottom-color: rgba(255, 255, 255, 0.22); }
.services__feature p { color: #f1d9c4; margin-bottom: 16px; }
.feature-list { list-style: none; margin-bottom: 22px; }
.feature-list li { padding: 7px 0 7px 24px; position: relative; color: #fbeede; }
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 8px;
  background: var(--gold-soft);
  border-radius: 50%;
}
.services__price-note { margin-bottom: 20px; color: #f1d9c4; }
.services__price-note strong { color: var(--gold-soft); font-weight: 600; }
.services__feature .btn { margin-top: auto; }
.services__note { text-align: center; margin-top: 34px; color: var(--muted); font-size: 0.92rem; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  background: var(--cream-card);
  border: 1px solid var(--line);
}
.gallery__item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 18px 14px;
  color: #fff;
  font-size: 0.92rem;
  background: linear-gradient(to top, rgba(74, 16, 35, 0.82), transparent);
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews__summary { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-top: 18px; }
.reviews__score { color: var(--muted); }
.reviews__score strong { color: var(--maroon); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.review-card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card__head { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-family: var(--font-head);
  flex-shrink: 0;
}
.review-card__who { line-height: 1.3; }
.review-card__name { font-weight: 600; color: var(--maroon-ink); }
.review-card__meta { font-size: 0.8rem; color: var(--muted); }
.review-card__stars { color: var(--gold); letter-spacing: 1px; font-size: 0.95rem; }
.review-card__text { color: var(--ink); font-size: 0.96rem; }
.review-card__badge {
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(191, 148, 48, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
}
.reviews__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__service-area { margin-top: 18px; color: var(--ink); font-weight: 500; }
.contact__cards { display: grid; gap: 16px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
a.contact-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.contact-card__icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-card__body { display: flex; flex-direction: column; }
.contact-card__label { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.contact-card__value { font-weight: 600; color: var(--maroon-ink); font-size: 1.05rem; }
.contact-card__hint { font-size: 0.84rem; color: var(--muted); }
.contact__payment { color: var(--muted); font-size: 0.9rem; margin-top: 6px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--maroon-ink); color: #f0dccb; padding-top: 56px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; }
.footer__logo { height: 80px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: 0.92; }
.footer__tag { color: #d9bfae; font-size: 0.92rem; max-width: 32ch; }
.footer__col h4 { font-family: var(--font-head); color: #fff; font-weight: 600; margin-bottom: 14px; font-size: 1.05rem; }
.footer__col p { font-size: 0.92rem; margin-bottom: 8px; color: #e7d2c3; }
.footer__col a:hover { color: var(--gold-soft); }
.footer__badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-top: 6px;
}
.footer__base {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.84rem;
  color: #cdab97;
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(40, 8, 20, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
}
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 80vh; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox__caption { color: #f0dccb; margin-top: 16px; font-size: 0.95rem; }
.lightbox__close {
  position: absolute;
  top: 22px; right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .about__media { max-width: 460px; margin: 0 auto; }
  .services__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav__cta { margin-top: 12px; border-bottom: none; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

@media (max-width: 520px) {
  .footer__inner { grid-template-columns: 1fr; }
  .hero__cta .btn, .reviews__actions .btn { width: 100%; }
}
