:root {
  --color-black: #100d0a;
  --color-coal: #1b1510;
  --color-brown-dark: #2a1d16;
  --color-espresso: #35241a;
  --color-ivory: #f4eee5;
  --color-cream: #eadfce;
  --color-beige: #d8c5aa;
  --color-text-light: #f5f0e9;
  --color-text-dark: #211a15;
  --color-muted-light: #b8afa5;
  --color-muted-dark: #554940;
  --color-copper: #a75d3d;
  --color-copper-hover: #88442d;
  --color-gold-muted: #c6a879;
  --color-surface-light: #f2eadf;
  --color-surface-light-alt: #e7d8c5;
  --color-surface-dark: #15100c;
  --color-footer: #0b0806;
  --surface-light-gradient: radial-gradient(circle at top left, #fbf4ea 0, var(--color-surface-light) 48%, var(--color-surface-light-alt) 100%);
  --color-border-dark: rgba(255, 255, 255, 0.14);
  --color-border-light: rgba(33, 26, 21, 0.16);
  --shadow-deep: 0 28px 80px rgba(13, 12, 10, 0.36);
  --container: min(100% - 96px, 1280px);
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-black);
  color: var(--color-text-light);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(15.5px, 0.2vw + 14.5px, 17px);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(185, 103, 61, 0.68);
  outline-offset: 4px;
}

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

main section[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--color-ivory);
  color: var(--color-text-dark);
  padding: 12px 16px;
  border: 1px solid var(--color-border-light);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--color-text-light);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: min(68vw, 940px);
  height: calc(var(--header-height) + 38px);
  pointer-events: none;
  background: linear-gradient(270deg, rgba(16, 13, 10, 0.7) 0%, rgba(16, 13, 10, 0.4) 48%, rgba(16, 13, 10, 0) 100%);
  opacity: 0.92;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(16, 13, 10, 0.9);
  border-bottom: 1px solid var(--color-border-dark);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: var(--container);
  max-width: 1320px;
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 42px);
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  flex: 0 0 auto;
}

.brand img {
  width: auto;
  height: 52px;
  max-width: 154px;
  object-fit: contain;
}

.footer-brand img {
  width: 154px;
  height: auto;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  font-size: 0.86rem;
  font-weight: 700;
}

.main-nav a:not(.btn) {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 233, 0.86);
  position: relative;
}

.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 1px;
  background: var(--color-copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 1px solid rgba(245, 240, 233, 0.54);
  border-radius: 0;
  background: rgba(13, 12, 10, 0.28);
  color: var(--color-text-light);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  inset: var(--header-height) 0 0;
  background: rgba(0, 0, 0, 0.6);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 14px 24px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--color-copper);
  color: var(--color-text-light);
  box-shadow: 0 16px 34px rgba(54, 25, 12, 0.28);
}

.btn-primary:hover,
.btn-primary:active {
  background: var(--color-copper-hover);
}

.btn-secondary {
  background: rgba(244, 238, 229, 0.08);
  color: var(--color-text-light);
  border-color: rgba(244, 238, 229, 0.42);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover,
.btn-secondary:active {
  border-color: var(--color-text-light);
  background: rgba(244, 238, 229, 0.13);
}

.btn-dark {
  background: var(--color-black);
  color: var(--color-text-light);
}

.btn-dark:hover {
  background: var(--color-copper-hover);
}

.btn-outline {
  color: var(--color-text-dark);
  border-color: var(--color-border-light);
  background: transparent;
}

.btn-outline:hover {
  background: var(--color-text-dark);
  color: var(--color-text-light);
}

.btn-small {
  min-height: 42px;
  padding: 12px 18px;
  font-size: 0.84rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-gold-muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0;
}

p,
h1,
h2,
h3 {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.hero {
  position: relative;
  min-height: max(680px, 100vh);
  min-height: max(680px, 100svh);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--color-black);
  color: var(--color-text-light);
  padding: calc(var(--header-height) + 44px) 0 76px;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
}

.hero-media img {
  object-fit: cover;
  object-position: 61% 42%;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 13, 10, 0.84) 0%, rgba(27, 18, 12, 0.72) 28%, rgba(40, 25, 15, 0.32) 50%, rgba(38, 23, 13, 0.08) 70%, rgba(16, 13, 10, 0.08) 100%),
    linear-gradient(180deg, rgba(16, 13, 10, 0.28) 0%, rgba(16, 13, 10, 0.02) 40%, rgba(16, 13, 10, 0.54) 100%);
}

