.noscript-warning {
  background-color: #f5c842;
  color: #1a1a1a;
  text-align: center;
  padding: 0.5rem;
  font-family: "Georgia", serif;
  font-size: 0.9rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

body {
  font-family: "Georgia", serif;
  background-color: #1a1a2e;
  color: #f5f0e8;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Palatino Linotype", serif;
  color: #c9a96e;
}

a {
  color: #c9a96e;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.home-intro {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2.5rem;
  max-width: 860px;
  margin: 4rem auto;
  padding: 0 2rem 0 0;
}
.home-intro .home-monogram {
  width: 300px;
  flex-shrink: 0;
  opacity: 0.9;
}
.home-intro .home-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-left: 2rem;
}
.home-intro .home-bio {
  font-size: 1rem;
  line-height: 1.8;
  color: #f5f0e8;
}
.home-intro .home-quote {
  border-left: 2px solid #c9a96e;
  padding-left: 1rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.75);
  font-size: 0.95rem;
}
.home-intro .home-quote cite {
  display: block;
  margin-top: 0.4rem;
  font-style: normal;
  font-size: 0.85rem;
  color: #c9a96e;
}
.home-intro .home-spell {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.55);
  font-style: italic;
  line-height: 1.7;
}
@media (max-width: 860px) {
  .home-intro {
    flex-direction: column;
    align-items: center;
    margin: 2rem auto;
    gap: 1.5rem;
  }
  .home-intro .home-monogram {
    width: 120px;
  }
}

.policy-page {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 2rem 4rem;
}
.policy-page h1 {
  margin-bottom: 0.25rem;
}
.policy-page h2 {
  color: #c9a96e;
  font-size: 1.05rem;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}
.policy-page p, .policy-page dd {
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.85);
}
.policy-page dl {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}
.policy-page dt {
  font-weight: bold;
  color: #f5f0e8;
  font-size: 0.95rem;
}
.policy-page dd {
  margin: 0.2rem 0 0 0;
}
.policy-page .legal-updated {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.45);
  margin-bottom: 2rem;
}

