@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --beige: #d3c9bc;
  --beige-light: #e8e2db;
  --beige-pale: #f0ece8;
  --beige-off: #f7f4f1;
  --dark: #1a1a1a;
  --dark-2: #222222;
  --mid: #4a4a4a;
  --muted: #8a7d74;
  --warm: #6a5f58;
  --serif: 'Playfair Display', serif;
  --sans: 'Jost', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--beige-pale); color: var(--dark); overflow-x: hidden; }

/* NAV */
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 48px; background: var(--beige-pale);
  border-bottom: 0.5px solid var(--beige);
  position: sticky; top: 0; z-index: 1000;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-logo { text-decoration: none; color: inherit; }
.nav-logo-arc { font-family: var(--serif); font-size: 22px; letter-spacing: 3px; font-weight: 700; display: block; }
.nav-logo-sub { font-size: 9px; letter-spacing: 4px; color: var(--muted); margin-top: 2px; text-transform: uppercase; display: block; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 10px; letter-spacing: 2.5px; color: var(--mid); text-decoration: none; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--dark); }
.nav-book { font-size: 10px; letter-spacing: 2px; background: var(--dark); color: var(--beige-pale); padding: 11px 24px; text-transform: uppercase; border: none; cursor: pointer; text-decoration: none; transition: background 0.2s; }
.nav-book:hover { background: #333; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 22px; height: 1px; background: var(--dark); display: block; }

.mobile-menu { display: none; flex-direction: column; background: var(--beige-pale); padding: 24px 32px; border-bottom: 0.5px solid var(--beige); position: sticky; top: 65px; z-index: 999; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; color: var(--mid); padding: 12px 0; border-bottom: 0.5px solid var(--beige); }
.mobile-menu .mobile-book { color: var(--dark); font-weight: 500; margin-top: 8px; border-bottom: none; }

/* BUTTONS */
.btn-primary { font-family: var(--sans); font-size: 10px; letter-spacing: 3px; background: var(--dark); color: var(--beige-pale); padding: 15px 40px; text-transform: uppercase; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s; }
.btn-primary:hover { background: #333; }
.btn-outline { font-family: var(--sans); font-size: 10px; letter-spacing: 3px; background: transparent; color: var(--dark); padding: 13px 38px; text-transform: uppercase; border: 1px solid var(--dark); cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.2s; }
.btn-outline:hover { background: var(--dark); color: var(--beige-pale); }
.btn-beige { font-family: var(--sans); font-size: 10px; letter-spacing: 3px; background: var(--beige); color: var(--dark); padding: 14px 36px; text-transform: uppercase; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s; }
.btn-beige:hover { background: #c4b9ab; }

/* SECTION */
.section { padding: 96px 48px; }
.section-label { font-size: 9px; letter-spacing: 4px; color: var(--muted); text-transform: uppercase; margin-bottom: 14px; }
.section-title { font-family: var(--serif); font-size: 40px; color: var(--dark); margin-bottom: 52px; font-weight: 400; line-height: 1.2; }
.section-title.light { color: var(--beige-pale); }

/* HERO */
.hero { min-height: 92vh; background: var(--beige-light); display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; position: relative; overflow: hidden; padding: 80px 24px; }
.hero-arch { position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 480px; height: 620px; background: var(--beige); border-radius: 240px 240px 0 0; opacity: 0.45; }
.hero-content { position: relative; z-index: 2; animation: heroFadeIn 1.2s ease both; }
.hero-eyebrow { font-size: 10px; letter-spacing: 5px; color: var(--muted); text-transform: uppercase; margin-bottom: 20px; }
.hero-title { font-family: var(--serif); font-size: 110px; font-weight: 700; letter-spacing: -2px; color: var(--dark); line-height: 0.85; }
.hero-studio { font-size: 12px; letter-spacing: 9px; color: var(--mid); text-transform: uppercase; margin-top: 12px; }
.hero-byline { font-family: var(--serif); font-size: 20px; color: var(--muted); font-style: italic; margin-top: 6px; margin-bottom: 10px; }
.hero-tagline { font-size: 10px; letter-spacing: 3px; color: var(--warm); text-transform: uppercase; margin-bottom: 44px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); font-size: 9px; letter-spacing: 3px; color: var(--muted); text-transform: uppercase; animation: bounce 2s infinite; }

@keyframes heroFadeIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* INTRO */
.intro { background: var(--beige-pale); display: flex; gap: 80px; align-items: center; }
.intro-left { flex: 1; }
.intro-right { flex: 1; display: flex; justify-content: center; }
.intro-arch { width: 280px; height: 380px; background: var(--beige); border-radius: 140px 140px 0 0; overflow: hidden; display: flex; align-items: center; justify-content: center; position: relative; }
.intro-arch img { width: 100%; height: 100%; object-fit: cover; }
.intro-arch-text { font-family: var(--serif); font-size: 13px; color: var(--warm); font-style: italic; text-align: center; }
.intro-text { font-family: var(--serif); font-size: 16px; line-height: 1.95; color: var(--mid); margin-bottom: 20px; }

/* SERVICES PREVIEW */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card { background: var(--dark-2); padding: 44px 36px; border-top: 1px solid #2e2e2e; text-decoration: none; display: block; transition: background 0.3s; position: relative; }
.service-card:hover { background: #2a2a2a; }
.service-arch { width: 44px; height: 58px; background: var(--beige); border-radius: 22px 22px 0 0; margin-bottom: 28px; opacity: 0.65; }
.service-name { font-family: var(--serif); font-size: 24px; color: var(--beige-pale); margin-bottom: 12px; font-weight: 400; }
.service-desc { font-size: 12px; line-height: 1.9; color: #7a7270; margin-bottom: 22px; font-weight: 300; }
.service-price { font-size: 10px; letter-spacing: 2px; color: var(--beige); text-transform: uppercase; }
.service-arrow { position: absolute; bottom: 36px; right: 36px; color: var(--beige); font-size: 20px; opacity: 0; transition: opacity 0.3s, transform 0.3s; }
.service-card:hover .service-arrow { opacity: 1; transform: translateX(4px); }

/* TEAM */
.team-single { display: flex; gap: 72px; align-items: center; }
.team-photo { width: 300px; height: 400px; background: var(--beige); border-radius: 150px 150px 0 0; overflow: hidden; display: flex; align-items: center; justify-content: center; position: relative; flex-shrink: 0; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-placeholder { font-family: var(--serif); font-size: 14px; color: var(--muted); font-style: italic; }
.team-name { font-family: var(--serif); font-size: 36px; color: var(--dark); margin-bottom: 8px; font-weight: 400; }
.team-title-text { font-size: 10px; letter-spacing: 3px; color: var(--muted); text-transform: uppercase; margin-bottom: 10px; }
.team-specialty { font-family: var(--serif); font-size: 15px; color: var(--warm); font-style: italic; margin-bottom: 28px; }
.team-bio { font-family: var(--serif); font-size: 15px; line-height: 1.9; color: var(--mid); margin-bottom: 36px; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery-item { aspect-ratio: 1; background: var(--beige); overflow: hidden; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 12px; color: var(--muted); font-style: italic; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: unset; }
.gallery-insta { text-align: center; font-size: 10px; letter-spacing: 3px; color: var(--mid); text-transform: uppercase; margin-top: 32px; }
.gallery-insta a { color: var(--dark); }

/* CONTACT */
.contact { background: var(--beige-pale); display: flex; gap: 80px; }
.contact-left { flex: 1; }
.contact-right { flex: 1; background: var(--beige-light); padding: 52px; }
.contact-item { margin-bottom: 32px; }
.contact-label { font-size: 9px; letter-spacing: 3px; color: var(--muted); text-transform: uppercase; margin-bottom: 8px; }
.contact-value { font-family: var(--serif); font-size: 17px; color: var(--dark); line-height: 1.7; text-decoration: none; display: block; }
.contact-value:hover { color: var(--muted); }
.hours-title { font-family: var(--serif); font-size: 24px; font-weight: 400; margin-bottom: 32px; color: var(--dark); }
.hours-row { display: flex; justify-content: space-between; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 0.5px solid var(--beige); }
.hours-day { font-size: 12px; color: var(--mid); font-weight: 300; }
.hours-time { font-size: 12px; color: var(--muted); }
.hours-time.closed { color: #b0a8a0; font-style: italic; }
.map-placeholder { margin-top: 40px; background: var(--beige); height: 160px; display: flex; align-items: center; justify-content: center; border-radius: 80px 80px 0 0; }
.map-link { font-family: var(--serif); font-size: 14px; color: var(--warm); text-decoration: none; font-style: italic; }

/* FOOTER */
.footer { background: var(--dark); padding: 40px 48px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: var(--serif); font-size: 20px; color: var(--beige); letter-spacing: 3px; }
.footer-copy { font-size: 9px; letter-spacing: 2px; color: #4a4040; text-transform: uppercase; }
.footer-links { display: flex; gap: 20px; align-items: center; }
.footer-links a { font-size: 9px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; text-decoration: none; }
.footer-links a:hover { color: var(--beige); }

/* PAGE HERO */
.page-hero { background: var(--beige-light); padding: 80px 48px 60px; text-align: center; position: relative; overflow: hidden; }
.page-hero-arch { position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 300px; height: 400px; background: var(--beige); border-radius: 150px 150px 0 0; opacity: 0.4; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-label { font-size: 9px; letter-spacing: 4px; color: var(--muted); text-transform: uppercase; margin-bottom: 16px; }
.page-hero-title { font-family: var(--serif); font-size: 60px; font-weight: 700; color: var(--dark); line-height: 1; }

/* FADE IN */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* BOOKING CTA */
.booking-text { font-family: var(--serif); font-size: 16px; color: var(--warm); font-style: italic; margin-bottom: 44px; }

/* UPLOAD OVERLAY (admin mode photos) */
.upload-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: none; align-items: center; justify-content: center; flex-direction: column; gap: 10px; cursor: pointer; border-radius: inherit; z-index: 5; }
.upload-overlay-icon { font-size: 28px; color: white; }
.upload-overlay-text { font-size: 11px; letter-spacing: 2px; color: white; text-transform: uppercase; font-family: var(--sans); }
body.admin-mode .upload-overlay { display: flex; }

/* ADMIN BAR */
.admin-bar { position: fixed; bottom: 0; left: 0; right: 0; background: #111; color: white; display: none; align-items: center; justify-content: space-between; padding: 12px 32px; z-index: 9999; font-size: 11px; }
body.admin-mode .admin-bar { display: flex; }
.admin-bar-label { color: var(--beige); font-family: var(--sans); letter-spacing: 1px; }
.admin-bar-btns { display: flex; gap: 10px; }
.admin-bar-btn { background: var(--beige); color: var(--dark); border: none; padding: 8px 20px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-family: var(--sans); transition: background 0.2s; }
.admin-bar-btn:hover { background: #c4b9ab; }
.admin-bar-btn.danger { background: #c0392b; color: white; }
.admin-bar-btn.danger:hover { background: #a93226; }

/* EDITABLE in admin mode */
body.admin-mode [contenteditable="true"] { outline: 2px dashed rgba(211,201,188,0.7); outline-offset: 3px; cursor: text; min-width: 20px; }
body.admin-mode [contenteditable="true"]:hover { outline-color: var(--beige); background: rgba(211,201,188,0.08); }
body.admin-mode [contenteditable="true"]:focus { outline-color: #b0a090; background: rgba(211,201,188,0.12); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links, .nav-book { display: none; }
  .nav-hamburger { display: flex; }
  .nav { padding: 18px 24px; }
  .hero-title { font-size: 72px; }
  .section { padding: 64px 24px; }
  .intro { flex-direction: column; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .team-single { flex-direction: column; gap: 40px; }
  .team-photo { width: 240px; height: 320px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1; }
  .contact { flex-direction: column; }
  .contact-right { padding: 40px 24px; }
  .footer { flex-direction: column; text-align: center; padding: 32px 24px; }
  .page-hero { padding: 60px 24px 40px; }
  .page-hero-title { font-size: 40px; }
  .admin-bar { flex-direction: column; gap: 8px; padding: 12px 16px; }
}
