/* Estuseul — Service Sub-Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&display=swap');

:root {
  --paper: #FAF8F4;
  --ink: #1A1A1A;
  --ink-muted: #555;
  --accent: #5B2333;
  --accent-light: #f4ede0;
  --rule: #e0ddd6;
  --sans: 'Inter Tight', sans-serif;
  --serif: 'Fraunces', serif;
  --content: 1200px;
  --max: 1440px;
}

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

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.svc-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.svc-nav-inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0.75rem clamp(1.5rem, 4vw, 3rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.svc-nav-brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ink);
  text-decoration: none;
}
.svc-nav-back {
  font-size: 0.85rem;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.svc-nav-back:hover { color: var(--accent); }

/* HERO */
.svc-hero {
  margin-top: 52px;
  height: 50vh;
  min-height: 360px;
  max-height: 520px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.svc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.7) 0%, transparent 60%);
}
.svc-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content);
  margin: 0 auto;
  padding: 2rem clamp(1.5rem, 4vw, 3rem);
  width: 100%;
}
.svc-hero-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}
.svc-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: #fff;
  line-height: 1.15;
}
.svc-hero-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-top: 0.75rem;
  max-width: 560px;
}

/* INTRO */
.svc-intro {
  max-width: var(--content);
  margin: 0 auto;
  padding: 3rem clamp(1.5rem, 4vw, 3rem) 2rem;
}
.svc-intro p {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 700px;
  line-height: 1.75;
}

/* WHAT'S INCLUDED */
.svc-details {
  max-width: var(--content);
  margin: 0 auto;
  padding: 1rem clamp(1.5rem, 4vw, 3rem) 3rem;
}
.svc-details h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--rule);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.svc-item {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}
.svc-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.svc-item h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.svc-item p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.6;
}
.svc-item .svc-duration {
  font-size: 0.78rem;
  color: var(--accent);
  margin-top: 0.75rem;
  font-weight: 500;
}
.svc-item--more {
  border: 1px dashed var(--rule);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-item--more h3 {
  color: var(--ink-muted);
  font-style: italic;
}
.svc-item--more p {
  font-size: 0.85rem;
}

/* PRICE RANGE */
.svc-price {
  max-width: var(--content);
  margin: 0 auto;
  padding: 1rem clamp(1.5rem, 4vw, 3rem) 2rem;
}
.svc-price-box {
  background: var(--accent-light);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.svc-price-label {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1rem;
  color: var(--accent);
}
.svc-price-range {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--accent);
}
.svc-price-note {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 0.25rem;
}

/* IMAGE BREAK */
.svc-image-break {
  max-width: var(--content);
  margin: 0 auto;
  padding: 2rem clamp(1.5rem, 4vw, 3rem);
}
.svc-image-break img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 12px;
}

/* CTA */
.svc-cta {
  max-width: var(--content);
  margin: 0 auto;
  padding: 2rem clamp(1.5rem, 4vw, 3rem) 4rem;
  text-align: center;
}
.svc-cta p {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.svc-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.9rem 2.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s;
}
.svc-cta-btn:hover { background: #7a2f43; }

/* FOOTER */
.svc-footer {
  border-top: 1px solid var(--rule);
  padding: 2rem clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}
.svc-footer p {
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.7;
}
.svc-footer a {
  color: var(--accent);
  text-decoration: none;
}

/* TIME NOTE */
.svc-time-note {
  max-width: 700px;
  margin: 1.5rem auto 0;
  padding: 1.1rem 1.5rem;
  background: var(--accent-light);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* PAGE NAV (prev + next service) */
.svc-page-nav {
  max-width: var(--content);
  margin: 0 auto;
  padding: 1.5rem clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--ink-muted);
}
.svc-page-nav a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.svc-page-nav a:hover { color: #7a2f43; }

/* INSTAGRAM GALLERY */
.svc-gallery {
  max-width: var(--content);
  margin: 0 auto;
  padding: 1rem clamp(1.5rem, 4vw, 3rem) 2rem;
}
.svc-gallery h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--rule);
}
.svc-gallery-subtitle {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}
.svc-ig-embed {
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  padding: clamp(14px, 2vw, 20px);
}
.svc-ig-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}
.svc-ig-account {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.svc-ig-more {
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
}
.svc-ig-more:hover {
  text-decoration: underline;
}
.svc-ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.svc-ig-grid a {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
}
.svc-ig-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.svc-ig-grid a:hover img {
  transform: scale(1.04);
}
.svc-ig-embed iframe {
  width: 100%;
  display: block;
  border: none;
}
.svc-ig-note {
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-top: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .svc-hero { height: 40vh; min-height: 280px; }
  .svc-price-box { flex-direction: column; text-align: center; }
  .svc-grid { grid-template-columns: 1fr; }
}
