:root {
  --cream: #f8f4ed;
  --cream-light: #fcfaf7;
  --sand: #e9ded0;
  --taupe: #bfa98e;
  --gold: #c9a66b;
  --ink: #2b2520;
  --muted: #7a6b5d;
  --line: rgba(43, 37, 32, 0.14);
  --white: #ffffff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --container: min(1240px, calc(100vw - 96px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-light);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .site-header {
  background: transparent;
  backdrop-filter: none;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  position: relative;
  z-index: 101;
  display: grid;
  min-height: 32px;
  place-items: center;
  color: #f9f5ef;
  background: var(--ink);
}

.announcement p {
  margin: 0;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  border-bottom: 1px solid transparent;
  background: rgba(248, 244, 237, 0.88);
  backdrop-filter: blur(18px);
  transition:
    height 300ms var(--ease),
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(56, 45, 33, 0.04);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  width: fit-content;
}

.brand-mark {
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.brand-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.25em;
  line-height: 1;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 40px);
}

.primary-nav a {
  position: relative;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 300ms var(--ease);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-social {
  display: grid;
  justify-self: end;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition:
    color 250ms ease,
    border-color 250ms ease,
    background 250ms ease;
}

.header-social:hover {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.header-social svg,
.instagram-icon svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.header-social .fill-dot,
.instagram-icon .fill-dot {
  fill: currentColor;
  stroke: none;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  position: relative;
  min-height: calc(100svh - 108px);
  overflow: hidden;
  background: var(--sand);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 244, 237, 0.94) 0%, rgba(248, 244, 237, 0.76) 31%, transparent 63%),
    linear-gradient(0deg, rgba(43, 37, 32, 0.08), transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100svh - 108px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 90px 120px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.hero h1,
.section-heading h2,
.about-content h2,
.instagram-copy h2,
.cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(55px, 6.7vw, 98px);
}

.hero-copy {
  max-width: 480px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

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

.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 25px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1;
  transition:
    color 280ms ease,
    background 280ms ease,
    border-color 280ms ease,
    transform 280ms var(--ease);
}

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

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

.button-dark:hover {
  background: #443a32;
}

.button-ghost {
  border-color: rgba(43, 37, 32, 0.38);
  background: rgba(248, 244, 237, 0.18);
}

.button-ghost:hover {
  border-color: var(--ink);
  background: rgba(248, 244, 237, 0.72);
}

.scroll-cue {
  position: absolute;
  right: 44px;
  bottom: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(43, 37, 32, 0.72);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(-100%);
  transform-origin: right bottom;
}

.scroll-cue i {
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: rgba(43, 37, 32, 0.28);
}

.scroll-cue i::after {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  content: "";
  animation: scroll-line 2.6s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    transform: translateX(-100%);
  }
  55%,
  100% {
    transform: translateX(100%);
  }
}

.section {
  padding-block: 132px;
}

.collection {
  background: var(--cream-light);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.56fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
}

.section-heading h2,
.about-content h2,
.instagram-copy h2,
.cta h2 {
  font-size: clamp(44px, 5vw, 68px);
}

.section-intro {
  max-width: 420px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.collection-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background: var(--sand);
  isolation: isolate;
}

.collection-card::after {
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.45);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scale(0.97);
  transition:
    opacity 400ms ease,
    transform 500ms var(--ease);
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.collection-card:nth-child(3) img,
.collection-card:nth-child(4) img {
  object-position: 50% 18%;
}

.card-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(25, 20, 16, 0.68));
}

.collection-card-content {
  position: absolute;
  right: 27px;
  bottom: 27px;
  left: 27px;
  z-index: 3;
  color: var(--white);
}

.collection-card-content p {
  margin: 0 0 80px;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.collection-card-content h3 {
  margin: 0 0 2px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
}

.collection-card-content span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.collection-card:hover img {
  transform: scale(1.035);
}

.collection-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(70px, 9vw, 150px);
}

.about-visual {
  position: relative;
  width: min(100%, 510px);
  margin-left: 5%;
}

.about-visual::before {
  position: absolute;
  top: -26px;
  right: -26px;
  width: 54%;
  height: 46%;
  border: 1px solid var(--gold);
  content: "";
}

.about-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  object-position: 50% 17%;
}

