@font-face {
  font-family: "Averia Local";
  src: url("Email Signature/assets/AveriaSerifLibre-Italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  --black: #000000;
  --cream: #FCFAF2;
  --green: #3C5139;
  --sage: #C6D6C0;
  --white: #ffffff;
  --ink-soft: rgba(0, 0, 0, 0.68);
  --line: rgba(60, 81, 57, 0.2);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.15);
  --serif: "Averia Serif Libre", "Averia Local", Georgia, serif;
  --accent: "Crimson Pro", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--black);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--cream);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(252, 250, 242, 0.94);
  color: var(--green);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 150px;
  height: 68px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 180ms ease;
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  filter: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-family: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  overflow: hidden;
  color: var(--cream);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.25) 58%, rgba(0, 0, 0, 0.42)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0.68));
}

.hero-content {
  position: relative;
  align-self: end;
  width: min(920px, 100%);
  padding: 130px clamp(22px, 6vw, 76px) 130px;
}

.eyebrow,
.card-kicker {
  margin: 0 0 16px;
  font-family: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  line-height: 0.98;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: 6.2rem;
  white-space: nowrap;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 5vw, 5.9rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 2.3vw, 2.7rem);
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 32px;
  font-size: clamp(1.18rem, 2vw, 1.58rem);
}

.hero-actions,
.button {
  display: flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--accent);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-primary {
  background: var(--green);
  color: var(--cream);
}

.button-ghost {
  border-color: rgba(252, 250, 242, 0.72);
  color: var(--cream);
  background: rgba(252, 250, 242, 0.08);
  backdrop-filter: blur(14px);
}

.hero-summary {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 28px;
  left: clamp(18px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(252, 250, 242, 0.38);
}

.hero-summary span {
  padding: 18px 14px;
  border-right: 1px solid rgba(252, 250, 242, 0.28);
  font-family: var(--accent);
  font-size: 0.86rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.hero-summary span:last-child {
  border-right: 0;
}

.section-pad {
  padding: clamp(72px, 10vw, 140px) clamp(20px, 5vw, 76px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.intro-copy,
.section-heading,
.booking-copy,
.contact-copy,
.reviews-copy,
.location-card {
  color: var(--green);
}

.intro-text {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.mini-stats div {
  min-height: 112px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(198, 214, 192, 0.2);
}

.mini-stats strong,
.mini-stats span {
  display: block;
}

.mini-stats strong {
  color: var(--green);
  font-family: var(--accent);
  font-size: 1.7rem;
  line-height: 1;
}

.mini-stats span {
  margin-top: 10px;
  font-size: 0.94rem;
}

.visual-band {
  height: clamp(360px, 64vw, 760px);
  overflow: hidden;
}

.visual-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.visual-band img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stays-section {
  background: var(--green);
  color: var(--cream);
}

.section-heading {
  max-width: 920px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.stays-section .section-heading,
.retreats .section-heading {
  color: var(--cream);
}

.stay-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.stay-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(252, 250, 242, 0.22);
  background: rgba(252, 250, 242, 0.08);
}

.featured-card {
  background: var(--cream);
  color: var(--green);
}

.property-carousel {
  position: relative;
  flex: 0 0 auto;
  aspect-ratio: 1.12;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.12);
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scroll-snap-align: start;
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(252, 250, 242, 0.6);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.carousel-control svg {
  width: 19px;
  height: 19px;
}

.carousel-prev {
  left: 12px;
}

.carousel-next {
  right: 12px;
}

.carousel-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.48);
  font-family: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
}

.stay-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(24px, 3vw, 36px);
}

.stay-card-body p {
  color: inherit;
}

.feature-list {
  display: grid;
  gap: 11px;
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
}

.feature-list li,
.amenity-grid span,
.instagram-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list svg,
.amenity-grid svg,
.instagram-link svg,
.retreat-item svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-family: var(--accent);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.retreats {
  background: #dce8d7;
  color: var(--green);
}

.retreat-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-bottom: 34px;
}

.retreat-panel p:last-child {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.retreat-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
  height: 430px;
  min-height: 0;
  margin-bottom: 18px;
  overflow: hidden;
  background: var(--green);
  color: var(--cream);
}

.retreat-feature img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.retreat-feature-copy {
  align-self: center;
  padding: clamp(28px, 4vw, 52px);
}

.retreat-feature-copy p:last-child {
  margin-bottom: 0;
  color: rgba(252, 250, 242, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

.retreat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.retreat-item {
  min-height: 270px;
  padding: 32px;
  border: 1px solid rgba(60, 81, 57, 0.2);
  background: rgba(252, 250, 242, 0.5);
}

.retreat-item svg {
  margin-bottom: 28px;
}

.retreat-item h3 {
  font-size: clamp(1.5rem, 2vw, 2.1rem);
}

.retreat-item p {
  color: var(--ink-soft);
}

.amenities {
  background: var(--sage);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.amenity-grid span {
  min-height: 82px;
  padding: 18px;
  border: 1px solid rgba(60, 81, 57, 0.24);
  background: rgba(252, 250, 242, 0.52);
  color: var(--green);
  font-family: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

.gallery {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  display: block;
  min-width: 0;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--sage);
  cursor: zoom-in;
}

.gallery-item img {
  transition: transform 360ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.booking-copy p {
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 1.5vw, 1.22rem);
}

.policy-box {
  margin-top: 28px;
  padding: 24px;
  border-left: 4px solid var(--green);
  background: rgba(198, 214, 192, 0.34);
}

.policy-box h3 {
  font-size: 1.5rem;
}

.policy-box p {
  margin-bottom: 0;
  font-size: 1rem;
}

.booking-widget {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.widget-top {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--green);
}

.widget-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cream);
  opacity: 0.75;
}

.widget-content {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 34px;
  color: var(--green);
  text-align: center;
}

.widget-content svg {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}

.widget-content p {
  color: var(--ink-soft);
}

.calendar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--green);
  font-family: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.calendar-link svg {
  width: 17px;
  height: 17px;
}

.reviews {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: start;
  background: var(--green);
  color: var(--cream);
}

.reviews-copy {
  color: var(--cream);
}

.reviews-copy p {
  max-width: 700px;
  color: rgba(252, 250, 242, 0.78);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.review-summary {
  display: grid;
  gap: 14px;
}

.score-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px;
  background: var(--cream);
  color: var(--green);
}

.score-number {
  font-family: var(--accent);
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 600;
  line-height: 0.8;
}

.rating-row {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.rating-row svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.score-card p {
  margin-bottom: 0;
  font-family: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(252, 250, 242, 0.18);
}

.score-grid span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 13px 16px;
  background: rgba(252, 250, 242, 0.08);
  font-family: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.score-grid strong {
  font-size: 1rem;
}

.testimonial-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--cream);
  color: var(--green);
}

