@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --ivory: #f8f3ed;
  --paper: #fffaf5;
  --linen: #e8dacd;
  --stone: #b9aa9d;
  --chocolate: #5b2f18;
  --espresso: #20110c;
  --soft: #827166;
  --champagne: #c5a17e;
  --line: rgba(91, 47, 24, .15);
  --shadow: 0 30px 100px rgba(32, 17, 12, .18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: Manrope, sans-serif;
  background: var(--ivory);
  color: var(--espresso);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: var(--ivory);
  transition: opacity .7s ease, visibility .7s ease;
}

.loader img {
  width: 155px;
  height: 155px;
  border-radius: 50%;
  object-fit: contain;
  animation: logoPulse 1.5s ease infinite alternate;
}

.loader span {
  position: absolute;
  bottom: 14%;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .68rem;
  color: var(--chocolate);
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

@keyframes logoPulse {
  from { transform: scale(.96); opacity: .75; }
  to { transform: scale(1); opacity: 1; }
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  width: 100%;
  padding: 18px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--paper);
  transition: background .35s ease, color .35s ease, border .35s ease, padding .35s ease;
}

.site-header.scrolled {
  background: rgba(248, 243, 237, .92);
  backdrop-filter: blur(18px);
  color: var(--espresso);
  border-bottom: 1px solid var(--line);
  padding-block: 12px;
}

.logo-mark img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--paper);
  padding: 8px;
  transition: .3s ease;
}

.site-header.scrolled .logo-mark img {
  width: 66px;
  height: 66px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .7rem;
  font-weight: 800;
}

.nav-button {
  border: 1px solid currentColor;
  padding: 11px 17px;
}

.menu-toggle {
  display: none;
  width: 36px;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 8px 0;
  background: currentColor;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--paper);
  padding: 150px 6vw 90px;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image img {
  height: 100%;
  filter: saturate(.92) contrast(1.02);
  transform: scale(1.04);
  animation: slowZoom 12s ease forwards;
}

@keyframes slowZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  background:
    linear-gradient(to bottom, rgba(32,17,12,.25), rgba(32,17,12,.68)),
    radial-gradient(circle at center, rgba(32,17,12,.05), rgba(32,17,12,.34));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1050px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--champagne);
  font-size: .72rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero .eyebrow {
  color: #ead0b7;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: .98;
  font-weight: 600;
}

h1 {
  font-size: clamp(3.7rem, 9vw, 9rem);
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(2.6rem, 6vw, 6.2rem);
}

h3 {
  font-size: 2.15rem;
}

.hero-copy {
  color: rgba(255,250,245,.84);
  font-size: 1.04rem;
  letter-spacing: .08em;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 800;
  transition: transform .25s ease, background .25s ease;
  cursor: pointer;
}

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

.button.primary {
  background: var(--paper);
  color: var(--espresso);
}

.button.secondary {
  border-color: rgba(255,250,245,.68);
  color: var(--paper);
}

.button.dark {
  width: 100%;
  background: var(--chocolate);
  color: var(--paper);
}

.scroll-cue {
  position: absolute;
  right: 6vw;
  bottom: 36px;
  z-index: 2;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .68rem;
  opacity: .75;
}

.statement {
  padding: 100px 8vw;
  text-align: center;
}

.statement p {
  max-width: 1100px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 6.5vw, 6.8rem);
  color: var(--chocolate);
  line-height: 1;
}

.feature-story {
  padding: 30px 6vw 115px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.feature-copy p:not(.eyebrow) {
  margin-top: 26px;
  color: var(--soft);
  max-width: 620px;
}

.feature-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-images img:first-child {
  height: 650px;
}

.feature-images img:last-child {
  height: 500px;
  margin-top: 95px;
}

.portfolio-section {
  padding: 110px 6vw;
  background: var(--paper);
}

.section-heading {
  max-width: 930px;
  margin-bottom: 55px;
}

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}

.portfolio-item {
  grid-column: span 2;
  border: 0;
  padding: 0;
  background: var(--linen);
  overflow: hidden;
  cursor: zoom-in;
}

.portfolio-item.large {
  grid-column: span 3;
  grid-row: span 2;
}

.portfolio-item.wide {
  grid-column: span 4;
}

.portfolio-item.tall {
  grid-row: span 2;
}

.portfolio-item img {
  height: 100%;
  transition: transform .65s ease, filter .65s ease;
  filter: saturate(.9);
}

.portfolio-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.05);
}

.experience {
  padding: 115px 6vw;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  background: var(--linen);
}

.experience-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.experience-steps {
  display: grid;
  gap: 18px;
}

