/* ============================================
   AVORA — Design System
   ============================================ */
:root {
  /* Palette — warm Mediterranean, editorial */
  --avora-bone: #f3ede1;        /* primary background — warm cream */
  --avora-paper: #faf6ec;       /* lighter cream */
  --avora-sand: #e8dfcd;        /* divider / soft surface */
  --avora-clay: #c08660;        /* terracotta accent */
  --avora-rust: #a8543a;        /* deep clay */
  --avora-ink: #2a2620;         /* primary text — warm black */
  --avora-stone: #6b6359;       /* secondary text */
  --avora-line: rgba(42,38,32,0.18);
  --avora-line-soft: rgba(42,38,32,0.10);

  /* Type */
  --serif: 'PP Eiko', 'Times New Roman', serif;
  --sans:  'ABC Favorit', ui-sans-serif, system-ui, sans-serif;

  /* Layout */
  --col-pad: clamp(20px, 4vw, 56px);
  --max:    1440px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--avora-bone);
  color: var(--avora-ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Type primitives */
.serif { font-family: var(--serif); font-weight: 200; letter-spacing: -0.01em; }
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 300; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--avora-stone);
}
.eyebrow .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--avora-clay); margin-right: 10px; vertical-align: middle;
  transform: translateY(-1px);
}

/* Layout helpers */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--col-pad);
  padding-right: var(--col-pad);
}
.section { padding: clamp(80px, 10vw, 140px) 0; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--col-pad);
  background: rgba(243, 237, 225, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--avora-line-soft);
}
.nav__logo {
  font-family: var(--serif); font-weight: 200; font-size: 22px;
  letter-spacing: 0.16em; color: var(--avora-ink);
}
.nav__links {
  display: flex; gap: 32px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 400;
}
.nav__links a { color: var(--avora-ink); opacity: .82; transition: opacity .2s; }
.nav__links a:hover { opacity: 1; }
.nav__cta {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid var(--avora-ink); padding: 9px 16px; border-radius: 999px;
  transition: background .2s, color .2s;
}
.nav__cta:hover { background: var(--avora-ink); color: var(--avora-bone); }
@media (max-width: 800px) {
  .nav__links { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding-top: 120px;
  padding-bottom: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}
.hero__left {
  padding: 60px var(--col-pad) 80px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero__top { max-width: 580px; }
.hero h1 {
  font-family: var(--serif); font-weight: 200;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 28px 0 0;
  color: var(--avora-ink);
}
.hero h1 em {
  font-style: italic; font-weight: 300;
  color: var(--avora-rust);
}
.hero__sub {
  margin-top: 36px;
  font-size: 17px; line-height: 1.55; max-width: 440px;
  color: var(--avora-stone);
}
.hero__bottom {
  display: flex; justify-content: space-between; align-items: end;
  gap: 24px; margin-top: 60px;
  border-top: 1px solid var(--avora-line);
  padding-top: 20px;
}
.hero__meta { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--avora-stone); }
.hero__meta strong { display: block; font-weight: 500; color: var(--avora-ink); margin-bottom: 4px; }
.hero__hash {
  font-family: var(--serif); font-style: italic; font-size: 18px;
  color: var(--avora-clay);
}

.hero__right {
  position: relative;
  background: var(--avora-sand);
  overflow: hidden;
}
.hero__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('../assets/photos-web/01_madetodisconnet.jpg');
}
.hero__tag {
  position: absolute; bottom: 28px; right: 28px;
  background: var(--avora-bone); color: var(--avora-ink);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__right { height: 80vh; min-height: 480px; }
}

