:root {
  --cream: #fffaf1;
  --cream-deep: #f3e6d5;
  --ivory: #fffdf8;
  --charcoal: #17120e;
  --noir: #0d0907;
  --cocoa: #211713;
  --charcoal-soft: #332820;
  --muted: #c8b9a8;
  --gold: #b88a28;
  --gold-soft: #e7c979;
  --berry: #8c1534;
  --rose: #f8e5e1;
  --line: rgba(231, 201, 121, 0.18);
  --shadow-soft: 0 22px 70px rgba(0, 0, 0, 0.28);
  --shadow-deep: 0 34px 90px rgba(0, 0, 0, 0.42);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: rgba(231, 201, 121, 0.7) #373434;
  scrollbar-width: thin;
  touch-action: pan-x pan-y;
}

body {
  margin: 0;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(231, 201, 121, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, var(--noir), var(--charcoal) 42%, #140d0a 100%);
  background-size: 72px 72px, auto;
  font-family: var(--body);
  line-height: 1.6;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #373434;
}

::-webkit-scrollbar-thumb {
  border: 2px solid #373434;
  border-radius: 999px;
  background: rgba(231, 201, 121, 0.72);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(231, 201, 121, 0.9);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 16%, rgba(231, 201, 121, 0.1), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(140, 21, 52, 0.18), transparent 30%),
    radial-gradient(circle at 76% 76%, rgba(85, 116, 91, 0.1), transparent 28%);
}

img,
svg {
  display: block;
  -webkit-user-drag: none;
  user-drag: none;
}

img {
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 0 18px;
  pointer-events: none;
}

.header-shell {
  display: grid;
  width: min(1240px, 100%);
  min-height: 90px;
  grid-template-columns: auto minmax(520px, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 1.8vw, 22px);
  border: 1px solid rgba(231, 201, 121, 0.22);
  border-radius: 34px;
  padding: 10px 14px 10px 12px;
  background:
    linear-gradient(90deg, rgba(23, 19, 16, 0.92), rgba(55, 52, 52, 0.86)),
    rgba(55, 52, 52, 0.78);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
  pointer-events: auto;
}

.brand {
  display: grid;
  width: 272px;
  height: 70px;
  place-items: center;
}

.brand img {
  width: 260px;
  max-height: 68px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 3.1vw, 44px);
  color: rgba(246, 244, 241, 0.84);
  font-size: 1rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 10px 0 13px;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold-soft);
  transition: transform 220ms ease;
}

.main-nav a:hover {
  color: #f6f4f1;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.social-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  border-left: 1px solid rgba(231, 201, 121, 0.2);
  padding-left: 12px;
}

