@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600&display=swap");

:root {
  --lux-ink: #1f2e3d;
  --lux-gold: #c5a47a;
  --lux-sand: #f2eee8;
  --lux-card: #ffffff;
  --lux-line: rgba(51, 51, 51, 0.1);
  --font-ui: "Open Sans", "Source Sans Pro", "Segoe UI", Tahoma, sans-serif;
}

body,
input,
select,
textarea {
  font-family: var(--font-ui);
}

h1,
h2,
h3,
h4,
h5,
h6,
#header h1,
#header nav > ul > li > a,
#navPanel .link,
#navButton .toggle {
  font-family: var(--font-ui);
}

body {
  background: linear-gradient(145deg, #f6f2ec 0%, #efebe4 50%, #ece7df 100%);
}

body.landing #page-wrapper {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)),
    radial-gradient(circle at 10% 10%, rgba(197, 164, 122, 0.18), transparent 32%),
    radial-gradient(circle at 90% 0%, rgba(31, 46, 61, 0.1), transparent 36%);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  background: #fff;
  color: #000;
  z-index: 999;
  padding: 0.5rem 0.75rem;
}

#header h1,
#header nav > ul > li > a {
  font-weight: 500;
}

#header h1 a {
  color: #fff;
}

#header nav > ul > li > a.button {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}

#banner {
  position: relative;
}

#banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(26, 34, 44, 0.65), rgba(26, 34, 44, 0.36)),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 70px,
      rgba(255, 255, 255, 0.06) 70px,
      rgba(255, 255, 255, 0.06) 71px
    );
  pointer-events: none;
}

#banner > * {
  position: relative;
  z-index: 1;
}

#banner h2 {
  font-size: 2.45em;
  max-width: 24ch;
  margin-inline: auto;
}

#banner p {
  max-width: 66ch;
  margin-inline: auto;
}

.box {
  border-radius: 12px;
  border-top: solid 4px var(--lux-gold);
  box-shadow: 0 16px 30px rgba(30, 20, 12, 0.08);
}

.box.special {
  background: linear-gradient(145deg, #fff 0%, #fbf8f3 100%);
}

.about-layout {
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 2rem;
  align-items: center;
}

.about-photo {
  margin: 0;
}

.about-photo img {
  display: block;
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  border: 3px solid rgba(197, 164, 122, 0.4);
  box-shadow: 0 14px 26px rgba(27, 24, 20, 0.16);
  margin: 0 auto;
}

.box.special.features {
  border-top-color: #c5a47a;
}

.box.special.features .icon.major {
  background: var(--lux-ink);
}

.box.special.features .icon.major.accent2,
.box.special.features .icon.major.accent3,
.box.special.features .icon.major.accent4,
.box.special.features .icon.major.accent5 {
  background: linear-gradient(140deg, #c5a47a, #c5a47a);
}

.mini-list {
  margin: 0;
  padding-left: 1.1rem;
}

.mini-list li {
  margin-bottom: 0.5rem;
}

.hero-trust-points,
.contact-trust-list {
  list-style: none;
  padding: 0;
  margin: 1rem auto 0;
  max-width: 52rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.hero-trust-points li,
.contact-trust-list li {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.92rem;
}

#areas .areas-subtext,
#awards .awards-links {
  margin: 0.35rem auto 0;
  max-width: 54rem;
}

#awards .awards-list {
  max-width: 54rem;
  margin: 1rem auto 0;
  text-align: left;
}

#awards .awards-links {
  font-size: 0.95rem;
}

#press .press-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

#press .press-grid a {
  display: block;
  padding: 0.9rem 1rem;
  border: 1px solid var(--lux-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

#areas .area-groups {
  display: grid;
  gap: 1rem;
  margin-top: 1.1rem;
  text-align: left;
}

#areas .area-group {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--lux-line);
  border-radius: 14px;
}

#areas .area-group h4 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  color: #333;
}


#areas .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.2rem;
}

#areas .chips span {
  display: inline-block;
  background: var(--lux-sand);
  border: 1px solid var(--lux-line);
  padding: 0.2rem 0.62rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: #4f4a44;
}

@media screen and (min-width: 981px) {
  #areas .area-groups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }
}

@media screen and (max-width: 980px) {
  #press .press-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 640px) {
  #press .press-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust-points,
  .contact-trust-list {
    justify-content: flex-start;
  }
}

#faq .faq-item {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ece6de;
}

#faq .faq-item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

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

.instagram-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  text-align: left;
}

.instagram-header h3,
.instagram-header p {
  margin-bottom: 0;
}

.instagram-profile-link {
  white-space: nowrap;
}

.instagram-card {
  margin: 0;
  padding: 0.75rem;
  background: #fff;
  border: 1px solid rgba(31, 46, 61, 0.12);
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(31, 46, 61, 0.08);
}

.instagram-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.instagram-card p {
  margin: 0.7rem 0 0.45rem;
  font-size: 0.92rem;
  line-height: 1.4;
  min-height: 4.1em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.instagram-link {
  font-weight: 600;
}

.instagram-status {
  margin: 0.9rem 0 0;
  color: #4f4a44;
}


#cta {
  background-image:
    linear-gradient(145deg, rgba(197, 164, 122, 0.18), rgba(31, 46, 61, 0.84)),
    url("html5up-alpha/assets/css/images/overlay.png"),
    url("html5up-alpha/images/banner.jpg");
  background-position: center;
  background-size: cover;
}

#cta textarea,
#cta select,
#cta input[type="text"],
#cta input[type="email"],
#cta input[type="tel"] {
  color: #efefef;
}

#cta textarea::placeholder,
#cta input::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.contact-details {
  margin: 0 auto 1.3rem;
  width: 25em;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.18);
  text-align: left;
}

.contact-details p {
  margin: 0 0 0.45rem;
  color: #fff;
}

.contact-details strong,
.contact-details span,
.contact-details .contact-address,
.contact-details .contact-address span {
  color: #fff;
}

.contact-details p:last-child {
  margin-bottom: 0;
}

.contact-details a {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

.contact-address {
  flex-direction: column;
}

.form-status {
  margin-top: 1rem;
  font-weight: 600;
}

.form-status.success {
  color: #d9ffdf;
}

.form-status.error {
  color: #ffd6d6;
}

#footer .icons a {
  border-bottom: 0;
}

.footer-logos {
  text-align: center;
  margin: 0.4rem 0 1.2rem;
}

.footer-logos img {
  width: 400px;
  height: auto;
  display: inline-block;
  opacity: 0.95;
}

@media screen and (max-width: 736px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .instagram-profile-link {
    text-align: center;
  }

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

  .about-photo img {
    width: 200px;
    height: 200px;
  }

  #banner h2 {
    font-size: 1.6em;
  }

  #banner p {
    font-size: 1em;
  }
}

@media screen and (max-width: 980px) and (min-width: 737px) {
  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.article-page header p {
  max-width: 70ch;
  margin-inline: auto;
}

.article-page .box h3 {
  margin-top: 0.25rem;
}

.article-page .box p,
.article-page .box li {
  font-size: 1.02rem;
  line-height: 1.72;
}

.article-page .faq-item h4 {
  margin-bottom: 0.45rem;
}
