@charset "UTF-8";
.emphase {
  font-weight: 700;
  color: #c85f32;
}

p {
  text-align: justify;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: #f5f5f2;
  color: #111827;
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
  body {
    font-size: 18px;
  }
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: #c85f32;
  color: #111827;
}

h1, h2, h3, h4, h5, h6 {
  color: #111827;
}

.container {
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
}

.mono {
  font-family: "Fraunces", Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #98968f;
}
@media (max-width: 768px) {
  .mono {
    font-size: 12px;
  }
}

.display {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c85f32;
  flex-shrink: 0;
}
.dot--accent {
  background: #c85f32;
}

.ph-img {
  background: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.04) 0 1px, transparent 1px 8px), var(--ph-bg, #e9e6df);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 16px;
  font-family: "Inter", system-ui, sans-serif;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  text-decoration: none;
}
.btn--lg {
  padding: 18px 28px;
  font-size: 16px;
}
.btn--full {
  width: 100%;
  justify-content: center;
}
.btn--primary {
  background: #111827;
  color: #f5f5f2;
}
.btn--primary:hover {
  background: #c85f32;
  color: #111827;
}
.btn--ghost {
  background: transparent;
  color: #111827;
  border: 1.5px solid #111827;
}
.btn--ghost:hover {
  background: #111827;
  color: #f5f5f2;
}
.btn--ghost:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.btn--dark {
  background: #111827;
  color: #f5f5f2;
}
.btn--dark:hover {
  background: #c85f32;
  color: #111827;
}
.btn--accent {
  background: #c85f32;
  color: #111827;
}
.btn--accent:hover {
  background: #b35529;
  color: #f5f5f2;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--delay, 0s);
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #f5f5f2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #dddcd6;
  transition: box-shadow 0.3s ease;
  padding: 15px 0;
}
.header.is-scrolled {
  box-shadow: 0 2px 16px rgba(31, 20, 16, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo-img {
  height: 80px;
  width: auto;
  display: block;
}

.header__tag {
  margin-left: 8px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__link {
  font-family: "Inter", system-ui, sans-serif;
  color: #52514d;
  font-size: 18px;
  transition: color 0.15s ease;
}
.header__link:hover {
  color: #c85f32;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 60;
  position: relative;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #111827;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .header__tag {
    display: none;
  }
}
@media (max-width: 768px) {
  .burger {
    display: flex;
  }
  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 20px 0;
    background: #f5f5f2;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 55;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.1);
  }
  .header__nav.is-open {
    opacity: 1;
    pointer-events: all;
  }
  .header__nav .header__link {
    font-size: 17px;
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 400;
    color: #111827;
  }
  .header__nav .btn {
    margin-top: 8px;
  }
}
.hero {
  padding: 120px 0 100px;
}

.hero__eyebrow {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__line {
  display: block;
  width: 24px;
  height: 1px;
  background: #98968f;
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(52px, 8.1vw, 156px);
  margin: 0 0 32px;
  max-width: 1400px;
  line-height: 1.05;
}

.hero__highlight {
  font-style: italic;
  background: #c85f32;
  padding: 2px 16px;
  border-radius: 4px;
}

.hero__sub {
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.4;
  max-width: 720px;
  color: #52514d;
  margin-bottom: 48px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0 60px;
  }
  .hero__eyebrow {
    margin-bottom: 28px;
  }
  .hero__title {
    font-size: clamp(36px, 10vw, 64px);
  }
  .hero__sub {
    font-size: 18px;
    margin-bottom: 36px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__actions .btn--lg {
    padding: 14px 22px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(32px, 11vw, 52px);
  }
}
.about {
  padding: 100px 0;
  background: #eceae5;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}

.about__label {
  margin-bottom: 24px;
}

.about__portrait {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: #dad7cd;
}
.about__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about__title {
  font-size: clamp(32px, 3.5vw, 56px);
  margin-bottom: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.about__text {
  font-size: 18px;
  line-height: 1.6;
  color: #52514d;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.about__text p {
  margin: 0;
}

.about__skills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.about__skills li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-style: italic;
}
.about__skills li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #c85f32;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__portrait {
    aspect-ratio: auto;
    height: 540px;
    width: 100%;
    max-width: 100%;
  }
  .about__title {
    font-size: clamp(28px, 7vw, 44px);
  }
  .about__text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .about__skills {
    grid-template-columns: 1fr;
  }
}
.services {
  padding: 120px 0;
}

.services__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}

