@import url("./utils/private.css");

:root {
  --color-black: #090909;
  --color-white: #f2eee8;
  --color-muted: rgba(242, 238, 232, 0.72);
  --color-gold: #c8b89f;
  --space-page: 6%;
  --header-height: 78px;
  --font-serif: Georgia, "Times New Roman", serif;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.8s ease;
}

/* BASE */

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

body {
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-serif);
}

img {
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  padding: 0 var(--space-page);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: linear-gradient(
    to bottom,
    rgba(9, 9, 9, 0.82),
    rgba(9, 9, 9, 0)
  );
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.is-scrolled {
  background: rgba(9, 9, 9, 0.86);
  backdrop-filter: blur(14px);
}

.brand {
  color: var(--color-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  font-size: 20px;
  letter-spacing: 2px;
}

.brand-name {
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  opacity: 0.7;
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  opacity: 0.85;
}

.main-nav a:hover {
  opacity: 1;
}

/* TYPOGRAPHY */

.subtitle {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: var(--color-gold);
}

h1 {
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.95;
  font-weight: normal;
  margin-bottom: 24px;
}

.button {
  display: inline-block;
  color: var(--color-white);
  text-decoration: none;
  border: 1px solid rgba(242, 238, 232, 0.55);
  padding: 14px 26px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background var(--transition-medium), color var(--transition-medium);
}

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

/* ANIMATIONS */

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

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HOME */

.hero {
  min-height: 100vh;
  position: relative;
  background-image: url("../assets/images/home.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 8%;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.28)
  );
}

.hero-content {
  position: relative;
  max-width: 760px;
  z-index: 2;
  animation: fadeUp 1.4s ease forwards;
}

.hero-content h1 {
  font-size: clamp(48px, 8vw, 108px);
}

.hero-quote {
  max-width: 520px;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.45;
  color: var(--color-muted);
  margin-bottom: 38px;
}

.selected-works {
  padding: 120px var(--space-page) 40px;
  background: var(--color-black);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 70px;
}

.section-intro h2 {
  font-size: clamp(42px, 6vw, 86px);
  font-weight: normal;
  line-height: 1;
}

.featured-work {
  position: relative;
  display: block;
  min-height: 80vh;
  margin-bottom: 40px;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-white);
}

.featured-work img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.featured-work::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.18)
  );
}

.featured-overlay {
  position: absolute;
  left: 60px;
  bottom: 60px;
  z-index: 2;
  max-width: 500px;
}

.featured-overlay span,
.work-cover-content span {
  color: var(--color-gold);
  letter-spacing: 3px;
  font-size: 13px;
}

.featured-overlay h3 {
  font-size: clamp(48px, 6vw, 90px);
  font-weight: normal;
  margin: 10px 0;
}

.featured-overlay p {
  color: var(--color-muted);
  font-size: 20px;
  line-height: 1.5;
}

.featured-work:hover img {
  transform: scale(1.04);
}

/* PAGE HERO */

.page-hero {
  padding: 220px var(--space-page) 120px;
  max-width: 900px;
}

.page-hero h1 {
  font-size: clamp(70px, 10vw, 140px);
  font-weight: normal;
  margin: 18px 0;
}

.page-hero p {
  font-size: 22px;
  color: var(--color-muted);
  line-height: 1.6;
  max-width: 700px;
}

/* WORK */

.work-covers {
  padding: 120px var(--space-page) 90px;
}

.work-cover,
.work-cover:visited,
.work-cover:hover,
.work-cover:active {
  position: relative;
  display: block;
  min-height: 78vh;
  margin-bottom: 70px;
  overflow: hidden;
  color: var(--color-white);
  text-decoration: none;
  background: #111;
}

.work-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  transition: transform 1.2s ease, opacity 1.2s ease;
}

.work-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.14)
  );
}

.work-cover-content {
  position: absolute;
  left: 60px;
  bottom: 60px;
  z-index: 2;
  max-width: 620px;
}