.review-card p {
  display: -webkit-box;
  overflow: hidden;
  font-size: clamp(1.08rem, 1.6vw, 1.38rem);
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.review-card.is-expanded p {
  display: block;
  overflow: visible;
}

.review-meta {
  display: grid;
  gap: 3px;
  margin-bottom: 18px;
}

.review-meta strong,
.review-meta span {
  font-family: var(--accent);
  font-weight: 600;
}

.review-meta strong {
  color: var(--green);
  font-size: 1rem;
}

.review-meta span {
  color: var(--ink-soft);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.review-stars {
  margin-bottom: 12px;
  color: var(--green);
  font-family: var(--accent);
  letter-spacing: 3px;
}

.review-toggle {
  width: fit-content;
  margin-top: auto;
  padding: 16px 0 3px;
  border: 0;
  border-bottom: 1px solid var(--green);
  color: var(--green);
  background: transparent;
  font-family: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.review-toggle[hidden] {
  display: none;
}

.location {
  min-height: 580px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.2)),
    url("Website Assets/location/samara-beach.jpg") center/cover;
  color: var(--cream);
}

.location-card {
  max-width: 680px;
  color: var(--cream);
}

.location-card p {
  color: rgba(252, 250, 242, 0.82);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.contact-copy p {
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.instagram-link {
  width: fit-content;
  margin-top: 28px;
  color: var(--green);
  font-family: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--white);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-family: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(60, 81, 57, 0.28);
  border-radius: 0;
  padding: 13px 14px;
  background: var(--cream);
  color: var(--black);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  text-transform: none;
}

.inquiry-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.instagram {
  background: var(--sage);
}

.instagram-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(30px, 5vw, 58px);
  color: var(--green);
}

.instagram-heading h2 {
  margin-bottom: 0;
}

.instagram-feed {
  width: 100%;
}

.instagram-feed .juicer-feed {
  width: 100%;
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 42px 20px;
  border-top: 1px solid var(--line);
  color: var(--green);
  text-align: center;
}

.site-footer img {
  width: 42px;
}

.site-footer p {
  margin-bottom: 0;
  font-family: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

.site-footer span {
  color: var(--ink-soft);
}

.site-footer a {
  margin-top: 8px;
  border-bottom: 1px solid var(--green);
  font-family: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 88svh;
  width: min(1100px, 100%);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(252, 250, 242, 0.5);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.42);
  cursor: pointer;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 4.5rem;
  }

  .stay-grid,
  .retreat-grid,
  .amenity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro,
  .retreat-panel,
  .retreat-feature,
  .booking,
  .reviews,
  .contact {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .retreat-feature img {
    min-height: 360px;
  }

  .retreat-feature {
    height: auto;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 70px;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 20px 22px;
    background: rgba(252, 250, 242, 0.98);
    color: var(--green);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 12px 0;
  }

  .hero {
    min-height: 96svh;
  }

  .hero-content {
    padding: 116px 22px 168px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: clamp(2.3rem, 12vw, 4.1rem);
  }

  .hero-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-summary span {
    padding: 13px 10px;
    border-bottom: 1px solid rgba(252, 250, 242, 0.22);
  }

  .mini-stats,
  .stay-grid,
  .retreat-grid,
  .amenity-grid,
  .testimonial-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .score-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .widget-content {
    min-height: 320px;
  }

  .instagram-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .instagram-heading .button {
    width: fit-content;
  }
}

@media (max-width: 430px) {
  .button {
    width: 100%;
  }

  .brand {
    width: 128px;
    height: 58px;
  }

  h1 {
    font-size: 2.35rem;
  }

}
