:root {
  --orange: #f39c12;
  --orange-dark: #c76d00;
  --ink: #1f1f1f;
  --muted: #676767;
  --line: #dfdfdf;
  --paper: #ffffff;
  --soft: #f5f3ef;
  --dark: #171717;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

body.site-atmosphere {
  position: relative;
  isolation: isolate;
  background: var(--paper);
}

body.site-atmosphere::before,
body.site-atmosphere::after {
  content: "";
  display: none;
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body.site-atmosphere::before {
  z-index: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.5)),
    url("/images/hero-main.webp") center / cover no-repeat;
}

body.site-atmosphere::after {
  z-index: 90;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.055) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.55;
}

body.site-atmosphere main,
body.site-atmosphere .site-footer {
  position: relative;
}

body.site-atmosphere .site-header,
body.site-atmosphere .lightbox {
  z-index: 180;
}

body.site-atmosphere .lightbox {
  z-index: 200;
}

body.site-atmosphere main,
body.site-atmosphere .site-footer {
  z-index: 1;
}

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

a {
  color: inherit;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

[data-reveal="fade-left"] {
  transform: none;
}

[data-reveal="fade-right"] {
  transform: none;
}

[data-reveal="zoom"] {
  transform: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 160;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(243, 156, 18, 0.65);
  background: rgba(23, 23, 23, 0.58);
  color: white;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
}

.site-nav a:hover {
  color: var(--orange);
}

.quote-header-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.quote-header-link:hover {
  color: var(--orange);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  border-radius: 6px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: white;
}

.section,
.section-band {
  scroll-margin-top: 88px;
  padding: clamp(64px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.section-muted {
  background: var(--soft);
}

.section-dark {
  background: var(--dark);
  color: white;
}

body.site-atmosphere .section {
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.045) 1px, transparent 1px);
  background-size: 4px 4px;
}

body.site-atmosphere .section-muted {
  background-color: var(--soft);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 4px 4px;
}

body.site-atmosphere .section-dark,
body.site-atmosphere .section-contact {
  background-color: var(--dark);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 4px 4px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #111;
}

.quote-page {
  min-height: 100svh;
}

.quote-main {
  min-height: 100svh;
  padding: 132px clamp(18px, 5vw, 72px) 64px;
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.9), rgba(15, 15, 15, 0.66)),
    url("/images/hero-main.webp") center / cover no-repeat;
}

.quote-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 520px);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  max-width: 1180px;
  min-height: calc(100svh - 196px);
  margin: 0 auto;
}

.quote-intro {
  color: white;
}

.quote-intro h1,
.thank-you-card h1 {
  color: white;
  font-size: clamp(44px, 7vw, 86px);
}

.quote-intro p,
.thank-you-card p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(18px, 2.2vw, 23px);
}

.quote-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.quote-points span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.quote-card {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.thank-you-main {
  display: grid;
  place-items: center;
}

.thank-you-card {
  width: min(760px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 52px);
  background: rgba(18, 18, 18, 0.76);
  text-align: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.thank-you-card .button {
  margin-top: 12px;
  min-width: 180px;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.45) 48%, rgba(0, 0, 0, 0.18));
  background-size: 4px 4px, 4px 4px, auto;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding-top: 0;
  transform: translateY(clamp(-56px, -5vw, -28px));
}

.hero-logo {
  width: min(380px, 82vw);
  margin-bottom: 26px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 20px;
}

h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.4vw, 24px);
}

.hero-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.hero-actions {
  max-width: 760px;
}

#reviews .center-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 22px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.hero-actions .button {
  min-width: 190px;
}

.button-primary {
  background: var(--orange);
  color: #161616;
}

.button-primary:hover {
  background: #ffb13f;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: white;
}

.button-secondary:not(.light) {
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary.light {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-bottom {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(30px, 5vh, 56px);
  left: clamp(18px, 5vw, 72px);
  z-index: 1;
  display: grid;
  justify-items: center;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 34px);
  justify-content: center;
  max-width: 100%;
  margin-top: 0;
}

.hero-fact {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.hero-fact img {
  height: 34px;
  object-fit: contain;
  width: 34px;
}

.hero-service-area {
  max-width: min(1120px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.7;
  text-align: center;
}

.hero-service-area span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-right: 8px;
  text-transform: uppercase;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: center;
}

.rounded-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.service-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.review-grid {
  max-width: 1180px;
  margin: 0 auto;
}

.service-grid article,
.pricing-grid article,
.review-card,
.calculator-card,
.contact-card,
.warranty-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 24px;
}

.service-grid article {
  min-height: 180px;
}

.gallery-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gallery-grid button {
  display: block;
  height: 190px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #ddd;
  cursor: zoom-in;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery-grid button:hover img {
  transform: scale(1.04);
}

.section-dark .eyebrow,
.section-contact .eyebrow {
  color: var(--orange);
}

#reviews {
  color: rgba(255, 255, 255, 0.86);
}

#reviews .section-heading h2 {
  color: rgba(255, 255, 255, 0.92);
}

