:root {
  --paper: #f3eee5;
  --paper-light: #fbf8f2;
  --ink: #181513;
  --muted: #6d665e;
  --red: #c7141b;
  --mustard: #e0ad35;
  --line: rgba(24, 21, 19, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    radial-gradient(rgba(24, 21, 19, 0.035) 0.7px, transparent 0.7px) 0 0 / 5px 5px,
    var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--red);
  color: white;
}

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

img {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 280px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 16px clamp(24px, 4vw, 70px);
  border-bottom: 1px solid var(--line);
  background: rgba(243, 238, 229, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  width: 225px;
}

.brand img {
  width: 100%;
  height: auto;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 48px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a,
.header-cta,
.text-link {
  transition: color 180ms ease;
}

nav a:hover,
.text-link:hover {
  color: var(--red);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.hero {
  min-height: calc(100svh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: clamp(50px, 7vw, 110px) clamp(24px, 5vw, 82px) 90px;
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1,
.manifesto h2,
.section-heading h2,
.space-copy h2,
.basia h2,
.location h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(4.2rem, 8.5vw, 9.2rem);
}

.hero h1 em,
.manifesto h2 em {
  color: var(--red);
  font-weight: 400;
}

.hero-lead {
  max-width: 590px;
  margin: 36px 0 0;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions,
.location-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 15px 22px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--red);
  color: white;
}

.button-primary:hover {
  background: var(--ink);
}

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

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

.text-link {
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(24, 21, 19, 0.35);
  text-underline-offset: 5px;
}

.hero-visual {
  position: relative;
  min-height: 690px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 4% -7% 5% 5%;
  border-radius: 48% 52% 45% 55% / 56% 41% 59% 44%;
  background: var(--mustard);
  transform: rotate(-4deg);
}

.hero-image {
  position: absolute;
  overflow: hidden;
  background: #d7d0c5;
}

.hero-image img,
.offer-image img,
.space-image img,
.location-image img {
  object-fit: cover;
}

.hero-image > img,
.offer-image > img,
.space-image > img,
.location-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image-main {
  inset: 7% 3% 6% 7%;
  clip-path: polygon(8% 0, 100% 5%, 94% 100%, 0 91%);
  transform: rotate(1.5deg);
}

.hero-image-main img {
  object-position: 52% 55%;
}

.hero-image-small {
  width: 36%;
  aspect-ratio: 1;
  right: -2%;
  bottom: 2%;
  z-index: 3;
  border: 8px solid var(--paper);
  border-radius: 50%;
}

.hero-stamp {
  position: absolute;
  top: 1%;
  left: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  padding: 10px;
  background: var(--paper-light);
  transform: rotate(-8deg);
  box-shadow: 0 14px 30px rgba(33, 27, 20, 0.16);
}

.hero-stamp img {
  width: 100%;
  height: 100%;
}

.script-note {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.manifesto,
.offers,
.space,
.location {
  padding: clamp(80px, 10vw, 150px) clamp(24px, 5vw, 82px);
}

.manifesto {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(40px, 7vw, 130px);
  border-top: 1px solid var(--line);
  background: var(--paper-light);
}

.section-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-top: 8px;
}

.section-label span {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 1.05rem;
}

.section-label p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.manifesto-intro {
  margin: 0 0 26px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.manifesto h2 {
  max-width: 1120px;
  font-size: clamp(3.3rem, 7vw, 7.5rem);
  line-height: 0.98;
}

.manifesto-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 90px);
  max-width: 920px;
  margin: 52px 0 0 auto;
  font-size: 1rem;
  line-height: 1.75;
}

.offers {
  background: var(--red);
  color: white;
}

.section-heading {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(40px, 7vw, 130px);
}

.offers .section-label span {
  color: var(--mustard);
}

.section-heading h2 {
  font-size: clamp(3.5rem, 6vw, 6.7rem);
  line-height: 0.95;
}

.section-heading > div:last-child > p {
  max-width: 500px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 70px;
}

.offer-card {
  background: var(--paper-light);
  color: var(--ink);
  transition: transform 200ms ease;
}

.offer-card:hover {
  transform: translateY(-7px);
}

.offer-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ded7cc;
}

.offer-image img {
  transition: transform 500ms ease;
}

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

.offer-card:nth-child(3) .offer-image img {
  object-position: 50% 35%;
}

.offer-copy {
  position: relative;
  min-height: 260px;
  padding: 30px;
}

.offer-copy > span {
  position: absolute;
  top: 33px;
  right: 28px;
  color: var(--red);
  font-family: Georgia, serif;
}

.offer-copy h3 {
  max-width: 75%;
  margin: 0 0 22px;
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 2.7vw, 2.7rem);
  font-weight: 400;
  line-height: 1;
}

.offer-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.offers-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.offers-cta p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 1.4rem;
}

.space {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, 0.7fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  background: var(--paper-light);
}

.space-gallery {
  position: relative;
  min-height: 720px;
}

.space-gallery::after {
  content: "";
  position: absolute;
  right: 2%;
  bottom: 7%;
  z-index: 0;
  width: 38%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--mustard);
}

.space-image {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  background: #ded7cc;
}

.space-image-workshop {
  inset: 0 12% 11% 0;
}

.space-image-workshop img {
  object-position: center;
}

