/* =========================================================
   DS ARTISTRY — Luxury Bridal Makeup
   Color palette (change here to re-skin):
   ========================================================= */
:root {
  --ivory:    #F9F6F2;  /* warm ivory  — main background */
  --blue:     #D5E3F0;  /* powder blue — luxury accent   */
  --blue-dp:  #c2d6e8;  /* slightly deeper blue          */
  --charcoal: #2A2A2A;  /* rich charcoal — text          */
  --gold:     #C6A87A;  /* champagne gold — accent       */
  --taupe:    #A28E84;  /* warm taupe — secondary        */
  --white:    #ffffff;

  --serif:  "Playfair Display", Georgia, serif;
  --sans:   "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  --script: "Great Vibes", cursive;

  --max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ===== SHARED BITS ===== */
.eyebrow {
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--taupe); font-weight: 500;
}
.eyebrow--light { color: rgba(255,255,255,0.85); }

.script { font-family: var(--script); color: var(--gold); font-weight: 400; }

.section-head { text-align: center; margin-bottom: 56px; }
.section-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--charcoal);
}
.divider { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 14px; }
.divider::before, .divider::after { content: ""; height: 1px; width: 60px; background: var(--gold); }
.divider span { color: var(--gold); font-size: 13px; }
.divider--left { justify-content: flex-start; margin: 22px 0 26px; }
.divider--left::after { display: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 16px 34px; cursor: pointer; border: none;
  white-space: nowrap;
  transition: all .25s ease;
}
.btn--dark { background: var(--charcoal); color: var(--white); }
.btn--dark:hover { background: var(--gold); color: var(--charcoal); }
.btn--light { background: rgba(255,255,255,0.92); color: var(--charcoal); }
.btn--light:hover { background: var(--gold); color: var(--white); }
.btn--light-outline { background: transparent; color: var(--charcoal); border: 1px solid var(--taupe); }
.btn--light-outline:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.btn--full { width: 100%; padding: 18px; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(249,246,242,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(162,142,132,0.18);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__mono {
  font-family: var(--serif); font-size: 30px; font-weight: 600; letter-spacing: 0.05em;
  border-right: 1px solid var(--gold); padding-right: 12px; line-height: 1;
}
.brand__text { display: flex; flex-direction: column; }
.brand__name { font-family: var(--serif); font-size: 15px; letter-spacing: 0.3em; }
.brand__sub { font-size: 8.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe); white-space: nowrap; }
.nav__links { display: flex; gap: 20px; }
.nav .btn--dark { padding: 14px 26px; }
.nav__links a {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 400;
  position: relative; padding: 4px 0;
}
.nav__links a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  background:
    radial-gradient(55% 45% at 82% 16%, rgba(198,168,122,0.22), transparent 70%),
    radial-gradient(52% 55% at 8% 96%, rgba(213,227,240,0.55), transparent 72%),
    linear-gradient(120deg, #FBF8F4 0%, #F4EDE4 50%, #E7EDF2 100%);
  display: flex; align-items: center;
}
.hero__art {
  position: absolute; top: 0; right: 0; bottom: 0; width: 46%; max-width: 600px;
  pointer-events: none; z-index: 1;
}
.hero__art svg { width: 100%; height: 100%; display: block; }
.hero__inner { position: relative; z-index: 2; color: var(--charcoal); max-width: 640px; padding-top: 40px; padding-bottom: 40px; }
.hero .eyebrow--light { color: var(--taupe); }
.hero__title {
  font-family: var(--serif); font-weight: 600; line-height: 0.98; margin-top: 18px;
  text-transform: uppercase;
}
.hero__title { font-size: clamp(52px, 9vw, 110px); letter-spacing: 0.02em; }
.hero__title span {
  display: block; font-size: clamp(20px, 3.4vw, 38px); font-weight: 400; letter-spacing: 0.14em; margin-top: 6px; color: var(--taupe);
}
.hero__lead {
  font-family: var(--serif); font-style: italic; font-size: clamp(16px, 2vw, 21px);
  font-weight: 400; line-height: 1.6; margin-bottom: 36px; color: #6a625a;
}
.hero__location {
  position: absolute; right: 48px; top: 50%; transform: translateY(-50%); z-index: 2;
  text-align: center; color: var(--charcoal);
  padding-left: 28px; border-left: 1px solid var(--gold);
}
.hero__location span { font-family: var(--serif); display: block; font-size: 17px; letter-spacing: 0.22em; }
.hero__location small { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe); }