.reviews-list {
  max-width: 1180px;
  margin: 0 auto;
}

.review-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 24px 20px 28px;
}

.review-row h3 {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(20px, 1.75vw, 28px);
  margin-bottom: 14px;
}

.review-row p {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.55vw, 24px);
  line-height: 1.6;
  margin-bottom: 8px;
}

.review-title {
  font-weight: 500;
}

.stars {
  color: var(--orange);
  letter-spacing: 0.04em;
}

.review-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 34px auto 0;
  max-width: 1180px;
}

.review-pagination button {
  min-width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 22px;
  cursor: pointer;
}

.review-pagination button.active,
.review-pagination button:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.review-badge-link {
  display: inline-flex;
  transition: transform 180ms ease, opacity 180ms ease;
}

.review-badge-link:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.review-badge-link img {
  display: block;
  height: auto;
}

.review-action-link img {
  width: min(230px, 42vw);
}

.verified-link img {
  width: min(230px, 42vw);
}

#reviews .verified-link {
  flex-basis: auto;
  margin-top: 0;
}

#reviews .center-actions {
  gap: 18px;
}

.pricing-grid ul {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.price {
  color: var(--orange-dark);
  font-size: 32px;
  font-weight: 900;
}

.calculator-card,
.contact-card {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: #343434;
  font-size: 14px;
  font-weight: 800;
}

label span {
  color: #555;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  padding: 12px 13px;
  color: #333;
  font: inherit;
  background: white;
}

input::placeholder,
textarea::placeholder {
  color: #777;
}

textarea {
  resize: vertical;
}

.warranty-card {
  max-width: 860px;
  margin: 0 auto;
}

.section-contact {
  background: #242424;
  color: white;
}

.section-contact p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  font-size: 22px;
  font-weight: 800;
}

.contact-lines a {
  color: white;
  text-decoration: none;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 700;
}

.form-status.success {
  color: #0b7c3b;
}

.form-status.error {
  color: #b91c1c;
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 6px solid var(--orange);
  background:
    radial-gradient(circle at 12% 30%, rgba(255, 152, 0, 0.16), transparent 20%),
    radial-gradient(circle at 86% 38%, rgba(255, 152, 0, 0.12), transparent 18%),
    linear-gradient(rgba(12, 12, 12, 0.9), rgba(16, 16, 16, 0.96)),
    url("/images/back_mainactual.jpg") center / cover no-repeat;
  color: #9f9f9f;
  isolation: isolate;
}

body.site-atmosphere .site-footer {
  background:
    radial-gradient(circle at 12% 30%, rgba(255, 152, 0, 0.16), transparent 20%),
    radial-gradient(circle at 86% 38%, rgba(255, 152, 0, 0.12), transparent 18%),
    linear-gradient(rgba(12, 12, 12, 0.9), rgba(16, 16, 16, 0.96)),
    url("/images/back_mainactual.jpg") center / cover no-repeat;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 152, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 152, 0, 0.05) 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.65;
}

body.site-atmosphere .site-footer::before,
body.site-atmosphere .site-footer::after {
  display: none;
}

body.site-atmosphere .site-footer::before {
  display: block;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.14) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.78;
}

body.site-atmosphere .footer-grid,
body.site-atmosphere .footer-credit {
  position: relative;
  z-index: 1;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.38);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 6vw, 96px);
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(72px, 7vw, 100px) clamp(22px, 6vw, 86px) clamp(52px, 5vw, 72px);
  text-align: left;
}

.footer-panel {
  min-height: 255px;
  padding: 0;
}

.footer-icon {
  display: block;
  width: 66px;
  height: 66px;
  object-fit: contain;
  margin: 0 auto 46px;
  filter: grayscale(1);
  opacity: 0.72;
}

.site-footer h2 {
  border-bottom: 1px solid rgba(180, 180, 180, 0.78);
  color: #a7a7a7;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
  padding-bottom: 14px;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: #a4a4a4;
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 400;
  line-height: 1.45;
  text-decoration: none;
}

#beer-message {
  align-items: center;
  display: flex;
  gap: 8px;
  white-space: nowrap;
}

#beer-message img {
  flex: 0 0 auto;
}

#beer-countdown {
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(32px, 3.2vw, 50px);
  line-height: 1;
  margin: 18px 0 18px;
  white-space: nowrap;
}

.social-links {
  display: flex;
  justify-content: space-around;
  gap: 22px;
  margin-top: 48px;
}

.social-links a {
  align-items: center;
  color: #a5a5a5;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  min-width: 40px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.social-links svg {
  display: block;
  fill: currentColor;
  height: 26px;
  width: 26px;
}

.social-links a:hover {
  transform: rotate(360deg);
}

.social-facebook:hover {
  color: #3b5998;
}

.social-twitter:hover {
  color: #33ccff;
}

.social-instagram:hover {
  color: var(--orange);
}