.step {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.step span {
  display: block;
  color: var(--champagne);
  letter-spacing: .2em;
  font-weight: 800;
  margin-bottom: 16px;
}

.step p {
  color: var(--soft);
  margin-top: 10px;
}

.collections {
  padding: 115px 6vw;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.collection-card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.collection-card img {
  height: 370px;
}

.collection-card div {
  padding: 32px;
}

.label {
  color: var(--champagne);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .68rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.collection-card p:not(.label),
.collection-card li {
  color: var(--soft);
}

.collection-card ul {
  margin: 22px 0;
  padding-left: 18px;
}

.collection-card li {
  margin-top: 8px;
}

.collection-card a {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 800;
  color: var(--chocolate);
  border-bottom: 1px solid currentColor;
}

.event-collections {
  margin-top: 80px;
  padding: 56px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 55px;
  background: var(--espresso);
  color: var(--paper);
}

.event-collections p:not(.eyebrow) {
  color: rgba(255,250,245,.72);
  margin-top: 20px;
}

.event-list {
  display: grid;
  gap: 18px;
}

.event-list div {
  padding: 24px;
  border: 1px solid rgba(255,250,245,.15);
}

.event-list span {
  color: var(--champagne);
  font-weight: 800;
  letter-spacing: .18em;
}

.collection-note {
  margin-top: 28px;
  color: var(--soft);
  text-align: center;
}

.full-bleed {
  min-height: 82vh;
  position: relative;
  display: grid;
  place-items: center;
  color: var(--paper);
  text-align: center;
  overflow: hidden;
}

.full-bleed img {
  position: absolute;
  inset: 0;
  height: 100%;
  filter: brightness(.62) saturate(.9);
}

.full-bleed div {
  position: relative;
  z-index: 2;
  padding: 6vw;
}

.full-bleed p {
  max-width: 1000px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 1;
}

.about {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  background: var(--paper);
}

.about-image img {
  height: 780px;
}

.about-copy {
  padding: 110px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-copy p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--soft);
}

.text-link {
  margin-top: 32px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 800;
  color: var(--chocolate);
  border-bottom: 1px solid currentColor;
}

.inquire {
  padding: 115px 6vw;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
}

.inquire-copy p:not(.eyebrow) {
  color: var(--soft);
  margin-top: 24px;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-links a {
  color: var(--chocolate);
  font-weight: 800;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.inquiry-form {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .7rem;
  font-weight: 800;
  color: var(--chocolate);
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--ivory);
  padding: 15px;
  font: inherit;
  color: var(--espresso);
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--champagne);
}

textarea {
  resize: vertical;
}

.inquiry-form small {
  display: block;
  margin-top: 12px;
  color: var(--soft);
}

.whatsapp-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  background: var(--chocolate);
  color: var(--paper);
  padding: 13px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 800;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  background: rgba(12, 7, 5, .94);
  padding: 36px;
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(1160px, 86vw);
  max-height: 88vh;
  object-fit: contain;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.lightbox-close {
  top: 18px;
  right: 28px;
  font-size: 3rem;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  font-size: 5rem;
  opacity: .8;
}

.lightbox-arrow.prev {
  left: 28px;
}

.lightbox-arrow.next {
  right: 28px;
}

.footer {
  padding: 38px 6vw;
  background: var(--paper);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--soft);
}

.footer img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: contain;
  margin-bottom: 12px;
}

.footer a {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .feature-story,
  .experience,
  .event-collections,
  .about,
  .inquire {
    grid-template-columns: 1fr;
  }

  .experience-intro {
    position: static;
  }

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

  .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .portfolio-item,
  .portfolio-item.large,
  .portfolio-item.wide {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 5vw;
  }

  .logo-mark img {
    width: 68px;
    height: 68px;
  }

  .site-header.scrolled .logo-mark img {
    width: 58px;
    height: 58px;
  }

  .menu-toggle {
    display: block;
    z-index: 60;
  }

  .nav {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 28px 5vw;
    background: var(--ivory);
    color: var(--espresso);
    border-bottom: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .hero {
    text-align: left;
    place-items: end start;
    padding: 135px 5vw 82px;
  }

  h1 {
    font-size: clamp(3.5rem, 17vw, 5.8rem);
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .statement,
  .portfolio-section,
  .experience,
  .collections,
  .inquire {
    padding: 78px 5vw;
  }

  .feature-story {
    padding: 10px 5vw 78px;
  }

  .feature-images {
    grid-template-columns: 1fr;
  }

  .feature-images img:first-child,
  .feature-images img:last-child {
    height: 460px;
    margin-top: 0;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 410px;
  }

  .portfolio-item,
  .portfolio-item.large,
  .portfolio-item.wide,
  .portfolio-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .event-collections {
    padding: 30px;
  }

  .about-image img {
    height: 480px;
  }

  .about-copy {
    padding: 78px 5vw;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .inquiry-form {
    padding: 26px;
  }

  .lightbox-arrow {
    font-size: 3.4rem;
  }

  .lightbox-arrow.prev { left: 12px; }
  .lightbox-arrow.next { right: 12px; }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 5vw;
  }
}
