@import url("https://cdn.zyrosite.com/u1/google-fonts/font-faces?family=Roboto+Slab:wght@400;500;600&display=swap");

/* Keep every page inside the visible viewport. */
html {
  max-width: 100%;
  overflow-x: clip;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
}

:where(a, button, summary, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 3px;
}

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

/* SHARED LIVE-SITE HEADER */
.mfyc-site-header,
.mfyc-site-header * {
  box-sizing: border-box;
}

.mfyc-site-header {
  position: relative;
  z-index: 100;
  width: 100%;
  height: 113px;
  margin-left: 0;
  color: #0d141a;
  background: #fff;
  font-family: "Roboto Slab", Georgia, serif;
}

.mfyc-site-header-inner {
  width: min(1194px, calc(100% - 32px));
  height: 113px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 65px;
}

.mfyc-site-logo {
  display: block;
  flex: 0 0 auto;
}

.mfyc-site-logo img {
  width: 141px;
  height: 113px;
  display: block;
  object-fit: contain;
}

.mfyc-site-nav {
  display: flex;
  align-items: center;
  gap: 50px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.mfyc-site-header .mfyc-site-nav a {
  padding: 10px 0;
  color: inherit;
  border-bottom: 1px solid transparent;
  text-decoration: none;
}

.mfyc-site-header .mfyc-site-nav a:hover,
.mfyc-site-header .mfyc-site-nav a:focus-visible,
.mfyc-site-header .mfyc-site-nav a[aria-current="page"] {
  border-bottom-color: currentColor;
}

.mfyc-site-menu {
  display: none;
}

@media (max-width: 900px) {
  .mfyc-site-header,
  .mfyc-site-header-inner {
    height: 222px;
  }

  .mfyc-site-header-inner {
    width: min(328px, calc(100% - 62px));
    padding: 24px 0;
    justify-content: space-between;
    gap: 16px;
  }

  .mfyc-site-logo img {
    width: 217px;
    height: 174px;
  }

  .mfyc-site-nav {
    display: none;
  }

  .mfyc-site-menu {
    position: relative;
    display: block;
    margin-right: -8px;
  }

  .mfyc-site-menu summary {
    width: 44px;
    height: 44px;
    padding: 10px;
    display: grid;
    align-content: center;
    gap: 5px;
    list-style: none;
    cursor: pointer;
  }

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

  .mfyc-site-menu summary span {
    width: 24px;
    height: 2px;
    display: block;
    background: #0d141a;
  }

  .mfyc-site-menu[open] summary span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .mfyc-site-menu[open] summary span:nth-child(2) {
    opacity: 0;
  }

  .mfyc-site-menu[open] summary span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mfyc-site-menu nav {
    position: absolute;
    top: calc(100% + 24px);
    right: 0;
    width: min(280px, calc(100vw - 32px));
    padding: 14px 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
  }

  .mfyc-site-header .mfyc-site-menu nav a {
    width: 100%;
    padding: 10px 0;
    color: inherit;
    border-bottom: 1px solid transparent;
    text-align: right;
    text-decoration: none;
  }

  .mfyc-site-header .mfyc-site-menu nav a:hover,
  .mfyc-site-header .mfyc-site-menu nav a:focus-visible,
  .mfyc-site-header .mfyc-site-menu nav a[aria-current="page"] {
    border-bottom-color: currentColor;
  }
}

.mfyc-home3,
  .mfyc-home3 * {
    box-sizing: border-box;
  }


/* SHARED HOMEPAGE-STYLE FOOTER */
.mfyc-shared-footer,
.mfyc-shared-footer * {
  box-sizing: border-box;
}

.mfyc-shared-footer {
  width: 100%;
  margin-left: 0;
  padding: 42px 0;
  color: #4a3428;
  background: #f7f3ec;
  border-top: 1px solid rgba(74, 52, 40, .14);
  font-family: Arial, Helvetica, sans-serif;
}

.mfyc-shared-footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 36px;
  align-items: center;
}