.hero-content {
  max-width: min(650px, 46vw);
  margin-inline: max(48px, calc((100vw - 1320px) / 2 + 48px)) auto;
}

.hero h1 {
  max-width: 620px;
  color: var(--color-text-light);
  font-size: clamp(4.25rem, 6.2vw, 7rem);
  line-height: 1;
  text-wrap: balance;
  overflow-wrap: normal;
}

.hero h1 span {
  display: block;
}

.hero h1 span:nth-child(2) {
  white-space: nowrap;
}

.hero h1 span:last-child {
  color: var(--color-gold-muted);
}

.hero-content > p:not(.eyebrow) {
  max-width: 590px;
  margin: 32px 0 0;
  color: rgba(245, 240, 233, 0.84);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  overflow-wrap: normal;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-actions .btn {
  min-height: 52px;
  padding-block: 15px;
}

.trust-strip {
  margin-top: -1px;
  background:
    linear-gradient(180deg, rgba(42, 29, 22, 0.96) 0%, rgba(27, 21, 16, 0.98) 100%),
    var(--color-coal);
  border-top: 1px solid rgba(198, 168, 121, 0.14);
  border-bottom: 1px solid rgba(198, 168, 121, 0.1);
}

.trust-grid {
  list-style: none;
  margin-block: 0;
  padding-block: 34px;
  padding-inline: clamp(24px, 2.2vw, 32px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.trust-grid li {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding-inline: clamp(16px, 1.6vw, 24px);
}

.trust-grid li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16%;
  bottom: 16%;
  width: 1px;
  background: rgba(198, 168, 121, 0.16);
}

.trust-grid svg {
  width: 24px;
  height: 24px;
  justify-self: center;
  color: var(--color-gold-muted);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.95;
}

.trust-grid strong {
  display: block;
  color: var(--color-text-light);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.3;
}

.trust-grid p {
  margin: 6px 0 0;
  color: rgba(234, 223, 206, 0.82);
  font-size: 0.82rem;
  line-height: 1.5;
}

.section {
  padding: clamp(76px, 8vw, 118px) 0;
}

.section-intro h2,
.detail-copy h2,
.service-content h2,
.features-heading h2,
.store-intro h2,
.final-content h2 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.section-intro p:not(.eyebrow),
.detail-copy p,
.service-content > p:not(.eyebrow),
.features-lead,
.store-intro p:not(.eyebrow) {
  color: var(--color-muted-dark);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.occasions {
  background: var(--surface-light-gradient);
  color: var(--color-text-dark);
  padding: clamp(96px, 8vw, 120px) 0 clamp(100px, 8vw, 120px);
}

.occasions-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(64px, 6vw, 80px);
  align-items: start;
}

.occasions .section-intro {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.occasions .section-intro h2 {
  max-width: 470px;
  font-size: clamp(3.25rem, 4.4vw, 4rem);
  line-height: 1.06;
  text-wrap: balance;
}

.occasions .section-intro p:not(.eyebrow) {
  max-width: 390px;
  color: var(--color-muted-dark);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.65;
}

.occasion-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 1.8vw, 28px);
  margin-top: 0;
}

.occasion-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.occasion-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 76%;
  background: var(--color-brown-dark);
}

.occasion-card:nth-child(1) img {
  object-position: center 20%;
}

.occasion-card:nth-child(2) img {
  object-position: center 18%;
}

.occasion-card:nth-child(3) img {
  object-position: center 87%;
}

.occasion-card h3 {
  margin-top: 14px;
  color: var(--color-text-dark);
  font-size: clamp(1.5rem, 1.7vw, 1.75rem);
  line-height: 1.2;
  text-wrap: balance;
}

.occasion-card p {
  max-width: none;
  margin: 8px 0 14px;
  color: var(--color-muted-dark);
  font-size: clamp(0.94rem, 1vw, 1rem);
  line-height: 1.44;
}

.occasions .text-link {
  margin-top: auto;
  align-self: flex-start;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding-block: 8px;
  color: var(--color-copper-hover);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
}