/* Marquee strip below hero */
.marquee {
  border-top: 1px solid var(--avora-line);
  border-bottom: 1px solid var(--avora-line);
  background: var(--avora-bone);
  overflow: hidden;
  padding: 18px 0;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex; gap: 56px;
  animation: scroll 40s linear infinite;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 24px; color: var(--avora-ink);
}
.marquee__track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee__track svg { color: var(--avora-clay); flex-shrink: 0; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 64px;
  align-items: end;
}
.section-head__num {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 18px; color: var(--avora-clay);
}
.section-head h2 {
  font-family: var(--serif); font-weight: 200;
  font-size: clamp(36px, 5.5vw, 76px);
  line-height: 1; letter-spacing: -0.02em;
  margin: 12px 0 0;
}
.section-head h2 em { font-style: italic; font-weight: 300; color: var(--avora-rust); }
.section-head__lede {
  font-size: 17px; line-height: 1.6; color: var(--avora-stone);
  max-width: 520px;
}
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  background: var(--avora-paper);
}
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start;
}
.about__media {
  aspect-ratio: 4/5;
  background: var(--avora-sand) url('../assets/photos-web/02_theartofshowing.jpg') center/cover;
}
.about__copy { padding-top: 32px; }
.about__copy p {
  font-family: var(--serif); font-weight: 200;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.35;
  letter-spacing: -0.01em; color: var(--avora-ink);
  margin: 0 0 28px;
}
.about__copy p em { font-style: italic; color: var(--avora-rust); }
.about__small {
  font-family: var(--sans) !important;
  font-size: 15px !important; line-height: 1.65 !important;
  color: var(--avora-stone) !important;
}

.values {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--avora-line);
  border-top: 1px solid var(--avora-line);
  border-bottom: 1px solid var(--avora-line);
}
.value {
  background: var(--avora-paper);
  padding: 36px 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.value__icon {
  width: 44px; height: 44px;
  filter: brightness(0) saturate(100%);
  opacity: 0.78;
}
.value__title {
  font-family: var(--serif); font-weight: 200;
  font-size: 22px; line-height: 1.1; letter-spacing: -0.01em;
  margin: 0;
}
.value__title em { font-style: italic; color: var(--avora-clay); }
.value__desc { font-size: 13px; color: var(--avora-stone); line-height: 1.55; margin: 0; }
@media (max-width: 800px) {
  .about__grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   COLLECTIONS
   ============================================ */
.collections {
  display: flex; flex-direction: column; gap: 0;
}
.collection {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  border-top: 1px solid var(--avora-line);
}
.collection:last-of-type { border-bottom: 1px solid var(--avora-line); }
.collection--reverse { direction: rtl; }
.collection--reverse > * { direction: ltr; }

.collection__media {
  background-size: cover; background-position: center;
  background-color: var(--avora-sand);
  position: relative;
}
.collection__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(42,38,32,0.18));
}
.collection__copy {
  padding: clamp(48px, 7vw, 100px) clamp(32px, 6vw, 90px);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--avora-bone);
}
.collection--essence .collection__copy { background: var(--avora-paper); }
.collection--kids .collection__copy { background: #ede4d2; }

.collection__num {
  font-family: var(--serif); font-style: italic; font-size: 16px;
  color: var(--avora-clay); margin-bottom: 18px;
}
.collection__name {
  font-family: var(--serif); font-weight: 200;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.95; letter-spacing: -0.025em;
  margin: 0 0 28px;
}
.collection__name em { font-style: italic; font-weight: 300; color: var(--avora-rust); }
.collection__desc {
  font-size: 16px; line-height: 1.6; color: var(--avora-stone);
  max-width: 460px; margin: 0 0 32px;
}
/* Finishes — swatch row inside collection */
.finishes {
  margin-top: 32px;
  margin-bottom: 32px;
}
.finishes__label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--avora-stone);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.finishes__label::after {
  content: ''; flex: 1; height: 1px; background: var(--avora-line);
}
.finishes__row {
  display: flex; flex-wrap: wrap; gap: 18px 14px;
}
.swatch {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  width: 64px;
}
.swatch__chip {
  width: 100%; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid var(--avora-line);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.06);
  position: relative;
}
.swatch__chip--ring::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid var(--avora-ink);
}
.swatch__name {
  font-size: 10px; letter-spacing: 0.06em; color: var(--avora-stone);
  line-height: 1.2; text-align: left;
}
.swatch__name em {
  font-family: var(--serif); font-style: italic; font-size: 11px;
  color: var(--avora-ink); display: block;
}