.icon-link {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(231, 201, 121, 0.7);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #373434;
  box-shadow: 0 12px 28px rgba(184, 138, 40, 0.18);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.icon-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.icon-link:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(231, 201, 121, 0.86);
  background: linear-gradient(135deg, #c89936, #f0d587);
  box-shadow: 0 16px 34px rgba(231, 201, 121, 0.28);
}

.hero {
  position: relative;
  min-height: clamp(790px, 100svh, 880px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 156px clamp(26px, 6vw, 96px) 116px;
  background: #373434;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  transform: scale(1.005);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(28, 24, 21, 0.98) 0%, rgba(55, 52, 52, 0.94) 36%, rgba(55, 52, 52, 0.72) 64%, rgba(55, 52, 52, 0.42) 100%),
    linear-gradient(0deg, rgba(13, 9, 7, 0.62), rgba(13, 9, 7, 0.22) 56%),
    rgba(0, 0, 0, 0.18);
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(26px, 6vw, 96px);
  bottom: 46px;
  width: min(520px, calc(100% - 52px));
  height: 1px;
  background: linear-gradient(90deg, rgba(231, 201, 121, 0.7), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  margin-right: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: block;
  margin-bottom: 22px;
}

.hero-eyebrow::before {
  content: none;
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  color: #f6f4f1;
  font-size: clamp(3.75rem, 6vw, 5.5rem);
  line-height: 0.95;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 5.5vw, 5.6rem);
  line-height: 0.94;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 0.98;
  font-weight: 600;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 38px;
  color: rgba(246, 244, 241, 0.82);
  font-size: clamp(1.12rem, 1.45vw, 1.26rem);
  line-height: 1.62;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(231, 201, 121, 0.72);
  border-radius: 999px;
  padding: 0 28px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 190ms ease, box-shadow 190ms ease, background 190ms ease, border-color 190ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.hero .button {
  min-width: 270px;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #373434;
  box-shadow: 0 16px 34px rgba(184, 138, 40, 0.24);
}

.button-primary:hover {
  background: linear-gradient(135deg, #c89936, #f0d587);
  box-shadow: 0 22px 42px rgba(184, 138, 40, 0.28);
}

.button-ghost {
  background: rgba(55, 52, 52, 0.4);
  color: #f6f4f1;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.button-ghost:hover {
  background: rgba(231, 201, 121, 0.12);
  color: var(--gold-soft);
}

.button-ghost-light {
  border-color: rgba(255, 250, 241, 0.38);
  color: var(--cream);
}

.button-dark {
  border-color: rgba(231, 201, 121, 0.3);
  background: rgba(255, 250, 241, 0.08);
  color: var(--cream);
}

.section-shell {
  padding: clamp(76px, 11vw, 148px) clamp(18px, 5vw, 78px);
}

.section-intro {
  width: min(820px, 100%);
  margin-bottom: 42px;
}

.section-intro p:not(.eyebrow),
.notice-card p:not(.eyebrow),
.contact-content p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.products-section,
.bolometro-section,
.about-section,
.notice-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.03), rgba(255, 250, 241, 0)),
    var(--charcoal);
}

.products-section.section-shell {
  padding-block: clamp(58px, 6vw, 90px) clamp(60px, 6vw, 92px);
}

.products-section .section-intro {
  margin-bottom: 34px;
}

.products-section .section-intro p:not(.eyebrow) {
  font-size: clamp(1.12rem, 1.35vw, 1.22rem);
  line-height: 1.68;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  border: 1px solid rgba(184, 138, 40, 0.18);
  border-radius: 10px;
  background: #120d0a;
  box-shadow: var(--shadow-soft);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23, 18, 14, 0.9), rgba(23, 18, 14, 0.18) 58%, rgba(23, 18, 14, 0.02));
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.product-card:hover img {
  transform: scale(1.045);
}

.products-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.products-action .button {
  min-width: min(280px, 100%);
}

.product-copy {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: var(--cream);
}

.product-copy span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.product-copy p {
  color: rgba(255, 250, 241, 0.88);
}

.product-copy a {
  display: inline-flex;
  margin-top: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold-soft);
  color: var(--gold-soft);
  font-weight: 800;
  transition: color 180ms ease, border-color 180ms ease;
}

.product-copy a:hover {
  border-color: #fff7de;
  color: #fff7de;
}

.bolometro-section {
  color: var(--cream);
}

.bolometro-section.section-shell {
  padding-block: clamp(58px, 7.5vw, 96px);
}

.calculator-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: start;
  width: min(1020px, 100%);
  margin: 0 auto;
}

.calculator-intro {
  grid-column: 1 / -1;
  width: min(620px, 100%);
  margin-bottom: -2px;
}

.calculator-intro .eyebrow {
  margin-bottom: 12px;
  color: var(--gold-soft);
}

.calculator-intro h2 {
  margin-bottom: 12px;
  font-size: clamp(2.55rem, 4.8vw, 4.35rem);
  line-height: 0.94;
}

.calculator-intro p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.76);
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
}

.calculator-form,
.calculator-result {
  border: 1px solid rgba(231, 201, 121, 0.16);
  border-radius: 22px;
  padding: clamp(22px, 2.3vw, 28px);
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.08), rgba(255, 250, 241, 0.035)),
    rgba(23, 18, 14, 0.2);
  box-shadow: 0 22px 58px rgba(13, 9, 7, 0.18);
}