.services__label {
  margin-bottom: 24px;
}

.services__title {
  font-size: clamp(48px, 6vw, 96px);
  margin: 0;
  line-height: 0.95;
}

.services__sub {
  font-size: 19px;
  color: #52514d;
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step {
  display: grid;
  grid-template-columns: 140px 1.4fr 280px;
  gap: 56px;
  padding: 48px 0;
  border-top: 1px solid #dddcd6;
  align-items: start;
}
.step:last-child {
  border-bottom: 1px solid #dddcd6;
}

.step__num {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: #111827;
}

.step__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c85f32;
  flex-shrink: 0;
  transform: translateY(-6px);
}

.step__title {
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 14px;
  line-height: 1.05;
}

.step__desc {
  font-size: 18px;
  color: #52514d;
  line-height: 1.6;
  margin: 0;
  max-width: 540px;
}

.step__deliverables {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.step__del-label {
  margin-bottom: 14px;
}

.step__deliverables ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step__deliverables li {
  font-size: 18px;
  color: #111827;
  padding: 4px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1024px) {
  .services__intro {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }
  .step {
    grid-template-columns: 100px 1fr 220px;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }
  .services__intro {
    margin-bottom: 40px;
  }
  .step {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 0;
  }
  .step__num {
    font-size: 48px;
  }
  .step__deliverables {
    text-align: left;
    align-items: start;
  }
  .step__deliverables li {
    justify-content: flex-start;
  }
}
.ai-note {
  padding: 40px 0 120px;
}

.ai-note__card {
  background: #111827;
  color: #f5f5f2;
  border-radius: 24px;
  padding: 64px 72px;
  position: relative;
  overflow: hidden;
}

.ai-note__blob {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 280px;
  background: #c85f32;
  border-radius: 50%;
  transform: translate(40%, -40%);
  opacity: 0.9;
  pointer-events: none;
}

.ai-note__label {
  color: #c85f32;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ai-note__label .dot {
  background: #c85f32;
}

.ai-note__title {
  font-size: clamp(28px, 3.5vw, 52px);
  margin-bottom: 24px;
  max-width: 760px;
  position: relative;
  line-height: 1.05;
  color: #f5f5f2;
}
.ai-note__title em {
  font-style: italic;
  color: #c85f32;
}

.ai-note__body {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(247, 241, 232, 0.75);
  max-width: 800px;
  margin-bottom: 40px;
  position: relative;
}
.ai-note__body strong {
  color: #c85f32;
}

.ai-note__tags {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  position: relative;
}
.ai-note__tags li {
  min-width: 140px;
}

.ai-note__tag-key {
  display: block;
  color: rgba(247, 241, 232, 0.5);
  margin-bottom: 6px;
}

.ai-note__tag-val {
  font-size: 18px;
  font-weight: 500;
  display: block;
}

@media (max-width: 768px) {
  .ai-note {
    padding: 20px 0 60px;
  }
  .ai-note__card {
    padding: 40px 28px;
    border-radius: 16px;
  }
  .ai-note__blob {
    width: 180px;
    height: 180px;
  }
  .ai-note__body {
    font-size: 18px;
  }
  .ai-note__tags {
    gap: 20px;
  }
}
.pricing {
  padding: 120px 0;
  background: #eceae5;
}

.pricing__label {
  margin-bottom: 24px;
}

.pricing__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}

.pricing__title {
  font-size: clamp(40px, 5vw, 80px);
  margin: 0;
  max-width: 700px;
  line-height: 0.95;
}

