:root {
  --ink: #201d19;
  --paper: #f1eee8;
  --paper-deep: #e7e0d6;
  --mushroom: #9b8c7d;
  --clay: #786352;
  --espresso: #302820;
  --line: rgba(32, 29, 25, 0.2);
  --light-line: rgba(255, 255, 255, 0.25);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--espresso);
  color: #f5f1eb;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.page-loader span {
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 6rem);
  letter-spacing: 0.2em;
  animation: loader-pulse 1.2s ease infinite alternate;
}

body.loaded .page-loader {
  visibility: hidden;
  opacity: 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 3.6vw;
  color: #fff;
  transition:
    background 0.4s ease,
    color 0.4s ease,
    min-height 0.4s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  right: 3.6vw;
  bottom: 0;
  left: 3.6vw;
  height: 1px;
  background: var(--light-line);
  transition: background 0.4s ease;
}

.site-header.scrolled {
  min-height: 76px;
  background: rgba(241, 238, 232, 0.93);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.site-header.scrolled::after {
  background: var(--line);
}

.brand {
  justify-self: start;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.16em;
  line-height: 1;
}

.brand-note {
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3.6rem);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.desktop-nav a,
.header-inquiry {
  position: relative;
}

.desktop-nav a::after,
.header-inquiry::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.desktop-nav a:hover::after,
.header-inquiry:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-inquiry {
  justify-self: end;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 13rem 3.6vw 7.5vh;
  color: #fff;
  background: #48392e;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
  animation: hero-scale 14s ease-out both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 14, 10, 0.68) 0%, rgba(20, 14, 10, 0.16) 58%, rgba(20, 14, 10, 0.08) 100%),
    linear-gradient(0deg, rgba(20, 14, 10, 0.48), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 1.7rem;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-eyebrow {
  padding-left: 3.5rem;
  position: relative;
}

.hero-eyebrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.4rem;
  height: 1px;
  background: currentColor;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 1.7rem;
  font-size: clamp(3.8rem, 6.5vw, 7.2rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.hero h1 em,
.intro h2 em,
.contact h2 em {
  display: block;
  font-weight: 400;
  font-style: normal;
}

.hero-copy {
  max-width: 430px;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 0.3s ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.hero-meta {
  position: absolute;
  z-index: 2;
  right: 3.6vw;
  bottom: 7.5vh;
  display: flex;
  gap: 2.5rem;
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 3.6vw;
  bottom: 50%;
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.scroll-cue i {
  width: 4rem;
  height: 1px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.3);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  animation: scroll-line 1.8s ease-in-out infinite;
}

.section-pad {
  padding: 10rem 3.6vw;
}

.intro {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 0.7fr 2.2fr 0.85fr;
  gap: 5vw;
  align-items: start;
}

.section-index {
  display: flex;
  gap: 1rem;
  color: #776d64;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-index span:first-child {
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}

.intro-statement h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.7rem, 4vw, 5.1rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.intro-statement h2 em {
  color: var(--clay);
}

.intro-detail {
  align-self: end;
}

.intro-detail p,
.section-heading > p,
.craft-lead,
.trade-card p,
.contact-details > p {
  font-size: 0.82rem;
  line-height: 1.9;
}

.intro-detail p {
  margin-bottom: 2.5rem;
}

.collections {
  background: var(--paper-deep);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 6rem;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 4.7vw, 5.5rem);
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.section-heading > p {
  margin-bottom: 0;
  padding-bottom: 0.6rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
  align-items: start;
}

.collection-card-offset {
  margin-top: 8rem;
}

.collection-image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--mushroom);
}

.collection-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 22, 18, 0.12);
  transition: opacity 0.5s ease;
}

