/* ===== Rose Beauty — Cosmetic Tattooing ===== */

:root {
  --white: #ffffff;
  --ivory: #fffdfb;
  --cream: #fbf6f1;      /* main airy background */
  --cream-2: #f6ede4;
  --champagne: #efe3d4;
  --charcoal: #3a302c;   /* warm near-black, text only */
  --charcoal-soft: #6d5f57;
  --rose: #c08b83;       /* rose gold */
  --rose-deep: #a86a67;
  --rose-gold: #cba38f;
  --blush: #ecd7d0;
  --blush-soft: #f5e7e2;
  --taupe: #b0a097;
  --line: #ece1d8;
  --shadow: 0 20px 55px -26px rgba(120, 78, 72, 0.28);
  --shadow-soft: 0 12px 40px -24px rgba(120, 78, 72, 0.22);
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.3px;
}

h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.5rem; }

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

.section { padding: clamp(4.5rem, 9vw, 8rem) clamp(1.25rem, 5vw, 5rem); }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 400;
  margin-bottom: 1rem;
}

.section-head { max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section-intro { color: var(--charcoal-soft); font-size: 1.08rem; margin-top: 1rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.95em 2.2em;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  border: 1px solid transparent;
}
.btn-primary { background: var(--rose); color: #fff; box-shadow: 0 10px 24px -12px var(--rose); }
.btn-primary:hover { background: var(--rose-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: #fff; }
.btn-outline { background: transparent; color: var(--rose-deep); border-color: var(--rose); }
.btn-outline:hover { background: var(--rose); color: #fff; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 245, 241, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 5vw, 5rem);
}
.brand { display: flex; flex-direction: column; line-height: 1; color: #fff; transition: color 0.4s; }
.scrolled .brand { color: var(--charcoal); }
.brand-name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; letter-spacing: 0.5px; }
.brand-sub { font-size: 0.58rem; letter-spacing: 0.34em; text-transform: uppercase; margin-top: 8px; opacity: 0.85; }

.nav-links { list-style: none; display: flex; align-items: center; gap: 2.1rem; }
.nav-links a { font-size: 0.82rem; letter-spacing: 0.1em; color: #fff; transition: color 0.3s; }
.scrolled .nav-links a { color: var(--charcoal); }
.nav-links a:not(.nav-cta):hover { color: var(--blush); }
.scrolled .nav-links a:not(.nav-cta):hover { color: var(--rose); }
.nav-cta {
  border: 1px solid rgba(255,255,255,0.6); padding: 0.55em 1.4em; border-radius: 100px;
  text-transform: uppercase; font-size: 0.72rem !important; letter-spacing: 0.16em;
  transition: all 0.35s var(--ease);
}
.nav-cta:hover { background: #fff; color: var(--rose-deep) !important; }
.scrolled .nav-cta { border-color: var(--rose); color: var(--rose-deep) !important; }
.scrolled .nav-cta:hover { background: var(--rose); color: #fff !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; z-index: 110; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: all 0.35s var(--ease); }
.scrolled .nav-toggle span { background: var(--charcoal); }

/* ===== Hero ===== */
.hero { position: relative; height: 100vh; min-height: 820px; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; overflow: hidden; }
.hero-image {
  position: absolute; inset: 0; background-size: cover; background-position: center 82%;
  transform: scale(1.05); animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(58,48,44,0.28) 0%, rgba(58,48,44,0.12) 35%, rgba(58,48,44,0.32) 100%),
    radial-gradient(ellipse 60% 55% at 50% 42%, rgba(58,48,44,0.30) 0%, rgba(58,48,44,0) 70%);
}
.hero-content { position: relative; max-width: 860px; padding: 0 clamp(1.25rem, 5vw, 3rem); margin-top: -3vh; }
.hero-content h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); font-weight: 500; margin: 0.6rem 0 1.4rem; text-shadow: 0 2px 30px rgba(40,30,28,0.35); }
.hero .eyebrow { color: var(--blush); }
.hero-lead { font-size: 1.18rem; max-width: 32em; margin: 0 auto; color: rgba(255,255,255,0.95); text-shadow: 0 1px 16px rgba(40,30,28,0.35); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; justify-content: center; }

/* ===== About ===== */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; max-width: 1200px; margin: 0 auto; }
.about-photo img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-photo { position: relative; }
.about-photo::after {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--blush);
  border-radius: var(--radius); z-index: -1;
}
.about-text h2 { margin-bottom: 1.3rem; }
.about-text p { color: var(--charcoal-soft); margin-bottom: 1.1rem; }
.about-text em { color: var(--rose-deep); font-style: italic; }
.signature { font-family: var(--font-display); font-style: italic; font-size: 2rem; color: var(--rose); margin: 0.6rem 0 1.4rem !important; }
.link-arrow { color: var(--rose-deep); letter-spacing: 0.08em; border-bottom: 1px solid var(--blush); padding-bottom: 3px; transition: all 0.3s; }
.link-arrow::after { content: " →"; }
.link-arrow:hover { border-color: var(--rose); color: var(--rose); }

/* ===== Services ===== */
.services { background: var(--ivory); }
.service-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem; max-width: 1160px; margin: 0 auto; }
.service-card {
  position: relative; flex: 0 1 340px; display: flex; flex-direction: column; text-align: center;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.6rem 2rem 2.3rem; box-shadow: var(--shadow-soft);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--blush); }
