:root {
  --ink: #503521;
  --muted: #6b5a48;
  --green: #60432b;
  --green-dark: #432d1e;
  --cream: #fff7e9;
  --sand: #eee0c9;
  --line: #e0d3c0;
  --white: #fffdf8;
  --accent: #9a692d;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid #a25722;
  outline-offset: 5px;
}
button {
  cursor: pointer;
}
img,
svg {
  max-width: 100%;
}
img {
  display: block;
  height: auto;
}
p {
  line-height: 1.7;
  margin: 0 0 20px;
}
h1,
h2,
h3 {
  margin: 0;
  font-weight: 400;
}
h1,
h2,
.serif {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(2.5rem, 4.3vw, 4.25rem);
  line-height: 1.09;
  text-wrap: balance;
}
h2 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.15;
  text-wrap: balance;
}
h3 {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 600;
}
.wrap {
  width: min(1200px, calc(100% - 64px));
  margin: auto;
}
.section {
  padding: 104px 0;
}
.eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.6;
  margin-bottom: 22px;
  display: block;
}
.muted {
  color: var(--muted);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 15px 23px;
  border-radius: 7px;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--white);
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.button.light {
  background: var(--cream);
  color: var(--green);
  border-color: var(--cream);
}
.button.outline {
  background: transparent;
  color: var(--green);
  border-color: #b89a75;
}
.button.outline:hover {
  background: #f0e2cc;
}
.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  text-decoration: underline;
  text-underline-offset: 5px;
  font-size: 0.94rem;
}
.icon {
  width: 22px;
  height: 22px;
  flex: none;
  display: inline-block;
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 99;
  background: white;
  padding: 14px;
}
.skip:focus {
  top: 12px;
}
.topline {
  text-align: center;
  font-size: 0.73rem;
  letter-spacing: 0.065em;
  background: var(--green);
  color: var(--cream);
  padding: 10px 20px;
  line-height: 1.4;
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 247, 233, 0.97);
  border-bottom: 1px solid #e5d7c1;
}
.header-inner {
  height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
}
.brand-name {
  font-family: Georgia, serif;
  font-size: 1.85rem;
  letter-spacing: -0.05em;
  line-height: 0.95;
}
.brand-name span {
  display: block;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.42em;
  margin-top: 9px;
  margin-left: 3px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.83rem;
}
.nav > a:not(.button) {
  padding: 14px 0;
}
.nav > a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.nav .button {
  min-height: 44px;
  padding: 12px 18px;
  font-size: 0.8rem;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid #bba484;
  border-radius: 5px;
  padding: 10px;
  color: var(--green);
}
.hero {
  position: relative;
  padding: 54px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  align-items: center;
  gap: 54px;
}
.hero .eyebrow {
  max-width: 360px;
  color: #836137;
}
.hero h1 em {
  font-weight: 400;
  color: #93662f;
}
.hero-copy > p {
  max-width: 510px;
  margin: 26px 0;
  color: var(--muted);
  font-size: 1rem;
}
.hero-actions {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-direction: column;
}
.micro {
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 15px;
}
.hero-visual {
  position: relative;
  background: #eadcc6;
  border-radius: 180px 180px 12px 12px;
  min-width: 0;
  isolation: isolate;
}
.hero-visual:before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid #fff9;
  border-radius: inherit;
  z-index: -1;
}
.hero-visual img {
  width: 100%;
  margin: -20px 0 0;
  aspect-ratio: 760/820;
  object-fit: contain;
}
.visual-top {
  position: absolute;
  top: 42px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #735333;
}
.visual-note {
  position: absolute;
  bottom: 40px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: center;
  gap: 9px;
  align-items: center;
  font-family: Georgia, serif;
  font-size: 1.15rem;
}
.illustration-note {
  text-align: right;
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.5;
  margin: 7px 0 0;
}
.hero-proof {
  display: flex;
  gap: 28px;
  border-top: 1px solid #e4d6bf;
  margin-top: 34px;
  padding-top: 22px;
  font-size: 0.77rem;
  color: #765637;
  flex-wrap: wrap;
}
.hero-proof span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-proof .icon {
  width: 18px;
  height: 18px;
}
.intro {
  padding-top: 74px;
}
.section-heading {
  max-width: 665px;
  margin-bottom: 48px;
}
.section-heading p {
  margin-top: 22px;
  color: var(--muted);
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.benefit {
  border-top: 1px solid #cdb997;
  padding-top: 26px;
}
.benefit .icon {
  width: 30px;
  height: 30px;
  margin-bottom: 25px;
  color: #947044;
}
.benefit p {
  font-size: 0.93rem;
  color: var(--muted);
  margin: 15px 0 0;
}
.models {
  background: #f3e9d7;
}
.split-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}
.split-heading h2 {
  max-width: 520px;
}
.split-heading p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}
.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.model {
  background: var(--white);
  border: 1px solid #dfcdae;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.model-number {
  font-family: Georgia, serif;
  font-size: 0.85rem;
  color: #93662f;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 30px;
}
.model-number:after {
  content: "";
  width: 36px;
  height: 1px;
  background: #d1b991;
}
.model h3 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: -0.03em;
}
.model > p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 14px 0 22px;
}
.model ul {
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}
.model li {
  font-size: 0.87rem;
  padding: 12px 0;
  border-bottom: 1px solid #ede2d1;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}
.model li .icon {
  width: 16px;
  height: 16px;
}
.model .button {
  margin-top: auto;
}
.model.featured {
  border: 1px solid #ad8553;
  background: #fff7e7;
}
.model-foot {
  margin-top: 25px;
  font-size: 0.83rem;
  text-align: center;
  color: var(--muted);
}
.care-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 90px;
  align-items: start;
}
.care-list {
  border-top: 1px solid #d9c8aa;
}
.care-item {
  padding: 27px 0;
  border-bottom: 1px solid #d9c8aa;
  display: flex;
  gap: 22px;
}
.care-item .icon {
  color: #936d3b;
  margin-top: 4px;
}
.care-item h3 {
  font-size: 1.08rem;
}
.care-item p {
  font-size: 0.91rem;
  color: var(--muted);
  margin: 10px 0 0;
}
.care-aside {
  margin-top: 32px;
  padding: 20px 24px;
  background: #f2e5cf;
  border-left: 2px solid #9a8765;
  font-size: 0.88rem;
  color: #765b3a;
}
.steps {
  background: var(--green);
  color: var(--cream);
}
.steps .eyebrow {
  color: #e6d3b2;
}
.steps-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  margin-top: 58px;
}
.step-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #b99b73;
  border-radius: 50%;
  font-family: Georgia, serif;
  margin-bottom: 23px;
}
.step h3 {
  font-weight: 400;
  font-size: 1.14rem;
}
.step p {
  font-size: 0.91rem;
  color: #f1e0c6;
  margin: 14px 0 0;
}
.coverage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.coverage-visual {
  background: #f1e5ce;
  border-radius: 10px;
  padding: 36px;
  position: relative;
}
.region-art {
  height: 240px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.region-circle {
  width: 215px;
  height: 215px;
  border: 1px solid #c2a477;
  border-radius: 50%;
  position: relative;
}
.region-circle:before {
  content: "";
  position: absolute;
  inset: 23px;
  border: 1px dashed #c2a477;
  border-radius: 50%;
}
.city {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  box-shadow: 0 7px 20px #60432b0b;
  padding: 12px 18px;
  border: 1px solid #d8bc92;
  border-radius: 6px;
  font-size: 0.92rem;
}
.city:first-of-type {
  left: -20px;
  top: 66px;
}
.city:last-of-type {
  right: -18px;
  bottom: 35px;
}
.city:before {
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #a7753b;
}
.coverage-visual > p {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 16px 0 0;
}
.coverage-copy > p {
  margin-top: 22px;
  color: var(--muted);
}
.faq {
  border-top: 1px solid #e0d3c0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}
.faq-intro p {
  font-size: 0.94rem;
  color: var(--muted);
  margin-top: 22px;
}
.faq-list {
  border-top: 1px solid #d9c6a7;
}
details {
  border-bottom: 1px solid #d9c6a7;
}
summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 0;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  flex: none;
}
details[open] summary:after {
  content: "−";
}
details > p {
  font-size: 0.91rem;
  color: var(--muted);
  padding-right: 25px;
  margin-bottom: 24px;
}
.contact {
  background: #f0e0c3;
  padding: 78px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact p {
  margin-top: 22px;
  color: var(--muted);
}
.contact-box {
  background: var(--white);
  padding: 30px;
  border-radius: 9px;
}
.contact-box > p {
  margin: 0 0 20px;
  font-size: 0.9rem;
}
.contact-box .button {
  width: 100%;
}
.contact-box .micro {
  margin-bottom: 0;
}
.footer {
  padding: 50px 0 24px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: start;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.83rem;
}
.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer-bottom {
  border-top: 1px solid #e0d3c0;
  margin-top: 35px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.6;
}
.floating {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 15;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: white;
  box-shadow: 0 4px 20px #203b3229;
  border: 2px solid var(--cream);
}
.floating .icon {
  width: 27px;
  height: 27px;
}
.footer {
  padding-bottom: 88px;
}
.links-main {
  max-width: 560px;
  margin: auto;
  padding: 64px 24px 80px;
  text-align: center;
  min-height: 70vh;
}
.links-main h1 {
  font-size: 2.6rem;
  margin: 25px 0 20px;
}
.links-main .brand {
  justify-content: center;
}
.links-main > p {
  color: var(--muted);
  font-size: 0.94rem;
}
.link-stack {
  display: grid;
  gap: 13px;
  margin-top: 30px;
}
.link-stack .button {
  justify-content: space-between;
  text-align: left;
  padding: 19px 22px;
}
.google-note {
  font-size: 0.78rem !important;
  padding: 15px;
  background: #f0e4d1;
  border-radius: 5px;
}
.legal {
  max-width: 780px;
  min-height: 60vh;
}
.legal h1 {
  font-size: 3rem;
  margin-bottom: 30px;
}
.legal h2 {
  font-size: 1.6rem;
  margin: 35px 0 15px;
}
@media (min-width: 1600px) {
  .hero {
    padding-top: 76px;
    padding-bottom: 50px;
  }
  .hero-grid {
    gap: 80px;
  }
}
@media (max-width: 1100px) {
  .nav {
    gap: 18px;
  }
  .hero-grid {
    gap: 30px;
  }
  .care-grid,
  .faq-grid,
  .coverage,
  .contact-grid {
    gap: 48px;
  }
  .model {
    padding: 25px;
  }
  .steps-grid {
    gap: 30px;
  }
}
@media (max-width: 850px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 74px;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    padding: 20px;
    background: var(--cream);
    border-bottom: 1px solid #d7c4a7;
    box-shadow: 0 14px 20px #203b3212;
    max-height: calc(100dvh - 90px);
    overflow: auto;
  }
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .nav > a:not(.button) {
    padding: 13px 8px;
  }
  .hero-grid {
    gap: 30px;
    grid-template-columns: 1.1fr 0.9fr;
  }
  .hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.2rem);
  }
  .hero .eyebrow {
    font-size: 0.66rem;
  }
  .hero-visual {
    border-radius: 130px 130px 10px 10px;
  }
  .visual-top {
    top: 30px;
    font-size: 0.56rem;
  }
  .visual-note {
    font-size: 0.85rem;
    bottom: 25px;
  }
  .hero-proof {
    gap: 17px;
    font-size: 0.72rem;
  }
  .section {
    padding: 74px 0;
  }
  .benefit-grid {
    gap: 25px;
  }
  .split-heading {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
  .split-heading p {
    max-width: 540px;
  }
  .model-grid {
    gap: 13px;
  }
  .model {
    padding: 23px 18px;
  }
  .model h3 {
    font-size: 1.7rem;
  }
  .model .button {
    font-size: 0.82rem;
    padding: 13px 9px;
  }
  .care-grid,
  .coverage,
  .faq-grid,
  .contact-grid {
    gap: 35px;
  }
  .steps-grid {
    gap: 25px;
  }
  .steps-header {
    align-items: start;
    flex-direction: column;
  }
  .footer-top {
    flex-direction: column;
  }
}
@media (max-width: 620px) {
  .topline {
    font-size: 0.65rem;
    padding: 8px 16px;
  }
  .brand-name {
    font-size: 1.65rem;
  }
  .brand-mark {
    width: 35px;
    height: 35px;
  }
  .hero {
    padding: 34px 0 30px;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .hero h1 {
    font-size: clamp(2.3rem, 9.3vw, 3.15rem);
    max-width: 490px;
  }
  .hero .eyebrow {
    font-size: 0.66rem;
    max-width: 310px;
    margin-bottom: 18px;
  }
  .hero-copy > p {
    font-size: 0.94rem;
    margin: 20px 0;
  }
  .hero-actions > .button {
    width: 100%;
    font-size: 0.87rem;
  }
  .hero-actions {
    gap: 7px;
  }
  .hero-actions > .text-link {
    font-size: 0.86rem;
  }
  .hero-visual-wrap {
    width: 100%;
    max-width: 420px;
  }
  .hero-visual {
    border-radius: 150px 150px 10px 10px;
  }
  .hero-visual img {
    max-height: 395px;
    margin: 0;
  }
  .visual-top {
    top: 28px;
  }
  .visual-note {
    bottom: 24px;
    font-size: 1rem;
  }
  .hero-proof {
    margin-top: 23px;
    padding-top: 19px;
    gap: 12px 20px;
    line-height: 1.5;
  }
  .micro {
    font-size: 0.72rem;
  }
  .section {
    padding: 62px 0;
  }
  h2 {
    font-size: 2.15rem;
  }
  .section-heading {
    margin-bottom: 32px;
  }
  .benefit-grid,
  .model-grid,
  .care-grid,
  .steps-grid,
  .coverage,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .benefit-grid {
    gap: 30px;
  }
  .benefit .icon {
    margin-bottom: 16px;
  }
  .benefit p {
    margin-top: 10px;
  }
  .model-grid {
    gap: 18px;
  }
  .model {
    padding: 28px;
  }
  .model-number {
    margin-bottom: 20px;
  }
  .model h3 {
    font-size: 2rem;
  }
  .model .button {
    font-size: 0.91rem;
    min-height: 50px;
  }
  .model > p {
    margin-bottom: 10px;
  }
  .model ul {
    margin-bottom: 24px;
  }
  .split-heading {
    margin-bottom: 30px;
  }
  .care-grid,
  .faq-grid {
    gap: 32px;
  }
  .care-aside {
    margin-top: 24px;
  }
  .care-item {
    padding: 22px 0;
  }
  .steps-grid {
    margin-top: 38px;
    gap: 32px;
  }
  .step {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 18px;
  }
  .step-number {
    grid-row: span 2;
    margin: 0;
  }
  .step h3 {
    padding-top: 7px;
  }
  .step p {
    grid-column: 2;
    margin-top: 8px;
  }
  .coverage {
    gap: 35px;
  }
  .coverage-visual {
    padding: 25px;
  }
  .region-art {
    height: 210px;
  }
  .region-circle {
    width: 195px;
    height: 195px;
  }
  .coverage-copy {
    grid-row: 1;
  }
  .contact {
    padding: 60px 0;
  }
  .contact-grid {
    gap: 26px;
  }
  .contact-box {
    padding: 24px;
  }
  .footer-links {
    gap: 8px 23px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .floating {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }
  .legal h1 {
    font-size: 2.4rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .header,
  .floating,
  .menu-toggle {
    position: static;
  }
  .nav,
  .floating {
    display: none;
  }
  .section {
    padding: 30px 0;
  }
}
/* Reflow também com texto ampliado, sem esconder overflow. */
.hero-grid > * {
  min-width: 0;
}
.model-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}
.button {
  overflow-wrap: anywhere;
}
.model,
.benefit,
.step,
.care-grid > *,
.faq-grid > *,
.contact-grid > * {
  min-width: 0;
}
@media (max-width: 850px) {
  .header-inner {
    height: auto;
    min-height: 74px;
    padding-block: 14px;
    flex-wrap: wrap;
    gap: 14px;
  }
  .nav {
    top: 100%;
  }
  .brand-name {
    font-size: clamp(1.65rem, 4vw, 1.85rem);
  }
}

/* Identidade observada no acervo do Instagram: logo original, creme e ocre. */
.brand-logo {
  width: 134px;
  height: auto;
  mix-blend-mode: multiply;
}
.header-inner {
  height: 116px;
}
.hero-visual {
  border-radius: 160px 160px 12px 12px;
  overflow: hidden;
}
.hero-visual img {
  margin: 0;
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
  max-height: none;
}
.hero-visual:before {
  display: none;
}
.floating {
  background: #285a3c;
}
.demonstration {
  padding-top: 0;
}
.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.product-gallery figure {
  margin: 0;
  min-width: 0;
  background: #fff;
  border: 1px solid #ecdfc9;
  border-radius: 8px;
  overflow: hidden;
}
.product-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}
.product-gallery figcaption {
  padding: 20px 22px 25px;
}
.product-gallery strong {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
}
.product-gallery figcaption span {
  display: block;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 7px;
}
.links-main > .brand .brand-logo {
  width: 185px;
}
.footer .brand-logo {
  width: 170px;
}
@media (max-width: 850px) {
  .header-inner {
    height: auto;
    min-height: 104px;
    padding-block: 6px;
  }
  .brand-logo {
    width: 118px;
  }
  .hero-visual {
    border-radius: 120px 120px 10px 10px;
  }
  .product-gallery {
    gap: 16px;
  }
  .product-gallery figcaption {
    padding: 16px;
  }
  .product-gallery strong {
    font-size: 0.93rem;
  }
}
@media (max-width: 620px) {
  .brand-logo {
    width: 112px;
  }
  .header-inner {
    min-height: 96px;
  }
  .hero-visual-wrap {
    max-width: 420px;
  }
  .hero-visual {
    border-radius: 130px 130px 10px 10px;
  }
  .hero-visual img {
    max-height: none;
  }
  .product-gallery {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product-gallery img {
    max-height: 330px;
  }
  .product-gallery figcaption {
    padding: 18px 24px 25px;
  }
  .product-gallery strong {
    font-size: 1.1rem;
  }
}

.header,
.footer {
  background: #fff3db;
}
.brand-logo {
  mix-blend-mode: normal;
  border-radius: 4px;
}
.testimonials {
  padding-top: 0;
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.quote-grid figure {
  margin: 0;
  padding: 30px 0;
  border-top: 1px solid #ceb590;
}
.quote-grid blockquote {
  font-family: Georgia, serif;
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  line-height: 1.45;
  margin: 0 0 24px;
  max-width: 490px;
}
.quote-grid figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--muted);
}
.quote-grid .text-link {
  font-size: 0.8rem;
}
@media (max-width: 620px) {
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