.work-cover-content h2 {
  color: var(--color-white);
  font-size: clamp(52px, 7vw, 110px);
  font-weight: normal;
  line-height: 0.95;
  margin: 14px 0;
}

.work-cover-content p {
  color: var(--color-muted);
  font-size: 20px;
  line-height: 1.5;
}

.work-cover:hover img {
  transform: scale(1.04);
  opacity: 0.96;
}

/* COLLECTIONS */

.collection-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--color-white);
}

.collection-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.collection-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.18)
  );
}

.collection-hero-content {
  position: absolute;
  left: var(--space-page);
  bottom: 90px;
  z-index: 2;
  max-width: 760px;
}

.collection-hero-content h1 {
  font-size: clamp(58px, 8vw, 128px);
  font-weight: normal;
  line-height: 0.95;
  margin: 18px 0;
}

.collection-hero-content p:last-child {
  color: var(--color-muted);
  font-size: 22px;
  line-height: 1.5;
}

.fine-art-story {
  padding: 130px var(--space-page);
  background: var(--color-black);
}

.story-text {
  max-width: 760px;
  margin: 0 auto 120px;
}

.story-text p {
  font-size: clamp(28px, 4vw, 58px);
  line-height: 1.15;
  color: var(--color-white);
}

.story-image {
  margin: 0 auto 120px;
}

.story-image img {
  width: 100%;
  display: block;
}

.story-wide {
  max-width: 1600px;
}

.story-centered {
  max-width: 900px;
}

.story-portrait {
  max-width: 760px;
}

/* ABOUT */