/* Specs */
.collection__specs {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--avora-line);
  margin-top: auto;
}
.spec {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--avora-stone);
}
.spec strong {
  display: block; font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 22px; letter-spacing: 0; text-transform: none;
  color: var(--avora-ink); margin-top: 6px;
}
.collection__cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--avora-ink); align-self: flex-start;
  margin-bottom: 36px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--avora-ink);
}
.collection__cta:hover { color: var(--avora-rust); border-color: var(--avora-rust); }

@media (max-width: 800px) {
  .collection { grid-template-columns: 1fr; min-height: auto; }
  .collection__media { aspect-ratio: 4/3; }
  .collection--reverse { direction: ltr; }
}

/* ============================================
   CUSTOM BRANDING (B2B)
   ============================================ */
.custom {
  background: var(--avora-ink);
  color: var(--avora-bone);
  position: relative; overflow: hidden;
}
.custom .eyebrow { color: rgba(243,237,225,0.6); }
.custom .eyebrow .dot { background: var(--avora-clay); }
.custom__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.custom__copy h2 {
  font-family: var(--serif); font-weight: 200;
  font-size: clamp(40px, 6vw, 80px); line-height: 1; letter-spacing: -0.02em;
  margin: 24px 0 32px; color: var(--avora-bone);
}
.custom__copy h2 em { font-style: italic; color: var(--avora-clay); }
.custom__copy p {
  font-size: 17px; line-height: 1.6;
  color: rgba(243,237,225,0.78); max-width: 480px;
  margin: 0 0 24px;
}
.custom__list {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: flex; flex-direction: column; gap: 14px;
}
.custom__list li {
  display: flex; align-items: baseline; gap: 16px;
  font-size: 15px; color: var(--avora-bone);
  padding: 12px 0;
  border-bottom: 1px solid rgba(243,237,225,0.12);
}
.custom__list li::before {
  content: counter(li, decimal-leading-zero);
  counter-increment: li;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 14px; color: var(--avora-clay);
  min-width: 36px;
}
.custom__list { counter-reset: li; }

.custom__media {
  aspect-ratio: 1/1.1;
  background: url('../assets/photos-web/06_yourbrandtolast.jpg') center/cover;
}
@media (max-width: 800px) {
  .custom__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  background: var(--avora-bone);
  border-top: 1px solid var(--avora-line);
}
.process__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--avora-line);
  margin-top: 64px;
  border-top: 1px solid var(--avora-line);
  border-bottom: 1px solid var(--avora-line);
}
.process__step {
  background: var(--avora-bone);
  padding: 0;
  display: flex; flex-direction: column;
}
.process__media {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
}
.process__body {
  padding: 28px 24px 32px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.process__num {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 14px; color: var(--avora-clay);
}
.process__title {
  font-family: var(--serif); font-weight: 200;
  font-size: 26px; line-height: 1.05; letter-spacing: -0.01em;
  margin: 0;
}
.process__desc {
  font-size: 13px; line-height: 1.55; color: var(--avora-stone);
  margin: 4px 0 0;
}
@media (max-width: 800px) {
  .process__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   PULL QUOTE — cinematic full-bleed
   ============================================ */
.pullquote {
  position: relative;
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: #2a2620 url('../assets/photos-web/IMG_0589.jpg') center/cover;
  color: var(--avora-bone);
  padding: clamp(60px, 10vw, 140px) var(--col-pad);
  overflow: hidden;
}
.pullquote::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,12,0.45), rgba(20,17,12,0.6));
}
.pullquote__inner {
  position: relative; z-index: 1; max-width: 920px;
}
.pullquote__mark {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 64px; line-height: 1; color: var(--avora-clay);
  margin-bottom: 18px;
}
.pullquote q {
  display: block; quotes: none;
  font-family: var(--serif); font-weight: 200;
  font-size: clamp(34px, 5vw, 72px); line-height: 1.12;
  letter-spacing: -0.02em;
}
.pullquote q em { font-style: italic; font-weight: 300; color: var(--avora-clay); }
.pullquote__attr {
  margin-top: 36px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(243,237,225,0.7);
}

/* ============================================
   SUSTAINABILITY
   ============================================ */
