*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  font-optical-sizing: auto;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
}

h1, h2,
h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

p:empty {
  display: none;
}

html, body {
  overflow: -moz-scrollbars-none;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

a, a:visited, a[href^=tel] {
  color: inherit;
  text-decoration: none;
}

:root {
  --section-padding: 0.8rem;
}
@media (min-width: 768px) {
  :root {
    --section-padding: 1.6rem;
  }
}

@font-face {
  font-family: "IvyOraDisplay";
  src: url("assets/fonts/IvyOraDisplay-Light.woff2") format("woff2"), url("assets/fonts/IvyOraDisplay-Light.woff") format("woff"), url("assets/fonts/IvyOraDisplay-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IvyOraDisplay";
  src: url("assets/fonts/IvyOraDisplay-Regular.woff2") format("woff2"), url("assets/fonts/IvyOraDisplay-Regular.woff") format("woff"), url("assets/fonts/IvyOraDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "StyreneA";
  src: url("assets/fonts/StyreneA-Medium.woff2") format("woff2"), url("assets/fonts/StyreneA-Medium.woff") format("woff"), url("assets/fonts/StyreneA-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "IvyOraDisplay", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.26;
  font-size: 18px;
}
@media (min-width: 768px) {
  body {
    font-size: 20px;
  }
}

h1, h2, h3, h4 {
  font-family: "IvyOraDisplay", serif;
  font-weight: 300;
  font-style: normal;
  text-align: center;
  font-size: 35px;
  font-size: 1.944em;
  margin: 2.5rem 0;
  line-height: 0.9em;
}
@media (min-width: 768px) {
  h1, h2, h3, h4 {
    font-size: 2.5em;
  }
}
h1 + p, h2 + p, h3 + p, h4 + p {
  margin-top: 0;
}
@media (min-width: 1024px) {
  h1 + p, h2 + p, h3 + p, h4 + p {
    margin-top: 3.2rem;
    margin-bottom: 3.2rem;
  }
}

p {
  margin: 3.2rem 0;
  text-align: center;
  max-width: 28em;
  text-wrap: balance;
  margin-left: auto;
  margin-right: auto;
}

.btn, input, footer {
  font-family: "StyreneA", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
}

footer nav a {
  font-size: 10px;
}

::selection {
  background: rgba(237, 228, 213, 0.8);
  color: black;
  text-shadow: none;
}

::-moz-selection {
  background: rgba(237, 228, 213, 0.8);
  color: black;
  text-shadow: none;
}

main {
  flex: 1;
}

.hero-section {
  display: flex;
  justify-content: center;
}

body, html {
  max-width: 100vw !important;
  overflow-x: hidden;
}

main {
  max-width: 100vw;
}
main section:first-child {
  padding-top: 6rem;
}

section {
  margin-left: var(--section-padding);
  margin-right: var(--section-padding);
  border-left: 1px solid black;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  position: relative;
  transition: border-bottom 1.2s ease;
  max-width: 100vw;
}
section:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: calc(var(--section-padding) * -1);
  height: 1px;
  background-color: black;
  width: var(--section-padding);
}
section:after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: calc(var(--section-padding) * -1);
  height: 1px;
  background-color: black;
  width: var(--section-padding);
}
section:first-child > h1,
section:first-child p,
section:first-child img {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.45s ease, transform 1.5s ease;
}
@starting-style {
  section:first-child > h1,
  section:first-child p,
  section:first-child img {
    opacity: 0;
    transform: translateY(5px);
  }
}
section:nth-child(2) > h1,
section:nth-child(2) p,
section:nth-child(2) img {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.55s ease, transform 1.65s ease;
}
@starting-style {
  section:nth-child(2) > h1,
  section:nth-child(2) p,
  section:nth-child(2) img {
    opacity: 0;
    transform: translateY(5px);
  }
}

section {
  padding: 1.6rem;
}
@media (min-width: 480px) {
  section {
    padding: 2.4rem;
  }
}

section.hero-section {
  height: 60vh;
}
section.hero-section img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  position: relative;
}

.border-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  z-index: 1000;
  background-color: black;
}
@supports (-webkit-touch-callout: none) {
  .border-mobile {
    display: block;
  }
}

header {
  display: flex;
  align-items: center;
  padding: 0.8rem;
  position: fixed;
  width: 100%;
  background-color: white;
  z-index: 2;
}
header img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
header .logo {
  display: none;
}
@media (min-width: 768px) {
  header .logo {
    display: inline;
  }
}
header .sigle {
  display: inline;
}
@media (min-width: 768px) {
  header .sigle {
    display: none;
  }
}
header .btn {
  margin-left: auto;
}