.calculator-form {
  display: grid;
  gap: 18px;
}

.calculator-result {
  display: grid;
  gap: 15px;
}

.field {
  display: grid;
  gap: 10px;
  margin: 0;
}

.field span,
.field-label {
  margin: 0;
  color: #f6f4f1;
  font-size: 0.92rem;
  font-weight: 800;
}

.field input,
.field select {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(246, 244, 241, 0.8);
  border-radius: 14px;
  padding: 0 14px;
  background: #f6f4f1;
  color: var(--charcoal);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.field input:focus,
.field select:focus {
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(231, 201, 121, 0.16);
}

.field select option {
  background: #f6f4f1;
  color: var(--charcoal);
}

.field select option:checked {
  background: var(--gold-soft);
  color: var(--charcoal);
}

.serve-block {
  display: grid;
  gap: 12px;
}

.serve-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.serve-option {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(231, 201, 121, 0.24);
  border-radius: 16px;
  padding: 0 12px;
  background: rgba(255, 250, 241, 0.055);
  color: rgba(255, 250, 241, 0.86);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.serve-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.serve-check {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border: 1px solid rgba(231, 201, 121, 0.62);
  border-radius: 50%;
}

.serve-check::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 180ms ease, transform 180ms ease;
}

.serve-option:hover {
  transform: translateY(-1px);
  border-color: rgba(231, 201, 121, 0.5);
  background: rgba(255, 250, 241, 0.09);
}

.serve-option:focus-within {
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(231, 201, 121, 0.14);
}

.serve-option:has(input:checked) {
  border-color: rgba(231, 201, 121, 0.7);
  background: #f6f4f1;
  color: var(--charcoal);
}

.serve-option:has(input:checked) .serve-check::after {
  opacity: 1;
  transform: scale(1);
}

.result-label {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.result-title {
  margin: 0;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(1.82rem, 2.7vw, 2.35rem);
  line-height: 1;
  font-weight: 600;
}

.result-cards {
  display: grid;
  gap: 10px;
}

.result-card,
.result-empty {
  border: 1px solid rgba(231, 201, 121, 0.18);
  border-radius: 16px;
  padding: 13px;
}

.result-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  background: #f6f4f1;
  color: var(--charcoal);
}

.result-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: rgba(184, 138, 40, 0.16);
}

.result-icon::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(184, 138, 40, 0.1);
}

.result-card strong {
  display: block;
  margin-bottom: 2px;
  color: var(--charcoal);
  font-size: 0.98rem;
}

.result-card span {
  display: block;
  color: #66594c;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.45;
}

.result-empty {
  background: rgba(255, 250, 241, 0.06);
  color: rgba(255, 250, 241, 0.72);
}

.result-note {
  margin: 2px 0 0;
  border-top: 1px solid rgba(231, 201, 121, 0.16);
  padding-top: 13px;
  color: rgba(255, 250, 241, 0.68);
  font-size: 0.92rem;
}

.calculator-result .button {
  width: 100%;
  min-height: 52px;
  justify-content: center;
  margin-top: 2px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(360px, 1.16fr);
  gap: clamp(32px, 4.6vw, 64px);
  align-items: center;
  width: 100%;
  margin-inline: 0;
  padding:
    clamp(64px, 8vw, 104px)
    max(clamp(18px, 5vw, 78px), calc((100vw - 1120px) / 2));
}

.about-image {
  position: relative;
  width: min(430px, 100%);
}

.about-image::before {
  content: "";
  position: absolute;
  inset: -12px 12px 12px -12px;
  z-index: 0;
  border: 1px solid rgba(231, 201, 121, 0.34);
  border-radius: 18px;
}

.about-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 0;
  max-height: 500px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center 46%;
  box-shadow: var(--shadow-deep);
}

.about-history-image img {
  height: min(560px, 72vw);
  aspect-ratio: 1414 / 2000;
  background: #f6f4f1;
  object-fit: contain;
  object-position: center;
}

