:root {
  --cursor-horse: url('assets/cursor-horse-48.png');
  --ink: #101010;
  --ink-soft: #2d2a26;
  --ivory: #f7f2ec;
  --sand: #efe5d9;
  --gold: #b08a5a;
  --olive: #54624e;
  --stone: #d7c8b9;
  --paper: #ffffff;
      --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  --radius: 0px;
}

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

body {
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.65;
  cursor: var(--cursor-horse) 24 24, auto;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: var(--cursor-horse) 24 24, pointer;
}

button,
input,
textarea,
select {
  cursor: var(--cursor-horse) 24 24, pointer;
}

html {
  scroll-behavior: smooth;
  cursor: var(--cursor-horse) 24 24, auto;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.wrap {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 242, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(16, 16, 16, 0.06);
  box-shadow: 0 6px 18px rgba(16, 16, 16, 0.06);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 46px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav a {
  opacity: 0.78;
  transition: opacity 0.2s ease;
  position: relative;
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nav a:not(.btn):hover::after {
  opacity: 1;
}

.nav a:not(.btn) + a:not(.btn) {
  margin-left: 8px;
  padding-left: 20px;
}

.nav a:not(.btn) + a:not(.btn)::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  width: 1px;
  height: 14px;
  background: rgba(16, 16, 16, 0.2);
  transform: translateY(-50%);
}

.nav a:hover {
  opacity: 1;
}

.nav a.active {
  opacity: 1;
  color: var(--gold);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
}

.nav .btn {
  padding: 10px 18px;
}

.nav-toggle {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.burger {
  display: inline-grid;
  gap: 5px;
}

.burger span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  display: block;
  border-radius: var(--radius);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: var(--radius);
  position: relative;
  background: var(--ink);
  color: var(--ivory);
  font-weight: 600;
  border: 1px solid var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 10px 24px rgba(12, 10, 8, 0.18);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
}

.btn.small {
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: 0.8px;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(176, 138, 90, 0.6);
}

.btn:hover::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
}
.btn.ghost {
  background: rgba(176, 138, 90, 0.16);
  color: var(--ink);
  box-shadow: none;
  border-color: rgba(176, 138, 90, 0.55);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero {
  padding: 110px 0 130px;
  position: relative;
  z-index: 1;
}

.hero-ornament {
  position: absolute;
  inset: 12% 6% auto auto;
  width: min(420px, 46vw);
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 138, 90, 0.25), rgba(176, 138, 90, 0));
  filter: blur(2px);
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(280px, 0.9fr);
  gap: 64px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 5vw, 4.6rem);
  line-height: 1.03;
  margin-bottom: 20px;
}

.lead {
  font-size: 1.05rem;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin: 28px 0 24px;
  flex-wrap: wrap;
}

.hero-alert {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 16, 16, 0.08);
}

.hero-alert strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.hero-alert span {
  font-size: 14px;
  color: var(--ink-soft);
}

.hero-card {
  background: var(--paper);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(176, 138, 90, 0.2);
  margin-top: 18px;
}

.hero-card .card-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.hero-card a {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--gold);
}

.hero-alert,
.hero-card,
.panel,
.atelier-panel,
.teacher-card,
.tarifs-card,
.news-row article,
.contact-card {
  border-color: rgba(176, 138, 90, 0.45);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(176, 138, 90, 0.08);
}

.hero-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 320px 200px;
  gap: 14px;
}

.media-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 16, 0.08);
  box-shadow: var(--shadow);
  background: var(--paper);
}

.media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0), rgba(16, 16, 16, 0.7));
  color: var(--ivory);
  padding: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.media-tile:hover {
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(176, 138, 90, 0.28);
}

