@charset "UTF-8";

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
}

.hero__slider {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 37%;
  opacity: 0;
  transition: opacity 2s;
  transform: scale(1);
}

.hero__bg.is-active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent, rgba(0, 0, 0, 0.2));
  z-index: -1;
}

.hero__sub-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .hero__sub-title {
    font-size: 1.5rem;
  }
}

.hero__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 9rem;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 2.2rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 3rem;
  }
}
@media (min-width: 1280px) {
  .hero__title {
    font-size: 3.75rem;
  }
}

.hero__btn {
  padding: 0.75rem 2rem;
  letter-spacing: 0.1em;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bounce 2s infinite;
  color: rgba(255, 255, 255, 0.7);
}

.hero__scroll-text {
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero__scroll-line {
  width: 1px;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.5);
}

@keyframes bounce {

  0%,
  100% {
    transform: translate(-50%, -25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }

  50% {
    transform: translate(-50%, 0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

/* ==========================================================================
   Section Common
   ========================================================================== */
.section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (min-width: 768px) {
  .section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.section-header {
  margin-bottom: 3rem;
}

.section-header__sub {
  display: block;
  font-family: var(--font-heading);
  color: var(--color-primary);
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.section-header__title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  /* 30px */
  line-height: 1.4;
  color: var(--color-text);
}

.section-header__title--light {
  color: var(--color-background);
}

.section-header__title--center {
  text-align: center;
}

.section-header__title-sub {
  display: block;
  font-size: 1.125rem;
  color: var(--color-primary);
  margin-top: 1rem;
  font-weight: normal;
}

@media (min-width: 768px) {
  .section-header__title {
    font-size: 2.25rem;
    /* 36px */
  }
}

/* ==========================================================================
   Intro Section
   ========================================================================== */
.intro__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .intro__inner {
    flex-direction: row-reverse;
    align-items: center;
    gap: 5rem;
  }
}

.intro__image-wrapper {
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .intro__image-wrapper {
    width: 50%;
    order: 2;
    /* Image on right on PC */
  }
}

.intro__image-box {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.intro__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.intro__image-box:hover .intro__image {
  transform: scale(1.05);
}

.intro__decoration {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 10rem;
  height: 10rem;
  background-color: var(--color-background);
  padding: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.intro__decoration-inner {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(212, 163, 115, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro__decoration-text {
  font-family: var(--font-script);
  font-size: 1.875rem;
  color: var(--color-primary);
}

.intro__content {
  width: 100%;
}

@media (min-width: 768px) {
  .intro__content {
    width: 50%;
    order: 1;
    /* Content on left on PC */
  }
}

.intro__heading {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .intro__heading {
    font-size: 2.25rem;
  }
}

.intro__heading-sub {
  display: block;
  font-size: 1.125rem;
  color: var(--color-primary);
  margin-top: 1rem;
  font-weight: normal;
}

.intro__text {
  font-size: 1rem;
  color: rgba(74, 64, 58, 0.8);
  line-height: 2;
}

.intro__text p {
  margin-bottom: 1.5rem;
}

.intro__signature {
  margin-top: 2rem;
}

.intro__signature-img {
  height: 3rem;
  opacity: 0.5;
}

/* ==========================================================================
   Concept Section
   ========================================================================== */
.concept {
  background-color: #F2EFE9;
  position: relative;
  overflow: hidden;
}

.concept__bg-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  z-index: 1;
}

.concept__bg-decoration--1 {
  width: 16rem;
  height: 16rem;
  background-color: rgba(204, 213, 174, 0.1);
  /* Secondary */
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.concept__bg-decoration--2 {
  width: 24rem;
  height: 24rem;
  background-color: rgba(212, 163, 115, 0.1);
  /* Primary */
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}

.concept__inner {
  position: relative;
  z-index: 10;
}

.concept .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.concept__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .concept__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.concept__item {
  text-align: center;
}

.concept__img-wrapper {
  width: 12rem;
  height: 12rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 4px solid var(--color-white);
}

.concept__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.concept__item:hover .concept__img {
  transform: scale(1.1);
}

.concept__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.concept__desc {
  font-size: 0.875rem;
  color: rgba(74, 64, 58, 0.7);
  line-height: 1.6;
  padding: 0 1rem;
}

.concept__footer {
  margin-top: 4rem;
  text-align: center;
}

.concept__footer-text {
  max-width: 42rem;
  margin: 0 auto;
  color: rgba(74, 64, 58, 0.8);
  line-height: 2;
  text-align: left;
}

/* ==========================================================================
   Featured Products Section
   ========================================================================== */
.featured__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .featured__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.featured__main {
  position: relative;
}

.featured__img-box {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  position: relative;
}

.featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.featured__img-box:hover .featured__img {
  transform: scale(1.05);
}

.featured__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem;
  color: var(--color-white);
}

.featured__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.featured__desc {
  font-size: 0.875rem;
  opacity: 0.9;
}

.featured__sub {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.featured__sub-item {
  cursor: pointer;
}

.featured__sub-img-box {
  height: 16rem;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.featured__sub-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.featured__sub-item:hover .featured__sub-img {
  transform: scale(1.1);
}

.featured__sub-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(74, 64, 58, 0.1);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}

.featured__sub-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.featured__arrow {
  color: var(--color-primary);
  opacity: 0;
  transform: translateX(-1rem);
  transition: all 0.3s ease;
}

.featured__sub-item:hover .featured__arrow {
  opacity: 1;
  transform: translateX(0);
}

.featured__sub-desc {
  font-size: 0.875rem;
  color: rgba(74, 64, 58, 0.7);
}

.featured__link-wrapper {
  margin-top: 1rem;
}

.featured__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.featured__link:hover {
  color: var(--color-text);
}

/* ==========================================================================
   Seasonal Collection Section
   ========================================================================== */
.seasonal {
  background-color: var(--color-text);
  color: var(--color-background);
}

.seasonal__header {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .seasonal__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.seasonal .section-header {
  margin-bottom: 0;
}

.seasonal__desc {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
}

@media (min-width: 768px) {
  .seasonal__desc {
    margin-top: 0;
    max-width: 20rem;
    text-align: left;
  }
}

.seasonal__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .seasonal__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.seasonal__item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
}

.seasonal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s ease;
}

.seasonal__item:hover .seasonal__img {
  transform: scale(1.1);
  opacity: 0.6;
}

.seasonal__overlay {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent, transparent);
}

.seasonal__number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-heading);
  font-size: 1.875rem;
  color: rgba(212, 163, 115, 0.5);
}

.seasonal__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.seasonal__label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Workshop Teaser Section
   ========================================================================== */
.workshop-teaser {
  position: relative;
  overflow: hidden;
}

.workshop-teaser__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('https://images.unsplash.com/photo-1556911220-e15b29be8c8f?q=80&w=2000&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.workshop-teaser__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right, var(--color-background), rgba(250, 249, 246, 0.9), transparent);
}

.workshop-teaser__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 768px) {
  .workshop-teaser__inner {
    flex-direction: row;
  }
}

.workshop-teaser__content {
  width: 100%;
}

@media (min-width: 768px) {
  .workshop-teaser__content {
    width: 50%;
  }
}

.workshop-teaser__card {
  background-color: var(--color-white);
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .workshop-teaser__card {
    padding: 3rem;
  }
}

.workshop-teaser__text {
  color: rgba(74, 64, 58, 0.8);
  line-height: 2;
  margin-bottom: 2rem;
}

.workshop-teaser__btn {
  padding: 0.75rem 2rem;
}

.workshop-teaser__visual {
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .workshop-teaser__visual {
    width: 50%;
    padding: 4rem;
  }
}

.workshop-teaser__calendar-card {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: rotate(3deg);
  transition: transform 0.5s ease;
}

.workshop-teaser__calendar-card:hover {
  transform: rotate(0);
}

.workshop-teaser__calendar-header {
  text-align: center;
  border-bottom: 2px solid rgba(212, 163, 115, 0.2);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.workshop-teaser__calendar-sub {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(74, 64, 58, 0.6);
}

.workshop-teaser__calendar-date {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--color-primary);
  margin-top: 0.5rem;
}

.workshop-teaser__calendar-body {
  text-align: center;
}

.workshop-teaser__calendar-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.workshop-teaser__calendar-info {
  font-size: 0.75rem;
  color: rgba(74, 64, 58, 0.6);
}

.workshop-teaser__calendar-badge {
  display: inline-block;
  background-color: rgba(204, 213, 174, 0.2);
  color: rgba(74, 64, 58, 0.8);
  font-size: 0.625rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  margin-top: 0.5rem;
}

/* ==========================================================================
   Info & Access Section
   ========================================================================== */
.info {
  background-color: rgba(235, 229, 206, 0.3);
  /* #EBE5CE alpha 0.3 */
}

.info__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .info__inner {
    flex-direction: row;
  }
}

.info__content {
  width: 100%;
}

@media (min-width: 768px) {
  .info__content {
    width: 50%;
  }
}

.info__text {
  color: rgba(74, 64, 58, 0.8);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.info__details {
  background-color: var(--color-white);
  padding: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info__item:last-child {
  margin-bottom: 0;
}

.info__icon {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.info__label {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.info__value {
  font-size: 0.875rem;
}

.info__note {
  font-size: 0.75rem;
  color: rgba(74, 64, 58, 0.6);
  margin-top: 0.25rem;
}

.info__map {
  width: 100%;
  min-height: 250px;
  background-color: var(--color-white);
  padding: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: rotate(1deg);
}

@media (min-width: 768px) {
  .info__map {
    width: 50%;
  }
}

.info__map-wrapper {
  width: 100%;
  height: 100%;
  background-color: #e5e5e5;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.info__map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info__map-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.info__map-wrapper:hover .info__map-overlay {
  opacity: 1;
}

.info__map-link {
  color: var(--color-white);
  font-family: var(--font-serif);
  border-bottom: 1px solid var(--color-white);
  padding-bottom: 2px;
}

/* ==========================================================================
   News Teaser Section
   ========================================================================== */
.news-teaser__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.news-teaser__link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.news-teaser__link:hover {
  color: var(--color-text);
}

.news-teaser__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .news-teaser__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-item {
  border-top: 1px solid rgba(74, 64, 58, 0.1);
  padding-top: 1.5rem;
  transition: border-color 0.3s ease;
}

.news-item:hover {
  border-color: var(--color-primary);
}

.news-item__link {
  display: block;
}

.news-item__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.news-item__date {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: rgba(74, 64, 58, 0.5);
}

.news-item__cat {
  font-size: 0.625rem;
  padding: 0.125rem 0.5rem;
  border: 1px solid;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-item__cat--new {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.news-item__cat--event {
  border-color: var(--color-secondary);
  color: var(--color-text);
}

.news-item__cat--info {
  border-color: rgba(74, 64, 58, 0.3);
  color: rgba(74, 64, 58, 0.6);
}

.news-item__title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.news-item:hover .news-item__title {
  color: var(--color-primary);
}

.news-item__footer {
  display: flex;
  justify-content: flex-end;
}

.news-item__arrow {
  color: rgba(74, 64, 58, 0.3);
  transition: color 0.3s ease;
}

.news-item:hover .news-item__arrow {
  color: var(--color-primary);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta {
  position: relative;
  text-align: center;
  color: var(--color-white);
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.cta__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}

.cta__inner {
  position: relative;
  z-index: 1;
}

.cta__title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  margin-bottom: 2rem;
  line-height: 1.4;
  text-align: center;
}

@media (min-width: 768px) {
  .cta__title {
    font-size: 3rem;
  }
}

.cta__text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta__actions {
    flex-direction: row;
  }
}

.cta__btn {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  min-width: 200px;
}

.cta__btn--white {
  background-color: var(--color-white);
  color: var(--color-text);
  border-color: var(--color-white);
}

.cta__btn--white:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.cta__btn--outline-white {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

.cta__btn--outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}