.service-tag {
  align-self: center; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rose-deep); background: var(--blush-soft); padding: 0.4em 1.1em; border-radius: 100px; margin-bottom: 1.3rem;
}
.service-card h3 { font-size: 1.45rem; margin-bottom: 0.7rem; }
.service-card .desc { color: var(--charcoal-soft); font-size: 0.95rem; margin-bottom: 1.6rem; }
.price {
  margin-top: auto; font-family: var(--font-display); font-size: 2.1rem; font-weight: 600;
  color: var(--rose-deep); line-height: 1; padding-top: 1.2rem; border-top: 1px solid var(--line);
}
.price span { display: block; font-size: 0.66rem; font-family: var(--font-body); font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe); margin-bottom: 0.5rem; }
.price .price-note { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: none; color: var(--taupe); margin-top: 0.55rem; margin-bottom: 0; }
.service-group-title {
  text-align: center; font-size: clamp(1.7rem, 3vw, 2.1rem); color: var(--rose-deep);
  margin: 0 auto 1.8rem; letter-spacing: 0.02em;
}
.service-group-title:not(:first-of-type) { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.services-note { text-align: center; max-width: 620px; margin: 2.8rem auto 0; color: var(--taupe); font-size: 0.88rem; }

/* ===== Gallery ===== */
.gallery { background: var(--cream); }
.masonry { columns: 4; column-gap: 1.1rem; max-width: 1240px; margin: 0 auto; }
.masonry figure { position: relative; break-inside: avoid; margin: 0 0 1.1rem; overflow: hidden; border-radius: var(--radius); cursor: pointer; box-shadow: var(--shadow-soft); }
.masonry img { display: block; width: 100%; transition: transform 0.7s var(--ease); }
.masonry figure:hover img { transform: scale(1.06); }
.masonry figure::after {
  content: ""; position: absolute; inset: 0; background: rgba(58,48,44,0.12);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.masonry figure:hover::after { opacity: 1; }
.masonry figure::before {
  content: "⌕"; position: absolute; z-index: 2; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0.8);
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: var(--rose-deep); font-size: 1.5rem;
  opacity: 0; transition: all 0.4s var(--ease);
}
.masonry figure:hover::before { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.gallery-cta { text-align: center; margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  background: rgba(40,30,28,0.9); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-image {
  max-width: min(90vw, 900px); max-height: 84vh; border-radius: 8px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6); transform: scale(0.96); transition: transform 0.35s var(--ease);
}
.lightbox.open .lb-image { transform: scale(1); }
.lb-close, .lb-nav {
  position: absolute; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3); color: #fff;
  cursor: pointer; display: grid; place-items: center; border-radius: 50%; transition: all 0.3s var(--ease);
  backdrop-filter: blur(4px);
}
.lb-close { top: 1.4rem; right: 1.4rem; width: 46px; height: 46px; font-size: 1.7rem; line-height: 1; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2rem; line-height: 1; }
.lb-prev { left: clamp(1rem, 4vw, 3rem); }
.lb-next { right: clamp(1rem, 4vw, 3rem); }
.lb-close:hover, .lb-nav:hover { background: var(--rose); border-color: var(--rose); transform: translateY(-50%) scale(1.06); }
.lb-close:hover { transform: scale(1.08); }
.lb-counter { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.85); font-size: 0.8rem; letter-spacing: 0.2em; }