.space-image-circle {
  right: 0;
  bottom: 0;
  width: 48%;
  aspect-ratio: 1;
  border: 9px solid var(--paper-light);
  transform: rotate(3deg);
}

.space-copy h2 {
  font-size: clamp(3.6rem, 6vw, 6.5rem);
}

.space-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin: 34px 0;
  font-size: 1.05rem;
  line-height: 1.75;
}

.space-copy ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.space-copy li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.space-copy li::before {
  content: "•";
  margin-right: 12px;
  color: var(--red);
}

.basia {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  min-height: 900px;
  background: var(--ink);
  color: white;
  overflow: hidden;
}

.basia-portrait {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 900px;
  background: var(--mustard);
  overflow: hidden;
}

.basia-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(24, 21, 19, 0.2));
  pointer-events: none;
}

.basia-portrait > img {
  position: relative;
  z-index: 2;
  width: auto;
  height: 91%;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.portrait-backdrop {
  position: absolute;
  top: -7%;
  left: -3%;
  color: rgba(255, 255, 255, 0.25);
  font-family: Georgia, serif;
  font-size: 46rem;
  line-height: 1;
}

.basia-copy {
  align-self: center;
  max-width: 870px;
  padding: clamp(70px, 9vw, 145px) clamp(32px, 8vw, 130px);
}

.section-label-light span {
  color: var(--mustard);
}

.script-note {
  margin: 58px 0 14px;
  color: var(--mustard);
  font-size: 1.25rem;
}

.basia h2 {
  font-size: clamp(4.4rem, 8vw, 8.5rem);
}

.basia-lead {
  max-width: 680px;
  margin: 42px 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.65;
}

blockquote {
  max-width: 680px;
  margin: 42px 0;
  padding: 28px 0 28px 32px;
  border-left: 2px solid var(--red);
  color: rgba(255, 255, 255, 0.78);
  font-family: Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-style: italic;
  line-height: 1.5;
}

.basia-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.basia-facts div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.basia-facts strong {
  color: var(--mustard);
  font-family: Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
}

.basia-facts span,
.basia-footnote {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  line-height: 1.5;
}

.basia-footnote {
  max-width: 610px;
  margin: 30px 0 0;
}

.location {
  display: grid;
  grid-template-columns: minmax(380px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.location h2 {
  margin-top: 55px;
  font-size: clamp(4rem, 7vw, 7.3rem);
}

address {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: 45px;
  font-style: normal;
  line-height: 1.7;
}

address p {
  margin: 0;
}

address a:hover {
  color: var(--red);
}

.location-image {
  position: relative;
  min-height: 680px;
  margin: 0;
  overflow: hidden;
  background: #d9d2c6;
}

.location-image img {
  object-position: 49% center;
}

.location-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 18px 22px;
  background: rgba(24, 21, 19, 0.88);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 34px clamp(24px, 5vw, 82px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-mark {
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
  font-weight: 800;
}

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

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 220px 1fr;
  }

  .site-header nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

  .hero {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .hero-visual {
    min-height: 580px;
  }

  .offer-copy {
    padding: 24px;
  }

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

  .space-gallery {
    min-height: 680px;
  }

  .space-copy {
    max-width: 680px;
  }

  .basia-copy {
    padding-right: 48px;
    padding-left: 48px;
  }

  .basia-facts {
    grid-template-columns: 1fr;
  }

  .basia-facts div {
    flex-direction: row;
    align-items: baseline;
    gap: 18px;
  }
}

@media (max-width: 800px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 18px;
  }

  .brand {
    width: 170px;
  }

  .header-cta {
    padding: 11px 13px;
    font-size: 0.68rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 58px 20px 80px;
  }

  .hero h1 {
    font-size: clamp(4rem, 19vw, 6.2rem);
  }

  .hero-actions,
  .location-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 550px;
  }

  .hero-image-main {
    inset: 5% 1% 4% 2%;
  }

  .hero-image-small {
    width: 43%;
  }

  .hero-stamp {
    width: 82px;
    height: 82px;
  }

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

  .manifesto,
  .offers,
  .space,
  .location {
    padding: 78px 20px;
  }

  .manifesto h2 {
    font-size: clamp(3.1rem, 14vw, 5.4rem);
  }

  .manifesto-details {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
  }

  .offer-card:hover {
    transform: none;
  }

  .offers-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .space-gallery {
    min-height: 520px;
  }

  .space-image-workshop {
    inset: 0 3% 14% 0;
  }

  .space-image-circle {
    width: 54%;
  }

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

  .basia-portrait {
    min-height: 680px;
  }

  .basia-copy {
    padding: 76px 20px;
  }

  .basia h2 {
    font-size: clamp(4rem, 18vw, 6.5rem);
  }

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

  address {
    grid-template-columns: 1fr;
  }

  .location-image {
    min-height: 470px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .brand {
    width: 140px;
  }

  .header-cta {
    padding: 10px;
  }

  .header-cta span {
    display: none;
  }

  .hero-visual {
    min-height: 440px;
  }

  .offer-copy {
    min-height: auto;
  }

  .space-gallery {
    min-height: 410px;
  }

  .basia-portrait {
    min-height: 560px;
  }

  .location-image {
    min-height: 360px;
  }

  .location-image figcaption {
    flex-direction: column;
    gap: 5px;
  }
}

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

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