:root {
  --bg-dark: #050505;
  --bg-dark-soft: #0d0d0f;
  --bg-light: #f1efeb;
  --bg-paper: #faf8f3;
  --paper-edge: #ece7dc;
  --text-dark: #161616;
  --text-light: #ffffff;
  --muted-light: rgba(22, 22, 22, 0.68);
  --muted-dark: rgba(255, 255, 255, 0.72);
  --line-light: rgba(22, 22, 22, 0.10);
  --line-dark: rgba(255, 255, 255, 0.12);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --container: 1180px;
  --section-space: clamp(78px, 10vw, 138px);
  --nav-height: 84px;
  --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.10);
  --shadow-dark: 0 24px 80px rgba(0, 0, 0, 0.38);
  --paper-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-stack);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

input,
select,
textarea {
  color: inherit;
}

textarea {
  resize: vertical;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

figure,
blockquote {
  margin: 0;
}

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

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.dark-section {
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.05), transparent 20%),
    linear-gradient(180deg, #050505 0%, #000000 100%);
  color: var(--text-light);
}

.light-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.16)),
    var(--bg-light);
  color: var(--text-dark);
}

section {
  padding: var(--section-space) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  min-height: var(--nav-height);
  background: rgba(8, 8, 10, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.nav-shell {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(132px, 16vw, 190px);
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a,
.footer-links a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  position: relative;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  margin: 0 auto;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span::before {
  position: absolute;
  left: 0;
  top: -5px;
}

.menu-toggle span::after {
  position: absolute;
  left: 0;
  top: 5px;
}

body.menu-open .menu-toggle span {
  background: transparent;
}

body.menu-open .menu-toggle span::before {
  transform: translateY(5px) rotate(45deg);
}

body.menu-open .menu-toggle span::after {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--nav-height);
  background: rgba(4, 4, 5, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.mobile-panel-inner {
  display: grid;
  gap: 10px;
  padding: 20px 0 24px;
}

.mobile-panel a {
  padding: 14px 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 500;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: #ffffff;
  color: #111111;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.10);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: rgba(255, 255, 255, 0.92);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.light-section .btn-secondary {
  color: var(--text-dark);
  border-color: rgba(22, 22, 22, 0.12);
  background: rgba(255, 255, 255, 0.56);
}

.light-section .btn-secondary:hover,
.light-section .btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(22, 22, 22, 0.22);
}

.glass-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-dark);
}

.hero {
  min-height: calc(100svh - var(--nav-height));
  display: grid;
  align-items: center;
  padding: 56px 0 72px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 460px);
  gap: 30px;
  align-items: center;
}

.eyebrow,
.section-kicker,
.contact-label,
.field span,
.service-index,
.hero-panel-bottom span,
.hero-panel-top .mini-pill,
.polaroid-label,
.metric span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.hero-copy h1,
.section-title {
  font-size: clamp(2.5rem, 6vw, 5.35rem);
  line-height: 0.97;
  letter-spacing: -0.055em;
  font-weight: 650;
}

.section-title {
  font-size: clamp(2rem, 4vw, 4rem);
  max-width: 12ch;
}

.hero-copy > p,
.section-copy,
.lead-copy,
.form-note,
.contact-card strong,
.about-panel blockquote p,
.polaroid-caption p,
.polaroid-caption strong {
  font-size: 1.03rem;
}

.hero-copy > p {
  max-width: 54ch;
  margin-top: 18px;
  color: var(--muted-dark);
}

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

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 620px;
  margin-top: 38px;
}

.metric {
  min-width: 120px;
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.metric:last-child {
  border-right: 0;
  padding-right: 0;
}

.metric strong {
  display: block;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.metric span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.14em;
}

.hero-panel {
  border-radius: var(--radius-lg);
  padding: 22px;
}

.hero-panel-top,
.hero-panel-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
}

.hero-panel-bottom {
  color: rgba(255, 255, 255, 0.62);
}

.polaroid-scene {
  position: relative;
  min-height: 430px;
  margin: 22px 0 26px;
}

.hero-polaroid {
  position: absolute;
  width: 57%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, #faf8f3 0%, #f0ece3 100%);
  border-radius: 8px;
  box-shadow: var(--paper-shadow);
  border: 1px solid rgba(20, 20, 20, 0.08);
  padding: 14px 14px 48px;
}

