:root {
  --ivory: #f8f4ec;
  --paper: #fffdf8;
  --blush: #ead0ca;
  --blush-deep: #cf8f84;
  --sage-pale: #e4e8dd;
  --sage-deep: #65715b;
  --orange: #e86f36;
  --ink: #352f2b;
  --muted: #766d66;
  --line: rgba(53, 47, 43, 0.14);
  --shadow: 0 24px 65px rgba(77, 61, 51, 0.13);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Noto Sans Thai", "Leelawadee UI", Tahoma, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: min(1420px, calc(100% - 96px));
  margin-inline: auto;
}

.screen-reader-text {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  white-space: nowrap;
}

.screen-reader-text:focus {
  z-index: 99999;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  clip-path: none;
  border-radius: 8px;
  background: var(--paper);
}

.announcement {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 20px;
  background: var(--sage-deep);
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.announcement i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blush);
}

.site-header {
  min-height: 106px;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}

.brand {
  width: 220px;
  height: 84px;
  display: grid;
  align-items: center;
}

.brand-logo,
.footer-logo-image,
.custom-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav .menu,
.site-footer nav .menu {
  display: flex;
  align-items: center;
  gap: 42px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.desktop-nav .menu a,
.site-footer nav .menu a {
  position: relative;
  display: block;
  padding: 12px 0;
}

.desktop-nav .menu a::after,
.site-footer nav .menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 1px;
  background: currentColor;
  transition: right 0.25s ease;
}

.desktop-nav .menu a:hover::after,
.desktop-nav .menu a:focus-visible::after,
.desktop-nav .current-menu-item > a::after,
.site-footer nav .menu a:hover::after,
.site-footer nav .menu a:focus-visible::after {
  right: 0;
}

.line-pill {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 17px 10px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.line-pill:hover {
  transform: translateY(-2px);
  background: white;
}

.line-pill span {
  width: 36px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #56b867;
  color: white;
  font-size: 9px;
  font-weight: 800;
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: 655px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(42px, 5vw, 88px);
  align-items: center;
  padding-block: 68px 60px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 470px;
  height: 470px;
  left: -360px;
  top: -110px;
  border-radius: 50%;
  background: rgba(234, 208, 202, 0.42);
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--sage-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 700px;
  margin: 23px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 5.35vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

h1 em {
  color: var(--orange);
  font-weight: 400;
}

.hero-intro {
  max-width: 550px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 31px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 15px 17px 15px 25px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  box-shadow: 0 14px 30px rgba(53, 47, 43, 0.18);
  font-size: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 19px 36px rgba(53, 47, 43, 0.24);
}

.primary-button b {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-size: 17px;
}

.text-link {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
}

.social-proof {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
  color: var(--muted);
  font-size: 12px;
}

.social-proof strong {
  display: inline-block;
  margin-right: 5px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 500;
}

.social-proof small {
  display: block;
  margin-top: 2px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 37px;
  height: 37px;
  margin-left: -9px;
  border: 2px solid var(--ivory);
  border-radius: 50%;
  object-fit: cover;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.hero-collage {
  height: 525px;
  position: relative;
}

.soft-shape {
  position: absolute;
  inset: 16px 34px 18px 86px;
  border-radius: 48% 52% 43% 57% / 42% 38% 62% 58%;
  background: var(--sage-pale);
}

.hero-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #ddd;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  width: 42%;
  height: 91%;
  left: 28%;
  top: 0;
  border-radius: 200px 200px 38px 38px;
}

.hero-photo-left {
  width: 28%;
  height: 57%;
  left: 1%;
  bottom: 0;
  border-radius: 30px 30px 150px 30px;
  transform: rotate(-3deg);
}

.hero-photo-right {
  width: 28%;
  height: 56%;
  right: 0;
  top: 23%;
  border-radius: 30px 150px 30px 30px;
  transform: rotate(3deg);
}

.drop-tag {
  position: absolute;
  left: 14%;
  top: 5%;
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  border: 6px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  background: var(--blush);
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.13em;
  transform: rotate(-9deg);
}

.leaf-line {
  position: absolute;
  right: 10%;
  bottom: 2%;
  width: 90px;
  height: 44px;
  border: 1px solid rgba(101, 113, 91, 0.4);
  border-radius: 100% 0 100% 0;
  transform: rotate(-17deg);
}

.feed-section {
  padding-block: 72px 82px;
  border-radius: 54px 54px 0 0;
  background: var(--paper);
  box-shadow: 0 -10px 45px rgba(77, 61, 51, 0.045);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 8px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section-heading > a {
  color: var(--muted);
  font-size: 13px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.molypoly-instagram-feed #sb_instagram {
  width: 100% !important;
  padding: 0 !important;
}

.molypoly-instagram-feed #sb_instagram .sb_instagram_header,
.molypoly-instagram-feed #sb_instagram .sbi_load_btn,
.molypoly-instagram-feed #sb_instagram .sbi_follow_btn {
  display: none !important;
}

.molypoly-instagram-feed #sb_instagram #sbi_images {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
  width: 100% !important;
  padding: 0 !important;
}

.molypoly-instagram-feed #sb_instagram .sbi_item {
  width: 100% !important;
  padding: 0 !important;
}