.occasions .text-link::after {
  display: inline-block;
  transition: transform 180ms ease;
}

.occasions .text-link:hover::after {
  transform: translateX(4px);
}

.occasions .text-link:active {
  color: var(--color-copper);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--color-copper-hover);
  font-size: 0.88rem;
  font-weight: 800;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
}

.text-link:hover {
  color: var(--color-text-dark);
}

.detail-editorial {
  padding: clamp(100px, 8vw, 120px) 0;
  background: linear-gradient(180deg, #100d0a 0%, #15100c 100%);
  color: var(--color-text-light);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: clamp(64px, 6vw, 80px);
  align-items: start;
}

.detail-copy h2 {
  max-width: 430px;
  font-size: clamp(3.35rem, 4.5vw, 4rem);
  line-height: 1.05;
  text-wrap: balance;
}

.detail-copy .eyebrow {
  margin-bottom: 20px;
}

.detail-copy h2 span {
  display: block;
}

.detail-copy p:not(.eyebrow) {
  max-width: 430px;
  margin: 30px 0 0;
  color: rgba(244, 238, 229, 0.88);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.62;
}

.detail-link {
  margin-top: 26px;
  color: var(--color-gold-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.detail-link::after {
  color: var(--color-copper);
  margin-left: 7px;
  transition: transform 180ms ease;
}

.detail-link:hover {
  color: var(--color-text-light);
}

.detail-link:hover::after {
  transform: translateX(4px);
}

.detail-link:active {
  color: var(--color-copper);
}

.detail-collage {
  display: grid;
  height: clamp(440px, 38vw, 540px);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(8, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 14px);
  align-items: stretch;
  margin-top: 0;
}

.detail-figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #1f1712;
}

.detail-figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(16, 13, 10, 0) 0%, rgba(16, 13, 10, 0.5) 100%);
}

.detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #1f1712;
}

.detail-figure figcaption {
  position: absolute;
  z-index: 1;
  left: clamp(18px, 2vw, 24px);
  bottom: clamp(18px, 2vw, 24px);
  color: rgba(245, 240, 233, 0.88);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.detail-img-main {
  grid-column: 1 / span 6;
  grid-row: 1 / span 8;
}

.detail-img-main .detail-img {
  object-position: center;
}

.detail-img-lapel {
  grid-column: 7 / span 6;
  grid-row: 1 / span 4;
}

.detail-img-lapel .detail-img {
  object-position: center;
}

.detail-img-sleeve {
  grid-column: 7 / span 3;
  grid-row: 5 / span 4;
}

.detail-img-sleeve .detail-img {
  object-position: center;
}

.detail-img-fabric {
  grid-column: 10 / span 3;
  grid-row: 5 / span 4;
}

.detail-img-fabric .detail-img {
  object-position: center;
}

.service {
  display: grid;
  grid-template-columns: minmax(0, 43%) minmax(0, 57%);
  align-items: stretch;
  background: #100d0a;
  color: var(--color-text-dark);
}

.service-media {
  position: relative;
  min-height: clamp(620px, 82vh, 640px);
  background: #100d0a;
  overflow: hidden;
}

.service-media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 0 0 auto;
  width: 1px;
  background: linear-gradient(180deg, rgba(198, 168, 121, 0), rgba(198, 168, 121, 0.28), rgba(198, 168, 121, 0));
}

.service-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
}