.sustain {
  background: var(--avora-paper);
}
.sustain__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.sustain__media {
  aspect-ratio: 4/5;
  background: url('../assets/photos-web/08_honestabout.jpg') center/cover;
}
.sustain__points {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px 28px;
  margin-top: 32px;
}
.sustain__point {
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--avora-line);
}
.sustain__icon {
  width: 36px; height: 36px;
  filter: brightness(0) saturate(100%);
  opacity: 0.78;
}
.sustain__point h4 {
  font-family: var(--serif); font-weight: 200;
  font-size: 20px; letter-spacing: -0.01em; margin: 0;
}
.sustain__point h4 em { font-style: italic; color: var(--avora-clay); }
.sustain__point p {
  font-size: 13.5px; line-height: 1.6; color: var(--avora-stone); margin: 0;
}
@media (max-width: 800px) {
  .sustain__grid { grid-template-columns: 1fr; gap: 48px; }
  .sustain__points { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================================
   GALLERY STRIP
   ============================================ */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--avora-bone);
}
.gallery__cell {
  aspect-ratio: 3/4;
  background-size: cover; background-position: center;
}
@media (max-width: 800px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--avora-paper);
}
.contact__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.contact h2 {
  font-family: var(--serif); font-weight: 200;
  font-size: clamp(48px, 7vw, 96px); line-height: 0.95; letter-spacing: -0.025em;
  margin: 24px 0 32px;
}
.contact h2 em { font-style: italic; color: var(--avora-rust); }
.contact__intro {
  font-family: var(--serif); font-weight: 200;
  font-size: 22px; line-height: 1.4; color: var(--avora-stone);
  max-width: 480px;
}
.contact__details {
  margin-top: 48px;
  font-size: 14px; color: var(--avora-stone);
  display: flex; flex-direction: column; gap: 24px;
}
.contact__details strong {
  display: block; font-weight: 500; color: var(--avora-ink);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 8px;
}

.form {
  background: var(--avora-bone);
  padding: 40px;
  border: 1px solid var(--avora-line);
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label {
  display: block; margin-bottom: 18px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--avora-stone);
}
.form input,
.form textarea,
.form select {
  display: block; width: 100%; margin-top: 8px;
  background: transparent;
  border: none; border-bottom: 1px solid var(--avora-line);
  padding: 10px 0;
  font-family: var(--sans); font-size: 15px; color: var(--avora-ink);
  outline: none; transition: border-color .2s;
}
.form input:focus,
.form textarea:focus,
.form select:focus { border-color: var(--avora-ink); }
.form textarea { resize: vertical; min-height: 90px; }
.form__actions { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; }
.form__submit {
  background: var(--avora-ink); color: var(--avora-bone);
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 14px 28px; border: none; border-radius: 999px;
  cursor: pointer; transition: background .2s;
}
.form__submit:hover { background: var(--avora-rust); }
.form__note {
  font-size: 12px; color: var(--avora-stone); font-style: italic;
  font-family: var(--serif);
}
@media (max-width: 800px) {
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .form { padding: 24px; }
  .form .row { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--avora-ink); color: var(--avora-bone);
  padding: 80px var(--col-pad) 32px;
}
.footer__top {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(243,237,225,0.15);
}
.footer__brand {
  font-family: var(--serif); font-weight: 200;
  font-size: clamp(64px, 10vw, 140px);
  line-height: 0.85; letter-spacing: -0.03em;
  margin: 0;
}
.footer__brand em { font-style: italic; color: var(--avora-clay); }
.footer__col h4 {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(243,237,225,0.6); margin: 0 0 18px; font-weight: 500;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: var(--avora-bone); opacity: 0.85; font-size: 14px; }
.footer__col a:hover { opacity: 1; color: var(--avora-clay); }
.footer__bottom {
  max-width: var(--max); margin: 0 auto;
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(243,237,225,0.5);
}
.footer__hash {
  font-family: var(--serif); font-style: italic; font-size: 16px;
  letter-spacing: 0; text-transform: none; color: var(--avora-clay);
}
@media (max-width: 800px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}