.molypoly-instagram-feed #sb_instagram .sbi_photo_wrap {
  height: 100%;
}

.molypoly-instagram-feed #sb_instagram .sbi_photo {
  aspect-ratio: 1 / 1.12;
  height: auto !important;
  overflow: hidden;
  border-radius: 24px;
  background: #ece9e2;
}

.molypoly-instagram-feed #sb_instagram .sbi_photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.48s ease;
}

.molypoly-instagram-feed #sb_instagram .sbi_photo:hover img,
.molypoly-instagram-feed #sb_instagram .sbi_photo:focus-visible img {
  transform: scale(1.04);
}

.post-card {
  aspect-ratio: 1 / 1.12;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #ece9e2;
  isolation: isolate;
}

.post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.48s ease;
}

.post-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(35, 29, 26, 0.74));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.post-card span {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 19px;
  color: white;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.post-card:hover img {
  transform: scale(1.04);
}

.post-card:hover::after,
.post-card:focus-visible::after,
.post-card:hover span,
.post-card:focus-visible span {
  opacity: 1;
}

.post-card:hover span,
.post-card:focus-visible span {
  transform: translateY(0);
}

.articles-section {
  padding-block: 105px 120px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.45);
}

.article-card > a {
  height: 330px;
  display: block;
  overflow: hidden;
}

.article-card > a > img,
.card-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.card-placeholder {
  display: grid;
  place-items: center;
  background: var(--blush);
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 38px;
}

.article-card:hover > a > img {
  transform: scale(1.025);
}

.article-card > div {
  padding: 26px 27px 28px;
}