.collection-card img {
  width: 100%;
  aspect-ratio: 0.74;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.collection-card:hover .collection-image-wrap::after {
  opacity: 0;
}

.card-arrow {
  position: absolute;
  z-index: 2;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(241, 238, 232, 0.95);
  font-size: 0.8rem;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.collection-card:hover .card-arrow {
  transform: rotate(45deg);
  background: #fff;
}

.card-caption {
  padding: 1.4rem 0 0;
}

.card-caption span,
.trade-card > span {
  display: block;
  margin-bottom: 1rem;
  color: #74685e;
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.card-caption h3 {
  margin-bottom: 0.6rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.card-caption p {
  color: #645d56;
  font-size: 0.72rem;
}

.craft {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--espresso);
  color: #f3eee7;
}

.craft-image {
  overflow: hidden;
}

.craft-image img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(0.78) brightness(0.84);
}

.craft-content {
  padding: 9rem 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-index-light {
  color: #c3b8ad;
  margin-bottom: 7rem;
}

.section-index-light span:first-child {
  border-color: var(--light-line);
}

.craft-content h2 {
  max-width: 560px;
  margin-bottom: 2rem;
  font-size: clamp(3rem, 4.4vw, 5.3rem);
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.craft-lead {
  max-width: 510px;
  margin-bottom: 5rem;
  color: #d6cdc3;
}

.craft-points {
  border-top: 1px solid var(--light-line);
}

.craft-points > div {
  position: relative;
  display: grid;
  grid-template-columns: 3rem 1fr 1.2fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--light-line);
}

.craft-points span {
  color: #b4a89c;
  font-size: 0.56rem;
  letter-spacing: 0.15em;
}

.craft-points h3 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.15;
}

.craft-points p {
  margin-bottom: 0;
  color: #bfb5ab;
  font-size: 0.68rem;
  line-height: 1.7;
}

.trade-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trade-card {
  min-height: 420px;
  padding: 2rem 2.6rem 2.8rem 0;
  border-right: 1px solid var(--line);
}

.trade-card + .trade-card {
  padding-left: 2.6rem;
}

.trade-card:last-child {
  border-right: 0;
}

.trade-icon {
  width: 74px;
  height: 74px;
  margin: 4rem 0 3.6rem;
}

.trade-icon svg {
  fill: none;
  stroke: var(--clay);
  stroke-width: 1.1;
}

.trade-card h3 {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.trade-card p {
  max-width: 340px;
  margin-bottom: 0;
  color: #645d56;
}

.trade-note {
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin-top: 4rem;
  padding-top: 1.5rem;
}

.trade-note > p {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.trade-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.trade-stats strong,
.trade-stats span {
  display: block;
}

.trade-stats strong {
  margin-bottom: 0.5rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.trade-stats span {
  color: #746b63;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact {
  padding: 10rem 3.6vw 7rem;
  background: #786858;
  color: #f5f0e9;
}

.contact-top {
  max-width: 980px;
  margin-bottom: 8rem;
}

.contact h2 {
  margin-bottom: 0;
  font-size: clamp(3.5rem, 6.2vw, 7.2rem);
  letter-spacing: -0.03em;
  line-height: 0.97;
}

.contact h2 em {
  color: #d8c7b5;
  font-style: normal;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 10vw;
  padding-top: 3rem;
  border-top: 1px solid var(--light-line);
}

.contact-details > p {
  max-width: 390px;
  color: #e1d7cd;
}

.contact-links {
  margin-top: 4rem;
}

.contact-links a {
  display: block;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--light-line);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.5rem);
  letter-spacing: -0.015em;
}

.contact-links a span {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2rem;
  row-gap: 1.8rem;
}

.inquiry-form label {
  display: block;
}

.inquiry-form label > span {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.57rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 0.8rem 0;
  border: 0;
  border-bottom: 1px solid var(--light-line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  transition: border 0.3s ease;
}

.inquiry-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #fff 50%),
    linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position:
    calc(100% - 10px) 50%,
    calc(100% - 5px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}

.inquiry-form select option {
  color: var(--ink);
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: #fff;
}

.full-field {
  grid-column: 1 / -1;
}

.submit-button {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 1rem;
  padding: 1.15rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.submit-button:hover {
  background: #fff;
  color: var(--clay);
}

footer {
  padding: 5rem 3.6vw 2rem;
  background: var(--espresso);
  color: #f1ece4;
}

.footer-main {
  min-height: 250px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 4rem;
  align-items: start;
}

.footer-brand {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.8vw, 6.7rem);
  letter-spacing: 0.06em;
}

.footer-main p,
.footer-main > a:last-child {
  margin-top: 1.4rem;
  color: #c4b9ae;
  font-size: 0.65rem;
  line-height: 1.8;
}

.footer-main p {
  max-width: 250px;
}

.footer-main > a:last-child {
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-line);
  color: #a99d92;
  font-size: 0.54rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@keyframes hero-scale {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

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

@keyframes loader-pulse {
  from {
    opacity: 0.35;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1000px) {
  .desktop-nav,
  .header-inquiry {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .menu-toggle {
    justify-self: end;
    width: 34px;
    height: 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    width: 100%;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 0.3s ease;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 90;
    inset: 0;
    padding: 8rem 5vw 4rem;
    display: flex;
    flex-direction: column;
    background: var(--espresso);
    color: #f4eee7;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 0.35s ease,
      visibility 0.35s ease,
      transform 0.35s ease;
  }

  .mobile-menu a {
    width: 100%;
    padding: 0.8rem 0;
    font-family: var(--serif);
    font-size: clamp(2.6rem, 10vw, 5rem);
    border-bottom: 1px solid var(--light-line);
  }

  .mobile-menu .mobile-contact {
    margin-top: auto;
  }

  .mobile-menu .mobile-contact a {
    display: inline-block;
    width: auto;
    margin-right: 2rem;
    padding: 0;
    border: 0;
    font-family: var(--sans);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .menu-open .mobile-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .menu-open .site-header {
    color: #fff;
    background: transparent;
  }

  .intro {
    min-height: auto;
    grid-template-columns: 1fr 3fr;
  }

  .intro-detail {
    grid-column: 2;
    max-width: 460px;
    margin-top: 2rem;
  }

  .section-heading {
    grid-template-columns: 1fr 0.5fr;
  }

  .collection-card-offset {
    margin-top: 4rem;
  }

  .craft-content {
    padding: 7rem 5vw;
  }

  .craft-points > div {
    grid-template-columns: 2rem 1fr;
  }

  .craft-points p {
    grid-column: 2;
  }

  .trade-card {
    padding-right: 1.6rem;
  }

  .trade-card + .trade-card {
    padding-left: 1.6rem;
  }

  .contact-grid {
    gap: 5vw;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 0 5vw;
  }

  .site-header::after {
    right: 5vw;
    left: 5vw;
  }

  .hero {
    padding: 9rem 5vw 6rem;
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(20, 14, 10, 0.68), rgba(20, 14, 10, 0.12)),
      linear-gradient(0deg, rgba(20, 14, 10, 0.65), transparent 60%);
  }

  .hero h1 {
    font-size: clamp(3.3rem, 13.5vw, 5rem);
    line-height: 0.98;
  }

  .hero-copy {
    max-width: 310px;
    font-size: 0.75rem;
  }

  .hero-meta {
    right: auto;
    bottom: 1.6rem;
    left: 5vw;
  }

  .hero-meta span:last-child,
  .scroll-cue {
    display: none;
  }

  .section-pad {
    padding: 6.5rem 5vw;
  }

  .intro,
  .section-heading,
  .collection-grid,
  .craft,
  .trade-grid,
  .trade-note,
  .trade-stats,
  .contact-grid,
  .inquiry-form,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 3.5rem;
  }

  .intro-detail {
    grid-column: auto;
    margin-top: 0;
  }

  .intro-statement h2 {
    font-size: clamp(2.5rem, 10.5vw, 4.1rem);
    line-height: 1.1;
  }

  .section-heading {
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .section-heading h2 {
    font-size: clamp(2.8rem, 11vw, 4.2rem);
  }

  .section-heading > p {
    max-width: 400px;
  }

  .collection-grid {
    gap: 3.5rem;
  }

  .collection-card-offset {
    margin-top: 0;
  }

  .collection-card img {
    aspect-ratio: 0.82;
  }

  .craft-image img {
    min-height: 70vh;
  }

  .craft-content {
    padding: 6.5rem 5vw;
  }

  .section-index-light {
    margin-bottom: 4rem;
  }

  .craft-content h2 {
    font-size: clamp(3rem, 11.5vw, 4.4rem);
  }

  .craft-lead {
    margin-bottom: 3rem;
  }

  .trade-card,
  .trade-card + .trade-card {
    min-height: auto;
    padding: 2rem 0 3rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trade-card:last-child {
    border-bottom: 0;
  }

  .trade-icon {
    margin: 3rem 0 2rem;
  }

  .trade-note {
    gap: 2rem;
  }

  .trade-stats {
    gap: 1.6rem;
  }

  .contact {
    padding: 7rem 5vw 5rem;
  }

  .contact-top {
    margin-bottom: 4.5rem;
  }

  .contact h2 {
    font-size: clamp(3.2rem, 12.5vw, 5rem);
  }

  .contact-grid {
    gap: 5rem;
  }

  .full-field,
  .submit-button {
    grid-column: auto;
  }

  footer {
    padding: 4rem 5vw 2rem;
  }

  .footer-main {
    min-height: auto;
    gap: 1.5rem;
    margin-bottom: 4rem;
  }

  .footer-main p,
  .footer-main > a:last-child {
    margin-top: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