.about-hero {
  padding: 220px var(--space-page) 140px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content h1 {
  font-size: clamp(32px, 3.6vw, 56px);
  font-weight: normal;
  line-height: 1.06;
  margin: 24px 0 48px;
  max-width: 900px;
}

.about-text {
  max-width: 680px;
}

.about-text p {
  font-size: 24px;
  line-height: 1.8;
  color: var(--color-muted);
  margin-bottom: 32px;
}

.about-story {
  padding: 0 var(--space-page) 160px;
}

.about-story-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-story-content p {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.45;
  margin-bottom: 60px;
}

.about-closing {
  padding: 80px var(--space-page) 180px;
  text-align: center;
}

.about-closing p {
  font-size: clamp(42px, 5vw, 82px);
  line-height: 1.1;
  color: var(--color-gold);
}

/* CONTACT */

.contact-page {
  min-height: 100vh;
  padding: 220px var(--space-page) 140px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-page h1 {
  font-size: clamp(42px, 5vw, 82px);
  font-weight: normal;
  line-height: 1.05;
  margin: 24px 0 42px;
  max-width: 900px;
}

.contact-intro {
  max-width: 640px;
  color: var(--color-muted);
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 90px;
}

.contact-links {
  display: grid;
  gap: 34px;
  max-width: 760px;
}

.contact-links a,
.contact-links div {
  color: var(--color-white);
  text-decoration: none;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.2;
}

.contact-links span {
  display: block;
  color: var(--color-gold);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* FOOTER */

.site-footer {
  padding: 70px var(--space-page);
  background: var(--color-black);
  border-top: 1px solid rgba(242, 238, 232, 0.1);
}

.footer-label {
  color: var(--color-gold);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-end;
}

.footer-main h2 {
  max-width: 760px;
  font-size: clamp(40px, 5vw, 82px);
  font-weight: normal;
  line-height: 1;
}

.footer-links {
  display: flex;
  gap: 28px;
  white-space: nowrap;
}

.footer-links a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.75;
}

.footer-copy {
  margin-top: 70px;
  color: var(--color-muted);
  font-size: 13px;
}

/* AWARDS */

.awards-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px var(--space-page) 160px;
}

.awards-section h2 {
  max-width: 900px;
  font-size: clamp(34px, 4vw, 68px);
  font-weight: normal;
  line-height: 1.05;
  margin: 24px 0 50px;
}

.awards-text {
  max-width: 760px;
}

.awards-text p {
  color: var(--color-muted);
  font-size: 22px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.awards-gallery {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.awards-gallery figure {
  margin: 0;
}

.awards-gallery img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.awards-gallery figcaption {
   margin-top: 20px;
  color: var(--color-muted);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .8;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .site-header {
    position: absolute;
    height: auto;
    padding: 28px 6% 18px;
    flex-direction: column;
    gap: 16px;
  }

  .brand {
    justify-content: center;
  }

  .brand-mark {
    font-size: 18px;
  }

  .brand-name {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .main-nav {
    gap: 12px 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav a {
    font-size: 9px;
    letter-spacing: 1.8px;
  }

  .hero {
    min-height: 100vh;
    padding: 190px 7% 70px;
    align-items: flex-end;
  }

  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.25)
    );
  }

  .hero-content h1 {
    font-size: clamp(46px, 14vw, 66px);
    line-height: 0.95;
  }

  .hero-quote {
    font-size: 20px;
    line-height: 1.45;
  }

  .selected-works {
    padding: 80px 6% 70px;
  }

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

  .section-intro h2 {
    font-size: clamp(34px, 9vw, 52px);
  }

  .featured-work {
    min-height: 68vh;
    margin-bottom: 34px;
  }

  .featured-overlay,
  .work-cover-content {
    left: 28px;
    bottom: 34px;
    right: 28px;
  }

  .featured-overlay h3,
  .work-cover-content h2 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .featured-overlay p,
  .work-cover-content p {
    font-size: 19px;
  }

  .work-covers {
    padding: 120px 6% 50px;
  }

  .work-cover {
    min-height: 82vh;
    margin-bottom: 42px;
  }

  .work-cover:last-child {
    margin-bottom: 0;
  }

  .work-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-hero {
    padding: 180px 7% 90px;
  }

  .page-hero h1 {
    font-size: clamp(52px, 15vw, 78px);
  }

  .page-hero p {
    font-size: 20px;
    line-height: 1.55;
  }

  .collection-hero-content {
    left: 7%;
    right: 7%;
    bottom: 70px;
  }

  .collection-hero-content h1 {
    font-size: clamp(52px, 14vw, 82px);
  }

  .collection-hero-content p:last-child {
    font-size: 20px;
  }

  .fine-art-story {
    padding: 90px 7%;
  }

  .story-text {
    margin-bottom: 80px;
  }

  .story-text p {
    font-size: clamp(28px, 8vw, 42px);
  }

  .story-image {
    margin-bottom: 80px;
  }

  .about-hero {
    padding: 165px 7% 76px;
  }

  .about-content h1 {
    font-size: clamp(34px, 8.8vw, 46px);
    line-height: 1.08;
    max-width: 100%;
  }

  .about-text p {
    font-size: 18px;
    line-height: 1.65;
  }

  .about-story {
    padding: 0 7% 100px;
  }

  .about-story-content p {
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.35;
    margin-bottom: 42px;
  }

  .about-closing {
    padding: 60px 7% 120px;
  }

  .about-closing p {
    font-size: clamp(38px, 11vw, 58px);
  }

  .contact-page {
    padding: 180px 7% 90px;
  }

  .contact-page h1 {
    font-size: clamp(40px, 10vw, 54px);
  }

  .contact-intro {
    font-size: 20px;
    line-height: 1.55;
    margin-bottom: 64px;
  }

  .contact-links {
    gap: 30px;
  }

  .contact-links a,
  .contact-links div {
    font-size: clamp(20px, 5.2vw, 28px);
    line-height: 1.25;
    word-break: break-word;
  }

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

  .footer-links {
    flex-direction: column;
    gap: 16px;
  }

  .awards-section {
  padding: 20px 7% 110px;
}

.awards-section h2 {
  font-size: clamp(36px, 10vw, 52px);
}

.awards-text p {
  font-size: 18px;
  line-height: 1.65;
}

.awards-gallery {
  grid-template-columns: 1fr;
  gap: 42px;
}

}