/* Palladio Bags - Temporary offline landing page */

:root {
  --bg: #f1ede6;
  --paper: #f8f5ef;
  --ink: #171512;
  --muted: #6f685f;
  --line: rgba(23, 21, 18, 0.16);
  --accent: #756555;
  --dark: #171512;
  --light: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

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

.page-shell {
  width: 100%;
  overflow: hidden;
}


/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 32px 5vw 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(135deg, #e8e0d5 0%, #f4f0e9 48%, #d7cdc0 100%);
  background-size: 88px 88px, 88px 88px, cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 48%, rgba(255,255,255,.6), transparent 24%),
    linear-gradient(90deg, transparent 0 63%, rgba(255,255,255,.22) 63% 63.15%, transparent 63.15%);
}

.hero__top,
.hero__content,
.hero__signature {
  position: relative;
  z-index: 2;
}

.hero__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  letter-spacing: .18em;
  line-height: 1;
}

.brand__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: .08em;
}

.brand__sub {
  margin-top: 7px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .58em;
  padding-left: .2em;
}

.hero__status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.hero__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero__content {
  width: min(900px, 78vw);
  margin: 12vh 0 12vh 8vw;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .24em;
}

.hero h1 {
  margin: 0;
  max-width: 980px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(58px, 7.6vw, 118px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.035em;
}

.hero h1 span {
  display: block;
  margin-left: 10vw;
  font-style: italic;
  font-weight: 400;
}

.hero__lead {
  max-width: 600px;
  margin: 42px 0 0 10vw;
  color: #4b4640;
  font-size: 16px;
  line-height: 1.8;
}

.hero__lead strong {
  font-weight: 500;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 34px 0 0 10vw;
}

.btn {
  min-width: 180px;
  padding: 15px 22px;
  border: 1px solid var(--dark);
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  transition: all .2s ease;
}

.btn--primary {
  background: var(--dark);
  color: var(--light);
}

.btn--primary:hover {
  background: transparent;
  color: var(--dark);
}

.btn--ghost:hover {
  background: var(--dark);
  color: var(--light);
}

.hero__signature {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #514b44;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 15px;
  font-style: italic;
}

.hero__ornament {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(23, 21, 18, .13);
  pointer-events: none;
}

.hero__ornament--one {
  width: 36vw;
  height: 58vh;
  right: -6vw;
  top: 18vh;
  border-radius: 48% 48% 0 0;
}

.hero__ornament--two {
  width: 23vw;
  height: 42vh;
  right: 3vw;
  top: 26vh;
  border-radius: 48% 48% 0 0;
}


/* INTRO */

.intro {
  padding: 130px 8vw;
  background: var(--paper);
}

.section-label {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 8vw;
  margin-top: 66px;
}

.intro h2,
.offline h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.025em;
}

.intro__copy {
  align-self: end;
  max-width: 570px;
}

.intro__copy p {
  margin: 0 0 22px;
  color: #575149;
  font-size: 15px;
  line-height: 1.9;
}

.intro__copy strong {
  font-weight: 500;
}


/* VALUES */

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--dark);
  color: var(--light);
}

.value-card {
  min-height: 370px;
  padding: 56px 4vw;
  border-right: 1px solid rgba(255,255,255,.16);
}

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

.value-card__number {
  display: block;
  margin-bottom: 90px;
  color: rgba(255,255,255,.48);
  font-size: 10px;
  letter-spacing: .18em;
}

.value-card h3 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  font-weight: 400;
}

.value-card p {
  max-width: 360px;
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: 13px;
  line-height: 1.8;
}


/* CONTACT */

.offline {
  padding: 130px 8vw;
  background: #d9d0c4;
}

.offline__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.offline__text {
  max-width: 610px;
  margin: 34px auto;
  color: #504941;
  font-size: 15px;
  line-height: 1.8;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr 36px;
  align-items: center;
  gap: 20px;
  max-width: 680px;
  margin: 50px auto 0;
  padding: 24px 26px;
  border-top: 1px solid var(--dark);
  border-bottom: 1px solid var(--dark);
  text-align: left;
  transition: background .2s ease, color .2s ease;
}

.contact-card:hover {
  background: var(--dark);
  color: var(--light);
}

.contact-card__label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.contact-card__value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 4vw, 46px);
}

.contact-card__arrow {
  font-size: 24px;
  text-align: right;
}

.offline__hours {
  margin-top: 18px;
  color: #665f57;
  font-size: 11px;
  letter-spacing: .08em;
}


/* FOOTER */

.footer {
  padding: 70px 8vw 38px;
  background: var(--paper);
  text-align: center;
}

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

.footer p {
  margin: 8px 0;
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-style: italic;
}

.footer__small {
  margin-top: 46px !important;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: "Inter", Arial, sans-serif !important;
  font-size: 9px !important;
  font-style: normal !important;
  text-transform: uppercase;
  letter-spacing: .17em;
}


/* RESPONSIVE */

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 26px 24px 32px;
  }

  .hero__top {
    align-items: center;
  }

  .hero__status {
    max-width: 160px;
    text-align: right;
  }

  .hero__content {
    width: 100%;
    margin: 16vh 0 14vh;
  }

  .hero h1 span,
  .hero__lead,
  .hero__actions {
    margin-left: 0;
  }

  .hero h1 span {
    margin-top: 8px;
  }

  .hero__signature {
    flex-direction: column;
    gap: 7px;
  }

  .hero__ornament--one {
    width: 62vw;
    height: 48vh;
    right: -18vw;
  }

  .hero__ornament--two {
    width: 40vw;
    height: 34vh;
    right: -2vw;
  }

  .intro {
    padding: 90px 24px;
  }

  .intro__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

  .value-card {
    min-height: auto;
    padding: 46px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .value-card__number {
    margin-bottom: 50px;
  }

  .offline {
    padding: 90px 24px;
  }

  .contact-card {
    grid-template-columns: 1fr 34px;
  }

  .contact-card__label {
    grid-column: 1 / -1;
  }

  .footer {
    padding: 58px 24px 30px;
  }
}

@media (max-width: 540px) {
  .brand__name {
    font-size: 27px;
  }

  .hero__status {
    font-size: 9px;
    letter-spacing: .1em;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero__lead {
    margin-top: 30px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .contact-card__value {
    font-size: 28px;
  }
}