.about-note {
  position: absolute;
  right: -64px;
  bottom: 38px;
  z-index: 2;
  display: flex;
  width: 178px;
  flex-direction: column;
  gap: 11px;
  padding: 26px;
  color: var(--cream-light);
  background: var(--ink);
}

.about-note span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-note span::before {
  width: 12px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.about-content {
  max-width: 560px;
}

.about-content h2 em {
  color: var(--gold);
  font-weight: 400;
}

.about-content > p:not(.eyebrow) {
  max-width: 490px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 2;
}

.about-content > p + p {
  margin-top: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 42px;
  margin-top: 34px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition:
    gap 300ms var(--ease),
    color 250ms ease,
    border-color 250ms ease;
}

.text-link:hover {
  gap: 50px;
  color: var(--gold);
  border-color: var(--gold);
}

.looks {
  background: var(--cream-light);
}

.looks-heading {
  grid-template-columns: 1fr 0.42fr;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--sand);
}

.product-image::after {
  position: absolute;
  inset: 0;
  background: rgba(58, 46, 36, 0.09);
  content: "";
  opacity: 0;
  transition: opacity 300ms ease;
}

.product-image img {
  width: 100%;
  aspect-ratio: 0.69;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.product-card:nth-child(3) .product-image img,
.product-card:nth-child(4) .product-image img {
  object-position: 50% 18%;
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 8px 11px;
  color: var(--ink);
  background: rgba(252, 250, 247, 0.9);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

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

.product-card:hover .product-image::after {
  opacity: 1;
}

.product-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-top: 19px;
}

.product-info h3 {
  margin: 0 0 3px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.product-info p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
}

.product-info > a {
  flex-shrink: 0;
  margin-top: 7px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 250ms ease;
}

.product-info > a:hover {
  color: var(--gold);
}

.instagram {
  overflow: hidden;
  background: #eee5da;
}

.instagram-grid {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.instagram-copy {
  max-width: 470px;
}

.instagram-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 38px;
  place-items: center;
  border: 1px solid rgba(43, 37, 32, 0.22);
  border-radius: 50%;
}

.instagram-icon svg {
  width: 19px;
}

.instagram-copy > p:not(.eyebrow) {
  max-width: 430px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.instagram-copy .button {
  margin-top: 32px;
}

.instagram-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 650px;
}

.instagram-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 350ms ease;
}

.instagram-mosaic .mosaic-tall {
  grid-row: 1 / 3;
}

.instagram-mosaic img:nth-child(2) {
  object-position: 50% 20%;
}

.instagram-mosaic img:nth-child(3) {
  object-position: 50% 20%;
}

.instagram-mosaic:hover img {
  filter: saturate(0.88) brightness(0.92);
}

.mosaic-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  padding: 14px 20px;
  color: var(--ink);
  background: rgba(252, 250, 247, 0.9);
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translate(-50%, -40%);
  backdrop-filter: blur(8px);
  transition:
    opacity 300ms ease,
    transform 400ms var(--ease);
}

