:root {
  color-scheme: light;
  --ink: #0b2347;
  --ink-soft: #3f526c;
  --copper: #c9652b;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: rgba(11, 35, 71, 0.16);
}

* { box-sizing: border-box; }

body {
  min-height: 100svh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 52px);
  color: var(--ink);
  background: var(--ink);
  background-image:
    radial-gradient(circle at 18% 12%, rgba(201, 101, 43, 0.2), transparent 26rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 45%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover { color: var(--copper); }

a:focus-visible {
  outline: 3px solid rgba(201, 101, 43, 0.45);
  outline-offset: 4px;
}

.card {
  width: min(100%, 1080px);
  display: grid;
  grid-template-columns: minmax(290px, 0.78fr) minmax(470px, 1.22fr);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.identity,
.products { padding: clamp(34px, 5.2vw, 68px); }

.identity {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  flex: 0 0 auto;
}

.business-type,
.section-heading > p {
  margin: 0 0 7px;
  color: var(--copper);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 0;
  max-width: 100%;
  font-size: clamp(2.25rem, 3.2vw, 2.8rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.3vw, 2.7rem);
  line-height: 1.05;
}

.summary {
  max-width: 33rem;
  margin: 44px 0 52px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.details { margin: auto 0 0; }

.details > div {
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.details dt {
  margin-bottom: 2px;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.details dd {
  margin: 0;
  font-weight: 700;
}

.pending {
  display: block;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 400;
}

.products { background: var(--white); }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading > p {
  flex: 0 0 auto;
  margin-bottom: 5px;
}

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

.product {
  overflow: hidden;
  border: 1px solid var(--line);
}

.product-image {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fafafa;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 180ms ease;
}

.product:hover .product-image img { transform: scale(1.025); }

.product-copy {
  padding: 16px 17px 18px;
  border-top: 1px solid var(--line);
}

.product-copy h3 {
  margin-bottom: 4px;
  font-size: 0.98rem;
  line-height: 1.3;
}

.product-copy p,
.availability {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.availability {
  margin-top: 18px;
  text-align: right;
}

footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px clamp(34px, 5.2vw, 68px);
  color: rgba(255, 255, 255, 0.7);
  background: var(--ink);
  font-size: 0.75rem;
}

@media (max-width: 850px) {
  body {
    display: block;
    padding: 20px;
  }

  .card {
    grid-template-columns: 1fr;
    margin-inline: auto;
  }

  .identity {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .summary { margin: 32px 0 38px; }
  .details { margin-top: 0; }
}

@media (max-width: 560px) {
  body {
    padding: 0;
    background: var(--paper);
  }

  .card {
    border: 0;
    box-shadow: none;
  }

  .identity,
  .products { padding: 32px 22px; }

  .brand { align-items: flex-start; }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .section-heading { display: block; }
  .section-heading > p { margin-bottom: 8px; }
  .product-grid { grid-template-columns: 1fr; }

  footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 22px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after { transition-duration: 0.01ms !important; }
}