/* ===== STATS ===== */
.stats { background: var(--white); padding: 48px 0; border-bottom: 1px solid rgba(162,142,132,0.15); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 8px 28px; text-align: center; }
.stat:not(:last-child) { border-right: 1px solid rgba(198,168,122,0.35); }
.stat__icon { color: var(--gold); font-size: 18px; margin-bottom: 10px; }
.stat__big { font-family: var(--serif); font-size: 42px; font-weight: 600; line-height: 1; }
.stat__small { font-family: var(--serif); font-size: 22px; font-weight: 600; line-height: 1.1; text-transform: uppercase; letter-spacing: 0.04em; }
.stat__label { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--charcoal); margin-top: 6px; font-weight: 500; }
.stat__desc { font-size: 13px; color: var(--taupe); margin-top: 8px; line-height: 1.5; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; }
.about__grid {
  display: grid;
  grid-template-columns: 28px 300px 1fr 260px;
  gap: 40px; align-items: center;
}
.about__label {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-family: var(--script); font-size: 34px; color: var(--gold); justify-self: center;
}
.about__photo {
  height: 420px; background-color: #cdbfb6;
  background-size: cover; background-position: center 22%; border-radius: 2px;
}
.about__body .eyebrow { display: block; margin-bottom: 16px; }
.about__title {
  font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25; margin-bottom: 22px;
}
.about__body p { color: #555; margin-bottom: 18px; max-width: 520px; }
.about__body .btn { margin-top: 14px; }
.quote-card {
  background: var(--blue); padding: 40px 32px; align-self: stretch;
  display: flex; flex-direction: column; justify-content: center; position: relative;
}
.quote-card__mark { font-family: var(--serif); font-size: 60px; color: var(--gold); line-height: 0.5; height: 28px; }
.quote-card p { font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.5; color: var(--charcoal); }
.quote-card__sign { font-family: var(--script); font-size: 28px; color: var(--taupe); margin-top: 18px; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--white); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service {
  position: relative; height: 360px; overflow: hidden;
  background: linear-gradient(160deg, var(--taupe), var(--charcoal));
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
}
.service::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,42,42,0.7) 0%, rgba(42,42,42,0.1) 55%, rgba(42,42,42,0.25) 100%);
  transition: background .3s;
}
.service:hover::after { background: linear-gradient(to top, rgba(42,42,42,0.8) 0%, rgba(198,168,122,0.25) 100%); }
.service__overlay { position: relative; z-index: 2; padding: 26px; color: var(--white); width: 100%; }
.service__overlay h3 { font-family: var(--serif); font-weight: 500; font-size: 21px; letter-spacing: 0.06em; text-transform: uppercase; }
.service__link { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); display: inline-block; margin-top: 10px; }

/* ===== FEATURED WORK ===== */
.featured { padding: 100px 0; background: var(--blue); }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery__item {
  aspect-ratio: 3/4;
  background-color: #ead9cb;
  background-size: cover; background-position: center;
  transition: transform .3s; cursor: pointer;
}
.gallery__item:nth-child(even) { background-color: var(--blue-dp); }
.gallery__item:hover { transform: scale(1.03); }
.featured__cta { text-align: center; margin-top: 42px; }

/* ===== REVIEWS ===== */
.reviews { padding: 100px 0; background: var(--ivory); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; }
.review { text-align: center; padding: 0 14px; }
.review__mark { font-family: var(--serif); font-size: 50px; color: var(--gold); line-height: 0.4; display: inline-block; }
.review p { font-family: var(--serif); font-style: italic; font-size: 17px; line-height: 1.6; color: #444; margin: 16px 0 20px; }
.review cite { font-style: normal; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); }