.instagram-mosaic:hover .mosaic-handle {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.cta {
  position: relative;
  overflow: hidden;
  padding-block: 126px;
  color: var(--cream-light);
  background: var(--ink);
  text-align: center;
}

.cta::before,
.cta::after {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(201, 166, 107, 0.22);
  border-radius: 50%;
  content: "";
}

.cta::before {
  top: -210px;
  left: -120px;
}

.cta::after {
  right: -110px;
  bottom: -240px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta .eyebrow {
  color: rgba(248, 244, 237, 0.6);
}

.cta p:not(.eyebrow) {
  max-width: 510px;
  margin: 27px 0 0;
  color: rgba(248, 244, 237, 0.6);
  font-size: 12px;
}

.button-light {
  color: var(--ink);
  background: var(--cream-light);
}

.button-light:hover {
  background: var(--gold);
}

.button-outline-light {
  color: var(--cream-light);
  border-color: rgba(248, 244, 237, 0.4);
}

.button-outline-light:hover {
  color: var(--ink);
  border-color: var(--cream-light);
  background: var(--cream-light);
}

.site-footer {
  padding-block: 82px 24px;
  background: var(--cream);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 0.65fr 0.65fr 0.55fr;
  gap: 56px;
  padding-bottom: 70px;
}

.brand-footer {
  margin-bottom: 24px;
}

.brand-footer .brand-mark {
  width: 42px;
  height: 42px;
}

.footer-brand > p {
  max-width: 270px;
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-links p {
  margin: 0 0 10px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--muted);
  font-size: 11px;
  transition: color 200ms ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.back-to-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.back-to-top i {
  display: grid;
  width: 38px;
  height: 38px;
  margin-top: -12px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
  transition:
    color 250ms ease,
    background 250ms ease;
}

.back-to-top:hover i {
  color: var(--white);
  background: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.footer-bottom p {
  margin: 0;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 800ms var(--ease),
    transform 900ms var(--ease);
}

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

@media (max-width: 1100px) {
  :root {
    --container: min(100% - 56px, 1040px);
  }

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

  .collection-card {
    min-height: 620px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 48px;
  }

  .instagram-mosaic {
    height: 540px;
  }

  .footer-main {
    grid-template-columns: 1.6fr 0.8fr 0.8fr;
  }

  .back-to-top {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 40px, 760px);
  }

  html {
    scroll-padding-top: 84px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 68px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-social {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    justify-self: end;
    gap: 7px;
    padding: 0;
  }

  .menu-toggle span {
    width: 24px;
    height: 1px;
    background: var(--ink);
    transition:
      transform 350ms var(--ease),
      width 350ms var(--ease);
  }

  .menu-toggle span:last-child {
    width: 17px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    width: 24px;
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    width: 24px;
    transform: translateY(-4px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: var(--cream);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 300ms ease,
      transform 400ms var(--ease);
  }

  .primary-nav::before {
    margin-bottom: 18px;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
    content: "Yazın zarafeti";
  }

  .primary-nav a {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0;
  }

  .nav-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    display: grid;
    min-height: auto;
    grid-template-rows: auto min(68vw, 590px);
    background: var(--cream);
  }

  .hero-image {
    position: relative;
    grid-row: 2;
    height: 100%;
    object-position: 72% center;
  }

  .hero-wash {
    display: none;
  }

  .hero-content {
    grid-row: 1;
    min-height: 0;
    padding-block: 84px 72px;
  }

  .hero h1 {
    max-width: 630px;
    font-size: clamp(53px, 10.5vw, 80px);
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding-block: 100px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 42px;
  }

  .section-intro {
    margin: 0;
  }

  .collection-card {
    min-height: 520px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 90px;
  }

  .about-visual {
    width: calc(100% - 50px);
    max-width: 540px;
    margin-left: 0;
  }

  .about-content {
    max-width: 650px;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .instagram-copy {
    max-width: 600px;
  }

  .instagram-mosaic {
    height: min(90vw, 650px);
  }
}

@media (max-width: 580px) {
  :root {
    --container: calc(100% - 32px);
  }

  .announcement {
    min-height: 28px;
  }

  .announcement p {
    font-size: 7px;
  }

  .brand-name {
    font-size: 21px;
  }

  .hero {
    grid-template-rows: auto 79vw;
  }

  .hero-content {
    padding-block: 64px 56px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 13px;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .button {
    width: 100%;
    justify-content: space-between;
  }

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

  .eyebrow {
    margin-bottom: 18px;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading h2,
  .about-content h2,
  .instagram-copy h2,
  .cta h2 {
    font-size: clamp(42px, 13vw, 56px);
  }

  .collection-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .collection-grid {
    gap: 12px;
  }

  .collection-card {
    min-height: 118vw;
  }

  .collection-card-content p {
    margin-bottom: 50px;
  }

  .about-grid {
    gap: 76px;
  }

  .about-visual {
    width: calc(100% - 25px);
  }

  .about-visual::before {
    top: -14px;
    right: -14px;
  }

  .about-note {
    right: -25px;
    bottom: 22px;
    width: 158px;
    padding: 21px;
  }

  .product-grid {
    row-gap: 46px;
  }

  .product-info h3 {
    font-size: 24px;
  }

  .instagram-icon {
    margin-bottom: 28px;
  }

  .instagram-mosaic {
    height: 118vw;
  }

  .mosaic-handle {
    display: none;
  }

  .cta {
    padding-block: 90px;
  }

  .cta h2 br {
    display: none;
  }

  .site-footer {
    padding-top: 70px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 46px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
