/* ==========================================================================
   Suri Permanent Beauty — stylesheet
   Plain hand-written CSS. Palette: warm nude / rose-gold on soft cream.
   ========================================================================== */

:root {
  --cream: #faf6f2;
  --sand: #f0e6dc;
  --rose: #b98a7a;
  --rose-dark: #9c6f60;
  --ink: #2e2925;
  --muted: #6f655e;
  --gold: #c9a24b;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(46, 41, 37, 0.08);
  --max: 1120px;
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); margin: 0 0 .5em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin: 0 0 .6em; }
h3 { font-size: 1.25rem; margin: 0 0 .4em; }
p { margin: 0 0 1em; }
a { color: var(--rose-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4rem 0; }
.section--alt { background: var(--sand); }
.text-center { text-align: center; }
.lead { font-size: 1.15rem; color: var(--muted); }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .8rem; color: var(--rose); font-weight: 600; margin: 0 0 .5rem; }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--rose);
  color: var(--white);
  padding: .8rem 1.6rem;
  border-radius: 40px;
  font-weight: 600;
  border: 2px solid var(--rose);
  cursor: pointer;
  transition: background .2s, color .2s, transform .1s;
}
.btn:hover { background: var(--rose-dark); border-color: var(--rose-dark); color: var(--white); text-decoration: none; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--rose-dark); }
.btn--ghost:hover { background: var(--rose); color: var(--white); }

/* Header / nav */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 242, .95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--sand);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: .6rem 0; }
.nav__brand { display: flex; align-items: center; gap: .6rem; font-family: var(--serif); font-size: 1.15rem; color: var(--ink); }
.nav__brand img { height: 44px; width: auto; }
.nav__links { display: flex; gap: 1.4rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav__links a { color: var(--ink); font-size: .98rem; font-weight: 500; }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--rose-dark); text-decoration: none; }
.nav__toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--ink); }

/* Hero */
.hero { position: relative; color: var(--white); text-align: center; }
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(46,41,37,.45), rgba(46,41,37,.6)); }
.hero__inner { position: relative; z-index: 1; padding: 7rem 1.25rem; max-width: 760px; margin: 0 auto; }
.hero h1 { color: var(--white); }
.hero p { color: #f5ece6; font-size: 1.2rem; }

/* Grid of cards */
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.card__body { padding: 1.25rem 1.4rem 1.6rem; }
.card__body h3 { margin-bottom: .3rem; }
.card__body p { color: var(--muted); font-size: .98rem; margin-bottom: 0; }

/* USP list */
.usp { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.usp__item { text-align: center; }
.usp__item h3 { color: var(--rose-dark); font-size: 1.1rem; }
.usp__item p { color: var(--muted); font-size: .95rem; }

/* Price tables */
.price-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.price-table caption { text-align: left; font-family: var(--serif); font-size: 1.3rem; margin-bottom: .6rem; color: var(--ink); }
.price-table th, .price-table td { text-align: left; padding: .9rem 1.1rem; border-bottom: 1px solid var(--sand); vertical-align: top; }
.price-table th { background: var(--sand); font-weight: 600; }
.price-table td.price { text-align: right; white-space: nowrap; font-weight: 600; color: var(--rose-dark); }
.price-table tr:last-child td { border-bottom: 0; }
.price-note { font-size: .9rem; color: var(--muted); }

/* Service block */
.service { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; margin-bottom: 3.5rem; }
.service:nth-child(even) .service__media { order: 2; }
.service__media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.service ul { padding-left: 1.1rem; color: var(--muted); }

/* About */
.about { display: grid; grid-template-columns: 320px 1fr; gap: 2.5rem; align-items: start; }
.about img { border-radius: var(--radius); box-shadow: var(--shadow); }
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team figure { margin: 0; text-align: center; }
.team img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 3/4; object-fit: cover; }
.team figcaption { margin-top: .6rem; }
.team figcaption strong { display: block; font-family: var(--serif); font-size: 1.1rem; }
.team figcaption span { color: var(--muted); font-size: .92rem; }

/* Contact + form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { margin-bottom: .7rem; }
.info-list strong { display: inline-block; min-width: 90px; color: var(--ink); }

.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-weight: 600; margin-bottom: .3rem; font-size: .95rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: .7rem .85rem; border: 1px solid #d8ccc1; border-radius: 8px;
  font: inherit; background: var(--white); color: var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--rose); border-color: var(--rose);
}
.form-field .req { color: var(--rose-dark); }
.form-status { padding: .9rem 1.1rem; border-radius: 8px; margin-bottom: 1rem; display: none; }
.form-status.is-success { display: block; background: #e7f3ea; color: #1f5c33; }
.form-status.is-error { display: block; background: #f7e3e0; color: #8a2b1f; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* Legal pages */
.legal { max-width: 800px; }
.legal h2 { margin-top: 2rem; font-size: 1.4rem; }
.legal address { font-style: normal; line-height: 1.8; }

/* Footer */
.site-footer { background: var(--ink); color: #d9cfc7; padding: 3rem 0 1.5rem; font-size: .95rem; }
.site-footer a { color: #e8dcd3; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-grid h4 { font-family: var(--serif); color: var(--white); margin: 0 0 .8rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .4rem; }
.footer-bottom { border-top: 1px solid #443c36; padding-top: 1.2rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; color: #a99e95; }

/* Instagram / video grid */
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.ig-item {
  position: relative; display: block; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 9 / 16; background: var(--sand); box-shadow: var(--shadow);
}
.ig-item video, .ig-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ig-item__badge {
  position: absolute; top: .6rem; right: .6rem; z-index: 2;
  background: rgba(46,41,37,.55); color: #fff; border-radius: 50%;
  width: 30px; height: 30px; display: grid; place-items: center; font-size: .9rem;
}
.ig-item::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(46,41,37,.35));
  opacity: 0; transition: opacity .2s;
}
.ig-item:hover::after { opacity: 1; }

/* CTA band */
.cta-band { background: var(--rose); color: var(--white); text-align: center; padding: 3.5rem 1.25rem; }
.cta-band h2 { color: var(--white); }
.cta-band .btn { background: var(--white); color: var(--rose-dark); border-color: var(--white); }
.cta-band .btn:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* Responsive */
@media (max-width: 900px) {
  .grid--3, .usp { grid-template-columns: repeat(2, 1fr); }
  .service, .about, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .service:nth-child(even) .service__media { order: 0; }
  .team { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nav__toggle { display: block; }
  .nav__links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--sand); padding: .5rem 1.25rem 1rem;
  }
  .nav__links.is-open { display: flex; }
  .nav__links li { width: 100%; padding: .5rem 0; border-bottom: 1px solid var(--sand); }
  .grid--3, .grid--2, .usp, .team { grid-template-columns: 1fr; }
  .hero__inner { padding: 4.5rem 1.25rem; }
}