.service-media::after {
  content: "Foto — atendimento consultivo";
  position: absolute;
  left: clamp(28px, 4vw, 56px);
  bottom: clamp(26px, 4vw, 52px);
  max-width: calc(100% - clamp(56px, 8vw, 112px));
  color: rgba(210, 196, 181, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.service-panel {
  display: flex;
  align-items: center;
  min-width: 0;
  background: linear-gradient(135deg, #f2eadf 0%, #eadfce 100%);
}

.service-content {
  width: min(100%, 940px);
  margin: 0 auto;
  padding: clamp(48px, 4.2vw, 54px) clamp(42px, 4.5vw, 68px) clamp(44px, 3.8vw, 50px);
}

.service-content .eyebrow {
  margin-bottom: 14px;
}

.service-content h2 {
  max-width: 470px;
  font-size: clamp(2.65rem, 3.25vw, 3.2rem);
  line-height: 1.03;
}

.service-content h2 span {
  display: block;
}

.service-content > p:not(.eyebrow) {
  max-width: 520px;
  margin: 20px 0 0;
  color: #51463d;
  font-size: clamp(0.96rem, 1.1vw, 1.04rem);
  line-height: 1.56;
}

.service-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  width: 100%;
  margin: 24px 0 0;
  border-top: 1px solid rgba(91, 67, 47, 0.15);
  border-bottom: 1px solid rgba(91, 67, 47, 0.12);
  background: transparent;
}

.service-steps li {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-items: start;
  padding: 20px clamp(28px, 2.4vw, 32px) 20px;
  background: transparent;
  border-top: 1px solid rgba(91, 67, 47, 0.09);
}

.service-steps li:nth-child(-n + 2) {
  border-top: 0;
}

.service-steps li:nth-child(odd) {
  border-left: 0;
}

.service-steps li:nth-child(even) {
  border-left: 1px solid rgba(91, 67, 47, 0.1);
}

.service-steps span {
  display: inline-flex;
  color: var(--color-copper-hover);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.service-steps h3 {
  margin-top: 11px;
  max-width: 22ch;
  color: var(--color-text-dark);
  font-size: clamp(1.22rem, 1.34vw, 1.42rem);
  line-height: 1.1;
  text-wrap: balance;
}

.service-steps p {
  max-width: 30ch;
  margin: 12px 0 0;
  color: #554940;
  font-size: 0.88rem;
  line-height: 1.5;
}

.features {
  padding: 80px 0;
  background: var(--surface-light-gradient);
  color: var(--color-text-dark);
}

.features-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr);
  column-gap: clamp(56px, 5vw, 68px);
  row-gap: clamp(32px, 3vw, 36px);
  align-items: start;
}

.features-heading {
  grid-column: 1 / -1;
}

.features-heading h2 {
  max-width: 620px;
  margin-top: 16px;
  font-size: clamp(2.75rem, 3.55vw, 3.35rem);
  line-height: 1.05;
  text-wrap: balance;
}

.features-heading h2 span {
  display: block;
}

.features-lead {
  max-width: 520px;
  margin: 0 0 clamp(28px, 3vw, 36px);
  color: var(--color-muted-dark);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.56;
}

.features-photo {
  grid-column: 1;
  grid-row: 2;
  position: relative;
  height: clamp(558px, 48.6vw, 684px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #19120e;
}

.features-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #19120e;
}

.features-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(25, 18, 14, 0) 0%, rgba(25, 18, 14, 0.56) 100%);
}

.features-photo figcaption {
  position: absolute;
  z-index: 1;
  left: clamp(18px, 2vw, 24px);
  bottom: clamp(18px, 2vw, 24px);
  max-width: calc(100% - 48px);
  color: rgba(245, 240, 233, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
}

.features-content {
  grid-column: 2;
  grid-row: 2;
  min-height: clamp(558px, 48.6vw, 684px);
}

.feature-list {
  display: grid;
  align-content: start;
  border-top: 1px solid rgba(91, 67, 47, 0.14);
}

.feature-list article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: clamp(20px, 2vw, 24px);
  align-items: start;
  padding: clamp(20px, 1.9vw, 24px) 0;
  border-bottom: 1px solid rgba(91, 67, 47, 0.11);
}

.feature-list span {
  color: var(--color-copper-hover);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.feature-list h3 {
  color: var(--color-text-dark);
  font-size: clamp(1.55rem, 1.8vw, 1.8rem);
  line-height: 1.18;
}

.feature-list p {
  max-width: 40rem;
  margin: 8px 0 0;
  color: var(--color-muted-dark);
  font-size: 0.96rem;
  line-height: 1.48;
}

.feature-link {
  justify-self: start;
  margin-top: 22px;
  padding-block: 10px;
  color: var(--color-copper-hover);
}

.feature-link::after {
  display: inline-block;
  transition: transform 180ms ease;
}

.feature-link:hover::after {
  transform: translateX(4px);
}

.feature-link:active {
  color: var(--color-copper);
}

.store {
  padding: clamp(80px, 7vw, 92px) 0;
  background: var(--surface-light-gradient);
  color: var(--color-text-dark);
}

.store-layout {
  display: grid;
  gap: clamp(36px, 3.4vw, 44px);
}

.store-intro {
  max-width: 780px;
}

.store-intro h2 {
  max-width: 720px;
  font-size: clamp(2.85rem, 4vw, 4.05rem);
  line-height: 1.04;
  text-wrap: balance;
}

.store-intro p:not(.eyebrow) {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--color-muted-dark);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.56;
}

