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

@font-face {
    font-family: 'Hanley Pro Script';
    src: url('Hanley-Pro-Script.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
  --primary-gold: #f4c430;
  --primary-brown: #7d5f45;
  --accent-green: #7fb069; 
  --accent-blue: #3e5c8c;
  --light-cream: #fffef0;
  --dark-text: #333333;
  --std-background: #d6ba9e;
  --secondary-brown: #413933;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--dark-text);
}

p {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-text);
}

.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  background-color: var(--std-background);
  padding:20px;
}

.cursive-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 62px;
  font-weight: 500;
  line-height: 4rem;
  color: #942b2b;
  font-style: italic;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*border:1px solid red;*/
}

a {
  color: #804335;
  text-decoration-color: rgba(128, 67, 53, 0.45);
  text-underline-offset: 2px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:visited {
  color: #6f3a2f;
}

a:hover,
a:focus-visible {
  color: #942b2b;
  text-decoration-color: currentColor;
}

.main-container {
  margin:auto;
  max-width: 1920px;
}

.site-header {
  background-color: #3f3e3e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  position: sticky;
  top: 0;
  z-index: 60;
}

.site-header-row {
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 0 1.6rem;
  gap: 1.15rem;
}

.site-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
}

.site-logo-link .logo {
  height: clamp(54px, 2.05vw, 82px);
  width: auto;
}

.site-search {
  flex: 0 1 350px;
  max-width: 350px;
  min-width: 220px;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 1rem;
  background-color: rgba(72, 72, 61, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.site-search .fa {
  color: #f4efdf;
  font-size: 1.38rem;
}

.site-search input {
  width: 100%;
  border: 0;
  background: transparent;
  outline: none;
  color: #f6f2e5;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.48rem;
  letter-spacing: 0.03em;
  font-style: italic;
}

.site-search input::placeholder {
  color: rgba(247, 242, 229, 0.86);
}

.site-menu-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.site-menu-button {
  display: none;
}

.nav-container {
  margin-left: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

.nav-links li {
  display: flex;
}

.nav-links li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.52);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  text-align: center;
  text-decoration: none;
  color: #dcc0a4;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.65rem 1.25rem;
  transition: color 0.3s ease, background-color 0.3s ease;
  font-weight: 500;
  font-size: 0.64rem;
  white-space: nowrap;
}

.nav-link:visited {
  color: #dcc0a4;
}

.nav-logout-form {
  display: flex;
}

.nav-link-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  background-color: rgba(56, 55, 43, 0.34);
  color: #ffffff;
}

.nav-link:hover:visited,
.nav-link:focus-visible:visited,
.nav-link.is-active:visited {
  color: #ffffff;
}

.nav-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: -2px;
}


@media (max-width: 880px) {
  .site-header-row {
    min-height: 78px;
    padding: 0 0.9rem;
    gap: 0.7rem;
  }

  .site-logo-link .logo {
    height: clamp(22px, 7vw, 30px);
  }

  .site-search {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    height: 42px;
    padding: 0 0.85rem;
    gap: 0.55rem;
  }

  .site-search .fa {
    font-size: 1.3rem;
  }

  .site-search input {
    font-size: 1.35rem;
  }

  .site-menu-button {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    cursor: pointer;
    margin-left: auto;
    background: transparent;
  }

  .site-menu-button span {
    width: 22px;
    height: 2px;
    background-color: rgba(247, 242, 229, 0.92);
    display: block;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }

  .site-header .nav-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    margin-left: 0;
    background-color: #999884;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    transition: max-height 0.35s ease;
  }

  .site-header .nav-links {
    flex-direction: column;
    gap: 0;
    padding: 0;
    align-items: stretch;
  }

  .site-header .nav-links li {
    width: 100%;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .site-header .nav-link {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    letter-spacing: 0.14em;
    font-size: 0.66rem;
    padding: 0.92rem 1rem;
  }

  .site-header .nav-logout-form {
    width: 100%;
  }

  .site-menu-toggle:checked ~ .nav-container {
    max-height: 350px;
  }

  .site-menu-toggle:checked + .site-menu-button span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-menu-toggle:checked + .site-menu-button span:nth-child(2) {
    opacity: 0;
  }

  .site-menu-toggle:checked + .site-menu-button span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (min-width: 881px) {
  .site-header .site-menu-button {
    display: none;
  }

  .site-header .nav-container {
    max-height: none !important;
    overflow: visible;
  }
}

.home-cinematic-hero {
  position: relative;
  min-height: min(78vh, 760px);
  width: 100%;
  isolation: isolate;
  display: flex;
  align-items: center;
  padding: clamp(1rem, 3vw, 3.5rem);
  overflow: hidden;
}

.home-lookbook {
  background-color: #d6ba9e;
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) minmax(290px, 1fr) minmax(430px, 1.7fr);
  gap: clamp(1rem, 2.6vw, 2rem);
  align-items: center;
  padding: clamp(1rem, 2.5vw, 1.8rem);
}

