html {
  color-scheme: light dark;
  font: 1rem/1.4 system-ui, sans-serif;
  tab-size: 2;
  hanging-punctuation: first allow-end last;
  word-break: break-word;
}

body {
  margin: 0;
  padding: 0.5rem;
}

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

h1,
h2 {
  font-weight: 900;
  letter-spacing: -0.02rem;
}

h1,
h2,
h3 {
  line-height: 1.1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
  margin-block-start: 0;
  font-synthesis: none;
}

p,
li,
dd {
  text-wrap: pretty;
  max-inline-size: 88ch;
}

a {
  color: oklch(68% 0.17 228deg);
  text-underline-offset: 2px;
}
a:not(:is(:hover, :focus)) {
  text-decoration-color: color-mix(in srgb, currentColor, transparent 50%);
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  inset-block-end: -0.25em;
}

sup {
  inset-block-start: -0.5em;
}

ul,
ol,
dl {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}
ul ul,
ul ol,
ul dl,
ol ul,
ol ol,
ol dl,
dl ul,
dl ol,
dl dl {
  padding-inline-start: 2ch;
}

img,
video,
iframe {
  display: block;
  max-inline-size: 100%;
  block-size: auto;
  border-style: none;
}

figure {
  inline-size: fit-content;
  margin-inline: auto;
}

figcaption {
  contain: inline-size;
  font-size: 90%;
}

input,
select,
textarea,
button {
  font: inherit;
  /* FUTURE: appearance: base; */
}

label {
  display: block;
}

input:not(:where([type=submit],
[type=checkbox],
[type=radio],
[type=button],
[type=reset])) {
  inline-size: 100%;
}

button,
input:where([type=submit],
[type=reset],
[type=button]) {
  background: CanvasText;
  color: Canvas;
  border: 1px solid transparent;
}

textarea {
  field-sizing: content;
  min-block-size: 5lh;
  inline-size: 100%;
  max-inline-size: 100%;
}

pre,
code,
kbd,
samp {
  font-family: ui-monospace, SFMono-Regular, monospace;
}

svg {
  fill: currentColor;
  width: 1em;
  height: 1em;
  display: inline-block;
}

[aria-disabled=true i],
[disabled] {
  cursor: not-allowed;
}

[hidden] {
  display: none !important;
}

[disabled],
label:has(input[disabled]) {
  opacity: 0.5;
}
[disabled] [disabled],
label:has(input[disabled]) [disabled] {
  opacity: 1;
}

pre {
  white-space: pre-wrap;
  background: CanvasText;
  color: Canvas;
  padding: 1.5rem;
}

hr {
  border-style: solid;
  border-width: 1px 0 0;
  color: inherit;
  height: 0;
  overflow: visible;
  margin-block: 2.5rem;
}

:target {
  scroll-margin: 3rlh;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}
table td {
  font-size: 90%;
}
table td,
table th {
  word-break: normal;
  border: 1px solid gray;
  padding: 0.5rem;
}

[role=region][aria-labelledby][tabindex] {
  overflow: auto;
}

caption {
  font-size: 90%;
}

.screenreader-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

:focus-visible {
  outline-offset: 2px;
}

@media (prefers-reduced-motion: no-preference) {
  @view-transition {
    navigation: auto;
  }
  html {
    interpolate-size: allow-keywords;
  }
  html:focus-within {
    scroll-behavior: smooth;
  }
}
.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.sr-only-focusable:focus,
.sr-only-focusable:active {
  clip: auto !important;
  -webkit-clip-path: none !important;
  clip-path: none !important;
  height: auto !important;
  margin: auto !important;
  overflow: visible !important;
  width: auto !important;
  white-space: normal !important;
}

main {
  display: contents;
}

.container {
  min-height: 100vh;
  display: grid;
  grid-template-areas: "header hero hero hero" "content content content content" "footer footer footer footer";
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr auto;
  gap: 0.5rem;
}
@media (width <= 600px) {
  .container {
    display: flex;
    flex-direction: column;
  }
}

.header {
  grid-area: header;
}

.hero {
  grid-area: hero;
}

.gallery {
  grid-area: content;
}

.footer {
  grid-area: footer;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: "Manrope", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #F4E9D7;
  color: #353131;
  line-height: 160%;
}

.btn {
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  border: 2px solid transparent;
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  padding: 1rem 2rem;
  line-height: 1;
  border-radius: 2px;
  font-weight: 600;
  transition: all 250ms ease;
}
.btn--primary {
  background-color: #003049;
  color: #fff;
  border-color: #F4E9D7;
}
.btn--primary:hover {
  border-color: #003049;
}
.btn--outline {
  color: #fff;
  border-color: #F4E9D7;
}
.btn--outline:hover {
  color: #003049;
  background-color: #F4E9D7;
}

.card {
  position: relative;
  overflow: hidden;
}
.card__actions {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(255, 99, 71) 0%, rgba(255, 99, 71, 0.4) 75%, rgba(255, 99, 71, 0) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding: 2rem;
  transform: translateY(100%);
  opacity: 0;
  transition: all 300ms ease-in-out;
  color: #fff;
}
.card__title {
  font-weight: 600;
}
.card__image {
  transition: all 300ms ease-in-out;
  height: 100%;
  object-fit: cover;
}
.card .btn {
  width: 100%;
}
.card:hover .card__actions {
  transform: translateY(0);
  opacity: 1;
}
.card:hover .card__image {
  transform: scale(1.15);
}

.carousel__image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (width <= 600px) {
  .carousel__image {
    aspect-ratio: 1/1;
  }
}

