.cake-order-hero .hero-copy h1 {
  max-width: 900px;
  font-size: clamp(4.7rem,10vw,9rem);
}

.cake-order-hero .hero-copy h1 em {
  color: #efd27f;
  font-weight: 400;
}

.cake-order-hero .hero-copy p {
  max-width: 660px;
}

.cake-order-page {
  background: #f5eddf;
}

.order-intro,
.order-offer,
.order-inquiry {
  width: min(1180px,calc(100% - 40px));
  margin: auto;
}

.order-intro {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  align-items: start;
  padding: 110px 0;
}

.order-intro h2,
.order-section-head h2,
.order-inquiry h2 {
  margin: 14px 0 0;
  font-size: clamp(3.2rem,6vw,6rem);
  line-height: .96;
  letter-spacing: -.045em;
}

.order-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(93,73,61,.16);
}

.order-steps li:first-child {
  padding-top: 0;
}

.order-steps span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2a170e;
  color: #fff;
  font: italic 1.1rem Georgia,serif;
}

.order-steps strong {
  font: 400 1.55rem Georgia,serif;
}

.order-steps p {
  margin: 7px 0 0;
  color: #715d50;
  line-height: 1.65;
}

.order-offer {
  padding: 0 0 120px;
}

.order-section-head {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 48px;
}

.order-section-head > p {
  margin: 0;
  color: #715d50;
  font-size: 1.04rem;
  line-height: 1.75;
}

.order-offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.order-price-card {
  padding: 36px;
  border: 1px solid rgba(141,102,28,.16);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(46,25,12,.08);
}

.order-card-title {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(93,73,61,.14);
}

.order-card-title > span {
  color: #a2700f;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.order-card-title h3 {
  margin: 0;
  font-size: clamp(1.9rem,3vw,2.7rem);
}

.order-choice-list {
  display: grid;
}

.order-choice {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 17px 4px;
  border: 0;
  border-bottom: 1px solid rgba(93,73,61,.12);
  background: transparent;
  color: #2a170d;
  text-align: left;
  cursor: pointer;
}

.order-choice:last-child {
  border-bottom: 0;
}

.order-choice span {
  line-height: 1.5;
}

.order-choice strong {
  color: #8c5f08;
  white-space: nowrap;
  font: 700 1.15rem Georgia,serif;
}

.order-choice:hover,
.order-choice:focus-visible {
  color: #8c5f08;
}

.order-choice:hover span,
.order-choice:focus-visible span {
  transform: translateX(5px);
}

.order-choice span {
  transition: transform .2s ease;
}

.order-set {
  padding: 21px 4px;
}

.order-set small {
  display: block;
  margin-bottom: 5px;
  color: #a2700f;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.order-set-note {
  margin-top: 24px;
  padding: 20px;
  border-radius: 18px;
  background: #f5eddf;
}

.order-set-note p {
  margin: 5px 0 0;
  color: #715d50;
  line-height: 1.55;
}

.order-inquiry {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 62px;
  align-items: start;
  padding: 110px 0;
}

.order-inquiry-copy {
  position: sticky;
  top: 170px;
}

.order-inquiry-copy > p {
  margin: 25px 0 30px;
  color: #715d50;
  line-height: 1.75;
}

.order-inquiry-copy img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 24px;
}

.order-inquiry-form {
  padding: 38px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 65px rgba(46,25,12,.1);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: #4d382d;
  font-size: .86rem;
  font-weight: 800;
}

.form-grid label small {
  color: #8a7568;
  font-weight: 400;
}

.form-full {
  grid-column: 1/-1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid #ddcdb7;
  border-radius: 12px;
  background: #fffdf9;
  color: #2a170d;
  font: 400 .95rem Arial,sans-serif;
}

.form-grid textarea {
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: 3px solid rgba(214,168,45,.28);
  border-color: #a2700f;
}

.order-confirmation {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  margin: 22px 0;
  color: #6a574b;
  font-size: .82rem;
  line-height: 1.55;
}

.order-confirmation input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #8c5f08;
}

.order-submit {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: #2a170e;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  transition: background .2s ease, transform .2s ease;
}

.order-submit:hover {
  background: #5a3517;
  transform: translateY(-2px);
}

.order-form-note {
  margin: 18px 0 0;
  color: #715d50;
  text-align: center;
  font-size: .84rem;
}

.order-form-note a {
  color: #7b5209;
  font-weight: 800;
}

.order-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 32px max(20px,calc((100% - 1180px)/2));
  background: #24140d;
  color: #e5d7c9;
  font-size: .86rem;
}

.order-footer p {
  margin: 0;
}

.order-footer div {
  display: flex;
  gap: 20px;
}

.order-footer a {
  color: #e5c06e;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 850px) {
  .order-intro,
  .order-section-head,
  .order-inquiry {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .order-offer-grid {
    grid-template-columns: 1fr;
  }

  .order-inquiry-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .cake-order-hero .hero-copy h1 {
    font-size: 4rem;
  }

  .order-intro,
  .order-inquiry {
    padding: 78px 0;
  }

  .order-offer {
    padding-bottom: 78px;
  }

  .order-price-card,
  .order-inquiry-form {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .order-choice {
    gap: 10px;
  }

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

  .form-full {
    grid-column: auto;
  }

  .order-footer,
  .order-footer div {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .order-choice span,
  .order-submit {
    transition: none;
  }
}
