:root {
  --bg: #f7f4ee;
  --paper: #fffdf9;
  --paper-strong: #ffffff;
  --ink: #211f1c;
  --muted: #5c574f;
  --subtle: #8a857c;
  --line: #e3e0d8;
  --line-dark: #d6d0c5;
  --red: #e0483a;
  --red-dark: #c93b2f;
  --green: #2f8f5b;
  --green-dark: #1f6b44;
  --shadow: 0 18px 46px rgba(33, 31, 28, 0.09);
  --shadow-soft: 0 10px 24px rgba(33, 31, 28, 0.07);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1320px, calc(100% - 72px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 249, 0.92);
  border-bottom: 1px solid rgba(227, 224, 216, 0.72);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1360px, calc(100% - 80px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  font-size: 2.05rem;
  line-height: 1;
  font-weight: 900;
  color: var(--ink);
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
  margin-right: 28px;
  font-size: 0.9rem;
  font-weight: 800;
}

.header-nav a {
  padding: 12px 0;
}

.header-nav a:hover {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta,
.header-creator-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.header-creator-cta {
  min-height: 58px;
  padding: 0 24px;
  color: var(--green-dark);
  border: 1px solid var(--line-dark);
  background: #fff;
}

.header-creator-cta:hover {
  border-color: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(47, 143, 91, 0.12);
}

.header-cta {
  min-height: 58px;
  padding: 0 34px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 26px rgba(224, 72, 58, 0.22);
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(224, 72, 58, 0.24);
}

.hero {
  overflow: hidden;
  background: var(--paper);
  padding: 40px 0 12px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(480px, 0.82fr) minmax(720px, 1.18fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  padding-bottom: 16px;
}

.hero h1 {
  margin: 0;
  font-size: 3.22rem;
  line-height: 1.34;
  font-weight: 950;
  word-break: keep-all;
}

.hero-lead {
  max-width: 520px;
  margin: 28px 0 30px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.95;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 520px;
}

.proof-chip {
  min-height: 78px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 13px;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.45;
  box-shadow: 0 6px 18px rgba(33, 31, 28, 0.04);
}

.proof-chip svg,
.line-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--green);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  min-width: 260px;
  padding: 0 34px;
  font-size: 1.06rem;
}

.btn span {
  margin-left: 18px;
  font-size: 1.75rem;
  line-height: 0;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 28px rgba(224, 72, 58, 0.24);
}

.btn-outline {
  color: var(--green-dark);
  background: #fff;
  border: 1.5px solid var(--green);
  box-shadow: 0 10px 22px rgba(47, 143, 91, 0.1);
}

.btn-outline:hover {
  color: #fff;
  background: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(47, 143, 91, 0.18);
}

.btn-text {
  min-width: auto;
  padding: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.btn-text:hover {
  color: var(--red);
}

.micro-note,
.form-note {
  color: var(--subtle);
  font-size: 0.74rem;
  line-height: 1.7;
}

.micro-note {
  margin: 14px 0 0;
  max-width: 520px;
  opacity: 0.72;
}

.hero-visual {
  position: relative;
  min-height: 604px;
}

.photo-collage {
  display: grid;
  grid-template-columns: 1fr 1fr 1.58fr;
  grid-template-rows: 170px 222px 170px;
  gap: 4px;
  border-radius: 2px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.tile {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-interior {
  grid-column: 1 / 3;
  grid-row: 1;
}

.tile-creator {
  grid-column: 3;
  grid-row: 1 / 4;
  object-position: 72% center;
}

.tile-dish {
  grid-column: 1 / 3;
  grid-row: 2;
}

.tile-dessert {
  grid-column: 1;
  grid-row: 3;
  object-position: 36% center;
}

.tile-latte {
  grid-column: 2;
  grid-row: 3;
  object-position: 72% center;
}

.phone-dashboard {
  position: absolute;
  right: 34px;
  top: 226px;
  width: 218px;
  padding: 14px;
  background: #0f0f0f;
  border-radius: 30px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
}

.phone-dashboard::before {
  content: "";
  display: block;
  width: 72px;
  height: 13px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: #0f0f0f;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-top,
.phone-stats {
  background: #fff;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 18px 18px 0 0;
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 900;
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: #fff;
  padding: 0 8px 8px;
}

.thumb-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 3px;
}

.phone-stats {
  padding: 10px;
  border-radius: 0 0 18px 18px;
}

.phone-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.62rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.stats-grid span {
  color: var(--muted);
  font-size: 0.55rem;
  line-height: 1.25;
}

.stats-grid b {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.05;
}

.section-pad {
  padding: 64px 0;
}

.problems {
  background: var(--paper);
  padding-top: 30px;
}

.center-heading,
.flow-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
  margin-bottom: 34px;
  text-align: center;
}

.center-heading.compact {
  max-width: 760px;
  margin: 0 auto 36px;
}

.center-heading span,
.flow-heading span {
  display: block;
  height: 1px;
  background: var(--line-dark);
}

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

h2 {
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 1.42;
  font-weight: 950;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.14rem;
  line-height: 1.5;
  font-weight: 950;
}

p {
  margin-bottom: 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card,
.service-card,
.benefit-card,
.flow-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(33, 31, 28, 0.05);
}

.info-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  grid-template-rows: auto 1fr;
  gap: 20px;
  align-items: center;
  min-height: 166px;
  padding: 28px 30px;
}

.info-card .line-icon {
  grid-row: 1 / 3;
}

.info-card h3,
.info-card p {
  grid-column: 2;
}

.info-card p,
.service-card p,
.benefit-card p,
.flow-card p,
.apply p,
.faq p {
  color: var(--muted);
  font-size: 0.92rem;
}

.line-icon {
  width: 70px;
  height: 70px;
  padding: 11px;
  border: 4px solid rgba(31, 107, 68, 0.64);
  border-radius: 999px;
  color: var(--green);
}

.line-icon svg {
  stroke: var(--green-dark);
  stroke-width: 2.5;
}

.info-card:nth-child(2) .line-icon,
.info-card:nth-child(3) .line-icon {
  width: 78px;
  height: 78px;
  padding: 8px;
  border-color: transparent;
  border-radius: 6px;
}

.service {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-grid {
  align-items: start;
}

.service-card {
  position: relative;
  padding: 26px 22px 20px;
}

.service-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  z-index: 3;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 18px solid var(--ink);
  transform: translateY(-50%);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 950;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 18px;
  border-radius: var(--radius);
  object-fit: cover;
}

.report-preview,
.analytics-card {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.report-preview {
  padding: 10px;
}

.report-toolbar {
  display: flex;
  gap: 6px;
  margin-bottom: 9px;
}

.report-toolbar span {
  width: 48px;
  height: 13px;
  border-radius: 4px;
  background: #f0eee8;
}

.chart-line {
  height: 58px;
  border: 1px solid #eeeae2;
  border-radius: 6px;
  padding: 8px;
}

.chart-line svg {
  width: 100%;
  height: 100%;
}

.chart-line path {
  fill: none;
  stroke: var(--green);
  stroke-width: 5;
  stroke-linecap: round;
}

.chart-line .chart-base {
  stroke: #ddd8cf;
  stroke-width: 2;
}

.mini-food-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 8px;
}

.mini-food-row img {
  height: 58px;
  border-radius: 6px;
  object-fit: cover;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-top: 8px;
}

.mini-stats b {
  display: block;
  padding: 6px 4px;
  border-radius: 5px;
  background: #f7f5ef;
  color: var(--ink);
  text-align: center;
  font-size: 0.78rem;
}

.report-table,
.analytics-table {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.7fr;
  gap: 5px 7px;
  margin-top: 8px;
}

.report-table span,
.analytics-table span {
  height: 6px;
  border-radius: 999px;
  background: #e9e4dc;
}

.report-table span:nth-child(3n),
.analytics-table span:nth-child(3n) {
  background: #d7eee0;
}

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

.section-title {
  margin-bottom: 34px;
  text-align: center;
}

.benefit-card {
  padding: 30px 22px 22px;
}

.benefit-card .line-icon {
  margin-bottom: 18px;
}

.benefit-card > img,
.asset-mosaic,
.analytics-card {
  margin-top: 22px;
}

.benefit-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  object-fit: cover;
}

.asset-mosaic {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr 0.95fr;
  grid-template-rows: 90px 90px;
  gap: 5px;
  overflow: hidden;
  border-radius: var(--radius);
}

.asset-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.asset-mosaic img:first-child {
  grid-column: 1;
  grid-row: 1 / 3;
}

.asset-mosaic img:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.asset-mosaic img:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.asset-mosaic img:last-child {
  display: block;
  grid-column: 2 / 4;
  grid-row: 2;
}

.analytics-card {
  padding: 14px 14px 16px;
}

.analytics-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.analytics-stats span {
  display: block;
  padding: 9px 6px;
  border-radius: 6px;
  background: #f7f5ef;
  color: var(--subtle);
  font-size: 0.58rem;
}

.analytics-stats b {
  display: block;
  color: var(--ink);
  font-size: 0.88rem;
}

.pie-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
}

