:root {
  --background: #ffffff;
  --foreground: #4d504a;
  --muted: #84847c;
  --border: #e1e1e1;
  --accent: #afafa5;
  --cream: #f4f0ed;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Mulish", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant Garamond", serif;
  color: var(--foreground);
  margin: 0;
}

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

main { flex: 1; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.site-header .inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header img { display: block; height: 66px; width: auto; }

.main-nav {
  display: flex;
  gap: 2.25rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.main-nav > .nav-item { position: relative; padding: 0.5rem 0; }
.main-nav > .nav-item > a:hover { color: var(--accent); }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 13rem;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  z-index: 20;
}
.nav-item:hover > .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
}
.dropdown a:hover { background: var(--cream); color: var(--accent); }

.sub-item { position: relative; }
.sub-dropdown {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 13rem;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  z-index: 30;
}
.sub-item:hover > .sub-dropdown { display: block; }

.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  white-space: nowrap;
}
.header-phone-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #39b54a;
  display: inline-block;
}
@media (min-width: 1100px) { .header-phone { display: flex; } }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--foreground); margin: 5px 0; }

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
}

/* Hero */
.page-hero {
  border-bottom: 1px solid var(--border);
  background: var(--cream);
  text-align: center;
  padding: 4rem 1.5rem;
}
.page-hero h1 { font-size: 3rem; }
.page-hero p { margin-top: 1rem; font-size: 1.15rem; color: var(--muted); }

/* Grid cards */
.card-grid {
  max-width: 64rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
}
.card {
  display: block;
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  transition: background 0.15s, border-color 0.15s;
}
.card:hover { border-color: var(--accent); background: var(--cream); }
.card h2 { font-size: 1.5rem; }
.card .ext { display: block; margin-top: 0.5rem; font-size: 0.85rem; color: var(--muted); }

/* Content */
.content {
  max-width: 48rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.content p { font-size: 1.15rem; line-height: 1.7; margin-bottom: 1.25rem; }
.content .cta { text-align: center; margin-top: 2.5rem; }

.btn {
  display: inline-block;
  border: 1px solid var(--foreground);
  padding: 0.8rem 2.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  transition: background 0.15s, color 0.15s;
}
.btn:hover { background: var(--foreground); color: #fff; }

/* Home hero */
.home-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 6rem 1.5rem;
}
.home-hero h1 { font-size: 3.5rem; }
.home-hero p { max-width: 40rem; margin: 1.5rem auto 0; color: var(--muted); font-size: 1.15rem; }
.home-hero .actions { margin-top: 2.5rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.home-cta { max-width: 60rem; margin: 0 auto; padding: 5rem 1.5rem; text-align: center; }
.home-cta h2 { font-size: 2rem; margin-bottom: 1.5rem; }
.home-cta p { color: var(--muted); margin-bottom: 2rem; }

/* Contact tiles */
.contact-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .contact-tiles { grid-template-columns: repeat(3, 1fr); }
}
.contact-tiles a {
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: block;
}
.contact-tiles a:hover { border-color: var(--accent); }
.contact-tiles .label { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.25rem; }

/* Footer */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  background: var(--cream);
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.site-footer .brand { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; margin-bottom: 1rem; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0 1.5rem; font-size: 0.9rem; color: var(--muted); }
.footer-nav a:hover { color: var(--accent); }
.site-footer .copy { margin-top: 1.5rem; font-size: 0.75rem; color: var(--muted); }

/* Stats bar */
.stats-bar {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 640px) { .stats-bar { grid-template-columns: repeat(5, 1fr); } }
.stats-bar { padding-top: 3.5rem; }
.stats-bar .stat { position: relative; }
.stats-bar .stat::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 0.75rem;
}
.stats-bar .stat strong { display: block; font-family: "Cormorant Garamond", serif; font-size: 2.75rem; font-weight: 500; color: var(--foreground); }
.stats-bar .stat span { font-size: 0.8rem; letter-spacing: 0.04em; color: var(--muted); text-transform: uppercase; }

/* Pricing */
.pricing-grid {
  max-width: 64rem;
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-card { border: 1px solid var(--border); padding: 2rem; text-align: center; }
.pricing-card.featured { border-color: var(--foreground); background: var(--cream); }
.pricing-card h3 { font-size: 1.5rem; }
.pricing-card .price { font-family: "Cormorant Garamond", serif; font-size: 2.5rem; margin: 0.5rem 0 1.25rem; }
.pricing-card ul { list-style: none; margin: 0; padding: 0; text-align: left; }
.pricing-card li {
  padding: 0.5rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--muted);
}
.pricing-group-title {
  text-align: center;
  font-size: 1.75rem;
  max-width: 64rem;
  margin: 3rem auto 0;
  padding: 0 1.5rem;
  position: relative;
}
.pricing-group-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0.9rem auto 0;
}

.pricing-card { position: relative; }
.pricing-card.featured::before {
  content: "Recomandat";
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--foreground);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
}