.pricing__note {
  font-size: 18px;
  color: #98968f;
  max-width: 320px;
  line-height: 1.5;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: #f5f5f2;
  border: 1px solid #dddcd6;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card--featured {
  background: #111827;
  color: #f5f5f2;
  border: none;
}

.pricing-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #c85f32;
  color: #111827;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-card__pages {
  margin-bottom: 24px;
}
.pricing-card--featured .pricing-card__pages {
  color: rgba(247, 241, 232, 0.6);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}

.pricing-card__amount {
  font-size: clamp(56px, 5vw, 80px);
}

.pricing-card__currency {
  font-size: 24px;
}

.pricing-card__desc {
  font-size: 18px;
  color: #98968f;
  line-height: 1.5;
  margin-bottom: 32px;
  min-height: 60px;
}
.pricing-card--featured .pricing-card__desc {
  color: rgba(247, 241, 232, 0.7);
}

.pricing-card__items {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.pricing-card__items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
}
.pricing-card__items li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #111827;
  color: #f5f5f2;
  font-size: 9px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-card--featured .pricing-card__items li::before {
  background: #c85f32;
  color: #111827;
}

.pricing__notes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.pricing__note-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  padding: 20px 24px;
  background: #f5f5f2;
  border: 1px solid #dddcd6;
  border-radius: 12px;
}
.pricing__note-card .dot {
  margin-top: 5px;
  flex-shrink: 0;
}
.pricing__note-card p {
  font-size: 18px;
  color: #98968f;
  line-height: 1.6;
}

.pricing__note-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing__note-label {
  color: #111827;
  margin-bottom: 2px;
}

.pricing__note-price {
  font-size: 18px;
  color: #111827 !important;
  margin-top: 4px;
}
.pricing__note-price strong {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .pricing__grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing__grid .pricing-card:last-child {
    grid-column: 1/-1;
    max-width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .pricing {
    padding: 60px 0;
  }
  .pricing__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .pricing__grid {
    grid-template-columns: 1fr;
  }
  .pricing__grid .pricing-card:last-child {
    grid-column: 1;
    max-width: 100%;
    margin: 0;
  }
}
.projects {
  padding: 120px 0;
}

.projects__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}

.projects__label {
  margin-bottom: 24px;
}

.projects__title {
  font-size: clamp(40px, 5vw, 80px);
  margin: 0;
  line-height: 0.95;
}

.projects__controls {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.projects__counter {
  margin-right: 16px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  padding: 0;
  justify-content: center;
  font-size: 18px;
}

.carousel-viewport {
  overflow: hidden;
  padding-left: max(5vw, (100vw - 1500px) / 2);
  cursor: grab;
}
.carousel-viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.carousel-track {
  display: flex;
  gap: 32px;
  transition: transform 0.55s cubic-bezier(0.7, 0, 0.2, 1);
  will-change: transform;
}
.carousel-track.is-dragging {
  transition: none;
}
.carousel-track img {
  -webkit-user-drag: none;
  pointer-events: none;
}

.project-card {
  flex: 0 0 720px;
  border-radius: 18px;
  overflow: hidden;
  background: #111827;
  color: #e8efe9;
  display: grid;
  grid-template-columns: 300px 1fr;
  opacity: 0.65;
  transition: opacity 0.4s ease;
}
.project-card.is-visible {
  opacity: 1;
}

.project-card__img {
  display: block;
  min-height: 420px;
  height: 100%;
  overflow: hidden;
  background: #141412;
  flex-shrink: 0;
}
.project-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-card__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.project-card__meta {
  opacity: 0.6;
  margin-bottom: 14px;
}

.project-card__title {
  font-size: clamp(22px, 2vw, 32px);
  margin-bottom: 14px;
  line-height: 1.05;
  color: #e8efe9;
}

.project-card__desc {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  opacity: 0.8;
}

.project-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}