/* ===== CONTACT ===== */
.contact { padding: 90px 0; background: var(--blue); }
.contact__grid { display: grid; grid-template-columns: 0.8fr 1.4fr; gap: 56px; align-items: center; }
.contact__title { font-family: var(--serif); font-weight: 500; font-size: clamp(30px, 4vw, 44px); line-height: 1.15; }
.contact__title .script { font-size: 1.4em; display: inline-block; }
.contact__booking { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe); margin-top: 18px; }
.contact__form { display: flex; flex-direction: column; gap: 14px; }
.field-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.contact__form input, .contact__form select {
  width: 100%; padding: 15px 16px; border: none; background: rgba(255,255,255,0.85);
  font-family: var(--sans); font-size: 14px; color: var(--charcoal);
}
.contact__form input::placeholder { color: #9a9a9a; }
.contact__form input:focus, .contact__form select:focus { outline: 2px solid var(--gold); background: var(--white); }

/* ===== FOOTER ===== */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.8); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 32px 0; flex-wrap: wrap; }
.brand--light { color: var(--white); }
.brand--light .brand__mono { color: var(--white); border-color: var(--gold); }
.brand--light .brand__sub { color: var(--gold); }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__links a { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.footer__links a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%;
  display: grid; place-items: center; color: var(--white); transition: all .25s;
}
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.footer__bar { border-top: 1px solid rgba(255,255,255,0.12); padding: 18px 0; text-align: center; }
.footer__bar p { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1000px) {
  .nav__links { display: none; }
  .about__grid { grid-template-columns: 1fr; gap: 30px; }
  .about__label { writing-mode: horizontal-tb; transform: none; }
  .about__photo { height: 380px; }
  .quote-card { padding: 32px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .contact__grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .reviews__grid { gap: 36px; }
}
@media (max-width: 640px) {
  .container { padding: 0 22px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .stat:nth-child(2) { border-right: none; }
  .services__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .brand__sub { display: none; }
  .brand__mono { font-size: 26px; }
  .nav__inner { height: 64px; }
  .nav .btn--dark { padding: 12px 16px; font-size: 11px; letter-spacing: 0.14em; }
  .hero__location { display: none; }
  .hero { min-height: 76vh; }
  .section-title { font-size: 23px; letter-spacing: 0.06em; }
  .hero__title span { letter-spacing: 0.08em; }
  .footer__inner { flex-direction: column; text-align: center; }
}

/* Hide the long brand tagline on mid-size screens so the nav never overflows */
@media (max-width: 1280px) {
  .brand__sub { display: none; }
}

/* =========================================================
   PRICING / PACKAGES
   ========================================================= */
.pricing { padding: 100px 0; background: var(--white); }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  border: 1px solid var(--border); background: var(--ivory);
  padding: 40px 32px; text-align: center; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(2,6,23,0.07); }
.price-card--featured { border-color: var(--gold); box-shadow: 0 14px 34px rgba(198,168,122,0.18); }
.price-card__tag { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; min-height: 13px; }
.price-card h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; letter-spacing: 0.04em; }
.price-card__price { font-family: var(--serif); font-size: 30px; color: var(--charcoal); margin: 14px 0 4px; }
.price-card__price small { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe); margin-top: 8px; }
.price-card__list { list-style: none; margin: 24px 0 28px; text-align: left; }
.price-card__list li { font-size: 14px; color: #5e5750; padding: 9px 0 9px 24px; position: relative; border-bottom: 1px solid rgba(162,142,132,0.14); }
.price-card__list li::before { content: "\2726"; color: var(--gold); position: absolute; left: 0; top: 9px; font-size: 12px; }
.price-card .btn { margin-top: auto; }
.pricing__note { text-align: center; margin-top: 34px; font-size: 13px; color: var(--taupe); letter-spacing: 0.04em; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.process { padding: 100px 0; background: var(--ivory); }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step { text-align: center; padding: 0 8px; }
.step__num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 20px;
  border: 1px solid var(--gold); color: var(--gold);
  display: grid; place-items: center; font-family: var(--serif); font-size: 22px;
}
.step h3 { font-family: var(--serif); font-weight: 500; font-size: 19px; margin-bottom: 10px; }
.step p { font-size: 14px; color: #5e5750; line-height: 1.6; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding: 100px 0; background: var(--white); }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 24px 44px 24px 4px; position: relative;
  font-family: var(--serif); font-size: 19px; color: var(--charcoal);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 26px; font-weight: 300;
}
.faq__item[open] summary::after { content: "\2013"; }
.faq__item p { padding: 0 44px 26px 4px; color: #5e5750; font-size: 15px; line-height: 1.7; margin: 0; }

/* ===== review stars + IG link ===== */
.review__stars { color: var(--gold); font-size: 13px; letter-spacing: 3px; margin-bottom: 8px; }
.reviews__more { text-align: center; margin-top: 46px; }
.reviews__more a { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); border-bottom: 1px solid var(--gold); padding-bottom: 4px; }
.reviews__more a:hover { color: var(--gold); }

/* ===== contact note + IG ===== */
.contact__note { font-size: 13px; color: var(--taupe); margin-top: 16px; letter-spacing: 0.02em; }
.contact__ig { display: block; margin-top: 8px; font-size: 13px; letter-spacing: 0.04em; color: var(--charcoal); }
.contact__ig a { color: var(--charcoal); border-bottom: 1px solid var(--gold); }
.contact__ig a:hover { color: var(--gold); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ===== form thank-you message ===== */
[hidden] { display: none !important; }
.contact__formwrap { width: 100%; }
.form-success { text-align: center; background: rgba(255,255,255,0.85); padding: 52px 32px; }
.form-success__mark { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--gold); color: #fff; font-size: 26px; margin-bottom: 18px; }
.form-success h3 { font-family: var(--serif); font-weight: 500; font-size: 26px; margin-bottom: 10px; }
.form-success p { color: #5e5750; font-size: 15px; line-height: 1.7; max-width: 420px; margin: 0 auto; }
.form-success a { color: var(--charcoal); border-bottom: 1px solid var(--gold); }
.form-success a:hover { color: var(--gold); }

/* ===== footer IG handle ===== */
.footer__social { align-items: center; }
.footer__handle { font-size: 12px; letter-spacing: 0.08em; color: rgba(255,255,255,0.8); }
.footer__handle:hover { color: var(--gold); }

/* ===== responsive (new sections) ===== */
@media (max-width: 1000px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .process__grid { grid-template-columns: repeat(2, 1fr); gap: 44px 24px; }
}
@media (max-width: 640px) {
  .process__grid { grid-template-columns: 1fr; }
}