.store-visit {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(340px, 0.4fr);
  gap: clamp(40px, 3.8vw, 48px);
  align-items: start;
}

.store-map {
  height: clamp(460px, 37vw, 500px);
  min-height: 0;
  border: 1px solid rgba(91, 67, 47, 0.18);
  background: #ded2bf;
}

.store-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.store-side {
  display: block;
}

.store-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
}

address {
  font-style: normal;
}

.store-info address {
  margin: 0 0 24px;
}

.store-info address span,
.store-info address strong,
.store-info address em {
  display: block;
}

.store-address-link {
  display: inline-block;
  color: inherit;
}

.store-address-link:hover strong,
.store-address-link:hover em,
.contact-list a:hover,
.footer-contact a:hover,
.site-footer nav a:hover {
  color: var(--color-copper);
}

.store-info address span {
  color: var(--color-copper-hover);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.store-info address strong {
  margin-top: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 2.2vw, 1.95rem);
  line-height: 1.12;
}

.store-info address em {
  margin-top: 6px;
  color: var(--color-muted-dark);
  font-style: normal;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  font-weight: 600;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0 0 24px;
}

.contact-list li {
  display: grid;
  gap: 2px;
}

.contact-list span {
  color: var(--color-copper-hover);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--color-text-dark);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-list li:last-child a {
  font-weight: 600;
}

.store-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  margin-top: 2px;
}

.store-actions .btn {
  width: 100%;
  height: 50px;
  min-height: 50px;
  justify-content: center;
  padding: 12px 14px;
  white-space: nowrap;
}

.store-actions .btn-outline {
  color: var(--color-copper-hover);
  border-color: rgba(167, 93, 61, 0.42);
  background: transparent;
}

.store-actions .btn-outline:hover {
  color: var(--color-text-dark);
  border-color: rgba(167, 93, 61, 0.74);
  background: rgba(167, 93, 61, 0.08);
}

.store-actions .btn-outline:active {
  color: var(--color-copper);
  background: rgba(167, 93, 61, 0.12);
}

.final-cta {
  background:
    radial-gradient(circle at center, rgba(167, 93, 61, 0.12) 0, rgba(167, 93, 61, 0.04) 34%, rgba(16, 13, 10, 0) 68%),
    var(--color-surface-dark);
  color: var(--color-text-light);
  border-bottom: 1px solid rgba(244, 238, 229, 0.12);
  padding: 38px 0;
}

.final-content {
  max-width: 740px;
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 0;
  text-align: center;
}

.final-content h2 {
  max-width: 100%;
  color: var(--color-gold-muted);
  font-size: clamp(2.75rem, 3.2vw, 3rem);
  line-height: 1.05;
  text-wrap: balance;
}

