:root {
  --ink: #17231f;
  --deep: #0f2b25;
  --muted: #617069;
  --line: #d8e8df;
  --paper: #fbfffd;
  --milk: #f3fbf6;
  --leaf: #247260;
  --leaf-dark: #174d41;
  --coral: #d85855;
  --coral-dark: #aa3838;
  --gold: #e8b23d;
  --blue: #9cc8d1;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(23, 35, 31, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    repeating-linear-gradient(0deg, rgba(23, 35, 31, 0.018) 0 1px, transparent 1px 9px),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body::selection {
  background: var(--blue);
  color: var(--ink);
}

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

a {
  color: inherit;
}

a:focus-visible,
.button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  max-width: 780px;
  font-size: 5rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.22rem;
  line-height: 1.18;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 13px 48px;
  background: rgba(251, 255, 253, 0.92);
  border-bottom: 1px solid rgba(216, 232, 223, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 248px;
  color: var(--ink);
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
  font-weight: 800;
}

.brand__text {
  display: grid;
  gap: 1px;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--leaf-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 21px;
  border: 1px solid var(--coral);
  border-radius: 8px;
  background: var(--coral);
  color: var(--white);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--coral-dark);
  border-color: var(--coral-dark);
}

.button--small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.92rem;
  white-space: nowrap;
}

.button--line-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.button--line-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--deep);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--gold);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 76svh;
  overflow: hidden;
  align-items: end;
  padding: 94px 64px 52px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 24, 21, 0.84) 0%, rgba(8, 24, 21, 0.62) 47%, rgba(8, 24, 21, 0.22) 100%),
    linear-gradient(0deg, rgba(8, 24, 21, 0.68) 0%, rgba(8, 24, 21, 0.08) 44%, rgba(8, 24, 21, 0.18) 100%),
    url("https://papierciseauxetcie.com/wp-content/uploads/2026/03/659803465_1523634659764751_8685463853862982951_n.jpg") center / cover;
}

.hero::after {
  position: absolute;
  right: -5%;
  bottom: -1px;
  left: 42%;
  z-index: 0;
  height: 140px;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 18px, rgba(251, 255, 253, 0.96) 18px 100%),
    var(--paper);
  clip-path: polygon(9% 42%, 100% 4%, 100% 100%, 0 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 11px);
  mix-blend-mode: soft-light;
  opacity: 0.72;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
}

.hero__lead {
  max-width: 640px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.hero__actions,
.booking__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__rail {
  position: absolute;
  z-index: 1;
  right: 42px;
  bottom: 106px;
  display: grid;
  gap: 10px;
  width: 260px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
}

.hero__rail span {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.36);
}

.section {
  padding: 98px 64px;
}

.section__inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section__heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.opening {
  background: var(--paper);
}

.opening__inner,
.approach__inner,
.practical__inner,
.booking__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

.opening__copy,
.approach__copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1.07rem;
}

.care-strip {
  background:
    linear-gradient(90deg, rgba(156, 200, 209, 0.26), transparent 46%),
    var(--milk);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.care-strip h2 {
  max-width: 860px;
  margin-bottom: 42px;
}

.care-strip__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.care-strip__list article {
  min-height: 260px;
  padding: 34px 30px;
  background: rgba(251, 255, 253, 0.92);
}

.care-strip__list span,
.atelier-piece span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.care-strip__list p,
.format-grid p,
.practical__list p,
.atelier-piece p,
.booking__copy p {
  color: var(--muted);
}

.care-strip__list h3 {
  margin-bottom: 14px;
}

.atelier {
  background: var(--paper);
}

.atelier__stack {
  display: grid;
  gap: 26px;
}

.atelier-piece {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 40px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(232, 178, 61, 0.09), transparent 46%),
    var(--white);
  box-shadow: var(--shadow);
}

.atelier-piece--reverse {
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
}

.atelier-piece--reverse img {
  order: 2;
}

.atelier-piece img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

.atelier-piece div {
  display: grid;
  gap: 15px;
  padding: 10px 16px;
}

.atelier-piece a {
  width: fit-content;
  color: var(--leaf-dark);
  font-weight: 900;
  text-decoration-color: rgba(36, 114, 96, 0.35);
  text-underline-offset: 5px;
}