.swiper {
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.swiper-slide {
  margin: 0;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  color: #fff;
  width: 2rem;
  height: 2rem;
}
.swiper .swiper-pagination-bullet {
  border-radius: 1rem;
  transition: all 200ms ease;
}
.swiper .swiper-pagination-bullet-active {
  background: #fff;
  width: 2rem;
}

.footer {
  color: #003049;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 0.5rem;
}
@media (width <= 600px) {
  .footer__grid {
    display: flex;
    flex-direction: column-reverse;
  }
}
.footer__grid--item {
  padding: 2rem;
}
.footer__grid--item:nth-child(1) {
  background-color: #219EBC;
}
.footer__grid--item:nth-child(2) {
  background-color: #FFB703;
}
.footer__grid--item:nth-child(3) {
  background-color: #FB8500;
}
.footer .contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer .contact__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer .contact a {
  text-decoration: none;
  color: inherit;
}
.footer .contact a:hover {
  text-decoration: underline;
}
.footer .social {
  display: flex;
  gap: 1rem;
}
.footer .social__link {
  text-decoration: none;
}
.footer .social__link .icon {
  width: 2rem;
  height: 2rem;
}

.form-group {
  margin-bottom: 1rem;
}
.form-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.32px;
  line-height: 1rem;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}
.form-control,
.form .text-area {
  margin: 0;
  font-size: 100%;
  font-family: inherit;
  vertical-align: initial;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.125rem;
  letter-spacing: 0.16px;
  outline: 2px solid transparent;
  outline-offset: -2px;
  background-color: rgb(183.7608695652, 221.5869565217, 239.2391304348);
  width: 100%;
  height: 2.5rem;
  padding: 0 1rem;
  color: #353131;
  border: none;
}
.form-control:focus,
.form .text-area:focus {
  outline: 2px solid #219EBC;
  outline-offset: -2px;
}
.form .text-area {
  min-width: 10rem;
  min-height: 6rem;
  padding: 0.6875rem 1rem;
  order: 3;
  resize: vertical;
}
.form .form-control-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-block: 2rem;
}
.form input[type=checkbox] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: none;
  margin: 0;
  background: rgb(183.7608695652, 221.5869565217, 239.2391304348);
}
.form input[type=checkbox]:checked {
  background: #219EBC;
}
.form-helper-text {
  display: block;
  margin-block: 1rem;
}
.form a {
  color: #003049;
}

.surname-zq2969o3Ys {
  display: none;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
@media (width <= 600px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery__grid .intro {
  grid-column: span 2;
  background-color: #8ECAE6;
}
.gallery .intro {
  padding: 2rem;
}
.gallery .intro blockquote {
  color: #003049;
  font-size: 1.5rem;
  font-family: "Oooh Baby", cursive;
  margin: 0;
}
.gallery .intro .signature img {
  height: 2.5rem;
  width: auto;
  opacity: 0.8;
  filter: invert(11%) sepia(28%) saturate(5838%) hue-rotate(179deg) brightness(100%) contrast(102%);
}

.header {
  background-color: #003049;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 2rem;
}
@media (width <= 600px) {
  .header {
    flex-direction: row;
    padding: 1rem;
  }
}
.header__logo {
  width: clamp(5rem, 16vw, 8rem);
}
.header__nav {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
@media (width <= 600px) {
  .header__nav {
    flex-direction: row;
  }
}
.header__nav-item {
  color: #FFB703;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10;
}
.lightbox__img {
  max-width: 94vw;
  max-height: 94vh;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 0.5rem solid #fff;
}
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #fff;
  border: none;
  border-radius: 50%;
  background-color: transparent;
  width: 5rem;
  height: 5rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 5rem;
}

.page-piece .container {
  grid-template-areas: "header hero hero hero" "gallery gallery details details" "footer footer footer footer";
}
.page-piece .gallery {
  grid-area: gallery;
}
.page-piece .gallery__grid {
  grid-template-columns: repeat(2, 1fr);
}
@media (width <= 600px) {
  .page-piece .gallery__grid {
    grid-template-columns: 1fr;
  }
}
.page-piece .details {
  grid-area: details;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.page-piece .details .story {
  background-color: rgb(238.5, 222, 195);
  padding: 2rem;
  color: #003049;
  font-size: 1.5rem;
  font-family: "Oooh Baby", cursive;
  flex-grow: 1;
}
.page-piece .details .story p {
  margin: 0;
}
.page-piece .details .story p + p {
  margin-top: 0.5rem;
}
.page-piece .details .cta {
  padding: 2rem;
  background-color: #003049;
  color: #fff;
}
.page-piece .details .cta h2 {
  color: #8ECAE6;
  font-weight: 600;
  font-size: 1.5rem;
}
.page-piece .details .cta p {
  margin-bottom: 2rem;
}

.page-contact .container {
  grid-template-areas: "header aside form form" "footer footer footer footer";
}
.page-contact .header {
  background-color: tomato;
}
.page-contact .header a {
  color: black;
}
.page-contact aside {
  grid-area: aside;
  background-color: #219EBC;
  padding: 2rem;
  color: #fff;
}
.page-contact .form {
  grid-area: form;
  padding: 2rem;
  background-color: #8ECAE6;
}

.page-privacy {
  background-color: #003049;
}
.page-privacy .container {
  display: block;
  width: 40rem;
  max-width: 90vw;
  margin-inline: auto;
}
.page-privacy .header {
  align-items: flex-start;
}
.page-privacy .legal,
.page-privacy .footer {
  background-color: #003049;
  color: #fff;
  padding: 2rem;
}
