:root {
  --ink: #1d211b;
  --olive: #59614a;
  --cream: #f4efe7;
  --sand: #d9c8ae;
  --warm-white: #fbf9f5;
  --line: rgba(29, 33, 27, 0.16);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: #fff;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(244, 239, 231, 0.94);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.brand span {
  color: var(--olive);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.site-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 19px;
  border: 1px solid var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-cta:hover {
  background: var(--ink);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px 0;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  max-height: 960px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(244, 239, 231, 0.98) 0%, rgba(244, 239, 231, 0.83) 36%, transparent 67%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  margin: 0 12px 4px 0;
  background: currentColor;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: clamp(4.2rem, 8vw, 7.8rem);
}

.hero-copy {
  max-width: 540px;
  margin-bottom: 34px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 13px 25px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

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

.button-dark:hover {
  background: var(--olive);
}

.text-link {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 8px;
}

.hero-note {
  position: absolute;
  right: 30px;
  bottom: 34px;
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section {
  padding: 130px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2.3fr 1.2fr;
  gap: 46px;
  align-items: start;
  margin-bottom: 64px;
}

.section-heading h2,
.about-copy h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.section-heading > p:last-child {
  padding-top: 8px;
  color: #585b55;
}

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

.offer-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-right: 1px solid var(--line);
  overflow: hidden;
  transition: color 0.25s ease;
}

.offer-card:first-child {
  border-left: 1px solid var(--line);
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 100% 0 0;
  z-index: -1;
  transition: inset 0.35s ease;
}

.offer-card-women::before { background: #c4ab91; }
.offer-card-men::before { background: var(--olive); }
.offer-card-shoes::before { background: #242821; }

.offer-card:hover {
  color: #fff;
}

.offer-card:hover::before {
  inset: 0;
}

.offer-number {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.offer-card h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
}

.offer-card p {
  max-width: 280px;
  margin-bottom: 0;
  font-size: 0.92rem;
}

.card-arrow {
  position: absolute;
  right: 26px;
  top: 24px;
  font-size: 1.4rem;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10%;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--sand);
}

.about-visual > span {
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15rem;
  line-height: 1;
}

.fabric-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.fabric-shape-one {
  width: 430px;
  height: 430px;
  top: -170px;
  right: -100px;
  background: #7d826d;
}

.fabric-shape-two {
  width: 350px;
  height: 350px;
  bottom: -170px;
  left: -80px;
  background: #af8d70;
}

.about-copy > p:not(.eyebrow) {
  max-width: 610px;
  color: #50544d;
  font-size: 1.05rem;
}

.about-copy h2 {
  margin-bottom: 32px;
}

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

.values div {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 22px 15px 0 0;
}

.values strong {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.values span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.contact {
  background: #c9b69d;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 10%;
}

.contact-lead {
  max-width: 500px;
  margin-top: 30px;
}

.contact-list {
  font-style: normal;
  border-top: 1px solid rgba(29, 33, 27, 0.32);
}

.contact-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(29, 33, 27, 0.32);
}

.contact-item span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-item a {
  overflow-wrap: anywhere;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-item p {
  margin: 0;
}

.site-footer {
  padding: 38px 0;
  background: var(--ink);
  color: #f5f1e9;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.footer-wrap p {
  margin: 0;
  color: #c6c8c2;
  font-size: 0.73rem;
  letter-spacing: 0.04em;
}

.footer-wrap p:last-child {
  text-align: right;
}

.brand-light span {
  color: #b9a080;
}

@media (max-width: 900px) {
  .menu-toggle {
    position: relative;
    z-index: 22;
    display: block;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 400;
    text-transform: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(244, 239, 231, 0.97) 0%, rgba(244, 239, 231, 0.8) 52%, rgba(244, 239, 231, 0.16) 100%);
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-heading > p:last-child {
    max-width: 500px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    min-height: 260px;
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-visual {
    min-height: 430px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .nav-wrap {
    min-height: 70px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-image {
    object-position: 63% center;
    opacity: 0.55;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(244, 239, 231, 0.78), rgba(244, 239, 231, 0.94));
  }

  h1 {
    font-size: clamp(3.8rem, 19vw, 5.6rem);
  }

  .hero-copy {
    max-width: 92%;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .hero-note {
    display: none;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .about-visual > span {
    font-size: 11rem;
  }

  .values {
    grid-template-columns: 1fr;
  }

  .values div {
    flex-direction: row;
    align-items: baseline;
    gap: 30px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-wrap p:last-child {
    text-align: left;
  }
}

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

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