.media-tile.photo-slot:hover {
  background: linear-gradient(180deg, #f9efe4 0%, #eddcc7 100%);
  color: var(--ink);
}

.media-tile.tall {
  grid-row: span 2;
}

.photo-slot {
  border: 1px dashed rgba(176, 138, 90, 0.6);
  background: linear-gradient(180deg, #fbf7f2 0%, #efe0cf 100%);
  color: #6f4c2b;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 11px;
  text-align: center;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.photo-slot span {
  max-width: 90%;
  line-height: 1.5;
}

.media-tile.photo-slot {
  min-height: 180px;
}

.split {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(120deg, #fbf7f2 0%, #efe2d4 100%);
  border-top: 1px solid rgba(16, 16, 16, 0.06);
  border-bottom: 1px solid rgba(16, 16, 16, 0.06);
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.split-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.split-panels {
  display: grid;
  gap: 16px;
}

.panel {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 16, 16, 0.08);
}

.panel-photo {
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.panel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.panel.accent {
  background: linear-gradient(135deg, #f2e2cf, #f9f2e8);
}

.services,
.teachers {
  padding: 110px 0;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
}

.section-head::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(176, 138, 90, 0.45);
  margin-top: 12px;
}

.installations-atelier {
  display: grid;
  gap: 26px;
}

.atelier-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(280px, 0.95fr);
  gap: 36px;
  align-items: start;
}

.atelier-left {
  display: grid;
  gap: 14px;
}

.atelier-hero {
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.atelier-hero img,
.atelier-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.atelier-wide {
  min-height: 180px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.atelier-right {
  display: grid;
  gap: 16px;
}

.atelier-panel {
  background: var(--paper);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 16, 16, 0.08);
  color: var(--ink-soft);
}

.atelier-list {
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 15px;
}

.atelier-list strong {
  color: var(--ink);
  font-weight: 600;
}

.atelier-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.strip-photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 200px;
}

.strip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.tile {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  min-height: 160px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  font-weight: 600;
  box-shadow: var(--shadow);
  color: var(--ivory);
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.tile.photo-slot {
  align-items: center;
  color: var(--ink-soft);
  text-shadow: none;
  font-weight: 600;
}

.tile.big {
  grid-column: span 7;
  min-height: 260px;
}

.tile.wide {
  grid-column: span 8;
}

.tile:nth-child(2) { grid-column: span 5; }
.tile:nth-child(3) { grid-column: span 4; }
.tile:nth-child(4) { grid-column: span 4; }

.installations-grid .tile {
  min-height: 200px;
}

.teacher-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.teacher-card {
  background: var(--paper);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 16, 16, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.teacher-card:hover {
  transform: translateY(-6px);
  border-color: rgba(176, 138, 90, 0.5);
  box-shadow: 0 22px 46px rgba(12, 10, 8, 0.18);
}
.portrait {
  height: 200px;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: var(--radius);
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing {
  padding: 110px 0;
  background: linear-gradient(180deg, #f6f0e7, #efe4d8);
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.tarifs-card {
  background: var(--paper);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 16, 16, 0.06);
}
.tarifs-card h3 {
  margin-bottom: 16px;
}

.tarifs-card.featured {
  border: 1px solid rgba(176, 138, 90, 0.6);
  background: linear-gradient(180deg, #ffffff 0%, #f9f2e8 100%);
  box-shadow: 0 22px 50px rgba(176, 138, 90, 0.22);
}
.tarif-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(16, 16, 16, 0.06);
  font-size: 14px;
}

.tarif-row span {
  flex: 1;
  min-width: 0;
}

.tarif-row strong {
  min-width: 150px;
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.tarif-row:last-child {
  border-bottom: none;
}

.tarifs-notes {
  margin-top: 24px;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.news {
  padding: 110px 0;
}

.news-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.news-controls {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.news-note {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 18px;
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.news-tag {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(176, 138, 90, 0.45);
  color: #6f4c2b;
  background: rgba(176, 138, 90, 0.16);
  padding: 4px 8px;
  line-height: 1;
}

.news-tag.upcoming {
  border-color: rgba(84, 98, 78, 0.6);
  color: #54624e;
  background: rgba(84, 98, 78, 0.16);
}

.news-carousel {
  position: relative;
  display: grid;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  overflow: hidden;
}

.news-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: 18px;
  overflow-x: auto;
  padding: 8px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-padding: 0 20px;
  align-items: stretch;
}

.news-row::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.news-row::-webkit-scrollbar-thumb,
.news-row::-webkit-scrollbar-track {
  background: transparent;
}

.news-row article {
  background: var(--paper);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  border: 1px solid rgba(16, 16, 16, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.news-row article:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(12, 10, 8, 0.12);
}

.news-row article h3 {
  min-height: 2.6em;
}

.news-row article p {
  font-size: 14px;
  color: var(--ink-soft);
}

.news-row article p:last-of-type {
  margin-top: auto;
}
.news-arrow {
  position: static;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(176, 138, 90, 0.35);
  background: #ffffff;
  color: #6f4c2b;
  font-size: 20px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(12, 10, 8, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.news-arrow:hover {
  border-color: rgba(176, 138, 90, 0.65);
  color: #6f4c2b;
  transform: scale(1.03);
  box-shadow: 0 14px 30px rgba(12, 10, 8, 0.16);
}

.news-arrow.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.news-date {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact {
  padding: 120px 0 140px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.contact-info h2 {
  margin-bottom: 12px;
}

.contact-info p {
  margin-bottom: 6px;
}

.contact-info p:last-of-type {
  margin-bottom: 0;
}

.contact-card {
  background: var(--paper);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  border: 1px solid rgba(16, 16, 16, 0.06);
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 1px solid rgba(16, 16, 16, 0.15);
  padding: 12px 14px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
}

.contact-social {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}

.contact-social .social-icons {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.contact-social .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6f4c2b;
  padding: 2px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.contact-social .social-icon:hover {
  transform: translateY(-2px);
  color: #6f4c2b;
}

.contact-social .social-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.contact-direct {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-direct .btn {
  min-width: 200px;
  height: 46px;
}

.contact-direct .btn.ghost {
  border-color: rgba(16, 16, 16, 0.35);
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-soft);
}

.contact-note {
  font-size: 13px;
  color: var(--ink-soft);
  border-top: 1px solid rgba(16, 16, 16, 0.06);
  padding-top: 12px;
}

.map-block {
  margin-top: 30px;
}

.map-frame {
  border: 1px solid rgba(16, 16, 16, 0.12);
  box-shadow: var(--shadow);
  background: var(--paper);
  overflow: hidden;
  border-radius: var(--radius);
}

.map-frame iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(16, 16, 16, 0.06);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
}
@media (max-width: 900px) {
  .site-header .wrap {
    padding: 12px 0;
  }

  .logo-text {
    font-size: 16px;
  }
  .hero-ornament {
    opacity: 0.5;
    width: 260px;
    height: 260px;
  }
  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius);
    border: 1px solid rgba(16, 16, 16, 0.2);
    background: transparent;
    font-family: inherit;
  }

  .nav.open {
    position: absolute;
    top: 70px;
    right: 4vw;
    display: grid;
    background: var(--paper);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav.open a {
    padding: 8px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 7vw, 3.2rem);
  }

  .lead {
    font-size: 1rem;
  }

  .news-controls {
    width: 100%;
    justify-content: flex-start;
  }

  .atelier-grid {
    grid-template-columns: 1fr;
  }

  .atelier-strip {
    grid-template-columns: 1fr 1fr;
  }

  .hero-media {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 180px;
  }

  .media-tile.tall {
    grid-row: span 1;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .tile.big,
  .tile.wide {
    grid-column: span 6;
  }

  .tile:nth-child(2),
  .tile:nth-child(3),
  .tile:nth-child(4) {
    grid-column: span 3;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 70px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .section-head h2 {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  .hero-alert,
  .hero-card,
  .panel,
  .atelier-panel,
  .teacher-card,
  .tarifs-card,
  .news-row article,
  .contact-card {
    padding: 18px;
  }

  .news-row {
    grid-auto-columns: minmax(240px, 78vw);
    padding: 8px 14px;
  }

  .contact-direct .btn {
    min-width: 100%;
  }

  .contact-social .social-logo {
    width: 36px;
    height: 36px;
  }

  .atelier-hero {
    min-height: 260px;
  }

  .atelier-strip {
    grid-template-columns: 1fr;
  }

  .hero-media {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 180px 180px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tile,
  .tile.big,
  .tile.wide,
  .tile:nth-child(2),
  .tile:nth-child(3),
  .tile:nth-child(4) {
    grid-column: span 2;
  }
}
















