.approach {
  background:
    linear-gradient(180deg, var(--milk), var(--paper));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.portrait {
  margin: 0;
}

.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portrait figcaption {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.9rem;
}

.method-list {
  display: grid;
  gap: 12px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
}

.method-list li {
  position: relative;
  padding-left: 24px;
}

.method-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
}

.formats {
  background: var(--deep);
  color: var(--white);
}

.formats .eyebrow {
  color: var(--gold);
}

.formats__inner {
  display: grid;
  gap: 10px;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.format-grid article {
  min-height: 228px;
  padding: 30px 24px;
  background: rgba(255, 255, 255, 0.06);
}

.format-grid h3 {
  margin-bottom: 14px;
}

.format-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.practical {
  background:
    repeating-linear-gradient(135deg, rgba(36, 114, 96, 0.045) 0 1px, transparent 1px 16px),
    var(--paper);
}

.practical__list {
  display: grid;
  border-top: 1px solid var(--line);
}

.practical__list p {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.practical__list strong {
  color: var(--ink);
}

.practical__list a {
  color: var(--leaf-dark);
  font-weight: 800;
}

.booking {
  background:
    linear-gradient(90deg, rgba(15, 43, 37, 0.96), rgba(15, 43, 37, 0.86)),
    url("https://papierciseauxetcie.com/wp-content/uploads/2026/03/cropped-banniere-papier-ciseaux-et-cie-10.png") center / cover;
  color: var(--white);
}

.booking__inner {
  align-items: start;
}

.booking__copy {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.booking__copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.calendar-shell {
  min-height: 720px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.28);
}

.calendar-shell__embed {
  min-height: 720px;
  color: var(--ink);
}

.calendar-shell__embed > p {
  padding: 34px;
  color: var(--muted);
}

.calendar-shell__noscript {
  padding: 34px;
  color: var(--muted);
}

.calendar-shell iframe {
  min-height: 720px;
}

.site-footer {
  padding: 28px 64px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__inner {
  display: flex;
  width: min(var(--max), 100%);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 1120px) {
  .site-header {
    padding-right: 28px;
    padding-left: 28px;
  }

  .nav {
    display: none;
  }

  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero,
  .section,
  .site-footer {
    padding-right: 34px;
    padding-left: 34px;
  }

  .hero {
    padding-bottom: 104px;
  }

  .hero__rail {
    display: none;
  }

  .opening__inner,
  .approach__inner,
  .practical__inner,
  .booking__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .booking__copy {
    position: static;
  }

  .care-strip__list,
  .format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .atelier-piece--reverse img {
    order: 0;
  }

  .atelier-piece img {
    height: 420px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    padding: 11px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand small {
    display: none;
  }

  .button--small {
    min-height: 39px;
    padding: 9px 13px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  h3 {
    font-size: 1.12rem;
  }

  .hero {
    min-height: 72svh;
    padding: 72px 18px 104px;
    background-position: 55% center;
  }

  .hero::after {
    left: 12%;
    height: 74px;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions,
  .booking__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .site-header .button--small {
    width: auto;
    max-width: 142px;
  }

  .section {
    padding: 70px 18px;
  }

  .section__heading {
    margin-bottom: 30px;
  }

  .care-strip__list,
  .format-grid {
    grid-template-columns: 1fr;
  }

  .care-strip__list article,
  .format-grid article {
    min-height: auto;
    padding: 28px 22px;
  }

  .atelier-piece {
    gap: 24px;
    padding: 14px;
  }

  .atelier-piece img {
    height: 270px;
  }

  .atelier-piece div {
    padding: 4px 2px 10px;
  }

  .practical__list p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .calendar-shell,
  .calendar-shell__embed,
  .calendar-shell iframe {
    min-height: 680px;
  }

  .site-footer {
    padding: 26px 18px;
  }

  .site-footer__inner {
    display: grid;
  }
}

@media (max-width: 380px) {
  .site-header {
    gap: 10px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .site-header .button--small {
    max-width: 96px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 0.84rem;
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero {
    padding-bottom: 86px;
  }

  .opening {
    padding-top: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