.mfyc-shared-footer .mfyc-footer-brand {
  margin: 0;
  color: #4a3428;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

.mfyc-shared-footer .mfyc-footer-links {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
  color: #5d4b40;
  font-size: 14px;
  line-height: normal;
}

.mfyc-shared-footer .mfyc-footer-links a {
  padding: 0;
  color: inherit;
  border: 0;
  text-decoration: none;
}

.mfyc-shared-footer .mfyc-footer-links a:hover,
.mfyc-shared-footer .mfyc-footer-links a:focus-visible {
  text-decoration: underline;
}

.mfyc-shared-footer .mfyc-footer-copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(74, 52, 40, .1);
  color: #6f7869;
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .mfyc-shared-footer {
    padding: 36px 0;
  }

  .mfyc-shared-footer-inner {
    width: min(1180px, calc(100% - 28px));
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mfyc-shared-footer .mfyc-footer-links {
    flex-direction: column;
    justify-content: center;
    gap: 14px;
  }
}

/* TERMS AND CONDITIONS PAGE */
.mfyc-terms-body { margin: 0; }
.mfyc-terms-page, .mfyc-terms-page * { box-sizing: border-box; }
.mfyc-terms-page { width: 100%; color: #1a1a1a; background: #fff; font-family: "Roboto Slab", sans-serif; }
.mfyc-terms-page a { color: inherit; }
.mfyc-terms-header { position: relative; z-index: 10; height: 113px; background: #fff; }
.mfyc-terms-header-desktop { width: min(1240px, calc(100% - 32px)); height: 113px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 64px; }
.mfyc-terms-logo { display: block; flex: 0 0 auto; }
.mfyc-terms-logo img { width: 141px; height: 113px; display: block; object-fit: contain; }
.mfyc-terms-nav { display: flex; align-items: center; gap: 50px; color: #0d141a; font-size: 16px; font-weight: 400; line-height: 1.5; }
.mfyc-terms-nav a { padding: 10px 0; text-decoration: none; }
.mfyc-terms-header-mobile { display: none; }
.mfyc-terms-main { position: relative; width: min(1224px, calc(100% - 32px)); min-height: 3927px; margin: 0 auto; padding-top: 64px; }
.mfyc-terms-heading, .mfyc-terms-content { width: 812px; margin-left: 206px; }
.mfyc-terms-heading { min-height: 157px; }
.mfyc-terms-heading h1,
.mfyc-terms-heading p { margin: 0; color: #1a1a1a; font-size: 48px; font-weight: 600; line-height: 1.3; }
.mfyc-terms-content { margin-top: 58px; padding-bottom: 14px; color: #1a1a1a; font-size: 16px; line-height: 1.5; }
.mfyc-terms-content p { margin-top: 0; }
.mfyc-terms-content h6 { margin: 0; font-size: 16px; font-weight: 600; line-height: 1.5; }
.mfyc-terms-content ul { margin-top: 0; padding-left: 40px; }
.mfyc-terms-content a { text-decoration: underline; }
.mfyc-terms-footer { min-height: 320px; padding: 70px 16px 40px; color: #fff; background: #3e2b1a; }
.mfyc-terms-footer-grid { width: min(1224px, 100%); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mfyc-terms-footer h2 { margin: 0 0 24px; color: #fff; font-size: 20px; font-weight: 600; }
.mfyc-terms-socials { display: flex; gap: 14px; }
.mfyc-terms-socials a, .mfyc-terms-socials svg { width: 24px; height: 24px; display: block; }
.mfyc-terms-socials svg { fill: #fff; }
.mfyc-terms-footer-contact h2 { font-size: 12px; }
.mfyc-terms-footer-contact a { color: #fff; font-size: 14px; text-decoration: none; }
.mfyc-terms-footer-bottom { grid-column: 1 / -1; margin-top: 18px; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; color: #fff; font-size: 14px; }
.mfyc-terms-footer-bottom p { margin: 0; }
.mfyc-terms-footer-bottom a { color: #fff; text-decoration: underline; }

@media (max-width: 900px) {
  .mfyc-terms-header { height: 222px; }
  .mfyc-terms-header-desktop { display: none; }
  .mfyc-terms-header-mobile { width: min(100% - 32px, 1240px); height: 222px; margin: 0 auto; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; }
  .mfyc-terms-header-mobile .mfyc-terms-logo img { width: 217px; height: 174px; }
  .mfyc-terms-menu { position: relative; }
  .mfyc-terms-menu summary { width: 44px; height: 44px; padding: 9px; display: grid; align-content: center; gap: 5px; list-style: none; cursor: pointer; }
  .mfyc-terms-menu summary::-webkit-details-marker { display: none; }
  .mfyc-terms-menu summary span { width: 26px; height: 2px; display: block; background: #0d141a; }
  .mfyc-terms-menu nav { position: absolute; top: calc(100% + 24px); right: 0; width: min(280px, calc(100vw - 32px)); padding: 14px 22px; display: flex; flex-direction: column; align-items: flex-end; background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.12); }
  .mfyc-terms-menu nav a { width: 100%; padding: 10px 0; text-align: right; text-decoration: none; }
  .mfyc-terms-main { width: min(328px, calc(100% - 32px)); min-height: 7003px; padding-top: 40px; }
  .mfyc-terms-heading, .mfyc-terms-content { width: 100%; margin-left: 0; }
  .mfyc-terms-heading { min-height: 157px; }
  .mfyc-terms-heading h1,
  .mfyc-terms-heading p { font-size: 32px; }
  .mfyc-terms-content { margin-top: 38px; padding-bottom: 0; font-size: 16px; }
  .mfyc-terms-footer { min-height: 487px; padding: 40px 16px; }
  .mfyc-terms-footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .mfyc-terms-footer-bottom { grid-column: 1; margin-top: 0; }
}


/* RESCUE TAILS PAGE */
.mfyc-rescue-body { margin: 0; }
.mfyc-rescue-page, .mfyc-rescue-page * { box-sizing: border-box; }
.mfyc-rescue-page { width: 100%; color: #2b2c32; background: #fff; font-family: "Roboto Slab", sans-serif; }
.mfyc-rescue-page h1, .mfyc-rescue-page h2, .mfyc-rescue-page p { margin: 0; font-family: inherit; }
.mfyc-rescue-page a { color: inherit; text-decoration: none; }
.mfyc-rescue-header { position: relative; z-index: 10; height: 113px; background: #fff; }
.mfyc-rescue-header-desktop { width: min(1240px, calc(100% - 32px)); height: 113px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 64px; }
.mfyc-rescue-logo img { width: 141px; height: 113px; display: block; object-fit: contain; }
.mfyc-rescue-nav { display: flex; align-items: center; gap: 50px; color: #0d141a; font-size: 16px; font-weight: 400; line-height: 1.5; }
.mfyc-rescue-nav a { padding: 10px 0; border-bottom: 1px solid transparent; }
.mfyc-rescue-nav a[aria-current="page"] { border-bottom-color: #0d141a; }
.mfyc-rescue-header-mobile { display: none; }
.mfyc-rescue-title { min-height: 135px; padding: 37px 16px 15px; display: flex; justify-content: center; text-align: center; background: rgba(122,94,59,.56); }
.mfyc-rescue-title h1 { color: #0a1015; font-size: 64px; font-weight: 600; line-height: 1.3; }
.mfyc-rescue-intro { position: relative; min-height: 456px; overflow: hidden; }
.mfyc-rescue-intro > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.mfyc-rescue-intro-copy { position: relative; z-index: 1; width: min(628px, 48%); margin-left: auto; margin-right: max(16px, calc((100% - 1224px) / 2)); padding-top: 24px; color: #000; text-align: center; font-size: 16px; line-height: 1.5; }
.mfyc-rescue-intro-copy p + p { margin-top: 24px; }
.mfyc-rescue-story { width: 100%; min-height: var(--story-height); padding: 24px max(16px, calc((100% - 1224px) / 2)); display: grid; align-items: center; gap: 40px; background: rgba(122,94,59,.56); }
.mfyc-rescue-story h2 { margin-bottom: 16px; color: #2b2c32; font-size: 24px; font-weight: 600; line-height: 1.3; }
.mfyc-rescue-story p { font-size: 16px; line-height: 1.5; }
.mfyc-rescue-story p + p { margin-top: 24px; }
.mfyc-rescue-story img { width: 100%; display: block; object-fit: cover; }
.mfyc-rescue-shiloh { --story-height: 476px; grid-template-columns: minmax(0, 772px) 229px; justify-content: space-between; }
.mfyc-rescue-shiloh img { width: 229px; height: 367px; border-radius: 72px; }
.mfyc-rescue-dazee { --story-height: 434px; grid-template-columns: 301px minmax(0, 772px); }
.mfyc-rescue-dazee img { width: 301px; height: 353px; border-radius: 72px; }
.mfyc-rescue-mozart { --story-height: 492px; grid-template-columns: minmax(0, 480px) minmax(0, 606px); justify-content: space-between; }
.mfyc-rescue-mozart img { height: 306px; border-radius: 50px; }
.mfyc-rescue-lucy { --story-height: 518px; grid-template-columns: minmax(0, 512px) minmax(0, 560px); }
.mfyc-rescue-lucy img { height: 346px; border-radius: 50px; }
.mfyc-rescue-levi { --story-height: 615px; grid-template-columns: 1fr 1fr; grid-template-rows: auto 1fr; }
.mfyc-rescue-levi .mfyc-rescue-text { align-self: start; padding-top: 18px; }
.mfyc-rescue-levi-one { grid-column: 2; grid-row: 1 / 3; width: 248px !important; height: 425px; margin: 0 auto; border-radius: 50px; }
.mfyc-rescue-levi-two { grid-column: 1; grid-row: 2; width: 331px !important; height: 344px; margin: 0 auto; border-radius: 50px; }
.mfyc-rescue-mickey { --story-height: 854px; grid-template-columns: 480px 1fr; grid-template-rows: auto 1fr; }
.mfyc-rescue-mickey .mfyc-rescue-text { grid-column: 2; grid-row: 1; }
.mfyc-rescue-mickey-close { grid-column: 2; grid-row: 2; width: 399px !important; height: 447px; border-radius: 50px; }
.mfyc-rescue-mickey-group { grid-column: 1; grid-row: 1 / 3; width: 480px !important; height: 414px; align-self: start; border-radius: 50px; }
.mfyc-rescue-footer { min-height: 320px; padding: 70px 16px 40px; color: #fff; background: #3e2b1a; }
.mfyc-rescue-footer-grid { width: min(1224px, 100%); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mfyc-rescue-footer h2 { margin: 0 0 24px; color: #fff; font-size: 20px; font-weight: 600; }
.mfyc-rescue-socials { display: flex; gap: 14px; }
.mfyc-rescue-socials a, .mfyc-rescue-socials svg { width: 24px; height: 24px; display: block; }
.mfyc-rescue-socials svg { fill: #fff; }
.mfyc-rescue-footer-contact h2 { font-size: 12px; }
.mfyc-rescue-footer-contact a { color: #fff; font-size: 14px; }
.mfyc-rescue-footer-bottom { grid-column: 1 / -1; margin-top: 18px; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; color: #fff; font-size: 14px; }
.mfyc-rescue-footer-bottom a { color: #fff; text-decoration: underline; }

@media (max-width: 900px) {
  .mfyc-rescue-header { height: 222px; }
  .mfyc-rescue-header-desktop { display: none; }
  .mfyc-rescue-header-mobile { width: min(100% - 32px, 1240px); height: 222px; margin: 0 auto; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; }
  .mfyc-rescue-header-mobile .mfyc-rescue-logo img { width: 217px; height: 174px; }
  .mfyc-rescue-menu { position: relative; }
  .mfyc-rescue-menu summary { width: 44px; height: 44px; padding: 9px; display: grid; align-content: center; gap: 5px; list-style: none; cursor: pointer; }
  .mfyc-rescue-menu summary::-webkit-details-marker { display: none; }
  .mfyc-rescue-menu summary span { width: 26px; height: 2px; display: block; background: #0d141a; }
  .mfyc-rescue-menu nav { position: absolute; top: calc(100% + 24px); right: 0; width: min(280px, calc(100vw - 32px)); padding: 14px 22px; display: flex; flex-direction: column; align-items: flex-end; background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.12); }
  .mfyc-rescue-menu nav a { width: 100%; padding: 10px 0; text-align: right; }
  .mfyc-rescue-title { min-height: 140px; padding: 40px 16px 48px; }
  .mfyc-rescue-title h1 { font-size: 40px; }
  .mfyc-rescue-intro { min-height: 720px; }
  .mfyc-rescue-intro > img { object-position: 32% center; }
  .mfyc-rescue-intro-copy { width: 100%; margin: 0; padding: 16px 16px 0; font-size: 16px; }
  .mfyc-rescue-story { min-height: 0; padding: 34px 16px 50px; grid-template-columns: 1fr; grid-template-rows: auto; gap: 32px; }
  .mfyc-rescue-story h2 { font-size: 20px; }
  .mfyc-rescue-story img { grid-column: 1; width: 100% !important; height: auto; margin: 0; border-radius: 50px; }
  .mfyc-rescue-story .mfyc-rescue-text,
  .mfyc-rescue-story img { width: min(328px, calc(100vw - 32px)) !important; justify-self: center; }
  .mfyc-rescue-dazee .mfyc-rescue-text, .mfyc-rescue-lucy .mfyc-rescue-text { grid-row: 1; }
  .mfyc-rescue-dazee > img, .mfyc-rescue-lucy > img { grid-row: 2; }
  .mfyc-rescue-levi .mfyc-rescue-text, .mfyc-rescue-mickey .mfyc-rescue-text { grid-column: 1; grid-row: auto; padding-top: 0; }
  .mfyc-rescue-levi-one { grid-row: auto; }
  .mfyc-rescue-levi-two { grid-row: auto; }
  .mfyc-rescue-mickey-close { grid-column: 1; grid-row: auto; }
  .mfyc-rescue-mickey-group { grid-column: 1; grid-row: auto; }
  .mfyc-rescue-footer { min-height: 487px; padding: 40px 16px; }
  .mfyc-rescue-footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .mfyc-rescue-footer-bottom { grid-column: 1; margin-top: 0; }
}

@media (max-width: 480px) {
  .mfyc-rescue-page { font-size: 14px; }
  .mfyc-rescue-intro { min-height: 700px; }
  .mfyc-rescue-story p { font-size: 14px; }
  .mfyc-rescue-shiloh img { aspect-ratio: 328 / 504; }
  .mfyc-rescue-dazee img { aspect-ratio: 328 / 384; }
  .mfyc-rescue-mozart img, .mfyc-rescue-lucy img { aspect-ratio: 328 / 264; }
  .mfyc-rescue-levi-one { aspect-ratio: 328 / 544; }
  .mfyc-rescue-levi-two { aspect-ratio: 328 / 340; }
  .mfyc-rescue-mickey-close { aspect-ratio: 328 / 367; }
  .mfyc-rescue-mickey-group { aspect-ratio: 328 / 320; }
}

  .mfyc-home3 {
    --linen: #F7F3EC;
    --espresso: #4A3428;
    --sage: #8C9B84;
    --mist: #DDE5D8;
    --wood: #D8C6B3;
    --white: #FFFFFF;
    --charcoal: #2E2E2E;

    font-family: Arial, Helvetica, sans-serif;
    color: var(--espresso);
    background: var(--linen);
    width: 100%;
    overflow: hidden;
  }

  .mfyc-home3 h1,
  .mfyc-home3 h2,
  .mfyc-home3 h3 {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--espresso);
    margin: 0;
    line-height: 1.05;
  }

  .mfyc-home3 p {
    margin: 0;
    line-height: 1.65;
  }

  .mfyc-home3 a {
    color: inherit;
    text-decoration: none;
  }

  .mfyc-wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
  }

  .mfyc-kicker {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #6f7869;
    margin-bottom: 16px;
  }

  .mfyc-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
  }

  .mfyc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid var(--espresso);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .02em;
    transition: transform .2s ease, opacity .2s ease;
  }

  .mfyc-btn:hover {
    transform: translateY(-2px);
  }

  .mfyc-btn-primary {
    background: var(--espresso);
    color: var(--white) !important;
  }

  .mfyc-btn-secondary {
    background: transparent;
    color: var(--espresso) !important;
  }


  /* HERO */

  .mfyc-hero {
    padding: 60px 0 68px;
  }

  .mfyc-hero-grid {
    display: grid;
    grid-template-columns: .68fr 1.32fr;
    gap: 60px;
    align-items: center;
  }

  .mfyc-hero h1 {
    font-size: clamp(50px, 6vw, 84px);
    max-width: 640px;
  }

  .mfyc-hero-copy > p {
    max-width: 620px;
    margin-top: 24px;
    font-size: 17px;
    color: #5d4b40;
  }

  .mfyc-photo {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 24px 60px rgba(74, 52, 40, .12);
  }

  .mfyc-photo img {
    width: 100%;
    height: auto;
    display: block;
  }


  /* GENERAL SECTIONS */

  .mfyc-section {
    padding: 82px 0;
  }

  .mfyc-section-white {
    background: rgba(255,255,255,.7);
  }

  .mfyc-section-sage {
    background: var(--mist);
  }

  .mfyc-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 38px;
  }

  .mfyc-heading h2 {
    font-size: clamp(42px, 5vw, 62px);
  }

  .mfyc-heading p {
    margin-top: 14px;
    font-size: 17px;
    color: #665449;
  }


  /* COLLECTIONS */

  .mfyc-collections {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .mfyc-card {
    background: var(--white);
    border: 1px solid rgba(74,52,40,.12);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(74,52,40,.06);
  }

  .mfyc-card-image {
    height: 320px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wood);
    border-radius: 20px;
    overflow: hidden;
  }

  .mfyc-card:nth-child(2) .mfyc-card-image {
    background: #c8b79f;
  }

  .mfyc-card:nth-child(3) .mfyc-card-image {
    background: var(--mist);
  }

  .mfyc-card:nth-child(4) .mfyc-card-image {
    background: #dfd3c5;
  }

  .mfyc-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .mfyc-card-image.mfyc-tumbler-card-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .mfyc-card-image.mfyc-tumbler-card-images img {
    min-width: 0;
    min-height: 0;
    border-radius: 12px;
    background: var(--white);
  }

  .mfyc-card-body {
    padding: 22px;
  }

  .mfyc-card-body h3 {
    font-size: 27px;
  }

  .mfyc-card-body p {
    margin-top: 12px;
    color: #6a574b;
    font-size: 14px;
  }

  .mfyc-card-link {
    display: inline-block;
    margin-top: 18px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--espresso) !important;
    text-decoration: none !important;
  }

  .mfyc-card-link:hover {
    text-decoration: underline !important;
  }

  /* HOMEPAGE PRODUCT EXPANSION */

  .mfyc-home-new-card {
    grid-column: span 2;
  }

  .mfyc-home-new-card .mfyc-home-new-card-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    background: var(--mist);
  }

  .mfyc-home-new-card:nth-last-child(1) .mfyc-home-new-card-images {
    background: #dfd3c5;
  }

  .mfyc-home-new-card .mfyc-home-new-card-images img {
    min-width: 0;
    border-radius: 14px;
    background: var(--white);
  }


  /* FEATURED */

  .mfyc-featured {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .mfyc-feature {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(74,52,40,.12);
  }

  .mfyc-feature-image {
    min-height: 310px;
    display: grid;
    place-items: center;
    padding: 24px;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    background: #d5c2ab;
  }

  .mfyc-feature:nth-child(2) .mfyc-feature-image {
    background: var(--mist);
  }

  .mfyc-feature:nth-child(3) .mfyc-feature-image {
    background: #ddd0c1;
  }

  .mfyc-feature-image img {
    width: 100%;
    height: 310px;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .mfyc-feature-body {
    padding: 24px;
  }

  .mfyc-feature-body h3 {
    font-size: 29px;
  }

  .mfyc-feature-body p {
    margin-top: 10px;
    color: #675448;
  }


  /* STORY */

  .mfyc-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
  }

  .mfyc-story-photo {
    min-height: 430px;
    border-radius: 26px;
    display: grid;
    place-items: center;
    padding: 28px;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    background: #d7c4ad;
    overflow: hidden;
  }

  .mfyc-story-photo img {
    width: 100%;
    height: 430px;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 22px;
  }

  .mfyc-story-copy h2 {
    font-size: clamp(42px, 5vw, 62px);
  }

  .mfyc-story-copy p {
    margin-top: 20px;
    color: #604e43;
    font-size: 16px;
  }


  /* VALUES */

  .mfyc-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .mfyc-value {
    background: rgba(255,255,255,.88);
    border-radius: 18px;
    padding: 26px 20px;
    text-align: center;
    border: 1px solid rgba(74,52,40,.08);
  }

  .mfyc-value-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--linen);
    border: 1px solid rgba(74,52,40,.14);
    font-size: 20px;
  }

  .mfyc-value h3 {
    font-size: 22px;
  }

  .mfyc-value p {
    margin-top: 8px;
    font-size: 13px;
    color: #675448;
  }


  /* CUSTOMER TESTIMONIALS */

  .mfyc-testimonials {
    background: rgba(255,255,255,.7);
  }

  .mfyc-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
  }

  .mfyc-testimonial-card {
    display: flex;
    flex-direction: column;
    padding: 34px;
    background: var(--white);
    border: 1px solid rgba(74,52,40,.1);
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(74,52,40,.08);
  }

  .mfyc-testimonial-rating {
    margin-bottom: 18px;
    color: #8a6435;
    font-size: 18px;
    letter-spacing: .12em;
  }

  .mfyc-testimonial-card blockquote {
    flex: 1;
    margin: 0;
    color: #4f4037;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1.65;
  }

  .mfyc-testimonial-card .mfyc-testimonial-customer {
    margin-top: 24px;
    color: #6f7869;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
  }


  /* FINAL CTA */

  .mfyc-final-cta {
    padding: 78px 20px;
    background: var(--espresso);
    color: var(--white);
    text-align: center;
  }

  .mfyc-final-cta .mfyc-kicker {
    color: #e8d5b7;
    margin-bottom: 14px;
  }

  .mfyc-final-cta h2 {
    color: var(--white);
    font-size: clamp(40px, 5vw, 62px);
    max-width: 800px;
    margin: 0 auto;
  }

  .mfyc-final-cta p {
    max-width: 700px;
    margin: 18px auto 0;
    color: #f3e9df;
    font-size: 17px;
    line-height: 1.7;
  }

  .mfyc-final-cta .mfyc-btn-row {
    justify-content: center;
    margin-top: 28px;
  }

  .mfyc-final-cta .mfyc-btn {
    background: var(--white);
    color: var(--espresso) !important;
    border-color: var(--white);
  }

  .mfyc-final-cta .mfyc-btn:hover {
    opacity: .92;
  }


  /* FOOTER */

  .mfyc-footer {
    padding: 42px 0;
    background: var(--linen);
    border-top: 1px solid rgba(74,52,40,.14);
  }

  .mfyc-footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px 36px;
    align-items: center;
  }

  .mfyc-footer-brand {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--espresso);
    font-size: 24px;
    font-weight: 700;
  }

  .mfyc-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 24px;
    color: #5d4b40;
    font-size: 14px;
  }

  .mfyc-footer-links a:hover {
    text-decoration: underline;
  }

  .mfyc-footer-copyright {
    grid-column: 1 / -1;
    padding-top: 18px;
    border-top: 1px solid rgba(74,52,40,.1);
    color: #6f7869;
    font-size: 13px;
  }


  /* RESPONSIVE */

  @media (max-width: 980px) {
    .mfyc-hero-grid,
    .mfyc-story-grid {
      grid-template-columns: 1fr;
    }

    .mfyc-collections {
      grid-template-columns: repeat(2, 1fr);
    }

    .mfyc-home-new-card {
      grid-column: span 1;
    }

    .mfyc-values {
      grid-template-columns: repeat(2, 1fr);
    }

    .mfyc-photo {
      min-height: 420px;
    }
  }

  @media (max-width: 720px) {
    .mfyc-wrap {
      width: min(100% - 28px, 1180px);
    }

    .mfyc-hero {
      padding: 42px 0 52px;
    }

    .mfyc-section {
      padding: 62px 0;
    }

    .mfyc-hero h1 {
      font-size: clamp(40px, 13vw, 50px);
      overflow-wrap: anywhere;
    }

    .mfyc-collections,
    .mfyc-featured,
    .mfyc-values,
    .mfyc-testimonial-grid {
      grid-template-columns: 1fr;
    }

    .mfyc-testimonial-card {
      padding: 28px 24px;
    }

    .mfyc-testimonial-card blockquote {
      font-size: 18px;
    }

    .mfyc-photo,
    .mfyc-photo img {
      min-height: 0;
    }

    .mfyc-card-image,
    .mfyc-feature-image,
    .mfyc-feature-image img {
      height: auto;
      min-height: 260px;
    }

    .mfyc-home-new-card .mfyc-home-new-card-images {
      grid-template-columns: 1fr;
    }

    .mfyc-story-photo,
    .mfyc-story-photo img {
      min-height: 340px;
      height: 340px;
    }

    .mfyc-btn-row {
      flex-direction: column;
      align-items: stretch;
    }

    .mfyc-btn {
      width: 100%;
    }

    .mfyc-footer {
      padding: 36px 0;
    }

    .mfyc-footer-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .mfyc-footer-links {
      flex-direction: column;
      justify-content: center;
      gap: 14px;
    }
  }


/* ABOUT PAGE — EXTRACTED FROM mfyc-about-original.txt */
.mfyc-about,
  .mfyc-about * {
    box-sizing: border-box;
  }

  .mfyc-about {
    --linen: #F7F3EC;
    --espresso: #4A3428;
    --sage: #8C9B84;
    --mist: #DDE5D8;
    --wood: #D8C6B3;
    --white: #FFFFFF;

    width: 100%;
    background: var(--linen);
    color: var(--espresso);
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
  }

  .mfyc-about h1,
  .mfyc-about h2,
  .mfyc-about h3 {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--espresso);
    margin: 0;
    line-height: 1.08;
  }

  .mfyc-about p {
    margin: 0;
    line-height: 1.7;
  }

  .mfyc-about a {
    text-decoration: none;
  }

  .mfyc-about-wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
  }

  .mfyc-about-kicker {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #6f7869;
    margin-bottom: 16px;
  }


  /* BUTTONS */

  .mfyc-about-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
  }

  .mfyc-about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid var(--espresso);
    font-size: 14px;
    font-weight: 800;
    color: var(--espresso);
    transition: transform .2s ease;
  }

  .mfyc-about-btn:hover {
    transform: translateY(-2px);
  }

  .mfyc-about-btn-primary {
    background: var(--espresso);
    color: var(--white) !important;
  }

  .mfyc-about-btn-secondary {
    background: transparent;
    color: var(--espresso) !important;
  }


  /* HERO */

  .mfyc-about-hero {
    padding: 68px 0 76px;
  }

  .mfyc-about-hero-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 58px;
    align-items: center;
  }

  .mfyc-about-hero h1 {
    font-size: clamp(48px, 6vw, 76px);
    max-width: 620px;
  }

  .mfyc-about-hero-copy > p {
    margin-top: 22px;
    max-width: 610px;
    font-size: 17px;
    color: #604e43;
  }

  .mfyc-about-photo {
    background: var(--wood);
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 24px 60px rgba(74,52,40,.12);
  }

  .mfyc-about-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
  }


  /* STORY */

  .mfyc-about-story {
    background: rgba(255,255,255,.72);
    padding: 82px 0;
  }

  .mfyc-about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .mfyc-about-story h2 {
    font-size: clamp(40px, 5vw, 58px);
  }

  .mfyc-about-story-copy p {
    margin-top: 18px;
    color: #604e43;
    font-size: 16px;
  }

  .mfyc-about-quote {
    background: var(--mist);
    border-radius: 24px;
    padding: 34px;
    border: 1px solid rgba(74,52,40,.08);
  }

  .mfyc-about-quote h3 {
    font-size: 30px;
  }

  .mfyc-about-quote p {
    margin-top: 14px;
    color: #5f5147;
    font-size: 16px;
  }


  /* WHAT I MAKE */

  .mfyc-about-section {
    padding: 82px 0;
  }

  .mfyc-about-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
  }

  .mfyc-about-heading h2 {
    font-size: clamp(42px, 5vw, 60px);
  }

  .mfyc-about-heading p {
    margin-top: 14px;
    color: #665449;
    font-size: 16px;
  }

  .mfyc-about-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .mfyc-about-service {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 24px;
    border: 1px solid rgba(74,52,40,.10);
    box-shadow: 0 10px 28px rgba(74,52,40,.05);
  }

  .mfyc-about-service-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--mist);
    margin-bottom: 18px;
    font-size: 20px;
  }

  .mfyc-about-service h3 {
    font-size: 24px;
  }

  .mfyc-about-service p {
    margin-top: 10px;
    color: #675448;
    font-size: 14px;
  }


  /* LOCAL / PURPOSE */

  .mfyc-about-local {
    background: var(--mist);
    padding: 82px 0;
  }

  .mfyc-about-local-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }

  .mfyc-about-local h2 {
    font-size: clamp(40px, 5vw, 58px);
  }

  .mfyc-about-local p {
    margin-top: 18px;
    color: #604e43;
    font-size: 16px;
  }

  .mfyc-about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .mfyc-about-value {
    background: rgba(255,255,255,.88);
    border-radius: 18px;
    padding: 24px 20px;
    border: 1px solid rgba(74,52,40,.08);
  }

  .mfyc-about-value h3 {
    font-size: 21px;
  }

  .mfyc-about-value p {
    margin-top: 8px;
    font-size: 13px;
    color: #675448;
  }


  /* CTA */

  .mfyc-about-cta {
    background: var(--espresso);
    padding: 78px 20px;
    text-align: center;
    color: white;
  }

  .mfyc-about-cta .mfyc-about-kicker {
    color: #e8d5b7;
  }

  .mfyc-about-cta h2 {
    color: white;
    font-size: clamp(40px, 5vw, 62px);
  }

  .mfyc-about-cta p {
    max-width: 700px;
    margin: 18px auto 0;
    color: #f3e9df;
    font-size: 17px;
  }

  .mfyc-about-cta .mfyc-about-btn-row {
    justify-content: center;
  }

  .mfyc-about-cta .mfyc-about-btn {
    background: white;
    color: var(--espresso) !important;
    border-color: white;
  }


  /* RESPONSIVE */

  @media (max-width: 950px) {

    .mfyc-about-hero-grid,
    .mfyc-about-story-grid,
    .mfyc-about-local-grid {
      grid-template-columns: 1fr;
    }

    .mfyc-about-services {
      grid-template-columns: repeat(2, 1fr);
    }

  }

  @media (max-width: 620px) {

    .mfyc-about-wrap {
      width: min(100% - 28px, 1180px);
    }

    .mfyc-about-hero {
      padding: 48px 0 58px;
    }

    .mfyc-about-section,
    .mfyc-about-story,
    .mfyc-about-local {
      padding: 62px 0;
    }

    .mfyc-about-services,
    .mfyc-about-values {
      grid-template-columns: 1fr;
    }

    .mfyc-about-btn-row {
      flex-direction: column;
    }

    .mfyc-about-btn {
      width: 100%;
    }

  }



/* CONTACT PAGE — EXTRACTED FROM mfyc-contact-original.txt */
.mfyc-contact,
  .mfyc-contact * {
    box-sizing: border-box;
  }

  .mfyc-contact {
    --linen: #F7F3EC;
    --espresso: #4A3428;
    --mist: #DDE5D8;
    --wood: #D8C6B3;
    --white: #FFFFFF;

    width: 100%;
    background: var(--linen);
    color: var(--espresso);
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
  }

  .mfyc-contact h1,
  .mfyc-contact h2,
  .mfyc-contact h3 {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--espresso);
    margin: 0;
    line-height: 1.08;
  }

  .mfyc-contact p {
    margin: 0;
    line-height: 1.7;
  }

  .mfyc-contact-wrap {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
  }

  .mfyc-contact-kicker {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #6f7869;
    margin-bottom: 14px;
  }

  .mfyc-contact-hero {
    padding: 72px 0 62px;
    text-align: center;
  }

  .mfyc-contact-hero h1 {
    font-size: clamp(48px, 6vw, 72px);
  }

  .mfyc-contact-hero p {
    max-width: 720px;
    margin: 18px auto 0;
    color: #665449;
    font-size: 17px;
  }

  .mfyc-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding-bottom: 72px;
  }

  .mfyc-contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    border: 1px solid rgba(74,52,40,.10);
    box-shadow: 0 10px 28px rgba(74,52,40,.05);
  }

  .mfyc-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
    background: var(--mist);
    font-size: 20px;
  }

  .mfyc-contact-card h3 {
    font-size: 24px;
  }

  .mfyc-contact-card p {
    margin-top: 10px;
    color: #675448;
    font-size: 14px;
  }

  .mfyc-contact-card a {
    color: var(--espresso);
    font-weight: 800;
    text-decoration: none;
  }

  .mfyc-contact-card a:hover {
    text-decoration: underline;
  }

  .mfyc-contact-help {
    background: rgba(255,255,255,.72);
    padding: 74px 0;
  }

  .mfyc-contact-help-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 54px;
    align-items: start;
  }

  .mfyc-contact-help h2 {
    font-size: clamp(40px, 5vw, 58px);
  }

  .mfyc-contact-help p {
    margin-top: 18px;
    color: #604e43;
    font-size: 16px;
  }

  .mfyc-contact-list {
    background: var(--mist);
    border-radius: 22px;
    padding: 30px;
  }

  .mfyc-contact-list h3 {
    font-size: 28px;
  }

  .mfyc-contact-list ul {
    margin: 18px 0 0;
    padding-left: 20px;
    color: #5f5147;
    line-height: 1.8;
  }

  .mfyc-contact-note {
    padding: 74px 20px;
    background: var(--espresso);
    color: var(--white);
    text-align: center;
  }

  .mfyc-contact-note .mfyc-contact-kicker {
    color: #e8d5b7;
  }

  .mfyc-contact-note h2 {
    color: var(--white);
    font-size: clamp(38px, 5vw, 56px);
  }

  .mfyc-contact-note p {
    max-width: 700px;
    margin: 18px auto 0;
    color: #f3e9df;
    font-size: 16px;
  }

  @media (max-width: 850px) {
    .mfyc-contact-grid {
      grid-template-columns: 1fr;
    }

    .mfyc-contact-help-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 620px) {
    .mfyc-contact-wrap {
      width: min(100% - 28px, 1080px);
    }

    .mfyc-contact-hero {
      padding: 50px 0 48px;
    }

    .mfyc-contact-help,
    .mfyc-contact-note {
      padding: 58px 20px;
    }
  }