.pie {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: conic-gradient(var(--red) 0 27%, var(--green) 27% 70%, #ece7df 70% 100%);
}

.bar-list {
  display: grid;
  gap: 7px;
}

.bar-list i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: var(--line);
}

.bar-list i:nth-child(1) { width: 92%; }
.bar-list i:nth-child(2) { width: 76%; }
.bar-list i:nth-child(3) { width: 84%; }
.bar-list i:nth-child(4) { width: 58%; }

.flow {
  padding-top: 30px;
  background: var(--paper);
}

.flow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.flow-card {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto 1fr;
  column-gap: 14px;
  align-items: start;
  min-height: 138px;
  padding: 22px 20px;
}

.flow-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 74px;
  right: -30px;
  width: 24px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--green-dark) 0 5px, transparent 5px 9px);
}

.flow-card:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 70px;
  right: -35px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--green-dark);
}

.flow-card .step-badge {
  grid-row: 1;
  margin-bottom: 8px;
}

.flow-icon {
  grid-column: 1;
  grid-row: 2 / 4;
  width: 34px;
  height: 34px;
  color: var(--ink);
}

.flow-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-card h3,
.flow-card p {
  grid-column: 2;
}

.centered {
  text-align: center;
}

.campaign-strip {
  position: relative;
  overflow: hidden;
  min-height: 216px;
  padding: 34px 0;
  background: #102116;
  color: #fff;
}