.about-copy {
  max-width: 620px;
}

.about-copy .eyebrow {
  color: var(--gold-soft);
  letter-spacing: 0.22em;
}

.about-copy h2 {
  max-width: 600px;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 4.6vw, 4.6rem);
  line-height: 0.96;
}

.about-copy p:not(.eyebrow) {
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(1.13rem, 1.35vw, 1.22rem);
  line-height: 1.72;
}

.about-copy p:not(.eyebrow):last-child {
  margin-bottom: 0;
}

.notice-section.section-shell {
  padding-block: clamp(58px, 7vw, 88px);
}

.notice-section + .about-section {
  padding-top: clamp(76px, 8vw, 104px);
}

.notice-card {
  display: grid;
  gap: 28px;
  width: min(1040px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(231, 201, 121, 0.18);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.07), rgba(255, 250, 241, 0.03)),
    rgba(55, 52, 52, 0.72);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.notice-header {
  width: min(720px, 100%);
  margin: 0 auto;
}

.notice-header .eyebrow {
  color: var(--gold-soft);
}

.notice-header h2 {
  margin-bottom: 14px;
  font-size: clamp(2.38rem, 4vw, 3.63rem);
  line-height: 1;
}

.notice-header p:not(.eyebrow) {
  margin-inline: auto;
  color: rgba(255, 250, 241, 0.76);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

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

.notice-list article {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 1px solid rgba(231, 201, 121, 0.16);
  border-radius: 18px;
  padding: 20px 18px;
  background: rgba(255, 250, 241, 0.045);
  text-align: left;
}

.notice-list article > span {
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.notice-list strong {
  color: var(--cream);
  font-size: 1rem;
}

.notice-list p {
  margin: 0;
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.94rem;
  line-height: 1.5;
}

.notice-action {
  display: flex;
  justify-content: center;
}

.notice-action .button {
  min-width: min(360px, 100%);
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 94px) 20px;
  background-image:
    linear-gradient(rgba(23, 18, 14, 0.68), rgba(55, 52, 52, 0.82)),
    url("assets/produtos/modelo-10-cheesecake-frutas-vermelhas-close-contato.png");
  background-position: center, 56% 60%;
  background-size: auto, cover;
  background-repeat: no-repeat;
  color: var(--cream);
  text-align: center;
}

.contact-content {
  width: min(700px, 100%);
  margin: 0 auto;
}

.contact-content img {
  width: min(280px, 54vw);
  margin: 0 auto 16px;
}

.contact-content .eyebrow {
  color: var(--gold-soft);
  margin-bottom: 12px;
}

.contact-content h2 {
  margin-bottom: 14px;
  font-size: clamp(2.55rem, 4.7vw, 4.5rem);
}

.contact-content p:not(.eyebrow) {
  width: min(620px, 100%);
  margin-inline: auto;
  color: rgba(255, 250, 241, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.65;
}

.contact-buttons {
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.contact-buttons .button {
  min-width: min(270px, 100%);
  padding-inline: 28px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px clamp(18px, 5vw, 72px) 8px;
  background: var(--charcoal);
  color: rgba(255, 250, 241, 0.74);
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-self: start;
  transform: translateY(8px);
}

.footer-brand img {
  width: 132px;
  max-height: 46px;
  object-fit: contain;
}

.site-footer small {
  margin: 0;
  justify-self: center;
  text-align: center;
  font-size: 0.86rem;
}

.footer-right {
  display: grid;
  justify-self: end;
  justify-items: end;
  gap: 14px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  transition: transform 180ms ease, color 180ms ease;
}

.footer-icon:hover {
  color: #fff7de;
  transform: translateY(-2px);
}

.footer-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-credit {
  margin: 0;
  color: rgba(255, 250, 241, 0.56);
  font-family: var(--body);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footer-credit span {
  color: var(--gold-soft);
  font: inherit;
  font-weight: 800;
}

.footer-blessing {
  grid-column: 1 / -1;
  justify-self: center;
  margin: -2px 0 0;
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 760ms ease, transform 760ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .header-shell {
    min-height: 78px;
    grid-template-columns: auto minmax(390px, 1fr) auto;
    gap: 12px;
    border-radius: 28px;
  }

  .main-nav {
    gap: 22px;
    font-size: 0.94rem;
  }

  .main-nav a {
    padding: 10px 0 13px;
  }

  .brand {
    width: 240px;
    height: 62px;
  }

  .brand img {
    width: 230px;
    max-height: 62px;
  }

  .icon-link {
    width: 44px;
    height: 44px;
  }

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

  .calculator-panel,
  .notice-card {
    grid-template-columns: 1fr;
  }

  .notice-list {
    grid-template-columns: 1fr;
  }

  .calculator-intro {
    width: min(660px, 100%);
  }

  .serve-options {
    grid-template-columns: repeat(3, minmax(130px, 1fr));
  }
}

@media (max-width: 780px) {
  .site-header {
    top: 10px;
    padding: 0 10px;
  }

  .header-shell {
    width: 100%;
    grid-template-columns: 1fr auto;
    border-radius: 22px;
    padding: 10px 12px;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 22px;
    padding: 8px 2px 0;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

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

  .brand img {
    width: 178px;
    max-height: 54px;
  }

  .social-actions {
    border-left: 0;
    padding-left: 0;
  }

  .contact-section {
    background-position: center, 54% center;
  }

  .icon-link {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 100svh;
    padding: 176px 18px 72px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(55, 52, 52, 0.98) 0%, rgba(55, 52, 52, 0.9) 58%, rgba(55, 52, 52, 0.68) 100%),
      linear-gradient(90deg, rgba(13, 9, 7, 0.62), rgba(13, 9, 7, 0.18));
  }

  .hero-content {
    transform: none;
  }

  .hero-eyebrow {
    font-size: 0.86rem;
    letter-spacing: 0.22em;
  }

  .hero-eyebrow::before {
    content: none;
  }

  h1 {
    font-size: clamp(2.65rem, 12.5vw, 3.65rem);
    line-height: 0.98;
  }

  .hero-text {
    max-width: 100%;
    font-size: clamp(1rem, 4.2vw, 1.12rem);
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
    width: min(390px, 100%);
  }

  .hero .button {
    min-width: 0;
    width: 100%;
  }

  .section-shell {
    padding: 70px 18px;
  }

  .products-grid,
  .about-section {
    grid-template-columns: 1fr;
  }

  .about-section {
    width: 100%;
    padding: 70px 18px;
  }

  .notice-section.section-shell {
    padding-block: 56px;
  }

  .notice-section + .about-section {
    padding-top: 70px;
  }

  .about-image {
    width: min(420px, 100%);
  }

  .product-card,
  .product-card img {
    min-height: 470px;
  }

  .about-image img {
    max-height: 460px;
  }

  .serve-options {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-right,
  .footer-social {
    justify-self: center;
    justify-content: center;
    justify-items: center;
  }
}

@media (max-width: 460px) {
  .brand {
    width: 154px;
    height: 48px;
  }

  .brand img {
    width: 148px;
    max-height: 44px;
  }

  .social-actions {
    gap: 6px;
  }

  h2 {
    font-size: clamp(2.38rem, 14vw, 3.7rem);
  }

  .product-card,
  .product-card img {
    min-height: 420px;
  }

  .about-section {
    padding-block: 62px;
  }

  .about-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.3rem);
  }

  .about-copy p:not(.eyebrow) {
    font-size: 1.04rem;
  }

  .calculator-intro,
  .calculator-form,
  .calculator-result {
    padding: 20px;
  }

  .calculator-intro h2 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .result-title {
    font-size: clamp(1.72rem, 8vw, 2.2rem);
  }

  .result-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .notice-card {
    gap: 22px;
    padding: 24px 20px;
  }

  .notice-header h2 {
    font-size: clamp(2.05rem, 9.5vw, 2.75rem);
  }

  .notice-action .button {
    width: 100%;
    min-width: 0;
  }
}