.cookie-banner {
  border: none;
  margin: 0;
  padding: 0;
  max-width: none;
  max-height: none;
  background: none;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 1000;
  background-color: rgb(35.2083333333, 35.2083333333, 62.2916666667);
  border-top: 1px solid #c9a96e;
  padding: 1rem 2rem;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cookie-banner.visible {
  display: flex;
}
.cookie-banner .cookie-banner-text {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.8);
  line-height: 1.6;
}
.cookie-banner .cookie-banner-text a {
  color: #c9a96e;
  text-decoration: underline;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-banner .cookie-btn {
  padding: 0.45rem 1.2rem;
  font-family: "Georgia", serif;
  font-size: 0.85rem;
  cursor: pointer;
  border: 1px solid #c9a96e;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.cookie-banner .cookie-btn--accept {
  background-color: #c9a96e;
  color: #1a1a2e;
}
.cookie-banner .cookie-btn--accept:hover {
  background-color: rgb(212.0713567839, 186.632160804, 139.7286432161);
}
.cookie-banner .cookie-btn--reject {
  background-color: transparent;
  color: #c9a96e;
}
.cookie-banner .cookie-btn--reject:hover {
  background-color: rgba(201, 169, 110, 0.1);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .cookie-banner .cookie-banner-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-top: 1px solid #c9a96e;
  font-family: "Georgia", serif;
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.6);
}
footer a {
  color: rgba(245, 240, 232, 0.6);
  text-decoration: none;
}
footer a:hover {
  color: #c9a96e;
  text-decoration: none;
}
@media (max-width: 768px) {
  footer {
    padding: 0.75rem 1.25rem;
  }
}
@media (max-width: 480px) {
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: #1a1a2e;
  border-bottom: 1px solid #c9a96e;
}
nav .nav-brand {
  font-family: "Palatino Linotype", serif;
  font-size: 1.4rem;
  color: #c9a96e;
  text-decoration: none;
}
nav .nav-brand:hover {
  text-decoration: none;
  opacity: 0.85;
}
nav .nav-collections {
  display: flex;
  gap: 2rem;
  list-style: none;
}
nav .nav-collections a {
  font-family: "Georgia", serif;
  font-size: 0.95rem;
  color: #f5f0e8;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
nav .nav-collections a:hover {
  color: #c9a96e;
  text-decoration: none;
}
nav .nav-hamburger {
  display: none;
}
nav .nav-lang {
  display: flex;
  gap: 0.75rem;
  list-style: none;
}
nav .nav-lang a {
  font-family: "Georgia", serif;
  font-size: 0.8rem;
  color: #f5f0e8;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}
nav .nav-lang a:hover {
  color: #c9a96e;
  opacity: 1;
  text-decoration: none;
}
nav .nav-lang a.active {
  color: #c9a96e;
  opacity: 1;
  font-weight: bold;
}
@media (max-width: 768px) {
  nav {
    padding: 0.75rem 1.25rem;
  }
  nav .nav-brand {
    font-size: 1.1rem;
  }
  nav .nav-collections {
    gap: 1rem;
  }
  nav .nav-collections a {
    font-size: 0.8rem;
  }
  nav .nav-lang {
    gap: 0.5rem;
  }
  nav .nav-lang a {
    font-size: 0.75rem;
  }
}
@media (max-width: 480px) {
  nav {
    flex-wrap: wrap;
    position: relative;
  }
  nav .nav-brand {
    font-size: 1.1rem;
  }
  nav .nav-hamburger {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
  }
  nav .nav-hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #f5f0e8;
    transition: all 0.3s ease;
  }
  nav .nav-hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  nav .nav-hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  nav .nav-hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  nav .nav-collections,
  nav .nav-lang {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
  }
  nav .nav-collections.open,
  nav .nav-lang.open {
    display: flex;
  }
  nav .nav-collections li,
  nav .nav-lang li {
    width: 100%;
  }
  nav .nav-collections a,
  nav .nav-lang a {
    display: block;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  }
  nav .nav-lang {
    flex-direction: row;
    border-top: 1px solid rgba(201, 169, 110, 0.3);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
  }
  nav .nav-lang a {
    border-bottom: none;
    padding: 0.4rem 0.5rem;
  }
}

.cozy-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cozy-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 65%, rgba(0, 0, 0, 0.78) 100%);
  z-index: 1;
}
.cozy-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  display: block;
  z-index: 0;
}
.cozy-hero__title {
  position: relative;
  z-index: 2;
  font-family: "Palatino Linotype", serif;
  font-size: clamp(1.9rem, 5vw, 3.6rem);
  color: #f5f0e8;
  text-align: center;
  letter-spacing: 0.07em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65), 0 6px 30px rgba(0, 0, 0, 0.35);
  padding: 0 2rem;
  margin-top: 14vh;
}

.cozy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 5rem 2.5rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.cozy-intro p {
  font-size: 1.15rem;
  line-height: 2;
  color: rgba(245, 240, 232, 0.92);
  font-style: italic;
  border-left: 3px solid #b58fed;
  padding-left: 1.5rem;
  max-width: 72ch;
}

.cozy-groups > h2 {
  font-family: "Palatino Linotype", serif;
  font-size: 1.1rem;
  color: #e8834a;
  margin-bottom: 2.5rem;
  font-style: italic;
  letter-spacing: 0.02em;
  text-align: center;
  border-bottom: none;
}
.cozy-groups__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cozy-groups__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: linear-gradient(135deg, rgba(74, 82, 64, 0.3) 0%, rgba(74, 82, 64, 0.15) 100%);
  border: 1px solid rgba(74, 82, 64, 0.55);
  border-left: 3px solid #b58fed;
  border-radius: 2px;
  padding: 1.5rem 1.75rem;
  transition: border-left-color 0.2s ease, background 0.2s ease;
}
.cozy-groups__item:nth-child(even) {
  flex-direction: row-reverse;
}
.cozy-groups__item:hover {
  border-left-color: #e8834a;
  background: linear-gradient(135deg, rgba(74, 82, 64, 0.42) 0%, rgba(74, 82, 64, 0.22) 100%);
}
.cozy-groups__item h3 {
  font-family: "Palatino Linotype", serif;
  font-size: 1.1rem;
  color: #b58fed;
  margin-bottom: 0.45rem;
  letter-spacing: 0.01em;
}
.cozy-groups__item p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(245, 240, 232, 0.85);
}
.cozy-groups__icon {
  width: 180px;
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
  align-self: flex-start;
}