.campaign-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 33, 22, 0.98) 0%, rgba(16, 33, 22, 0.82) 44%, rgba(16, 33, 22, 0.18) 100%),
    url("../../assets/maegami-photo-restaurant-interior-20260618.png") center / cover;
}

.strip-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 390px;
  grid-template-areas:
    "copy button"
    "copy link";
  align-items: center;
  gap: 10px 42px;
}

.strip-grid > div {
  grid-area: copy;
}

.strip-label,
.section-label {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 950;
}

.strip-label {
  display: none;
}

.campaign-strip h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 2.45rem;
}

.campaign-strip p {
  color: rgba(255, 255, 255, 0.82);
}

.btn.bright {
  grid-area: button;
  min-width: 390px;
}

.strip-link {
  grid-area: link;
  color: #fff;
  text-align: center;
  font-weight: 900;
}

.apply {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.apply-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.apply h2,
.faq h2 {
  margin-bottom: 14px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 4px #dff0e6;
}

.apply-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.apply-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
}

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

.apply-form input,
.apply-form textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fffdf9;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

.apply-form textarea {
  min-height: 106px;
  resize: vertical;
}

.apply-form input:focus,
.apply-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 143, 91, 0.14);
}

.apply-form .btn {
  width: 100%;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
}

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

.faq-inner {
  max-width: 820px;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  color: var(--green);
  flex: 0 0 auto;
}

details[open] summary::after {
  content: "-";
  background: var(--green);
  color: #fff;
}

details p {
  padding: 0 56px 22px 0;
}

.footer {
  padding: 44px 24px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 18px;
  color: #fff;
  font-size: 1.25rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer a:hover {
  color: #fff;
}

.footer p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
}

.sp-only {
  display: none;
}

@media (max-width: 1240px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }
}

@media (max-width: 1080px) {
  .container {
    width: min(100% - 42px, 900px);
  }

  .header-nav {
    gap: 22px;
  }

  .header-creator-cta {
    display: none;
  }

  .hero-grid,
  .apply-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-visual {
    min-height: 560px;
  }

  .problem-grid,
  .service-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .info-card,
  .service-card,
  .benefit-card {
    max-width: 680px;
    margin: 0 auto;
  }

  .service-card:not(:last-child)::after {
    display: none;
  }

  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-card:not(:last-child)::after,
  .flow-card:not(:last-child)::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .header-inner {
    width: min(100% - 28px, 680px);
    min-height: 66px;
  }

  .brand {
    font-size: 1.55rem;
  }

  .header-nav {
    display: none;
  }

  .header-actions,
  .header-cta {
    display: none;
  }

  .hero {
    padding: 44px 0 46px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .proof-row,
  .flow-grid,
  .apply-form {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .hero-copy,
  .hero-visual,
  .center-heading h2,
  .flow-heading h2,
  .info-card,
  .service-card,
  .benefit-card,
  .flow-card {
    min-width: 0;
    max-width: 100%;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn,
  .btn.bright {
    width: 100%;
    min-width: 0;
  }

  .hero-visual {
    min-height: 0;
  }

  .photo-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 116px 152px 116px;
  }

  .tile-interior {
    grid-column: 1;
    grid-row: 1;
  }

  .tile-creator {
    grid-column: 2;
    grid-row: 1 / 4;
  }

  .tile-dish {
    grid-column: 1;
    grid-row: 2;
  }

  .tile-dessert {
    grid-column: 1;
    grid-row: 3;
  }

  .tile-latte {
    display: none;
  }

  .phone-dashboard {
    position: relative;
    right: auto;
    top: auto;
    width: 184px;
    margin: -154px 16px 0 auto;
  }

  .center-heading,
  .flow-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .center-heading span,
  .flow-heading span {
    display: none;
  }

  h2 {
    font-size: 1.62rem;
    overflow-wrap: anywhere;
  }

  .sp-only {
    display: inline;
  }

  .info-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px;
  }

  .info-card .line-icon {
    grid-row: auto;
  }

  .info-card h3,
  .info-card p {
    grid-column: 1;
  }

  .strip-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "button"
      "link";
  }

  .campaign-strip h2 {
    font-size: 1.9rem;
  }

  .apply-form .full,
  .form-note {
    grid-column: auto;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(100% - 28px, 420px);
  }

  .hero h1 {
    font-size: 2rem;
  }

  .photo-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 110px 130px 110px;
  }

  .phone-dashboard {
    width: 174px;
    margin-top: -146px;
    margin-right: 14px;
  }

  .section-pad {
    padding: 54px 0;
  }
}