.site-footer a:not(.social-facebook):not(.social-twitter):not(.social-instagram):hover {
  color: var(--orange);
}

.footer-contact-row {
  align-items: center;
  display: flex;
  gap: 12px;
  margin: 24px 0;
}

.footer-contact-row span {
  color: #8f8f8f;
  font-size: 14px;
  font-weight: 700;
  min-width: 42px;
  text-transform: uppercase;
}

.footer-credit {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 18px 32px;
  text-align: center;
}

.footer-credit-link {
  align-items: center;
  color: #777;
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
}

.footer-credit-link span {
  color: #767676;
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.footer-credit-link img {
  display: block;
  height: auto;
  width: min(135px, 42vw);
}

@media (max-width: 1100px) {
  .footer-grid {
    gap: 34px;
    padding-left: 34px;
    padding-right: 34px;
  }

  .footer-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 34px;
    opacity: 0.72;
  }

  #beer-countdown {
    font-size: clamp(30px, 4vw, 42px);
  }

  .social-links {
    margin-top: 34px;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.84);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(94vw, 1200px);
  max-height: 88svh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox button {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: white;
  font-size: 30px;
  cursor: pointer;
}

.not-found-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  background: #fff;
}

.not-found {
  width: min(1100px, 94vw);
  padding: 28px 18px;
  text-align: center;
}

.not-found img {
  width: min(920px, 100%);
  margin: 0 auto 28px;
}

.not-found .button {
  min-width: 220px;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 18px;
    background: rgba(32, 32, 32, 0.98);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
    text-align: center;
  }

  .quote-main {
    padding-top: 126px;
  }

  .quote-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .section-grid,
  .service-grid,
  .pricing-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 44px;
    max-width: 520px;
    padding: 58px 28px 42px;
    text-align: center;
  }

  .footer-panel {
    min-height: auto;
    width: 100%;
  }

  .footer-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 24px;
    opacity: 0.74;
  }

  .site-footer h2 {
    font-size: 15px;
    margin-bottom: 14px;
    padding-bottom: 10px;
  }

  .site-footer p,
  .site-footer a {
    font-size: 16px;
    line-height: 1.45;
  }

  .review-action-link img {
    width: min(190px, 48vw);
  }

  .verified-link img {
    width: min(190px, 48vw);
  }

  #reviews .section-heading h2 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .review-row {
    padding: 22px 4px 26px;
  }

  .review-row h3 {
    font-size: 22px;
  }

  .review-row p {
    font-size: 17px;
  }

  .review-pagination {
    gap: 10px;
  }

  .review-pagination button {
    min-width: 46px;
    height: 46px;
    font-size: 18px;
  }

  #beer-countdown {
    font-size: clamp(32px, 9vw, 42px);
    margin: 14px 0;
  }

  #beer-message {
    gap: 6px;
    justify-content: center;
  }

  #beer-message img {
    height: 22px;
    width: 22px;
  }

  .social-links {
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
    max-width: 260px;
  }

  .social-links a {
    height: 34px;
    min-width: 34px;
  }

  .social-links svg {
    height: 23px;
    width: 23px;
  }

  .footer-contact-row {
    justify-content: center;
    gap: 10px;
    margin: 16px 0;
  }

  .footer-contact-row span {
    font-size: 11px;
    min-width: 34px;
  }

  .footer-credit {
    padding: 24px 16px 28px;
  }

  .footer-credit-link {
    gap: 10px;
  }

  .footer-credit-link span {
    font-size: 11px;
  }

  .footer-credit-link img {
    width: 120px;
  }

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

  .gallery-grid button {
    height: 160px;
  }
}

@media (max-width: 520px) {
  .quote-header-link {
    font-size: 11px;
  }

  .quote-main {
    padding-top: 118px;
  }

  .quote-intro h1,
  .thank-you-card h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .quote-points {
    gap: 8px;
  }

  .quote-points span {
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 168px;
  }

  .hero-bottom {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 34px;
  }

  .hero-content {
    transform: none;
  }

  .hero .eyebrow {
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-service-area {
    font-size: 11px;
    margin-top: 16px;
    text-align: center;
  }

  .hero-service-area span {
    display: block;
    margin: 0 0 4px;
  }

  .hero-media::after {
    background: rgba(0, 0, 0, 0.68);
  }

  .hero-actions .button,
  .contact-card .button,
  .calculator-card .button {
    min-width: 0;
    width: 100%;
  }

  .footer-grid {
    gap: 38px;
    padding: 46px 22px 34px;
  }

  .site-footer h2 {
    font-size: 14px;
  }

  .site-footer p,
  .site-footer a {
    font-size: 15px;
  }

  #beer-countdown {
    font-size: clamp(30px, 10vw, 38px);
    letter-spacing: 0;
  }

  .footer-contact-row {
    align-items: flex-start;
  }

  .footer-contact-row a {
    overflow-wrap: anywhere;
  }

  .social-links {
    max-width: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
