/* Atelier Jomaa – Simple elegant version */

:root {
  --bg: #faf9f7;
  --bg-alt: #f2f0eb;
  --text: #1c1b19;
  --muted: #5c5a56;
  --accent: #8b7355;
  --accent-dark: #6d5a43;
  --border: #e4e1db;
  --white: #fff;
  --radius: 10px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: 0.2s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,249,247,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: 0.25s;
}
.header.scrolled { border-color: var(--border); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
}
.logo span { font-weight: 400; font-style: italic; color: var(--accent); }

.nav { display: flex; gap: 28px; }
.nav a { font-size: 0.95rem; color: var(--muted); }
.nav a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: 0.25s;
}

/* Hero */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  background: linear-gradient(160deg, #2a2825 0%, #1a1917 100%);
  color: var(--white);
}

.hero-content { max-width: 640px; }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero h1 em { font-style: italic; color: #d4c4a8; }

.hero-text {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}
.section-header .eyebrow {
  color: var(--accent);
  margin-bottom: 10px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 500;
  margin-bottom: 12px;
}
.section-desc { color: var(--muted); font-size: 1.02rem; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(139,115,85,0.12);
}
.pricing-card .badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid #f0ede8;
  font-size: 0.95rem;
}
.price-list li:last-child { border-bottom: none; }
.price-list li span:last-child {
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
}

.price-note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

.pricing-disclaimer {
  margin-top: 36px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Gallery */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.video-item p {
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--muted);
  text-align: center;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #eae7e1, #d8d4cb);
  color: var(--muted);
  text-align: center;
}
.gallery-placeholder span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
}
.gallery-placeholder small {
  margin-top: 6px;
  font-size: 0.85rem;
  opacity: 0.8;
}
.gallery-note {
  margin-top: 28px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

/* Locations / Contact */
.locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.location-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.address {
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.55;
}
.phone {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 18px;
}
.phone a { color: var(--accent); }
.phone a:hover { color: var(--accent-dark); }

.hours li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.hours li span:first-child { font-weight: 500; color: var(--text); }
.note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

.contact-extra {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.contact-extra p { margin-bottom: 10px; }
.contact-extra a { color: var(--accent); font-weight: 500; }
.contact-extra a:hover { color: var(--accent-dark); }
.social a { margin: 0 6px; }

/* Footer */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 40px 0 24px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}
.footer .logo { color: #fff; margin-bottom: 8px; display: inline-block; }
.footer-brand p { font-size: 0.9rem; line-height: 1.5; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: #fff; }
.footer-copy {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle { display: flex; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .section { padding: 60px 0; }
  .hero { min-height: 60vh; padding: 100px 20px 60px; }
}