.article-card p {
  margin: 0;
  color: var(--blush-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 12px 0 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.article-card span {
  display: block;
  min-height: 28px;
  color: var(--muted);
  font-size: 13px;
}

.article-card div > a {
  display: inline-flex;
  gap: 8px;
  margin-top: 24px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
}

.subpage-hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 90px;
  align-items: center;
  padding-block: 72px 86px;
}

.subpage-hero > div > p:last-child,
.listing-header > p {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.subpage-hero-image {
  height: 510px;
  margin: 0;
  overflow: hidden;
  border-radius: 260px 260px 34px 34px;
  box-shadow: var(--shadow);
}

.subpage-hero-image img,
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-section {
  padding-block: 105px;
  background: var(--sage-deep);
  color: white;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.25fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.story-stat {
  width: 220px;
  height: 220px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  text-align: center;
}

.story-stat strong {
  font-family: Georgia, serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 0.95;
}

.story-stat span,
.story-stat small {
  margin-top: 8px;
  color: var(--blush);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-stat small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.04em;
  text-transform: none;
}

.story-copy .section-kicker {
  color: var(--blush);
}

.story-copy h2 {
  max-width: 620px;
  margin: 12px 0 22px;
  font-family: Georgia, serif;
  font-size: clamp(48px, 4.5vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}

.story-copy .entry-content {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.9;
}

.story-copy a {
  display: inline-flex;
  gap: 8px;
  margin-top: 17px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.story-copy .story-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 17px;
}

.story-copy .story-social-links a {
  margin-top: 0;
}

.story-image {
  height: 390px;
  margin: 0;
  overflow: hidden;
  border-radius: 190px 190px 28px 28px;
}

.subpage-main {
  padding-block: 88px 115px;
}

.listing-header {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 62px;
}

.listing-header h1 {
  max-width: 800px;
  margin-bottom: 0;
}

.listing-header > p {
  margin-bottom: 12px;
  font-size: 14px;
}

.article-grid-full {
  row-gap: 34px;
}

.pagination {
  margin-top: 55px;
  text-align: center;
}

.pagination .nav-links {
  display: inline-flex;
  gap: 8px;
}

.pagination .page-numbers {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding-inline: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.pagination .current {
  background: var(--ink);
  color: white;
}

.contact-page {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 105px;
  align-items: center;
  padding-block: 90px 110px;
}

.contact-page-copy .entry-content {
  max-width: 610px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.contact-page-actions {
  display: grid;
  gap: 17px;
}

.contact-page-actions > a {
  min-height: 108px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.52);
  transition: transform 0.25s ease, background 0.25s ease;
}

.contact-page-actions > a:hover {
  transform: translateX(5px);
  background: white;
}

.contact-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-size: 11px;
  font-weight: 800;
}

.line-icon {
  background: #56b867;
}

.ig-icon {
  background: var(--orange);
}

.fb-icon {
  background: #1877f2;
}

.contact-page-actions small,
.contact-page-actions strong {
  display: block;
}

.contact-page-actions small {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
}

.contact-page-actions strong {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
}

.contact-page-actions b {
  font-size: 24px;
}

.contact-note {
  padding-block: 55px;
  background: var(--blush);
}

.contact-note .shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.contact-note p,
.contact-note span {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-note strong {
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 400;
}

.contact-note span {
  max-width: 250px;
  color: var(--muted);
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: right;
  text-transform: none;
}

.content-page,
.single-post {
  max-width: 960px;
  padding-block: 90px 120px;
}

.content-header,
.single-header {
  margin-bottom: 55px;
}

.content-header h1,
.single-header h1 {
  max-width: 900px;
}

.entry-content {
  font-size: 16px;
  line-height: 1.9;
}

.entry-content > * {
  max-width: 760px;
  margin-inline: auto;
}

.entry-content > .alignwide {
  max-width: 1120px;
}

.entry-content > .alignfull {
  max-width: none;
}

.entry-content a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.single-featured {
  max-width: 1120px;
  margin: 0 auto 55px;
  overflow: hidden;
  border-radius: 32px;
}

.post-navigation,
.comments-area {
  max-width: 760px;
  margin: 70px auto 0;
  padding-top: 35px;
  border-top: 1px solid var(--line);
}

.post-navigation .nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.comments-area input:not([type="submit"]),
.comments-area textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.comments-area input[type="submit"] {
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  cursor: pointer;
}

.comment-list {
  padding-left: 24px;
}

.empty-state,
.error-page {
  min-height: 560px;
  display: grid;
  place-content: center;
  justify-items: start;
  text-align: left;
}

.empty-state h2,
.error-page h1 {
  font-family: Georgia, serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
}

.error-page p:not(.eyebrow) {
  color: var(--muted);
}

.error-page .primary-button {
  margin-top: 24px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-grid {
  min-height: 160px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.footer-logo {
  width: 185px;
  height: 100px;
}

.footer-grid p {
  justify-self: end;
  color: var(--muted);
  font-size: 11px;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .shell {
    width: min(100% - 48px, 900px);
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: relative;
  }

  .mobile-menu summary {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 19px;
    height: 1px;
    background: var(--ink);
  }

  .mobile-menu nav {
    width: 210px;
    position: absolute;
    z-index: 20;
    top: 55px;
    right: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .mobile-menu .menu {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-menu .menu a {
    display: block;
    padding: 12px;
    border-radius: 10px;
  }

  .mobile-menu .menu a:hover {
    background: var(--ivory);
  }

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

  .hero-copy {
    max-width: 700px;
  }

  .hero-collage {
    height: 600px;
  }

  .post-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .molypoly-instagram-feed #sb_instagram #sbi_images {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .article-card {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
  }

  .article-card > a {
    height: 290px;
  }

  .article-card > div {
    align-self: center;
  }

  .subpage-hero {
    grid-template-columns: 1fr 0.8fr;
    gap: 48px;
  }

  .story-grid {
    grid-template-columns: 0.55fr 1.45fr;
  }

  .story-image {
    display: none;
  }

  .listing-header,
  .contact-page {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-note .shell {
    grid-template-columns: auto 1fr;
  }

  .contact-note span {
    grid-column: 1 / -1;
    max-width: none;
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
  }

  .footer-grid p {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: -38px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 85px;
  }

  .shell {
    width: min(100% - 30px, 560px);
  }

  .announcement {
    gap: 9px;
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .site-header {
    min-height: 82px;
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .brand {
    width: 155px;
    height: 70px;
  }

  .line-pill {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 48px 42px;
    gap: 46px;
  }

  h1 {
    font-size: clamp(50px, 14.5vw, 70px);
  }

  .hero-intro {
    font-size: 14px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-collage {
    height: 400px;
  }

  .hero-photo-main {
    width: 55%;
    left: 23%;
  }

  .hero-photo-left,
  .hero-photo-right {
    width: 31%;
  }

  .drop-tag {
    left: 7%;
    width: 72px;
    height: 72px;
    font-size: 8px;
  }

  .feed-section {
    padding-block: 55px 65px;
    border-radius: 34px 34px 0 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 24px;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .post-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .molypoly-instagram-feed #sb_instagram #sbi_images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .molypoly-instagram-feed #sb_instagram .sbi_photo {
    border-radius: 17px;
  }

  .post-card {
    border-radius: 17px;
  }

  .post-card::after {
    opacity: 0.65;
  }

  .post-card span {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 10px;
    opacity: 1;
    transform: none;
  }

  .articles-section {
    padding-block: 78px;
  }

  .article-card {
    display: block;
  }

  .article-card > a {
    height: 320px;
  }

  .subpage-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 55px 72px;
  }

  .subpage-hero-image {
    height: 440px;
  }

  .story-section {
    padding-block: 75px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-stat {
    width: 145px;
    height: 145px;
  }

  .story-stat strong {
    font-size: 42px;
  }

  .story-copy h2 {
    font-size: 50px;
  }

  .subpage-main {
    padding-block: 60px 80px;
  }

  .listing-header {
    gap: 8px;
    margin-bottom: 42px;
  }

  .contact-page {
    min-height: auto;
    padding-block: 62px 78px;
  }

  .contact-page-actions > a {
    min-height: 92px;
    gap: 15px;
    padding: 15px;
  }

  .contact-icon {
    width: 52px;
    height: 52px;
  }

  .contact-page-actions strong {
    font-size: 18px;
  }

  .contact-note .shell {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .contact-note strong {
    font-size: 29px;
  }

  .footer-grid {
    min-height: 240px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 8px;
  }

  .footer-logo {
    width: 170px;
    height: 88px;
  }

  .site-footer nav .menu {
    flex-wrap: wrap;
    gap: 22px;
  }

  .footer-grid p {
    grid-column: auto;
    margin-top: 14px;
  }

  .post-navigation .nav-links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-photo-main {
    animation: reveal 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .hero-photo-left {
    animation: reveal 0.8s 0.12s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .hero-photo-right {
    animation: reveal 0.8s 0.22s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  @keyframes reveal {
    from {
      opacity: 0;
      translate: 0 18px;
    }
  }
}
