@charset "UTF-8";
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("../fonts/bricolage-grotesque-latin-k0HXNf5.woff2") format("woff2");
}
@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/instrument-serif-latin-9W389ra.woff2") format("woff2");
}
@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/instrument-serif-italic-latin-UJbcIJF.woff2") format("woff2");
}
html.has-modal {
  overflow: hidden;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  color: #2B1610;
}
.project-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 22, 16, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project-modal__card {
  position: relative;
  display: flex;
  width: min(100%, 780px);
  max-height: calc(100dvh - 32px);
  overflow: hidden;
  border-radius: 40px;
  background: #F7EEE1;
  box-shadow: 12px 12px 0 #2B1610;
  opacity: 0;
  transform: translateY(40px) scale(0.92) rotate(-2deg);
  transition: opacity 0.3s ease, transform 0.55s cubic-bezier(0.3, 1.5, 0.5, 1);
}
.project-modal__body {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  padding: clamp(28px, 5vw, 52px);
}
.project-modal.is-open .project-modal__backdrop {
  opacity: 1;
}
.project-modal.is-open .project-modal__card {
  opacity: 1;
  transform: none;
}
.project-modal__deco {
  position: absolute;
  pointer-events: none;
}
.project-modal__deco--sun {
  right: -70px;
  top: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: #F6B93B;
  animation: project-float 7s ease-in-out infinite;
}
.project-modal__deco--arch {
  left: -50px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border-radius: 999px 999px 0 0;
  background: #F4A6B7;
  opacity: 0.8;
  animation: project-float 9s ease-in-out infinite reverse;
}
.project-modal__deco--dot {
  right: 28px;
  bottom: 24px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #E8542C;
  animation: project-float 5s ease-in-out infinite;
}
.project-modal__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.project-modal__close {
  flex: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #2B1610;
  color: #F7EEE1;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.3, 1.5, 0.5, 1), background 0.2s;
}
.project-modal__close:hover {
  background: #E8542C;
  transform: rotate(90deg);
}
.project-modal__progress {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 30px;
}
.project-modal__bar {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: #EBD8BF;
  overflow: hidden;
}
.project-modal__bar span {
  display: block;
  height: 100%;
  width: var(--progress, 20%);
  border-radius: inherit;
  background: #E8542C;
  transition: width 0.5s cubic-bezier(0.3, 1.5, 0.5, 1);
}
.project-modal__count {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 14px;
  font-weight: 600;
}
.project-modal__form {
  position: relative;
}
.project-modal__back {
  position: relative;
  margin-top: 22px;
  padding: 0;
  border: 0;
  background: none;
  color: #2B1610;
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.project-modal__back:hover {
  color: #E8542C;
}
.project-modal__error {
  margin: 18px 0 0;
  padding: 14px 18px;
  border-radius: 16px;
  background: #F4A6B7;
  font-weight: 600;
}
.project-modal__submit {
  margin-top: 24px;
  border: 0;
  cursor: pointer;
}
.project-modal__submit:disabled {
  opacity: 0.6;
  cursor: wait;
}
.project-modal__burst {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.project-step {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
  animation: project-step-in 0.5s cubic-bezier(0.3, 1.5, 0.5, 1);
}
.project-step__title {
  padding: 0;
  margin-bottom: 26px;
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 800;
  text-wrap: balance;
}

.bubbles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bubble {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px 16px 16px;
  border: 2px solid #2B1610;
  border-radius: 999px;
  background: #FFFFFF;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.3, 1.5, 0.5, 1), background 0.2s;
}
.bubble:nth-child(odd):hover {
  transform: translateY(-3px) rotate(-1deg);
}
.bubble:nth-child(even):hover {
  transform: translateY(-3px) rotate(1deg);
}
.bubble input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.bubble__dot {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #2B1610;
  transition: transform 0.35s cubic-bezier(0.3, 1.5, 0.5, 1);
}
.bubble--0 .bubble__dot {
  background: #F6B93B;
}
.bubble--1 .bubble__dot {
  background: #F4A6B7;
}
.bubble--2 .bubble__dot {
  background: #D5E0D6;
}
.bubble--3 .bubble__dot {
  background: #E8542C;
}
.bubble__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bubble__label {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.bubble__hint {
  font-size: 15px;
  color: #6B4A3C;
}
.bubble:has(input:checked) {
  background: #2B1610;
  color: #F7EEE1;
}
.bubble:has(input:checked) .bubble__hint {
  color: #EBD8BF;
}
.bubble:has(input:checked) .bubble__dot {
  transform: scale(1.15);
  border-color: #F7EEE1;
}
.bubble:has(input:focus-visible) {
  outline: 3px solid #E8542C;
  outline-offset: 3px;
}

.project-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.project-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.project-field--wide {
  grid-column: 1/-1;
}
.project-field label {
  font-size: 15px;
  font-weight: 600;
}
.project-field label em {
  font-style: normal;
  font-weight: 400;
  color: #6B4A3C;
}
.project-field input,
.project-field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #2B1610;
  border-radius: 18px;
  background: #FFFFFF;
  color: #2B1610;
  font: inherit;
  font-size: 17px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.project-field input:focus,
.project-field textarea:focus {
  outline: none;
  border-color: #E8542C;
  box-shadow: 4px 4px 0 #F6B93B;
}
.project-field textarea {
  resize: vertical;
  min-height: 110px;
}
.project-field.has-error input, .project-field.has-error textarea {
  border-color: #E8542C;
  box-shadow: 4px 4px 0 #F4A6B7;
}
.project-field__error {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #E8542C;
}

.project-recaptcha {
  min-height: 78px;
  font-size: 14px;
  color: #6B4A3C;
}

.project-done {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0 8px;
  animation: project-step-in 0.6s cubic-bezier(0.3, 1.5, 0.5, 1);
}
.project-done__title {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 800;
}
.project-done__text {
  margin: 0;
  max-width: 460px;
  font-size: 19px;
  line-height: 1.5;
}
.project-done .btn {
  background: transparent;
  color: #2B1610;
  cursor: pointer;
}

@keyframes project-step-in {
  from {
    opacity: 0;
    transform: translateX(40px) rotate(1deg);
  }
}
@keyframes project-float {
  50% {
    transform: translateY(12px) rotate(8deg);
  }
}
@media (max-width: 600px) {
  .project-modal {
    padding: 10px;
  }
  .project-modal__card {
    max-height: calc(100dvh - 20px);
    border-radius: 28px;
    box-shadow: 6px 6px 0 #2B1610;
  }
  .project-modal__deco--dot {
    display: none;
  }
  .project-fields {
    grid-template-columns: 1fr;
  }
  .bubble {
    padding: 12px 18px 12px 12px;
  }
  .bubble__dot {
    width: 30px;
    height: 30px;
  }
  .bubble__label {
    font-size: 17px;
  }
  .project-recaptcha {
    transform: scale(0.88);
    transform-origin: left top;
  }
}
@media (prefers-reduced-motion: reduce) {
  .project-modal__card,
  .project-step,
  .project-done,
  .project-modal__deco {
    animation: none;
    transition: none;
  }
}
.article-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.article-art span {
  position: absolute;
  transition: transform 0.6s cubic-bezier(0.3, 1.5, 0.5, 1);
}
.article-art--v1 {
  transform: scaleX(-1);
}
.article-art--v2 {
  transform: rotate(180deg);
}
.article-art--creation-site {
  background: #F6B93B;
}
.article-art--creation-site .article-art__a {
  right: 12%;
  top: 14%;
  width: 44%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #E8542C;
}
.article-art--creation-site .article-art__b {
  left: 8%;
  bottom: 0;
  width: 36%;
  aspect-ratio: 2/1;
  border-radius: 999px 999px 0 0;
  background: #F4A6B7;
}
.article-art--creation-site .article-art__c {
  left: 30%;
  top: 16%;
  width: 13%;
  aspect-ratio: 1/1;
  background: #1F4A38;
  transform: rotate(14deg);
}
.article-art--seo {
  background: #1F4A38;
}
.article-art--seo .article-art__a {
  left: 22%;
  bottom: -34%;
  width: 56%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #F6B93B;
}
.article-art--seo .article-art__b {
  right: 9%;
  top: 14%;
  width: 12%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #F4A6B7;
}
.article-art--seo .article-art__c {
  left: 9%;
  top: 20%;
  width: 18%;
  aspect-ratio: 2/1;
  border-radius: 999px 999px 0 0;
  background: #E8542C;
  transform: rotate(-12deg);
}
.article-art--e-commerce {
  background: #F4A6B7;
}
.article-art--e-commerce .article-art__a {
  left: 12%;
  bottom: 0;
  width: 40%;
  aspect-ratio: 4/5;
  border-radius: 999px 999px 0 0;
  background: #E8542C;
}
.article-art--e-commerce .article-art__b {
  right: 12%;
  top: 12%;
  width: 28%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #F6B93B;
}
.article-art--e-commerce .article-art__c {
  right: 24%;
  bottom: 12%;
  width: 16%;
  aspect-ratio: 1/1;
  background: #2B1610;
  transform: rotate(-12deg);
}

.post-card:hover .article-art .article-art__a,
.featured:hover .article-art .article-art__a {
  transform: translateY(-6%) scale(1.04);
}
.post-card:hover .article-art .article-art__b,
.featured:hover .article-art .article-art__b {
  transform: translateY(6%) rotate(-8deg);
}
.post-card:hover .article-art .article-art__c,
.featured:hover .article-art .article-art__c {
  transform: rotate(40deg) scale(1.1);
}

html,
body {
  margin: 0;
  padding: 0;
  background: #F7EEE1;
}

* {
  box-sizing: border-box;
}

a {
  color: #2B1610;
  text-decoration: none;
}
a:hover {
  color: #E8542C;
}

::selection {
  background: #F6B93B;
  color: #2B1610;
}

button {
  font: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

[hidden] {
  display: none !important;
}

.site {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  color: #2B1610;
  background: #F7EEE1;
  overflow-x: hidden;
  min-height: 100vh;
}

.serif {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
}

.accent {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #E8542C;
}

.eyebrow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E8542C;
}

.section-title {
  margin: 0;
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 800;
}
.section-title--xl {
  font-size: clamp(48px, 6.5vw, 104px);
}
.section-title--lg {
  font-size: clamp(46px, 6vw, 96px);
}
.section-title--md {
  font-size: clamp(44px, 5.6vw, 90px);
}
.section-title--sm {
  font-size: clamp(40px, 5vw, 76px);
  line-height: 0.95;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.section-head__text {
  margin: 0;
  max-width: 400px;
  font-size: 19px;
  line-height: 1.5;
  text-wrap: pretty;
}

.breadcrumb {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}
.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.breadcrumb__current {
  color: #E8542C;
}

.placeholder-label {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 13px;
  background: #F7EEE1;
  padding: 5px 10px;
  border-radius: 8px;
}
.placeholder-label--lg {
  font-size: 14px;
  padding: 6px 12px;
}

.wordmark {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #2B1610;
}
.wordmark span {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: #E8542C;
  margin-left: 4px;
}
.wordmark--header {
  font-size: 22px;
}
.wordmark--header:hover {
  color: #2B1610;
}
.wordmark--header span {
  font-size: 25px;
}
.wordmark--footer {
  font-size: 20px;
  color: #F7EEE1;
}
.wordmark--footer span {
  color: #F6B93B;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(247, 238, 225, 0.88);
  backdrop-filter: blur(10px);
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
.header__mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #E8542C;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__mark > div {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #F6B93B;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  font-size: 16px;
  font-weight: 500;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a.is-active {
  color: #E8542C;
}
.nav__cta {
  background: #2B1610;
  color: #F7EEE1;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
}
.nav__cta:hover {
  background: #E8542C;
  color: #F7EEE1;
}

.btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border-radius: 999px;
  font-size: 17px;
}
.btn--primary {
  background: #E8542C;
  color: #F7EEE1;
  font-weight: 700;
  transition: transform 0.25s;
}
.btn--primary:hover {
  transform: translateY(-3px) rotate(-2deg);
  color: #F7EEE1;
}
.btn--outline {
  font-weight: 600;
  border: 2px solid #2B1610;
  transition: background 0.25s;
}
.btn--outline:hover {
  background: #F6B93B;
  color: #2B1610;
}
.btn--sm {
  gap: 10px;
  padding: 16px 26px;
}
.btn__arrow {
  font-size: 20px;
}

.pill {
  display: inline-block;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
}
.pill--dark {
  background: #2B1610;
  color: #F7EEE1;
}
.pill--primary {
  background: #E8542C;
  color: #F7EEE1;
  font-weight: 700;
}
.pill--outline {
  border: 1.5px solid #2B1610;
  padding: 5px 14px;
}
.pill--light {
  border-color: #F7EEE1;
}
.pill--md {
  font-size: 15px;
  padding: 8px 16px;
}
.pill--md.pill--outline {
  padding: 7px 16px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 36px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.3, 1.5, 0.5, 1);
}
.service-card--yellow {
  background: #F6B93B;
}
.service-card--yellow:hover {
  transform: translateY(-10px) rotate(-1.2deg);
}
.service-card--pink {
  background: #F4A6B7;
}
.service-card--pink:hover {
  transform: translateY(-10px) rotate(1.2deg);
}
.service-card--green {
  background: #1F4A38;
  color: #F7EEE1;
}
.service-card--green:hover {
  transform: translateY(-10px) rotate(-1.2deg);
}
.service-card--green .service-card__link {
  color: #F7EEE1;
}
.service-card--short {
  min-height: 500px;
}
.service-card__num {
  font-size: 18px;
  font-weight: 700;
}
.service-card__title {
  margin: 0;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.service-card__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  max-width: 340px;
  text-wrap: pretty;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 330px;
  position: relative;
  z-index: 1;
}
.service-card__tags .pill--outline {
  padding: 6px 14px;
}
.service-card__link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: #2B1610;
  position: relative;
  z-index: 1;
}
.service-card__deco {
  position: absolute;
}
.service-card__deco > div {
  position: absolute;
}
.service-card__deco--1 {
  right: -60px;
  bottom: -60px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: #E8542C;
  transform: rotate(calc(var(--sy, 0) * 0.2deg));
}
.service-card__deco--1 > div {
  left: 0;
  top: 0;
  width: 50%;
  height: 50%;
  background: #F7EEE1;
  border-radius: 100% 0 0 0;
}
.service-card__deco--2 {
  right: -30px;
  bottom: -30px;
  width: 200px;
  height: 200px;
  background: #1F4A38;
  transform: rotate(calc(var(--sy, 0) * -0.15deg));
}
.service-card__deco--2 > div {
  left: 25%;
  top: 25%;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: #F6B93B;
}
.service-card__deco--3 {
  right: -40px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border-radius: 999px 999px 0 0;
  background: #F4A6B7;
  transform: rotate(calc(var(--sy, 0) * 0.12deg));
}
.service-card__deco--3 > div {
  left: 30%;
  top: 22%;
  width: 40%;
  height: 40%;
  border-radius: 50%;
  background: #E8542C;
}

.page-hero {
  position: relative;
  padding: clamp(40px, 6vw, 96px) clamp(20px, 4vw, 56px) clamp(48px, 6vw, 80px);
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.page-hero__title {
  position: relative;
  margin: 0;
  font-size: clamp(60px, 9vw, 160px);
  line-height: 0.88;
  letter-spacing: -0.055em;
  font-weight: 800;
  max-width: 1100px;
  text-wrap: balance;
}
.page-hero__text {
  position: relative;
  margin: 0;
  max-width: 600px;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.55;
  text-wrap: pretty;
}
.page-hero__shape {
  position: absolute;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter {
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid #2B1610;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: #2B1610;
  transition: transform 0.2s;
}
.filter:hover {
  transform: translateY(-2px);
}
.filter.is-active {
  background: #2B1610;
  color: #F7EEE1;
}

.post-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #2B1610;
}
.post-card:hover {
  color: #2B1610;
}
.post-card__visual {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.3, 1.5, 0.5, 1);
}
.post-card__visual--0 {
  border-radius: 28px;
}
.post-card__visual--1 {
  border-radius: 999px 999px 28px 28px;
}
.post-card__visual--2 {
  border-radius: 28px 120px 28px 28px;
}
.post-card__visual--3 {
  border-radius: 28px 28px 120px 28px;
}
.post-card:hover .post-card__visual {
  transform: scale(1.02) rotate(1deg);
}
.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
}
.post-card__title {
  margin: 0;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 800;
  text-wrap: balance;
}
.post-card__excerpt {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  text-wrap: pretty;
}

.faq-section {
  padding: clamp(80px, 10vw, 150px) clamp(20px, 4vw, 56px);
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq {
  display: flex;
  flex-direction: column;
  border-top: 2px solid #2B1610;
}
.faq__item {
  border-bottom: 2px solid #2B1610;
}
.faq__item.is-open .faq__answer {
  display: block;
}
.faq__item.is-open .faq__sign::before {
  content: "–";
}
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  cursor: pointer;
}
.faq__question:hover {
  color: #E8542C;
}
.faq__question h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.25;
}
.faq__sign {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #2B1610;
}
.faq__sign::before {
  content: "+";
}
.faq__sign--0 {
  background: #F6B93B;
}
.faq__sign--1 {
  background: #F4A6B7;
}
.faq__sign--2 {
  background: #E8542C;
}
.faq__sign--3 {
  background: #D5E0D6;
}
.faq__answer {
  display: none;
  margin: 0;
  padding: 0 64px 28px 0;
  font-size: 18px;
  line-height: 1.6;
  text-wrap: pretty;
}