.cozy-flame h2,
.cozy-smiles h2,
.cozy-hair h2,
.cozy-reveal h2,
.cozy-epilogue h2 {
  font-family: "Palatino Linotype", serif;
  font-size: 1.5rem;
  color: #e8834a;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(232, 131, 74, 0.25);
  letter-spacing: 0.02em;
}
.cozy-flame p,
.cozy-smiles p,
.cozy-hair p,
.cozy-reveal p,
.cozy-epilogue p {
  font-size: 0.97rem;
  line-height: 1.95;
  color: rgba(245, 240, 232, 0.85);
  margin-bottom: 1rem;
  max-width: 72ch;
}
.cozy-flame p:last-child,
.cozy-smiles p:last-child,
.cozy-hair p:last-child,
.cozy-reveal p:last-child,
.cozy-epilogue p:last-child {
  margin-bottom: 0;
}

.cozy-smiles__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.cozy-smiles__item {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.cozy-smiles__item:nth-child(even) {
  flex-direction: row-reverse;
}
.cozy-smiles__item img {
  width: 100%;
  max-width: 150px;
  flex-shrink: 0;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.cozy-smiles__item p {
  font-size: 0.97rem;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.85);
  margin-bottom: 0;
}

.cozy-hair__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.cozy-hair__item {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.cozy-hair__item img {
  width: 100%;
  max-width: 150px;
  flex-shrink: 0;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.cozy-hair__item p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.85);
  margin-bottom: 0;
}
.cozy-hair__item p strong {
  color: #b58fed;
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.cozy-epilogue {
  background: linear-gradient(135deg, rgba(74, 82, 64, 0.25) 0%, rgba(74, 82, 64, 0.1) 100%);
  border: 1px solid rgba(74, 82, 64, 0.45);
  border-radius: 2px;
  padding: 2.5rem 3rem;
}
.cozy-epilogue p {
  color: rgba(245, 240, 232, 0.8);
}

.cozy-cta {
  display: flex;
  justify-content: center;
  padding: 1rem 0 2rem;
}
.cozy-cta__btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 3.5rem;
  background-color: #e8834a;
  color: #1a1a2e;
  font-family: "Palatino Linotype", serif;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #e8834a;
  border-radius: 2px;
  box-shadow: 0 4px 22px rgba(232, 131, 74, 0.35);
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
}
.cozy-cta__btn:hover {
  background-color: transparent;
  color: #e8834a;
  box-shadow: 0 4px 28px rgba(232, 131, 74, 0.15);
  text-decoration: none;
  transform: translateY(-2px);
}
.cozy-cta__btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .cozy-hero {
    height: 60vh;
  }
  .cozy-hero__image {
    -o-object-position: right center;
       object-position: right center;
  }
  .cozy-hero__title {
    font-size: clamp(1.5rem, 6vw, 2.4rem);
    margin-top: 10vh;
  }
  .cozy-content {
    padding: 3.5rem 1.75rem 5rem;
    gap: 3.5rem;
  }
  .cozy-epilogue {
    padding: 1.75rem;
  }
}
@media (max-width: 480px) {
  .cozy-hero__title {
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    margin-top: 8vh;
  }
  .cozy-content {
    padding: 2.5rem 1.25rem 4rem;
    gap: 3rem;
  }
  .cozy-groups__item {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem;
  }
  .cozy-groups__item:nth-child(even) {
    flex-direction: column;
  }
  .cozy-groups__item:nth-child(even) .cozy-groups__icon {
    align-self: flex-end;
  }
  .cozy-smiles__item,
  .cozy-hair__item {
    flex-direction: column;
    align-items: center;
  }
  .cozy-smiles__item img,
  .cozy-hair__item img {
    max-width: 100%;
  }
  .cozy-smiles__item:nth-child(even) {
    flex-direction: column;
  }
  .cozy-smiles__item:nth-child(even) img {
    align-self: flex-end;
  }
  .cozy-epilogue {
    padding: 1.25rem;
  }
  .cozy-cta__btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }
}/*# sourceMappingURL=style.css.map */