/* ===== Process ===== */
.process { background: var(--cream-2); }
.process-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; max-width: 1200px; margin: 0 auto; }
.process-photo img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.steps { list-style: none; display: flex; flex-direction: column; gap: 1.8rem; margin-top: 1.6rem; }
.steps li { display: flex; gap: 1.3rem; }
.step-no { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; color: var(--rose); flex-shrink: 0; width: 2.4rem; }
.steps h3 { font-size: 1.3rem; margin-bottom: 0.2rem; }
.steps p { color: var(--charcoal-soft); font-size: 0.96rem; }

/* ===== FAQ ===== */
.faq { background: var(--ivory); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 1.3rem 0; }
.faq summary {
  font-family: var(--font-display); font-size: 1.35rem; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--rose); font-size: 1.6rem; transition: transform 0.35s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--charcoal-soft); margin-top: 0.9rem; max-width: 62ch; }

/* ===== Downloads (in FAQ) ===== */
.downloads { max-width: 780px; margin: 3rem auto 0; text-align: center; }
.downloads-title { font-family: var(--font-display); font-size: 1.6rem; color: var(--charcoal); margin-bottom: 1.4rem; }
.download-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.download-card {
  display: flex; align-items: center; gap: 1rem; text-align: left;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem 1.5rem; box-shadow: var(--shadow-soft); transition: all 0.4s var(--ease);
}
.download-card:hover { transform: translateY(-4px); border-color: var(--blush); box-shadow: var(--shadow); }
.dl-icon {
  flex-shrink: 0; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%;
  background: var(--blush-soft); color: var(--rose-deep); font-size: 1.3rem;
}
.dl-text { display: flex; flex-direction: column; }
.dl-text strong { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--charcoal); line-height: 1.2; }
.dl-text span { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--taupe); margin-top: 4px; }

/* ===== Contact ===== */
.contact { background: var(--cream); }
.contact-inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; margin-top: 3rem; text-align: left; }
.contact-book { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.4rem; display: flex; flex-direction: column; justify-content: center; }
.contact-book h3 { margin-bottom: 0.9rem; }
.contact-book p { color: var(--charcoal-soft); margin-bottom: 1.8rem; }
.social-row { display: flex; gap: 1.4rem; margin-top: 1.5rem; justify-content: center; }
.social-row a { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rose-deep); border-bottom: 1px solid var(--blush); padding-bottom: 3px; transition: all 0.3s; }
.social-row a:hover { color: var(--rose); border-color: var(--rose); }
.contact-details .hint { font-size: 0.72rem; color: var(--taupe); letter-spacing: 0.04em; text-transform: none; }
.hours { display: flex; flex-direction: column; gap: 0.35rem; margin-top: 0.35rem; }
.hours > div { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.92rem; padding: 0.15rem 0; border-bottom: 1px dashed var(--blush); }
.hours > div:last-child { border-bottom: 0; }
.hours span:first-child { color: var(--charcoal-soft); }
.hours span:last-child { color: var(--charcoal); }
.hours .closed { color: var(--taupe); font-style: italic; }

