:root {
  --paper: #f4efeb;
  --surface: #fffaf5;
  --soft: #eee0dc;
  --cyan: #d7eff0;
  --ink: #3a2022;
  --muted: #755f58;
  --line: rgba(58, 32, 34, 0.13);
  --line-strong: rgba(58, 32, 34, 0.26);
  --display: "Cormorant Garamond", "Canela Display", Georgia, "Times New Roman", serif;
  --sans: "TF Arrow", "Aperçu", "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Spline Sans Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.45;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header,
.hero,
.section,
.site-footer {
  padding-inline: clamp(28px, 10vw, 112px);
}

.site-header {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 239, 235, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 78px;
  height: auto;
}

.header-button,
.button,
.card-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 10px 18px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.header-button,
.button-dark,
.card-button {
  background: var(--ink);
  color: var(--surface);
}

.button-light {
  background: transparent;
  color: var(--ink);
}

.button-outline {
  background: transparent;
  border-color: rgba(255, 250, 245, 0.28);
  color: var(--surface);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 1fr);
  gap: clamp(42px, 8vw, 118px);
  align-items: center;
  min-height: 620px;
  padding-block: clamp(54px, 9vw, 104px);
}

.hero-copy {
  max-width: 440px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 5vw, 64px);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(32px, 3.6vw, 46px);
}

h3 {
  margin-bottom: 9px;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.08;
}

.hero p {
  max-width: 380px;
  margin-bottom: 26px;
  color: var(--muted);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-image {
  margin: 0;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 50% 72%;
}

.section {
  padding-block: clamp(62px, 9vw, 110px);
}

.section-heading {
  margin-bottom: 34px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 640px;
  background: var(--surface);
}

.package-card img {
  width: 100%;
  aspect-ratio: 1 / 1.35;
  object-fit: cover;
  object-position: 50% 74%;
}

.package-body {
  display: flex;
  flex-direction: column;
  padding: 22px 22px 24px;
}

.package-body h3 {
  margin-bottom: 4px;
}

.price {
  margin-bottom: 21px;
  font-size: 18px;
  font-weight: 700;
}

.price span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
}

.package-card dl {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
}

.package-card dt {
  margin-top: 13px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-card dd {
  margin: 4px 0 0;
}

.card-button {
  width: 100%;
  margin-top: auto;
  font-size: 10px;
}

.badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 7px 11px;
  background: var(--ink);
  color: var(--surface);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.custom-package {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 20px 24px;
  background: var(--cyan);
}

.custom-package .eyebrow {
  margin-bottom: 5px;
}

.custom-package h3 {
  margin-bottom: 4px;
}

.custom-package p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.quote-band {
  display: grid;
  min-height: clamp(230px, 30vw, 355px);
  place-items: center;
  padding: 48px 28px;
  background:
    linear-gradient(90deg, rgba(58, 32, 34, 0.22), rgba(58, 32, 34, 0.08), rgba(58, 32, 34, 0.26)),
    url("/assets/croissant-web.jpg") center 48% / cover no-repeat;
  color: var(--surface);
}

.quote-band p {
  max-width: 680px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 3.2vw, 38px);
  font-style: italic;
  line-height: 1.12;
  text-align: center;
  text-shadow: 0 1px 18px rgba(58, 32, 34, 0.38);
}

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

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 58px);
  padding-top: 20px;
  border-top: 1px solid var(--line-strong);
}

.benefit-grid h3 {
  max-width: 220px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.28;
}

.benefit-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.moments {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 1fr);
  gap: clamp(34px, 8vw, 96px);
  align-items: start;
  background: var(--soft);
}

.moment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.moment-list span {
  padding: 15px 18px;
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.moment-list span::before {
  content: "+";
  margin-right: 10px;
  color: var(--muted);
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(34px, 8vw, 94px);
  align-items: start;
}

.order-main h2 {
  margin-bottom: 28px;
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.order-form label {
  display: grid;
  gap: 6px;
}

.order-form span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: var(--ink);
}

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

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.form-message {
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

.form-message.error {
  background: #fdecec;
  border-color: #e0a8a8;
  color: #8a2424;
}

.form-message.warning {
  background: #fff7e6;
  border-color: #e8d4a8;
  color: #7a5c1a;
}

.form-message.success {
  background: #eaf8ec;
  border-color: #a8d4ae;
  color: #1e5c28;
}

.order-side {
  display: grid;
  gap: 16px;
}

.whatsapp-card {
  padding: 25px;
  background: var(--ink);
  color: var(--surface);
}

.whatsapp-card h3 {
  margin-bottom: 18px;
  font-size: 25px;
}

.whatsapp-card .button-light {
  width: 100%;
  border-color: rgba(255, 250, 245, 0.7);
  color: var(--surface);
}

.info-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.info-card dl {
  margin: 0 0 22px;
}

.info-card dt {
  margin-top: 13px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-card dd {
  margin: 3px 0 0;
  font-size: 14px;
  font-weight: 600;
}

.info-card h3 {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.info-card p {
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding-block: 44px;
  background: var(--ink);
  color: var(--surface);
}

.footer-logo {
  display: block;
  width: 94px;
  height: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 250, 245, 0.72);
  font-family: var(--display);
  font-style: italic;
}

.site-footer span {
  grid-column: 1 / -1;
  justify-self: end;
  color: rgba(255, 250, 245, 0.66);
  font-size: 12px;
}

@media (max-width: 980px) {
  .hero,
  .moments,
  .order-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image img {
    aspect-ratio: 4 / 3;
  }

  .package-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    padding-inline: 20px;
  }

  .site-header {
    min-height: 58px;
  }

  .header-button {
    padding-inline: 12px;
    font-size: 10px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .package-grid,
  .benefit-grid,
  .moment-list,
  .order-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .custom-package,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .header-button,
  .card-button {
    width: 100%;
  }

  .site-header .header-button {
    width: auto;
    flex: 0 0 auto;
  }

  .site-footer span {
    justify-self: start;
  }
}