.marquee {
  color: #F7EEE1;
  overflow: hidden;
  margin: 0 -20px;
  padding: 24px 0;
}
.marquee--home {
  background: #E8542C;
  padding: 26px 0;
  transform: rotate(-1.5deg);
}
.marquee--home .marquee__track {
  font-size: clamp(36px, 4.6vw, 68px);
}
.marquee--home .marquee__dot,
.marquee--home .marquee__diamond {
  width: 22px;
  height: 22px;
}
.marquee--services {
  background: #E8542C;
  transform: rotate(-1.2deg);
}
.marquee--agence {
  background: #1F4A38;
  transform: rotate(1.2deg);
}
.marquee__track {
  display: flex;
  width: max-content;
  font-size: clamp(34px, 4.2vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
  will-change: transform;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
}
.marquee__dot {
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #F6B93B;
}
.marquee__diamond {
  flex: none;
  width: 20px;
  height: 20px;
  background: #F4A6B7;
  transform: rotate(45deg);
}

.contact {
  background: #E8542C;
  color: #F7EEE1;
  padding: clamp(90px, 12vw, 170px) clamp(20px, 4vw, 56px);
  position: relative;
  overflow: hidden;
}
.contact__blob {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(90vw, 820px);
  aspect-ratio: 1/1;
  margin-left: calc(min(90vw, 820px) / -2);
  margin-top: calc(min(90vw, 820px) / -2);
  border-radius: 50%;
  background: #F6B93B;
  transform: translate3d(calc(var(--mx, 0) * -24px), calc(var(--my, 0) * -24px), 0);
}
.contact__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 36px;
  color: #2B1610;
}
.contact__title {
  margin: 0;
  font-size: clamp(56px, 8.4vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  font-weight: 800;
  text-wrap: balance;
}
.contact__text {
  margin: 0;
  max-width: 520px;
  font-size: 20px;
  line-height: 1.5;
}
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.contact__mail {
  background: #2B1610;
  color: #F7EEE1;
  padding: 20px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 19px;
  transition: transform 0.25s;
}
.contact__mail:hover {
  transform: translateY(-3px) rotate(2deg);
  color: #F7EEE1;
}
.contact__phone {
  padding: 20px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 19px;
  border: 2px solid #2B1610;
  color: #2B1610;
}
.contact__phone:hover {
  background: #F7EEE1;
  color: #2B1610;
}

.footer {
  background: #2B1610;
  color: #F7EEE1;
  padding: 40px clamp(20px, 4vw, 56px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 15px;
}
.footer__hint {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  opacity: 0.75;
  font-size: 18px;
}
.footer__legal {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(247, 238, 225, 0.2);
  font-size: 14px;
}
.footer__legal a {
  color: #F7EEE1;
  opacity: 0.75;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__legal a:hover {
  color: #F6B93B;
  opacity: 1;
}

[data-reveal].reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s ease var(--reveal-delay, 0ms), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0ms);
}
[data-reveal].reveal.is-visible {
  opacity: 1;
  transform: none;
}

.burst-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 60;
  background: #2B1610;
  color: #F7EEE1;
  padding: 18px 26px;
  border-radius: 20px;
  font-size: 17px;
  max-width: min(92vw, 520px);
  text-align: center;
  line-height: 1.4;
}
.toast span {
  color: #F6B93B;
}

/*# sourceMappingURL=app-7d1043473d.output.css.map */