.hero-polaroid::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero-polaroid-photo {
  height: 100%;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #101010 0%, #050505 100%);
  position: relative;
  overflow: hidden;
}

.hero-polaroid-base {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: rgba(22, 22, 22, 0.72);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-polaroid-back {
  top: 24px;
  right: 18px;
  transform: rotate(11deg);
  opacity: 0.7;
}

.hero-polaroid-mid {
  top: 48px;
  left: 16px;
  transform: rotate(-9deg);
  opacity: 0.86;
}

.hero-polaroid-front {
  left: 20%;
  top: 94px;
  transform: rotate(-2deg);
}

.hero-polaroid-mark {
  display: grid;
  place-items: center;
}

.mark-shell {
  width: 118px;
  aspect-ratio: 4 / 5;
  border: 11px solid rgba(255, 255, 255, 0.86);
  border-bottom-width: 24px;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: end;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: rgba(22, 22, 22, 0.58);
}

.dark-section .section-kicker {
  color: rgba(255, 255, 255, 0.58);
}

.section-copy {
  color: var(--muted-light);
  max-width: 50ch;
}

.dark-section .section-copy,
.dark-section .lead-copy {
  color: var(--muted-dark);
}

.intro-grid,
.about-grid,
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 28px;
}

.services-grid {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.services-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.portfolio-item {
  grid-column: span 4;
}

.contact-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.polaroid-ui {
  background: linear-gradient(180deg, #faf8f3 0%, #f0ece3 100%);
  border-radius: 10px;
  box-shadow: var(--paper-shadow);
  border: 1px solid rgba(20, 20, 20, 0.08);
  padding: 14px 14px 0;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.polaroid-ui::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.polaroid-ui-light {
  transform: rotate(-1deg);
}

.services-grid .polaroid-ui:nth-child(2),
.intro-grid .polaroid-ui:nth-child(2),
.contact-list .polaroid-ui:nth-child(even) {
  transform: rotate(1deg);
}

.portfolio-item:nth-child(2n) {
  transform: rotate(1deg);
}

.portfolio-item:nth-child(3n) {
  transform: rotate(-1deg);
}

.polaroid-media {
  position: relative;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), transparent 42%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(180deg, #141414 0%, #050505 100%);
  overflow: hidden;
}

.polaroid-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.10), transparent 38%);
  pointer-events: none;
}

.polaroid-caption {
  padding: 18px 10px 24px;
  min-height: 92px;
}

.polaroid-label {
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(22, 22, 22, 0.54);
}

.polaroid-caption h3,
.polaroid-caption strong,
.about-panel blockquote p {
  display: block;
  font-size: 1.35rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text-dark);
}

.polaroid-caption p,
.contact-card strong {
  color: var(--muted-light);
  margin-top: 8px;
}

.brand-polaroid-media,
.brand-polaroid-grid,
.about-logo-shell {
  min-height: 330px;
  display: grid;
  place-items: center;
}

.brand-polaroid-media img,
.about-logo-shell img {
  width: min(72%, 250px);
  height: auto;
}

.brand-polaroid-grid {
  padding: 24px;
  align-content: center;
}

.grid-line {
  width: 58%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  position: absolute;
  left: 12%;
  bottom: 26%;
}

.grid-line.short {
  width: 34%;
  bottom: 18%;
}

.brand-mark-frame {
  width: 132px;
  aspect-ratio: 4 / 5;
  border: 11px solid rgba(255, 255, 255, 0.82);
  border-bottom-width: 26px;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.visual-caption p {
  max-width: 30ch;
}

.intro-copy-panel .polaroid-caption p {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  max-width: 19ch;
  color: var(--text-dark);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(22, 22, 22, 0.10);
  color: rgba(22, 22, 22, 0.62);
  background: rgba(255, 255, 255, 0.54);
  font-size: 0.88rem;
}

.service-card .polaroid-media {
  min-height: 280px;
  padding: 16px;
}

.service-media {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.media-mark {
  position: absolute;
  inset: auto 16px 16px auto;
  width: 92px;
  aspect-ratio: 4 / 5;
  border: 9px solid rgba(255, 255, 255, 0.84);
  border-bottom-width: 20px;
  border-radius: 6px;
  opacity: 0.9;
}

.service-media-2 .media-mark {
  transform: rotate(7deg);
}

.service-media-3 .media-mark {
  transform: rotate(-6deg);
}

.portfolio-item {
  min-height: 360px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.portfolio-item .polaroid-media {
  min-height: 280px;
}

.portfolio-item.is-hidden {
  opacity: 0.18;
  pointer-events: none;
}

.portfolio-media {
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), transparent 40%),
    linear-gradient(180deg, #161616 0%, #080808 100%);
}

.media-a,
.media-b,
.media-c,
.media-d,
.media-e,
.media-f {
  filter: grayscale(1);
}

.media-a::before,
.media-b::before,
.media-c::before,
.media-d::before,
.media-e::before,
.media-f::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 76%, rgba(255, 255, 255, 0.10), transparent 28%);
}

