/* ============================================
   Mayflower Asian Bodywork — shared stylesheet
   ============================================ */

:root {
  --paper: #f4f3ee;
  --ink: #24291f;
  --jade: #24403c;
  --jade-deep: #1c2b2b;
  --brass: #c08432;
  --gold: #d79539;
  --stone-1: #ded8ca;
  --stone-2: #cfc7b4;
  --stone-3: #b9ad95;
  --line: rgba(36, 41, 31, 0.14);
  --max: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

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

a { color: inherit; }

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

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 243, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.wordmark {
  text-decoration: none;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
}

.wordmark span { color: var(--jade); }

.logo-img {
  height: 46px;
  width: auto;
}

.site-footer .logo-img {
  height: 40px;
  /* renders the dark logo in cream on the dark footer */
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  opacity: 1;
  color: var(--jade);
}

.btn {
  display: inline-block;
  background: var(--jade);
  color: #fff;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover { background: var(--jade-deep); transform: translateY(-1px); }

.btn.brass { background: var(--brass); }
.btn.brass:hover { background: #8f6a30; }

/* ---------- Hero ---------- */

.hero {
  background: url("img-hero.svg") center / cover no-repeat, var(--jade-deep);
  color: #f4f3ee;
  padding: 130px 0 150px;
  position: relative;
  overflow: hidden;
}

/* left-side scrim so text stays readable over the scene */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 43, 43, 0.82) 0%, rgba(28, 43, 43, 0.45) 45%, rgba(28, 43, 43, 0) 75%);
  z-index: 1;
}

.hero .wrap { position: relative; z-index: 2; max-width: 860px; }

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  color: rgba(244, 243, 238, 0.75);
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero p {
  font-size: 1.2rem;
  color: rgba(244, 243, 238, 0.85);
  margin-bottom: 36px;
  max-width: 480px;
}

/* ---------- Artwork sections ---------- */

.split .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-img img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(28, 43, 43, 0.18);
}

.split.reverse .split-img { order: 2; }

.art-band {
  padding: 0;
}

.art-band img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
}

/* ---------- Sections ---------- */

section { padding: 90px 0; }

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--brass);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 18px;
}

.section-lede {
  max-width: 560px;
  opacity: 0.85;
}

/* ---------- Services / pricing stones ---------- */

.services { border-bottom: 1px solid var(--line); }

.stones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.stone {
  border-radius: 46% 54% 52% 48% / 58% 52% 48% 42%;
  padding: 54px 30px 48px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stone:nth-child(1) { background: var(--stone-1); }
.stone:nth-child(2) { background: var(--stone-2); border-radius: 52% 48% 46% 54% / 50% 58% 42% 50%; }
.stone:nth-child(3) { background: var(--stone-3); border-radius: 48% 52% 55% 45% / 45% 50% 50% 55%; }

.stone:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(36, 41, 31, 0.14);
}

.stone .duration {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}

.stone .duration small {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 8px;
  opacity: 0.7;
}

.stone .price {
  margin-top: 18px;
  font-size: 1.5rem;
  color: var(--jade);
  font-weight: 500;
}

.services-note {
  margin-top: 40px;
  text-align: center;
  font-style: italic;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem;
  color: var(--jade);
}

/* ---------- Standard (about) ---------- */

.standard p { margin-bottom: 18px; opacity: 0.9; }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--jade);
  color: #f4f3ee;
  text-align: center;
  padding: 72px 0;
}

.cta-band h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: 12px; }
.cta-band p { opacity: 0.85; margin-bottom: 30px; }

/* ---------- Contact page ---------- */

.page-head {
  padding: 80px 0 40px;
}

.page-head h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 38px 36px;
  background: #fff;
}

.contact-card h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--jade);
}

.contact-card p { margin-bottom: 10px; }

.contact-card a { color: var(--jade); text-decoration: none; border-bottom: 1px solid rgba(46,75,60,0.35); }
.contact-card a:hover { border-bottom-color: var(--jade); }

.hours-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--line);
  padding: 10px 0;
}

.hours-row:last-child { border-bottom: none; }

.map-section { padding: 40px 0 100px; }

.map-frame {
  border: 0;
  width: 100%;
  height: 440px;
  border-radius: 18px;
  filter: grayscale(15%);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--jade-deep);
  color: rgba(244, 243, 238, 0.85);
  padding: 56px 0 40px;
  font-size: 0.95rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-grid .wordmark { color: #f4f3ee; font-size: 1.15rem; }
.footer-grid .wordmark span { color: var(--gold); }

.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: #fff; }

.footer-meta { margin-top: 30px; opacity: 0.6; font-size: 0.85rem; }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .stones { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .standard .wrap { grid-template-columns: 1fr; gap: 24px; }
  .split .wrap { grid-template-columns: 1fr; gap: 28px; }
  .split.reverse .split-img { order: 0; }
  .split-img img { min-height: 260px; }
  .art-band img { height: 220px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 90px 0 110px; }
  section { padding: 64px 0; }
}

@media (max-width: 560px) {
  .nav-links { gap: 16px; }
  .nav-links .nav-book { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .stone, .btn { transition: none; }
}