.home-lookbook-title-wrap {
  border-left: 2px solid #9e9a8d;
  padding-left: 1.25rem;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-lookbook-title {
  font-family: 'Hanley Pro Script', serif;
  font-size: clamp(3rem, 5vw, 3.6rem);
  color: #594543;
  line-height: 0.78;
  font-weight: 100;
  text-align: center;
  /*italic letter*/
}

.home-lookbook-subtitle {
  font-family: 'Cormorant Garamond', serif;
  display: block;
  font-size: 1.6rem;
  line-height: 2.2;
  text-align: center;
  color: #120e0e;
}

.home-lookbook-copy {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.home-lookbook-copy p {
  font-family: 'Cormorant Garamond', serif;
  color: #5d5d5d;
  font-size: clamp(1.25rem, 1.5vw, 2rem);
  line-height: 1.1;
  letter-spacing: 0.012em;
  font-weight: 500;
  padding-left: 20px;
}

.home-lookbook-gallery {
  position: relative;
  min-width: 0;
}

.home-lookbook-viewport {
  overflow: hidden;
}

.home-lookbook-track {
  --lookbook-gap: 0.65rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--lookbook-gap) * 2)) / 3);
  gap: var(--lookbook-gap);
  transition: transform 0.55s ease;
  will-change: transform;
}

.home-lookbook-slide {
  margin: 0;
  height: clamp(420px, 60vh, 640px);
}

.home-lookbook-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-lookbook-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 86px;
  border: 0;
  background: rgb(245 221 195);
  color: #804335;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  font-size: 2rem;
  line-height: 1;
}

.home-lookbook-prev {
  left: -21px;
}

.home-lookbook-next {
  right: -21px;
}

.home-lookbook-nav:hover,
.home-lookbook-nav:focus-visible {
  background: rgb(245 221 195);
}

@media (max-width: 1299px) {
  .home-lookbook {
    grid-template-columns: minmax(160px, 0.55fr) minmax(230px, 1fr) minmax(350px, 1.45fr);
  }

  .home-lookbook-track {
    grid-auto-columns: calc((100% - var(--lookbook-gap)) / 2);
  }

  .home-lookbook-title {
    font-size: clamp(1.8rem, 3.5vw, 4rem);

  }
}

@media (max-width: 900px) {
  .home-lookbook {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0.9rem;
    padding: 1.5rem 1rem;
  }

  .home-lookbook-title-wrap {
    border-left: 0;
    border-top: none;
    padding-left: 0;
    padding-top: 0;
    align-self: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .home-lookbook-title {
    font-size: 2.6rem;
    line-height: 0.9;
    text-align: center;
  }

  .home-lookbook-subtitle {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .home-lookbook-copy {
    align-self: auto;
    display: flex;
    justify-content: center;
  }

  .home-lookbook-copy p {
    font-size: 1.2rem;
    line-height: 1.6;
    padding-left: 0;
    text-align: center;
    padding: 0 1rem;
  }

  .home-lookbook-track {
    grid-auto-columns: 100%;
    --lookbook-gap: 0;
  }

  .home-lookbook-slide {
    height: 40vh;
    min-height: 300px;
  }

  .home-lookbook-nav {
    width: 32px;
    height: 60px;
    font-size: 1.5rem;
  }

  .home-lookbook-prev {
    left: 2px;
  }

  .home-lookbook-next {
    right: 2px;
  }
}

@media (max-width: 600px) {
  .home-lookbook {
    padding: 1.2rem 0.75rem;
  }

  .home-lookbook-title {
    font-size: 2.1rem;
  }

  .home-lookbook-subtitle {
    font-size: 1.0rem;
    margin-top: 0.5rem;
  }

  .home-lookbook-copy p {
    font-size: 1.2rem;
    padding: 0 0.75rem;
  }

  .home-lookbook-slide {
    height: 35vh;
    min-height: 250px;
  }
}

.home-cinematic-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(71, 56, 44, 0.36) 0%, rgba(33, 28, 24, 0.14) 45%, rgba(20, 18, 16, 0.28) 100%);
}