.about-copy .lead-copy {
  margin-top: 18px;
  color: var(--text-dark);
}

.body-copy {
  margin-top: 16px;
}

.bullet-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.bullet-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.bullet-item span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(22, 22, 22, 0.16);
  margin-top: 6px;
}

.bullet-item p {
  color: var(--muted-light);
}

.about-panel .polaroid-caption {
  padding-bottom: 28px;
}

.about-panel footer {
  margin-top: 8px;
  color: rgba(22, 22, 22, 0.60);
  font-size: 0.92rem;
}

.booking-form-shell {
  border-radius: var(--radius-lg);
  padding: 22px;
}

.booking-form {
  display: grid;
  gap: 14px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: rgba(255, 255, 255, 0.62);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-light);
  outline: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.field textarea {
  min-height: 130px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.form-note {
  color: rgba(255, 255, 255, 0.62);
}

.toast {
  margin-top: 14px;
  width: max-content;
  min-width: 88px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-card {
  min-height: 250px;
  transition: transform 180ms ease;
}

.contact-card:hover,
.portfolio-item:hover,
.service-card:hover,
.polaroid-ui:hover {
  transform: translateY(-4px) rotate(0deg);
}

.contact-media {
  min-height: 170px;
  display: grid;
  place-items: center;
}

.contact-mark {
  width: 84px;
  aspect-ratio: 4 / 5;
  border: 8px solid rgba(255, 255, 255, 0.84);
  border-bottom-width: 20px;
  border-radius: 6px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  min-height: 40px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
}

.pill.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.site-footer-bottom {
  padding: 30px 0 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
}

.footer-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-brand img {
  width: 150px;
}

.footer-layout p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 1100px) {
  .hero-layout,
  .split-head,
  .intro-grid,
  .about-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .section-title,
  .section-copy {
    max-width: none;
  }

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

  .portfolio-item {
    grid-column: span 6;
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy h1 {
    max-width: 10ch;
  }

  .contact-list,
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --nav-height: 72px;
  }

  .services-grid-three,
  .contact-list,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-item {
    grid-column: span 12;
  }

  .hero-metrics {
    gap: 16px;
  }

  .metric {
    min-width: calc(50% - 8px);
    border-right: 0;
    padding-right: 0;
  }

  .hero-panel,
  .booking-form-shell {
    border-radius: 24px;
  }

  .hero-polaroid {
    width: 62%;
  }

  .hero-polaroid-front {
    left: 18%;
  }

  .polaroid-scene {
    min-height: 370px;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .form-actions,
  .footer-layout {
    align-items: stretch;
  }

  .hero-actions .btn,
  .form-actions .btn,
  .mobile-panel .btn {
    width: 100%;
  }

  .hero-metrics {
    flex-direction: column;
    gap: 14px;
  }

  .metric {
    min-width: 100%;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .metric:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .service-card .polaroid-media,
  .portfolio-item .polaroid-media,
  .contact-media,
  .brand-polaroid-media,
  .brand-polaroid-grid,
  .about-logo-shell {
    min-height: 230px;
  }

  .polaroid-scene {
    min-height: 310px;
  }

  .hero-polaroid {
    width: 66%;
    padding-bottom: 40px;
  }

  .hero-polaroid-front {
    left: 16%;
    top: 82px;
  }

  .hero-polaroid-mid {
    left: 6px;
  }

  .hero-polaroid-back {
    right: 6px;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