header {
  left: var(--section-padding);
  right: var(--section-padding);
  border-left: 1px solid black;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  max-width: calc(100vw - var(--section-padding) * 2);
}
header:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: calc(var(--section-padding) * -1);
  height: 100%;
  background-color: white;
  border-bottom: 1px solid black;
  width: calc(var(--section-padding) - 1px);
}
header:after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: calc(var(--section-padding) * -1);
  height: 100%;
  background-color: white;
  border-bottom: 1px solid black;
  width: calc(var(--section-padding) - 1px);
}

header .border-animated,
section .border-animated {
  position: absolute;
  bottom: -1px;
  right: calc(var(--section-padding) * -1);
  left: 0;
  height: 1px;
  width: 100vw;
  z-index: 1000;
  width: 100vw;
}
header .border-animated:before,
section .border-animated:before {
  content: "";
  right: calc(var(--section-padding) - 1px);
  z-index: 1001;
  height: 1px;
  bottom: 0;
  width: 1px;
  background-color: black;
  position: absolute;
}
header .border-animated::after,
section .border-animated::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 1px;
  background-color: white;
  width: 0;
  transition: width 1s ease;
}
@media screen and (min-width: 768px) {
  header .border-animated::after,
  section .border-animated::after {
    transition: width 1.2s ease;
  }
}
@starting-style {
  header .border-animated::after,
  section .border-animated::after {
    width: 95%;
  }
  @media screen and (min-width: 768px) {
    header .border-animated::after,
    section .border-animated::after {
      width: 80%;
    }
  }
}

.btn {
  font-size: 12px;
  border: none;
  background-color: #EDE4D5;
  border: 1px solid #EDE4D5;
  padding: 0.65rem 1.2rem 0.55rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.4s ease, border-color 0.4s ease;
  text-align: center;
  color: inherit;
}
@media (hover: hover) {
  .btn:hover {
    background-color: transparent;
  }
}
.btn:active {
  transform: scale(0.98);
}

.newsletter-section .newsletter-subscribe {
  display: flex;
  align-items: center;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 1024px) {
  .newsletter-section .newsletter-subscribe {
    flex-direction: row;
    justify-content: space-between;
  }
}
.newsletter-section.highlight {
  animation: highlightFade 1.2s ease-out forwards;
}

@keyframes highlightFade {
  0% {
    background-color: transparent;
  }
  20% {
    background-color: rgba(237, 228, 213, 0.5);
  }
  100% {
    background-color: transparent;
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, visibility 3s;
}
.modal.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.15s ease, visibility 0s ease;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 5px));
  background-color: white;
  border: 1px solid black;
  padding: 0 1.6rem 3.2rem;
  transition: transform 3s ease;
  width: calc(100% - var(--section-padding) * 2);
}
@media (min-width: 1024px) {
  .modal-content {
    padding: 0 6.4rem 3.2rem;
    width: fit-content;
  }
}
.modal.show .modal-content {
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-content .btn {
  align-self: center;
}

form#newsletter-form {
  display: flex;
  gap: 0.8rem;
  width: 100%;
}
form#newsletter-form input {
  font-size: 10px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  background-color: transparent;
  padding: 0.65rem 0 0.55rem;
  letter-spacing: 2px;
  border-radius: 0;
  min-width: 120px;
  flex-grow: 1;
}
@media (min-width: 768px) {
  form#newsletter-form input {
    min-width: 290px;
    flex-grow: 0;
  }
}
form#newsletter-form input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
form#newsletter-form input:focus {
  outline: none;
}
@media (min-width: 768px) {
  form#newsletter-form {
    gap: 3.2rem;
    width: auto;
  }
}

footer {
  margin-left: var(--section-padding);
  margin-right: var(--section-padding);
  border-left: 1px solid black;
  border-right: 1px solid black;
  padding: 0.8rem;
}
footer nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: calc(var(--section-padding) * 4);
  max-width: 100%;
}
@media (min-width: 768px) {
  footer nav {
    justify-content: space-between;
    flex-direction: row;
    margin-bottom: 0;
    gap: 24px;
  }
  footer nav a {
    min-width: calc(33.3% - 24px);
  }
  footer nav a:nth-child(2) {
    text-align: center;
  }
  footer nav a:last-child {
    text-align: right;
  }
}
footer nav a {
  margin: 0.4rem 0;
  letter-spacing: 0.1rem;
}

/*# sourceMappingURL=styles.css.map */