.project-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  font-size: 12px;
  font-family: "Fraunces", Georgia, serif;
  padding: 4px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-card__link {
  font-size: 13px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  opacity: 0.85;
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .projects {
    padding: 60px 0;
  }
  .projects__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .carousel-viewport {
    padding-left: 5vw;
  }
  .project-card {
    flex: 0 0 90vw;
    grid-template-columns: 1fr;
  }
  .project-card.is-visible {
    opacity: 1;
  }
  .project-card:not(.is-visible) {
    opacity: 0.4;
  }
  .project-card__img {
    min-height: 240px;
    height: 240px;
  }
}
.cta {
  padding: 120px 0;
}

.cta__inner {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.cta__eyebrow {
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta__title {
  font-size: clamp(52px, 8vw, 120px);
  margin-bottom: 32px;
  line-height: 1.05;
}

.cta__highlight {
  font-style: italic;
  background: #c85f32;
  padding: 2px 16px;
  border-radius: 4px;
}

.cta__sub {
  font-size: 20px;
  color: #52514d;
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.5;
}

.cta__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta {
    padding: 60px 0;
  }
  .cta__title {
    font-size: clamp(40px, 10vw, 72px);
  }
  .cta__sub {
    font-size: 18px;
    margin-bottom: 36px;
  }
  .cta__actions {
    flex-direction: column;
    align-items: center;
  }
}
.footer {
  background: #111827;
  color: #f5f5f2;
  padding: 72px 0 32px;
}

.footer__grid {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  margin-bottom: 56px;
}

.footer__brand {
  flex: 2;
  min-width: 0;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__name {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.footer__tagline {
  font-size: 14px;
  color: rgba(247, 241, 232, 0.55);
  line-height: 1.7;
  max-width: 300px;
}

.footer__col {
  flex: 1;
  min-width: 120px;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__col li {
  margin-bottom: 8px;
}
.footer__col a {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 18px;
  color: #f5f5f2;
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer__col a:hover {
  color: #c85f32;
}

.footer__col-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 241, 232, 0.4);
  margin-bottom: 14px;
}

.footer__rule {
  border: none;
  height: 1px;
  background: rgba(247, 241, 232, 0.08);
  margin-bottom: 20px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(247, 241, 232, 0.35);
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 1024px) {
  .footer__grid {
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 56px 0 28px;
  }
  .footer__grid {
    flex-direction: column;
    align-items: center;
    gap: 36px;
    margin-bottom: 40px;
  }
  .footer__brand {
    text-align: center;
  }
  .footer__logo {
    justify-content: center;
  }
  .footer__tagline {
    max-width: 100%;
  }
  .footer__col {
    text-align: center;
    min-width: 0;
  }
  .footer__col a {
    font-size: 18px;
  }
  .footer__col ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}
.legal {
  padding: 80px 0 120px;
}

.legal__label {
  margin-bottom: 16px;
}

.legal__title {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 64px;
  max-width: 800px;
}

.legal__content {
  max-width: 1500px;
}
.legal__content h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #111827;
  margin: 56px 0 20px;
  padding-top: 48px;
  border-top: 1px solid #dddcd6;
}
.legal__content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.legal__content h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #111827;
  margin: 32px 0 10px;
}
.legal__content p {
  color: #52514d;
  line-height: 1.75;
  margin-bottom: 16px;
}
.legal__content ul, .legal__content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.legal__content ul li, .legal__content ol li {
  color: #52514d;
  line-height: 1.75;
  margin-bottom: 8px;
}
.legal__content ul {
  list-style: disc;
}
.legal__content ol {
  list-style: decimal;
}
.legal__content strong {
  color: #111827;
  font-weight: 600;
}
.legal__content a {
  color: #c85f32;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal__content a:hover {
  color: #b35529;
}
.legal__content .legal__placeholder {
  background: rgba(200, 95, 50, 0.1);
  color: #b35529;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}

@media (max-width: 768px) {
  .legal {
    padding: 48px 0 80px;
  }
  .legal__title {
    margin-bottom: 40px;
  }
}

/*# sourceMappingURL=main.css.map */