/* GALLERY PAGE — EXTRACTED FROM mfyc-gallery-original.txt */
.mfyc-gallery,
  .mfyc-gallery * {
    box-sizing: border-box;
  }

  .mfyc-gallery {
    --linen: #F7F3EC;
    --espresso: #4A3428;
    --sage: #8C9B84;
    --mist: #DDE5D8;
    --wood: #D8C6B3;
    --white: #FFFFFF;

    width: 100%;
    background: var(--linen);
    color: var(--espresso);
    font-family: Arial, Helvetica, sans-serif;
  }

  .mfyc-gallery h1,
  .mfyc-gallery h2,
  .mfyc-gallery h3 {
    font-family: Georgia, "Times New Roman", serif;
    margin: 0;
    color: var(--espresso);
  }

  .mfyc-gallery p {
    margin: 0;
    line-height: 1.65;
  }

  .mfyc-gallery-wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
  }


  /* HERO */

  .mfyc-gallery-hero {
    padding: 72px 20px 56px;
    text-align: center;
  }

  .mfyc-gallery-kicker {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #6f7869;
    margin-bottom: 14px;
  }

  .mfyc-gallery-hero h1 {
    font-size: clamp(48px, 6vw, 72px);
  }

  .mfyc-gallery-hero p {
    max-width: 680px;
    margin: 16px auto 0;
    color: #665449;
    font-size: 17px;
  }


  /* CATEGORY NAV */

  .mfyc-gallery-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
  }

  .mfyc-gallery-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border: 1px solid var(--espresso);
    border-radius: 999px;
    color: var(--espresso);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: .2s ease;
  }

  .mfyc-gallery-nav a:hover {
    background: var(--espresso);
    color: white;
  }


  /* SECTIONS */

  .mfyc-gallery-section {
    padding: 72px 0;
  }

  .mfyc-gallery-section:nth-of-type(even) {
    background: rgba(255,255,255,.68);
  }

  .mfyc-gallery-heading {
    margin-bottom: 34px;
  }

  .mfyc-gallery-heading h2 {
    font-size: clamp(38px, 4vw, 54px);
  }

  .mfyc-gallery-heading p {
    margin-top: 10px;
    color: #675448;
    font-size: 16px;
  }


  /* IMAGE GRID */

  .mfyc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .mfyc-gallery-card {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(74,52,40,.10);
    box-shadow: 0 10px 28px rgba(74,52,40,.06);
  }

  .mfyc-gallery-image {
    height: 330px;
    padding: 14px;
    background: #e5d8c8;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mfyc-gallery-card:nth-child(2n) .mfyc-gallery-image {
    background: var(--mist);
  }

  .mfyc-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 16px;
  }

  .mfyc-gallery-card-body {
    padding: 20px 22px 22px;
  }

  .mfyc-gallery-card-body h3 {
    font-size: 25px;
  }

  .mfyc-gallery-card-body p {
    margin-top: 8px;
    color: #6a574b;
    font-size: 14px;
  }


  /* CTA */

  .mfyc-gallery-cta {
    background: var(--espresso);
    color: white;
    text-align: center;
    padding: 74px 20px;
  }

  .mfyc-gallery-cta .mfyc-gallery-kicker {
    color: #e8d5b7;
  }

  .mfyc-gallery-cta h2 {
    color: white;
    font-size: clamp(40px, 5vw, 60px);
  }

  .mfyc-gallery-cta p {
    max-width: 680px;
    margin: 18px auto 0;
    color: #f2e8df;
    font-size: 16px;
  }

  .mfyc-gallery-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 999px;
    background: white;
    color: var(--espresso);
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
  }


  /* RESPONSIVE */

  @media (max-width: 900px) {
    .mfyc-gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 620px) {
    .mfyc-gallery-wrap {
      width: min(100% - 28px, 1180px);
    }

    .mfyc-gallery-grid {
      grid-template-columns: 1fr;
    }

    .mfyc-gallery-image {
      height: 300px;
    }

    .mfyc-gallery-nav {
      flex-direction: column;
    }

    .mfyc-gallery-nav a {
      width: 100%;
    }
  }