.final-content p {
  max-width: 740px;
  margin: 14px 0 0;
  color: #d4cac0;
  font-size: 1rem;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.final-content .btn {
  margin-top: 24px;
  width: auto;
  min-height: 50px;
  padding: 0 30px;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(54, 25, 12, 0.22);
}

.final-content .btn svg {
  width: 19px;
  height: 19px;
  transition: transform 180ms ease;
}

.final-content .btn:hover svg {
  transform: translateX(2px);
}

.final-content .btn:active svg {
  transform: translateX(1px);
}

.site-footer {
  background: var(--color-footer);
  color: var(--color-text-light);
  padding: 52px 0 calc(22px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(198, 168, 121, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(160px, 0.7fr) minmax(300px, 1.1fr);
  column-gap: clamp(64px, 6vw, 96px);
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(198, 168, 121, 0.16);
}

.footer-brand {
  padding-top: 1px;
}

.footer-brand img {
  width: 160px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(92%) sepia(10%) saturate(350%) hue-rotate(350deg) brightness(102%);
}

.footer-brand p {
  max-width: 320px;
  margin: 22px 0 0;
  color: rgba(245, 240, 233, 0.8);
  font-size: 0.95rem;
  line-height: 1.55;
}

.footer-brand small {
  display: block;
  margin-top: 12px;
  color: var(--color-gold-muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.site-footer h2 {
  margin: 0 0 22px;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--color-gold-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
}

.footer-nav-list,
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list {
  display: grid;
  gap: 2px;
}

.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(245, 240, 233, 0.82);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.footer-nav a {
  position: relative;
  width: max-content;
  min-height: 44px;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--color-gold-muted);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--color-gold-muted);
  transform: translateX(3px);
}

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

.footer-contact-list {
  display: grid;
  gap: 4px;
}

.footer-contact-list a {
  display: grid;
  grid-template-columns: 19px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 44px;
  color: rgba(245, 240, 233, 0.82);
  line-height: 1.45;
}

.footer-contact-list span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-contact-list svg {
  width: 18px;
  height: 18px;
  fill: var(--color-gold-muted);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(245, 240, 233, 0.68);
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.5;
}

.mobile-cta {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.js .hero-content.reveal,
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root {
    --container: min(100% - 64px, 1280px);
  }

  .main-nav {
    gap: 18px;
  }

  .hero-media img {
    object-position: 65% 42%;
  }

  .hero-content {
    max-width: min(570px, 50vw);
    margin-inline: max(32px, calc((100vw - 1280px) / 2 + 40px)) auto;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 6.1vw, 6rem);
  }

  .service-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-layout {
    column-gap: 48px;
  }

  .features-photo {
    height: clamp(390px, 34vw, 450px);
  }
}

@media (max-width: 1023px) {
  .final-cta {
    padding-block: 44px;
  }

  .final-content {
    max-width: 700px;
  }

  .final-content h2 {
    font-size: clamp(2.5rem, 5vw, 2.85rem);
  }

  .final-content p {
    max-width: 650px;
  }

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

  .footer-grid {
    grid-template-columns: minmax(260px, 0.9fr) minmax(360px, 1.1fr);
    column-gap: 48px;
    row-gap: 32px;
  }

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

  .footer-nav {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-contact {
    grid-column: 2;
    grid-row: 2;
  }

  .store {
    padding: 72px 0;
  }

  .store-layout {
    gap: 34px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }

  .trust-grid li {
    padding-block: 4px;
  }

  .trust-grid li::before {
    display: none;
  }

  .trust-grid li:nth-child(even)::before {
    display: block;
  }

  .trust-grid li:nth-child(n + 3)::after {
    content: "";
    position: absolute;
    left: clamp(16px, 1.6vw, 24px);
    right: clamp(16px, 1.6vw, 24px);
    top: -14px;
    height: 1px;
    background: rgba(198, 168, 121, 0.12);
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100% - 40px, 1280px);
  }

  .hero {
    min-height: max(660px, 100vh);
    min-height: max(660px, 100svh);
    align-items: end;
    padding: calc(var(--header-height) + 52px) 0 72px;
  }

  .hero-media img {
    object-position: 58% 42%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(16, 13, 10, 0.18) 0%, rgba(16, 13, 10, 0.08) 32%, rgba(16, 13, 10, 0.7) 72%, rgba(16, 13, 10, 0.92) 100%),
      linear-gradient(90deg, rgba(16, 13, 10, 0.72), rgba(32, 21, 14, 0.18) 62%, rgba(16, 13, 10, 0.08));
  }

  .hero-content {
    max-width: min(500px, calc(100% - 64px));
    margin-inline: 40px auto;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 7.8vw, 4.45rem);
  }

  .occasions-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .service {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  }

  .service-media {
    min-height: 460px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .detail-copy h2 {
    max-width: 620px;
    font-size: clamp(2.9rem, 6vw, 3.55rem);
  }

  .detail-copy h2 span {
    display: inline;
  }

  .detail-collage {
    height: clamp(460px, 64vw, 620px);
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-template-rows: repeat(8, minmax(0, 1fr));
  }

  .detail-img-main {
    grid-column: 1 / span 5;
    grid-row: 1 / span 8;
  }

  .detail-img-lapel {
    grid-column: 6 / span 3;
    grid-row: 1 / span 4;
  }

  .detail-img-sleeve {
    grid-column: 6 / span 3;
    grid-row: 5 / span 2;
  }

  .detail-img-fabric {
    grid-column: 6 / span 3;
    grid-row: 7 / span 2;
  }

  .occasions .section-intro {
    position: static;
    max-width: 720px;
  }

  .occasion-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .features-layout {
    grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
    gap: 28px;
  }

  .features-heading {
    grid-column: 1 / -1;
    max-width: 660px;
  }

  .features-content {
    grid-column: 2;
    grid-row: auto;
    min-height: clamp(468px, 64.8vw, 576px);
  }

  .features-heading h2 span {
    display: inline;
  }

  .features-photo {
    height: clamp(468px, 64.8vw, 576px);
  }

  .feature-list article {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .store-visit {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .store-map {
    order: 2;
    height: clamp(380px, 44vw, 430px);
  }

  .store-side {
    order: 1;
  }

  .store-actions {
    max-width: 520px;
  }

  .contact-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 760px;
  }

  .service {
    grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  }

  .service-media {
    min-height: 500px;
  }

  .service-content {
    padding: 48px clamp(30px, 4vw, 48px);
  }

  .service-content h2 {
    max-width: 430px;
    font-size: clamp(2.4rem, 4.8vw, 3.3rem);
  }

  .service-content h2 span {
    display: inline;
  }

  .service-steps li {
    padding-inline: clamp(20px, 2.4vw, 26px);
  }

}

@media (max-width: 767px) {
  :root {
    --container: min(100% - 40px, 1280px);
    --header-height: 66px;
  }

  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .brand img {
    width: auto;
    height: 50px;
    max-width: 132px;
  }

  .footer-brand img {
    width: 132px;
    height: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: min(88vw, 390px);
    height: calc(100svh - var(--header-height));
    max-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 26px;
    background: var(--color-black);
    color: var(--color-text-light);
    border-left: 1px solid var(--color-border-dark);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.34);
    overflow-y: auto;
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .main-nav a:not(.btn) {
    min-height: 58px;
    justify-content: flex-start;
    border-bottom: 1px solid var(--color-border-dark);
    color: var(--color-text-light);
    font-size: 1.05rem;
  }

  .main-nav .btn {
    margin-top: 22px;
  }

  .hero {
    min-height: max(640px, 100svh);
    align-items: end;
    padding: calc(var(--header-height) + 28px) 0 86px;
  }

  .hero-media img {
    object-position: 50% 36%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(16, 13, 10, 0.08) 0%, rgba(16, 13, 10, 0.1) 30%, rgba(16, 13, 10, 0.76) 64%, rgba(16, 13, 10, 0.96) 100%),
      linear-gradient(90deg, rgba(16, 13, 10, 0.5), rgba(16, 13, 10, 0.1) 58%, rgba(16, 13, 10, 0.12));
  }

  .hero-content {
    max-width: min(100%, 440px);
    margin-inline: 20px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.1rem);
    line-height: 0.98;
  }

  .hero-content > p:not(.eyebrow) {
    margin-top: 28px;
    font-size: 1rem;
  }

  .hero-actions {
    max-width: min(100%, 360px);
    margin-top: 28px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta {
    padding-block: 44px;
  }

  .final-content {
    max-width: 620px;
  }

  .final-content h2 {
    font-size: clamp(2.125rem, 9vw, 2.5rem);
    line-height: 1.05;
  }

  .final-content p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.55;
  }

  .final-content .btn {
    width: auto;
    max-width: 100%;
    min-height: 50px;
    margin-top: 24px;
    padding-inline: 28px;
  }

  .section {
    padding: 68px 0;
  }

  .section-intro h2,
  .detail-copy h2,
  .service-content h2,
  .features-heading h2,
  .store-intro h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .trust-grid {
    grid-template-columns: 1fr;
    row-gap: 0;
    padding-block: 28px;
    padding-inline: 24px;
  }

  .trust-grid li {
    padding: 18px 0;
  }

  .trust-grid li::before {
    display: none;
  }

  .trust-grid li:nth-child(even)::before,
  .trust-grid li:nth-child(n + 3)::after {
    display: none;
  }

  .trust-grid li:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(198, 168, 121, 0.12);
  }

  .detail-editorial {
    padding: 64px 0;
  }

  .service {
    grid-template-columns: 1fr;
    background: var(--color-cream);
  }

  .service-media {
    order: 2;
    min-height: 0;
  }

  .service-media img {
    min-height: 0;
    height: clamp(220px, 64vw, 280px);
    aspect-ratio: 16 / 9;
    transform: scale(1.04);
  }

  .service-panel {
    order: 1;
    display: block;
  }

  .service-content {
    padding: 48px var(--container-gutter, 32px) 52px;
  }

  .service-content h2 {
    max-width: 430px;
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .service-content h2 span {
    display: inline;
  }

  .service-content > p:not(.eyebrow) {
    margin-top: 18px;
  }

  .service-steps {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .service-steps li {
    min-height: auto;
    grid-template-rows: auto;
    padding: 21px 0 22px;
    border-left: 0;
    border-top: 1px solid rgba(91, 67, 47, 0.1);
  }

  .service-steps li:nth-child(even) {
    border-left: 0;
  }

  .service-steps li:nth-child(n + 2) {
    border-top: 1px solid rgba(91, 67, 47, 0.1);
  }

  .service-steps li:first-child {
    border-top: 0;
  }

  .service-steps h3 {
    max-width: none;
    margin-top: 12px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .detail-copy h2 {
    max-width: 430px;
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .detail-copy h2 span {
    display: inline;
  }

  .detail-copy p:not(.eyebrow) {
    max-width: 34rem;
    margin-top: 24px;
  }

  .detail-link {
    margin-top: 22px;
  }

  .detail-collage {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 10px;
    margin-top: 0;
  }

  .detail-figure {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .detail-img-main {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .detail-img-lapel,
  .detail-img-sleeve,
  .detail-img-fabric {
    display: block;
    grid-column: auto;
    grid-row: auto;
  }

  .detail-img-fabric {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .occasions .section-intro h2 {
    max-width: 620px;
    font-size: clamp(2.55rem, 11vw, 3.6rem);
  }

  .occasion-gallery {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .occasion-card {
    display: flex;
  }

  .occasion-card img {
    aspect-ratio: 3 / 4;
    max-height: 720px;
  }

  .occasion-card h3 {
    margin-top: 14px;
    font-size: clamp(1.55rem, 8vw, 1.85rem);
  }

  .occasion-card p {
    max-width: none;
    margin: 7px 0 12px;
  }

  .occasions .text-link {
    min-height: 44px;
  }

  .features-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .features-heading,
  .features-photo,
  .features-content {
    grid-column: auto;
    grid-row: auto;
  }

  .features-heading h2 {
    max-width: 100%;
  }

  .features-heading h2 span {
    display: inline;
  }

  .features-lead {
    max-width: 100%;
  }

  .features-photo {
    height: auto;
    aspect-ratio: 20 / 27;
  }

  .features-content {
    min-height: 0;
  }

  .feature-list article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 18px;
    padding: 20px 0;
  }

  .store-layout {
    gap: 26px;
  }

  .store {
    padding: 64px 0;
  }

  .store-visit {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .store-map {
    height: clamp(300px, 84vw, 350px);
  }

  .store-info {
    padding: 0;
  }

  .store-actions {
    grid-template-columns: 1fr;
    max-width: none;
    gap: 10px;
  }

  .contact-list {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .feature-list article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 0;
  }

  .feature-list h3 {
    font-size: clamp(1.45rem, 8vw, 1.9rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
  }

  .site-footer {
    padding: 44px 0 calc(22px + env(safe-area-inset-bottom));
  }

  .footer-brand,
  .footer-nav,
  .footer-contact {
    grid-column: auto;
    grid-row: auto;
  }

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

  .site-footer h2 {
    margin-bottom: 18px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(13, 12, 10, 0.93);
    border-top: 1px solid var(--color-border-dark);
    backdrop-filter: blur(12px);
  }

  .mobile-cta .btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  :root {
    --container: min(100% - 32px, 1280px);
  }

  .btn {
    width: 100%;
    padding-inline: 16px;
  }

  .final-content .btn {
    width: auto;
    padding-inline: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }

  .final-content .btn svg {
    transform: none !important;
  }

  .footer-nav a:hover,
  .footer-nav a:focus-visible,
  .footer-contact a:hover,
  .footer-contact a:focus-visible {
    transform: none;
  }
}