/* Content lists */
.content ul { padding-left: 1.25rem; margin-bottom: 1.25rem; }
.content li { font-size: 1.05rem; line-height: 1.7; margin-bottom: 0.5rem; }
.content h2 { font-size: 1.75rem; margin: 2.5rem 0 1rem; }
.content address { font-style: normal; color: var(--muted); }

/* Marketplace CTA box */
.marketplace-box {
  max-width: 48rem;
  margin: 0 auto 4rem;
  padding: 2rem;
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--border);
}
.marketplace-box p { color: var(--muted); margin-bottom: 1.25rem; }

/* Blog cards */
.blog-grid {
  max-width: 56rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.blog-grid a { background: #fff; padding: 1.5rem 2rem; display: block; }
.blog-grid a:hover { background: var(--cream); }
.blog-grid h3 { font-size: 1.3rem; }

/* Service hero — full-bleed background photo, overlay, centered text (ca pe live) */
.service-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,30,26,0.35), rgba(30,30,26,0.6));
}
.service-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  padding: 3rem 1.5rem;
}
.service-hero-inner h1 {
  font-size: 2.75rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.service-hero-inner p { margin-top: 1.25rem; font-size: 1.2rem; color: #f2f0ec; font-style: italic; }
.service-hero-inner .actions { margin-top: 2rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-light {
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.8rem 2.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  transition: background 0.15s, color 0.15s;
}
.btn-light:hover { background: #fff; color: var(--foreground); }

/* Homepage photo showcase */
.photo-showcase {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .photo-showcase { grid-template-columns: 1fr 1fr; } }
.photo-showcase img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/3; }

/* Alternating section background */
.section-alt { background: var(--cream); }

/* Feature grid (icon + title + text) */
.feature-grid {
  max-width: 68rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-card img { width: 48px; height: 48px; margin: 0 auto 1rem; object-fit: contain; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.6; }

/* Team grid */
.team-grid {
  max-width: 56rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-grid img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
}
.team-grid h3 { font-size: 1.15rem; }
.team-grid span { font-size: 0.85rem; color: var(--muted); }
.team-title { text-align: center; font-size: 2rem; max-width: 56rem; margin: 0 auto; padding: 0 1.5rem; }
.team-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0.9rem auto 0;
}
.team-title + .team-grid { padding-top: 1.5rem; }

/* Dark footer */
.site-footer {
  margin-top: auto;
  background: #2c2e29;
  color: #d8d6d0;
  padding: 4rem 1.5rem 2rem;
}
.footer-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  text-align: center;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); text-align: left; }
}
.site-footer .brand { font-family: "Cormorant Garamond", serif; font-size: 1.75rem; color: #fff; margin-bottom: 1rem; }
.footer-social { display: flex; gap: 1rem; justify-content: center; }
@media (min-width: 760px) { .footer-social { justify-content: flex-start; } }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid #565850; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h4 { color: #fff; font-family: "Cormorant Garamond", serif; font-size: 1.2rem; margin-bottom: 1rem; }
.footer-nav { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.9rem; }
.footer-nav a:hover { color: #fff; }
.site-footer .copy {
  max-width: 72rem;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #454741;
  text-align: center;
  font-size: 0.8rem;
  color: #918f88;
}

/* Photo session types */
.session-grid {
  max-width: 68rem;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 640px) { .session-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .session-grid { grid-template-columns: repeat(4, 1fr); } }
.session-card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 1rem;
}
.session-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.session-card:hover .session-card-img img { transform: scale(1.05); }
.session-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.session-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* Recent events */
.events-grid {
  max-width: 64rem;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .events-grid { grid-template-columns: repeat(4, 1fr); } }
.event-card { position: relative; display: block; aspect-ratio: 3/4; overflow: hidden; }
.event-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.event-card:hover img { transform: scale(1.06); }
.event-card span {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1rem 0.9rem;
  background: linear-gradient(0deg, rgba(20,20,17,0.75), transparent);
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
}

/* Testimonials */
.testimonial-grid {
  max-width: 68rem;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
.testimonial-card { border: 1px solid var(--border); background: #fff; padding: 2rem; }
.testimonial-card .quote { font-family: "Cormorant Garamond", serif; font-size: 1.2rem; font-style: italic; line-height: 1.6; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.testimonial-author span { font-weight: 600; font-size: 0.9rem; }

/* Free session banner */
.free-session {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}
.free-session::before { content: ""; position: absolute; inset: 0; background: rgba(20,20,17,0.55); }
.free-session-inner { position: relative; z-index: 1; max-width: 38rem; padding: 3rem 1.5rem; }
.free-session-inner h2 { color: #fff; font-size: 2.25rem; }
.free-session-inner p { margin: 1rem 0 1.75rem; color: #f2f0ec; }

/* Quote block */
.quote-block {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.quote-block p {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--foreground);
}
.quote-block span { display: block; margin-top: 1rem; font-size: 0.9rem; color: var(--muted); }
