:root {
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #0e0e0f;
  background-color: #f6f6f4;
}

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

body {
  margin: 0;
  background: #f7f6f2;
}

p {
  max-width: 60ch;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, 90vw);
  margin: 0 auto;
}

.site-header {
  padding: 2rem 0 4rem;
}

.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(15, 15, 17, 0.1);
  padding-bottom: 1.5rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

nav a:hover,
.link-cta {
  opacity: 1;
}

.link-cta {
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.2rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  padding: 4rem 0 2rem;
}

.hero-intro h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.2;
  margin: 1.5rem 0;
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: #7a7a74;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  border: 1px solid #0e0e0f;
  padding: 0.85rem 2.8rem;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-decoration: none;
}

.hero-media {
  display: grid;
  gap: 1rem;
}

.hero-img {
  border-radius: 32px;
  min-height: 220px;
}

.hero-img.primary {
  background: linear-gradient(160deg, #111 0%, #333 60%, #5f5f58 100%);
}

.hero-img.secondary {
  background: linear-gradient(120deg, #e0d9cf, #f6f0e7);
}

.caption {
  font-size: 0.85rem;
  color: #6a6864;
}

.section {
  padding: 4rem 0;
}

.eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #8a887e;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.3;
  margin: 0.5rem 0 1.5rem;
  font-family: "Playfair Display", serif;
}

.manifesto {
  background: #fdfdfb;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}

.stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 2rem 0 0;
}

.stats span {
  font-size: 2rem;
  font-weight: 600;
}

.stats small {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.6rem;
  display: block;
  margin-top: 0.2rem;
}

.services {
  background: #fff;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-end;
}

.service-list {
  margin-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.service-list article {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
}

.service-list h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price.sur-mesure {
  opacity: 0.6;
}

.gallery {
  background: #111112;
  color: #f6f4ef;
}

.gallery .section-head {
  align-items: flex-start;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.gallery-card {
  border-radius: 24px;
  min-height: 180px;
  padding: 1.5rem;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-end;
}

.gallery-card.dark {
  background: linear-gradient(160deg, #272727, #1a1a1a);
}

.gallery-card.tall {
  min-height: 320px;
}

.gallery-card.wide {
  grid-column: span 2;
}

.contact {
  background: #fdfdfa;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  align-items: center;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn.dark {
  background: #0e0e0f;
  color: #fff;
}

.btn.ghost {
  background: transparent;
}

.note {
  font-size: 0.85rem;
  color: #706f69;
  max-width: 30ch;
}

.site-footer {
  padding: 2rem 0;
  background: #0e0e0f;
  color: #fff;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-bar a {
  color: #fff;
  opacity: 0.6;
  text-decoration: none;
}

.footer-bar a:hover {
  opacity: 1;
}

@media (max-width: 720px) {
  .header-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  nav {
    flex-wrap: wrap;
  }

  .gallery-card.wide {
    grid-column: auto;
  }
}