.contact-details { background: var(--blush-soft); color: var(--charcoal); border: 1px solid var(--blush); border-radius: var(--radius); padding: 2.4rem; }
.contact-details h3 { color: var(--charcoal); margin-bottom: 1.4rem; }
.contact-details ul { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.contact-details li { display: flex; flex-direction: column; gap: 2px; }
.contact-details .label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose-deep); }
.contact-details a, .contact-details li > span:last-child { color: var(--charcoal); font-size: 1rem; }
.contact-details a:hover { color: var(--rose); }

.contact-form-wrap { max-width: 680px; margin: 3rem auto 0; text-align: left; background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.6rem clamp(1.6rem, 4vw, 2.8rem); }
.contact-form-wrap h3 { margin-bottom: 0.7rem; text-align: center; }
.contact-form-wrap > p { color: var(--charcoal-soft); margin-bottom: 2rem; text-align: center; }
.contact-form { display: flex; flex-direction: column; gap: 1.3rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.field label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose-deep); }
.contact-form input, .contact-form textarea { font-family: var(--font-body); font-size: 1rem; color: var(--charcoal); background: var(--cream); border: 1px solid var(--blush); border-radius: 10px; padding: 0.85rem 1rem; transition: border-color 0.3s, box-shadow 0.3s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px var(--blush-soft); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .btn-primary { margin-top: 0.4rem; }
.form-status { font-size: 0.9rem; text-align: center; margin-top: 0.2rem; min-height: 1.2em; }
.form-status.error { color: var(--rose-deep); }
.form-status.success { color: #5a7a5a; }

/* ===== Footer ===== */
.site-footer { background: var(--cream-2); color: var(--charcoal); padding: 3.2rem clamp(1.25rem, 5vw, 5rem); border-top: 1px solid var(--line); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.footer-brand { display: flex; flex-direction: column; line-height: 1; }
.footer-brand .brand-name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--rose-deep); }
.footer-brand .brand-sub { font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--taupe); margin-top: 9px; }
.footer-links { list-style: none; display: flex; flex-wrap: wrap; gap: 1.6rem; }
.footer-links a { font-size: 0.82rem; letter-spacing: 0.08em; color: var(--charcoal-soft); transition: color 0.3s; }
.footer-links a:hover { color: var(--rose); }
.footer-social { display: flex; gap: 0.9rem; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; color: var(--rose-deep); transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s; }
.footer-social a:hover { background: var(--rose); color: #fff; border-color: var(--rose); transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; }
.copyright { width: 100%; text-align: center; font-size: 0.76rem; color: var(--taupe); padding-top: 1.5rem; border-top: 1px solid var(--line); margin-top: 0.5rem; }
.built-by { display: block; margin-top: 0.35rem; font-size: 0.72rem; letter-spacing: 0.04em; }
.built-by a { color: var(--rose-deep); border-bottom: 1px solid var(--blush); padding-bottom: 1px; transition: color 0.3s, border-color 0.3s; }
.built-by a:hover { color: var(--rose); border-color: var(--rose); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .masonry { columns: 3; }
}

@media (max-width: 900px) {
  .about-grid, .process-grid, .contact-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .process-photo { order: -1; }
  .about-photo::after { display: none; }
}

@media (max-width: 720px) {
  .masonry { columns: 2; column-gap: 0.8rem; }
  .masonry figure { margin-bottom: 0.8rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    background: var(--cream); flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.6rem; padding: 3rem 2.4rem; transform: translateX(100%); transition: transform 0.45s var(--ease);
    box-shadow: -20px 0 60px -30px rgba(0,0,0,0.4);
  }
  .nav-links.open { transform: none; }
  .nav-links a { color: var(--charcoal) !important; font-size: 1.05rem; }
  .nav-cta { border-color: var(--rose); color: var(--rose-deep) !important; }
  .nav-toggle.open span { background: var(--charcoal); }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 560px) {
  .hero-actions .btn { flex: 1; text-align: center; }
  .download-cards { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