.home-cinematic-hero-slides {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.home-cinematic-hero-slide {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  animation: cinematic-fade-zoom 15s linear infinite;
  animation-delay: var(--hero-delay);
}

.home-cinematic-card {
  position: relative;
  z-index: 2;
  width: min(380px, 92%);
  height: 450px;
  background-color: #d6ba9e;
  backdrop-filter: blur(2px);
  padding: clamp(1.4rem, 2.6vw, 2.6rem);
  margin-left: clamp(0rem, 2vw, 2.5rem);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.home-cinematic-card-logo {
  width: clamp(120px, 15vw, 220px);
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.2rem;
}

.home-cinematic-card p {
  font-family: 'Montserrat', sans-serif;
  color: rgba(63, 52, 46, 0.86);
  line-height: 1.46;
  font-size: clamp(0.92rem, 1.1vw, 1.88rem);
  margin-bottom: 1rem;
  max-width: 34ch;
  text-align: center;
}

.home-cinematic-card p:last-child {
  margin-bottom: 0;
}

@keyframes cinematic-fade-zoom {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  8% {
    opacity: 1;
  }

  28% {
    opacity: 1;
    transform: scale(1.06);
  }

  38% {
    opacity: 0;
    transform: scale(1.08);
  }

  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@media (max-width: 900px) {
  .home-cinematic-hero {
    min-height: calc(100vh - 78px);
    min-height: calc(100dvh - 78px);
    justify-content: center;
    padding: 1rem;
  }

  .hero.contact-hero {
    min-height: calc(100vh - 78px);
    min-height: calc(100dvh - 78px);
  }

  .home-cinematic-card {
    margin-left: 0;
    width: min(94%, 440px);
    padding: 1.25rem;
  }

  .home-cinematic-card-logo {
    width: 126px;
    margin-bottom: 0.9rem;
  }

  .home-cinematic-card p {
    font-size: 0.96rem;
  }
}

@media (max-width: 600px) {
  .home-cinematic-card {
    width: min(96%, 360px);
    height: auto;
    padding: 1.2rem;
  }

  .home-cinematic-card-logo {
    width: 100px;
    margin-bottom: 0.8rem;
  }

  .home-cinematic-card p {
    font-size: 0.88rem;
    line-height: 1.4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-cinematic-hero-slide {
    animation: none;
    opacity: 0;
  }

  .home-cinematic-hero-slide:first-child {
    opacity: 1;
  }
}


.hero {
  min-height: 70svb;
  background-color: #d6ba9e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pictures-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px;
}

.site-footer {
  background: linear-gradient(180deg, #332d29 0%, #2b2622 100%);
  color: #e9d4be;
}

.site-footer-social {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(214, 186, 158, 0.3);
}

.site-footer-social-message {
  color: #e9d4be;
  text-align: center;
  margin-bottom: 0.9rem;
  letter-spacing: 0.02em;
}

.site-footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.4rem 1.5rem 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1.15rem;
}

.site-footer-card {
  border-radius: 12px;
  padding: 1rem;
  min-height: 100%;
}

.site-footer-title {
  color: #f5ddc3;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer-subtitle {
  color: #f0d8bf;
  font-size: 0.9rem;
  margin-top: 0.8rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #dcc0a4;
  font-size: 0.93rem;
  line-height: 1.55;
}

.site-footer a,
.site-footer a:visited {
  color: #d6ba9e;
  text-decoration-color: rgba(214, 186, 158, 0.55);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #f5ddc3;
  text-decoration-color: currentColor;
}

.site-footer-list li + li {
  margin-top: 0.4rem;
}

.site-footer-hours li {
  display: grid;
  grid-template-columns: 88px 1fr;
  column-gap: 0.2rem;
}

.site-footer-map {
  display: block;
  width: 100%;
  min-height: 270px;
  border: 1px solid rgba(214, 186, 158, 0.38);
  border-radius: 8px;
}

.social-section {
  background-color: #413933;
  min-height: 50svh;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.social-section-message {
  color: #d6ba9e;
  text-align: center;
  padding-top: 1.5rem;
  padding-bottom: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d6ba9e;
  border: 1px solid #d6ba9e;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  background-color: #d6ba9e;
  color: #413933;
  transform: translateY(-2px);
}

.social-link i {
  font-size: 20px;
  line-height: 1;
}

.footer{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.hero-slider-layout {
    background-color:#d6ba9e;
    padding: 0.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.home-hero-slider {
  --hero-slider-padding: 2rem;
  --hero-slider-frame-height: clamp(260px, 45vw, 560px);
  --hero-slider-btn-offset: 14px;
    position: relative;
    width: 100%;
    overflow: hidden;
  min-height: calc(var(--hero-slider-frame-height) + (var(--hero-slider-padding) * 2));
    isolation: isolate;
  padding: var(--hero-slider-padding);
}

.home-hero-slider .hero-slider-track {
    position: relative;
  width: 100%;
  height: var(--hero-slider-frame-height);
}

.home-hero-slider .hero-slide {
    margin: 0;
    position: absolute;
    inset: 0;
    height: 100%;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.6s ease, transform 0.9s ease;
    pointer-events: none;
}

.home-hero-slider .hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 1;
}

.home-hero-slider .hero-slide.is-entering {
    animation: hero-slide-enter 0.7s ease both;
}

.home-hero-slider .hero-slide-image {
    display: block;
    width: 100%;
  height: 100%;
    object-fit: cover;
}

@keyframes hero-slide-enter {
    from {
        opacity: 0;
        transform: translateX(18px) scale(1.02);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.home-hero-slider .hero-slider-btn {
    position: absolute;
  top: calc(var(--hero-slider-padding) + (var(--hero-slider-frame-height) / 2));
    transform: translateY(-50%);
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.85);
    color: #000000;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.home-hero-slider .hero-slider-btn:hover {
    background: rgba(255, 255, 255, 0.95);
}

.home-hero-slider .hero-slider-btn-prev {
  left: calc(var(--hero-slider-padding) + var(--hero-slider-btn-offset));
}

.home-hero-slider .hero-slider-btn-next {
  right: calc(var(--hero-slider-padding) + var(--hero-slider-btn-offset));
}

.home-cinematic-card-moved {
  display: none;
}

@media (max-width: 880px) {

  .home-cinematic-card {
    display: none;
  }

  .home-lookbook-title{
    display:none;
  }

  .home-cinematic-card-moved {
    display: block;
    position: relative;
    z-index: 2;
    width: min(94%, 440px);
    height: auto;
    background-color: #d6ba9e;
    backdrop-filter: blur(2px);
    padding: 1.25rem;
    margin: 1.5rem auto 0;
    /*box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1.1rem 1rem 1.25rem;
  }

  .site-footer-social {
    padding: 1rem;
  }

  .site-footer-map {
    min-height: 220px;
  }

  .site-footer-hours li {
    row-gap: 0.08rem;
  }

  .hero-slider-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  
  .logo-container {
    height: 70%;
  }
  .footer {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .header-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    width: 400%;
    height: 100%;
    animation: header-slide-left 30s linear infinite;
  }
  
}

@media (min-width: 768px) and (max-width: 1199px) {
  .logo-container {
    height: 80%;
  }

  .hero-slider-layout-side {
      min-height: 0;
  }

  .home-hero-slider .hero-slider-btn {
      width: 36px;
      height: 36px;
  }

  .home-hero-slider .hero-slider-btn-prev {
      left: calc(var(--hero-slider-padding) + 10px);
  }

  .home-hero-slider .hero-slider-btn-next {
      right: calc(var(--hero-slider-padding) + 10px);
  }
}

@media (min-width: 1200px) {
  .logo-container {
    height: 80%;
  }

  .social-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