/* CUSTOM BUCKETS PAGE — EXTRACTED FROM mfyc-custom-buckets-original.text */
.mfyc-buckets,
  .mfyc-buckets * {
    box-sizing: border-box;
  }

  .mfyc-buckets {
    --linen: #F7F3EC;
    --espresso: #4A3428;
    --mist: #DDE5D8;
    --wood: #D8C6B3;
    --white: #FFFFFF;

    width: 100%;
    background: var(--linen);
    color: var(--espresso);
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
  }

  .mfyc-buckets h1,
  .mfyc-buckets h2,
  .mfyc-buckets h3 {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--espresso);
    margin: 0;
    line-height: 1.08;
  }

  .mfyc-buckets p {
    margin: 0;
    line-height: 1.7;
  }

  .mfyc-buckets-wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
  }

  .mfyc-buckets-kicker {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #6f7869;
    margin-bottom: 14px;
  }

  .mfyc-buckets-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
  }

  .mfyc-buckets-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid var(--espresso);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, opacity .2s ease;
  }

  .mfyc-buckets-btn:hover {
    transform: translateY(-2px);
  }

  .mfyc-buckets-btn-primary {
    background: var(--espresso);
    color: var(--white) !important;
  }

  .mfyc-buckets-btn-secondary {
    background: transparent;
    color: var(--espresso) !important;
  }


  /* HERO */

  .mfyc-buckets-hero {
    padding: 68px 0 76px;
  }

  .mfyc-buckets-hero-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 56px;
    align-items: center;
  }

  .mfyc-buckets-hero h1 {
    font-size: clamp(48px, 6vw, 74px);
  }

  .mfyc-buckets-hero p {
    margin-top: 20px;
    font-size: 17px;
    color: #604e43;
    max-width: 620px;
  }

  .mfyc-buckets-hero-photo {
    background: var(--wood);
    padding: 18px;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(74,52,40,.12);
  }

  .mfyc-buckets-hero-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
  }


  /* GENERAL SECTIONS */

  .mfyc-buckets-section {
    padding: 82px 0;
  }

  .mfyc-buckets-section-white {
    background: rgba(255,255,255,.72);
  }

  .mfyc-buckets-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 36px;
  }

  .mfyc-buckets-heading h2 {
    font-size: clamp(42px, 5vw, 60px);
  }

  .mfyc-buckets-heading p {
    margin-top: 14px;
    color: #665449;
    font-size: 16px;
  }


  /* PHOTO GALLERY */

  .mfyc-buckets-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .mfyc-buckets-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(74,52,40,.10);
    box-shadow: 0 10px 28px rgba(74,52,40,.05);
  }

  .mfyc-buckets-card-image {
    height: 320px;
    padding: 14px;
    background: var(--mist);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mfyc-buckets-card:nth-child(2) .mfyc-buckets-card-image {
    background: #dfd3c5;
  }

  .mfyc-buckets-card:nth-child(3) .mfyc-buckets-card-image {
    background: #d5c2ab;
  }

  .mfyc-buckets-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 16px;
  }

  .mfyc-buckets-card-body {
    padding: 22px;
  }

  .mfyc-buckets-card-body h3 {
    font-size: 26px;
  }

  .mfyc-buckets-card-body p {
    margin-top: 10px;
    color: #675448;
    font-size: 14px;
  }


  /* LIGHTING OPTIONS */

  .mfyc-buckets-lighting {
    padding: 72px 0;
    background: var(--white);
  }

  .mfyc-buckets-lighting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .mfyc-buckets-light-card {
    border-radius: 22px;
    padding: 32px;
    border: 1px solid rgba(74,52,40,.10);
    background: var(--linen);
  }

  .mfyc-buckets-light-card.upgrade {
    background: var(--mist);
  }

  .mfyc-buckets-light-card h3 {
    font-size: 28px;
  }

  .mfyc-buckets-light-card p {
    margin-top: 12px;
    color: #675448;
    font-size: 15px;
  }

  .mfyc-buckets-light-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: var(--espresso);
    color: white;
  }


  /* DESIGN IDEAS */

  .mfyc-buckets-designs {
    padding: 82px 0;
    background: var(--linen);
  }

  .mfyc-buckets-designs-box {
    background: var(--white);
    border-radius: 28px;
    padding: 26px;
    border: 1px solid rgba(74,52,40,.10);
    box-shadow: 0 14px 36px rgba(74,52,40,.06);
  }

  .mfyc-buckets-designs-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
  }

  .mfyc-buckets-design-note {
    max-width: 760px;
    margin: 26px auto 0;
    text-align: center;
    color: #675448;
    font-size: 15px;
    line-height: 1.7;
  }

  .mfyc-buckets-design-cta {
    text-align: center;
    margin-top: 24px;
  }

  .mfyc-buckets-design-cta .mfyc-buckets-btn {
    background: var(--espresso);
    color: white !important;
  }


  /* WHERE THEY SHINE */

  .mfyc-buckets-uses {
    background: var(--mist);
    padding: 82px 0;
  }

  .mfyc-buckets-uses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: start;
  }

  .mfyc-buckets-uses h2 {
    font-size: clamp(40px, 5vw, 58px);
  }

  .mfyc-buckets-uses p {
    margin-top: 18px;
    color: #604e43;
    font-size: 16px;
  }

  .mfyc-buckets-use-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .mfyc-buckets-use {
    background: rgba(255,255,255,.9);
    border-radius: 18px;
    padding: 24px 20px;
    border: 1px solid rgba(74,52,40,.08);
  }

  .mfyc-buckets-use h3 {
    font-size: 21px;
  }

  .mfyc-buckets-use p {
    margin-top: 8px;
    font-size: 13px;
    color: #675448;
  }


  /* FINAL CTA */

  .mfyc-buckets-cta {
    background: var(--espresso);
    color: white;
    text-align: center;
    padding: 78px 20px;
  }

  .mfyc-buckets-cta .mfyc-buckets-kicker {
    color: #e8d5b7;
  }

  .mfyc-buckets-cta h2 {
    color: white;
    font-size: clamp(40px, 5vw, 62px);
  }

  .mfyc-buckets-cta p {
    max-width: 700px;
    margin: 18px auto 0;
    color: #f3e9df;
    font-size: 17px;
  }

  .mfyc-buckets-cta .mfyc-buckets-btn-row {
    justify-content: center;
  }

  .mfyc-buckets-cta .mfyc-buckets-btn {
    background: white;
    color: var(--espresso) !important;
    border-color: white;
  }


  /* RESPONSIVE */

  @media (max-width: 900px) {

    .mfyc-buckets-hero-grid,
    .mfyc-buckets-uses-grid {
      grid-template-columns: 1fr;
    }

    .mfyc-buckets-gallery {
      grid-template-columns: 1fr 1fr;
    }

  }

  @media (max-width: 700px) {

    .mfyc-buckets-lighting-grid {
      grid-template-columns: 1fr;
    }

  }

  @media (max-width: 620px) {

    .mfyc-buckets-wrap {
      width: min(100% - 28px, 1180px);
    }

    .mfyc-buckets-gallery,
    .mfyc-buckets-use-list {
      grid-template-columns: 1fr;
    }

    .mfyc-buckets-card-image {
      height: 290px;
    }

    .mfyc-buckets-btn-row {
      flex-direction: column;
    }

    .mfyc-buckets-btn {
      width: 100%;
    }

  }
