@charset "UTF-8";
/*base
-----------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.6875;
  color: #707070;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background-color: #F1EEDF;
  color: #793618;
}
body::before, body::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
body::before {
  margin-top: calc((1 - 1.6875) * 0.5em);
}
body::after {
  margin-bottom: calc((1 - 1.6875) * 0.5em);
}
@media (max-width: 600px) {
  body {
    font-size: 1.4rem;
  }
}

img {
  vertical-align: bottom;
  width: 100%;
}

.site-title {
  width: 210px;
}
.site-title--footer {
  margin-bottom: 14px;
}

.section {
  margin-bottom: 120px;
}
.section__inner {
  max-width: 1470px;
  padding: 4vw;
  margin: 0 auto;
}
.section__title {
  font-size: clamp(2.4rem, 3.2vw, 4.8rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}

.sup {
  color: #B32619;
}

.btn {
  display: inline-block;
  width: 250px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
  background-color: #793618;
  color: #fff;
  padding: 23px 10px;
  transition: 0.3s;
}
.btn:hover, .btnfocous {
  border-radius: 0;
  background-color: #B32619;
  transition: 0.3s;
  box-shadow: 1px 1px #292929;
}
.btn--right {
  margin-right: 29.6px;
}
.btn--s {
  width: 93px;
  padding: 4px 2px;
  font-size: 1.6rem;
}
.btn--xs {
  margin-right: 10px;
  width: 80px;
  padding: 4px 2px;
  font-size: 1.2rem;
}
.btn--right {
  margin-left: 10px;
}
.btn--m {
  max-width: 400px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
.btn--accent {
  background-color: #B32619;
}
.btn--contact {
  padding: 16px 10px;
  font-size: 1.4rem;
  width: 200px;
  display: block;
  margin: 0 auto;
}

.fukidashi {
  width: 20%;
  min-width: 100px;
  position: absolute;
  top: -70%;
  right: 0%;
}

.fukidashi02 {
  position: absolute;
  width: 40%;
  min-width: 120px;
  top: 0;
  left: 0;
}

.fukidashi03 {
  position: absolute;
  min-width: 120px;
  width: 40%;
  top: 0;
  right: 0;
}

.sns,
.insta {
  color: #002384;
  text-decoration: underline;
}
.sns:hover,
.insta:hover {
  opacity: 0.7;
}

.questionnaire {
  background-color: #fff;
}

/* ハンバーガーCSSここから */
.hamburger {
  display: none;
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 100;
  width: 48px;
  height: 48px;
  transition: all 0.3s ease-in-out;
}
.hamburger__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 22px;
  height: 2px;
  background-color: #333;
  transition: inherit;
}
.hamburger__line::before, .hamburger__line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  content: "";
  transition: inherit;
}
.hamburger__line::before {
  top: -8px;
}
.hamburger__line::after {
  top: 8px;
}
.hamburger__text {
  font-size: 1.2rem;
  position: absolute;
  top: 36px;
  left: 4px;
}

.hamburger[aria-expanded=true] .hamburger__line {
  background-color: transparent;
}
.hamburger[aria-expanded=true] .hamburger__line::before, .hamburger[aria-expanded=true] .hamburger__line::after {
  top: 0;
  background-color: #333;
}

.hamburger[aria-expanded=true] .hamburger__line::before {
  transform: rotate(45deg);
}

.hamburger[aria-expanded=true] .hamburger__line::after {
  transform: rotate(-45deg);
}

.sp-menu {
  z-index: 90;
  position: fixed;
  width: 100vw;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  color: #793618;
  visibility: hidden;
}
.sp-menu__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sp-menu__item {
  font-weight: 500;
  font-size: 2.4rem;
  text-align: center;
  padding: 16px;
}
.sp-menu__item:hover, .sp-menu__item:focus {
  color: #b33e5c;
}

.sp-menu__item.is-active {
  transform-origin: bottom left 80px;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-name: sp-fade;
          animation-name: sp-fade;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes sp-fade {
  0% {
    opacity: 0;
    transform: translate(-380px, 200px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes sp-fade {
  0% {
    opacity: 0;
    transform: translate(-380px, 200px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.sp-menu__item--first.is-active {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.sp-menu__item--second.is-active {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.sp-menu__item--third.is-active {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.sp-menu__item--forth.is-active {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.sp-menu__item--fifth.is-active {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

/* ハンバーガーCSSここまで */
/*arrow
-----------------------------------------------*/
.js-scroll-fadein {
  transition: opacity 1s;
  visibility: hidden;
  opacity: 0;
}
.js-scroll-fadein.is-fadein {
  visibility: visible;
  opacity: 1;
}

.arrow {
  font-size: 1.2rem;
  z-index: 10;
  position: fixed;
  right: 20px;
  bottom: 20px;
  color: #F1EEDF;
  cursor: pointer;
  background-color: #B32619;
  border-radius: 22px;
  padding: 20px;
  transition: all 0.2s ease-in-out;
}
.arrow:hover {
  opacity: 0.8;
  bottom: 15px;
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.5);
}
.arrow:before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(-45deg);
  position: absolute;
  left: 13px;
}
.arrow:before {
  top: 14px;
}

.breadcrumb-navxt {
  font-size: 1.2rem;
  padding: 19px 4vw;
  margin-bottom: 95px;
  background-color: #fff;
}

.nav-links {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  margin-bottom: 100px;
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid #1B224C;
  color: #1B224C;
  transition: 0.25s;
  margin-right: 15px;
}
.page-numbers:last-child {
  margin-right: 0;
}
.page-numbers:focus, .page-numbers:hover {
  background-color: #E2DBD8;
  color: #B32619;
  opacity: 0.75;
}

.current {
  background-color: #E2DBD8;
  color: #B32619;
}

.dots {
  border: none;
}
.dots:focus, .dots:hover {
  background-color: inherit;
  color: #1B224C;
  opacity: 1;
}

.map {
  position: relative;
  width: 48%;
  height: 0;
  padding-top: 40%;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.action {
  font-weight: bold;
  text-decoration: underline;
}

/*header
-----------------------------------------------*/
.header {
  margin: 20px 0 19px;
}
.header__inner {
  padding: 0 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__list {
  display: flex;
  align-items: center;
}
.header__item {
  margin-right: 30px;
  position: relative;
  transition: all 0.3s;
}
.header__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #B32619;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: center top;
}
.header__item:hover::after, .header__item:focus::after {
  transform: scale(1, 1);
}
.header__item:last-child {
  margin-right: 0;
}
.header__item--btn:hover, .header__item--btn:focus {
  opacity: 0.8;
}
.header__item--btn:hover::after, .header__item--btn:focus::after {
  transform: scale(0, 0);
}
.header__tel {
  margin-right: 60px;
  display: none;
}
.header__action {
  display: none;
}
@media (max-width: 900px) {
  .header__list {
    display: none;
  }
  .header .hamburger {
    display: block;
  }
  .header__tel {
    display: block;
  }
  .header__action {
    display: block;
  }
}

/*mainvisual
-----------------------------------------------*/
.mainvisual {
  position: relative;
  margin-bottom: 120px;
}

.main-copy {
  z-index: 50;
  width: 52.2%;
  min-width: 300px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation-name: main-fade;
          animation-name: main-fade;
  -webkit-animation-delay: 12s;
          animation-delay: 12s;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes main-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes main-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.main-logo {
  z-index: 50;
  width: 37%;
  max-width: 200px;
  position: absolute;
  bottom: 30px;
  right: 0;
}

.swiper {
  width: 100%;
  height: 90vh;
}

.swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  color: #F1EEDF;
}

.swiper-pagination-bullet-active {
  background: #fff;
}

/*questionnaire
-----------------------------------------------*/
.questionnaire__inner {
  text-align: center;
}
.questionnaire__text {
  margin-bottom: 30px;
}

/*intro
-----------------------------------------------*/
.intro__inner {
  display: flex;
  justify-content: space-between;
}
.intro__textarea {
  width: 42%;
}
.intro__img {
  width: 48%;
}
.intro__title {
  text-align: left;
  font-size: clamp(1.8rem, 2.7vw, 2.4rem);
}
.intro__textbox {
  margin-bottom: 87px;
}
.intro__text {
  margin-bottom: 39px;
}
.intro__btn {
  display: flex;
  position: relative;
}
@media (max-width: 900px) {
  .intro__inner {
    flex-direction: column-reverse;
  }
  .intro__textarea {
    width: 100%;
  }
  .intro__img {
    width: 100%;
    margin-bottom: 30px;
  }
  .intro__textbox {
    margin-bottom: 60px;
  }
}
.intro__btn {
  max-width: 600px;
  justify-content: space-between;
}

/*popular
-----------------------------------------------*/
.popular__inner {
  display: flex;
  justify-content: space-between;
}
.popular__link {
  width: 47.6%;
  position: relative;
}
.popular__link-title {
  background-color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 50px 10px;
  font-size: 2.4rem;
}
.popular__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.3s;
}
.popular__img:hover::before {
  opacity: 1;
}
@media (max-width: 600px) {
  .popular__inner {
    flex-direction: column;
  }
  .popular__link {
    width: 100%;
    margin-bottom: 30px;
  }
}

/*news
-----------------------------------------------*/
.news__img {
  margin-right: 19px;
}
.news__img img {
  width: 63px;
  border-radius: 50%;
}
.news__list {
  font-size: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 996px;
  margin: 0 auto 50px;
}
.news__item {
  width: 48%;
  padding: 16px;
  border: 1px solid;
  background: #FBF6F0;
}
.news__item:hover {
  background-color: #B32619;
  color: #fff;
}
.news__item:nth-of-type(2n-1) {
  margin-bottom: 20px;
}
.news__item:nth-of-type(2n) {
  margin-top: 20px;
}
.news__link {
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .news__item {
    width: 100%;
  }
  .news__item:nth-of-type(2n-1) {
    margin-bottom: 0;
  }
  .news__item:nth-of-type(2n) {
    margin-top: 0;
  }
}

/*access
-----------------------------------------------*/
.access__inner {
  display: flex;
  justify-content: space-between;
}
.access__right {
  width: 48%;
}
.access__list {
  border-top: 3px solid rgba(162, 72, 32, 0.4);
  margin-bottom: 10px;
}
.access__item {
  color: #333;
  display: flex;
  align-items: center;
  padding: 16px;
  border-bottom: 3px solid rgba(162, 72, 32, 0.4);
}
.access dd {
  margin-left: 35px;
  width: 20%;
  font-weight: bold;
}
.access dt {
  width: 70%;
  font-weight: normal;
}
@media (max-width: 900px) {
  .access__inner {
    flex-direction: column;
  }
  .access__map {
    width: 100%;
    margin-bottom: 60px;
  }
  .access__right {
    width: 100%;
  }
}

/*fv
-----------------------------------------------*/
.fv {
  position: relative;
  width: 100%;
  height: 35vh;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.fv__img {
  min-width: 300px;
  max-width: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fv__title {
  font-weight: bold;
  font-size: clamp(2.4rem, 3.2vw, 4.8rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header-news {
  background-image: url(../img/news-header.jpg);
}
@media (max-width: 600px) {
  .header-news {
    background-image: url(../img/news-header01.jpg);
  }
}
.header-shop {
  background-image: url(../img/shop-header01.jpg);
}
@media (max-width: 600px) {
  .header-shop {
    background-image: url(../img/shop-header.jpg);
  }
}
.header-popular {
  background-image: url(../img/popular-header.jpg);
}
.header-contact {
  background-image: url(../img/contact-header.jpg);
}
@media (max-width: 600px) {
  .header-contact {
    background-image: url(../img/swiper02.jpg);
  }
}

/*news-archive
-----------------------------------------------*/
.news-archive__inner {
  padding: 0 4vw;
  max-width: 1264px;
  margin: 0 auto;
}
.news-archive__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-row-gap: 100px;
  grid-column-gap: 20px;
  margin-bottom: 140px;
}
.news-archive__item {
  transition: all 0.3s;
}
.news-archive__item:hover {
  opacity: 0.8;
  transition: all 0.3s;
}
.news-archive__img {
  margin-bottom: 21px;
  max-width: 292px;
}
.news-archive__img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.news-archive__time {
  font-size: clamp(1.2rem, 1vw, 1.4rem);
}
.news-archive__title {
  font-weight: bold;
  text-decoration: underline;
}
@media (max-width: 900px) {
  .news-archive__list {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 5%;
  }
}
@media (max-width: 600px) {
  .news-archive__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*news-single
-----------------------------------------------*/
.news-single {
  max-width: 1200px;
  margin: 0 auto 120px;
  background-color: #fff;
  padding: 80px 10vw;
}

/*post
-----------------------------------------------*/
.post {
  margin-bottom: 80px;
}
.post .thumnail {
  text-align: center;
}
.post__inner {
  color: #512410;
  padding: 0 15px;
  max-width: 900px;
  margin: 0 auto 53px;
}
.post h1 {
  text-align: center;
  font-size: 2.8rem;
  font-size: clamp(2.4rem, 2.03vw, 2.8rem);
  font-weight: bold;
  margin-bottom: 100px;
}
.post h2 {
  font-size: 2.6rem;
  font-size: clamp(2.2rem, 1.875vw, 2.6rem);
  margin: 30px 0;
  font-weight: bold;
}
.post h3 {
  font-size: 2.2rem;
  font-size: clamp(1.8rem, 1.563vw, 2.2rem);
  border-left: 4px solid #793618;
  padding-left: 10px;
  margin: 27px 0;
  font-weight: bold;
}
.post h4 {
  margin: 27px 0;
  font-size: clamp(1.6rem, 1.563vw, 1.8rem);
  font-weight: bold;
}
.post img {
  max-width: 700px;
  -o-object-fit: contain;
     object-fit: contain;
}
.post ul {
  max-width: 558px;
  margin: 30px 0;
}
.post ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.post ul li::before {
  border-radius: 50%;
  width: 11px;
  height: 11px;
  display: block;
  position: absolute;
  left: 10px;
  top: 0.7em;
  transform: translate(-50%, -50%);
  content: "";
  background: #793618;
}
.post ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.post ol li {
  margin-bottom: 10px;
  line-height: 1.5;
}
.post a {
  color: #2384F5;
  text-decoration: underline;
}
.post a:hover {
  color: darkblue;
  opacity: 0.8;
}
.post .wp-block-image {
  margin: 36px 0;
}
.post .alignright {
  display: block;
  margin-left: auto;
}
.post .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.post blockquote {
  margin: 30px 0;
  background: #f8f8f8;
  position: relative;
}
.post blockquote p {
  padding: 27px 26px 17px 74px;
  line-height: 1.5;
}
.post blockquote p::before, .post blockquote p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.post blockquote p::before {
  margin-top: calc((1 - 1.5) * 0.5em);
}
.post blockquote p::after {
  margin-bottom: calc((1 - 1.5) * 0.5em);
}
.post blockquote::before {
  content: "";
  background-image: url(../img/blockquote.png);
  width: 46px;
  height: 45px;
  position: absolute;
  top: 16px;
  left: 17px;
}
@media (max-width: 600px) {
  .post h1 {
    margin-bottom: 0px;
  }
}

/*shop
-----------------------------------------------*/
.shop__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 2.9%;
}
.shop__img--out {
  margin-bottom: 47px;
}

/*information
-----------------------------------------------*/
.information {
  max-width: 750px;
  margin: 0 auto;
}
.information__list {
  color: #333;
  border-top: 3px solid rgba(162, 72, 32, 0.4);
}
.information__item {
  padding: 19px 0;
  display: flex;
  border-bottom: 3px solid rgba(162, 72, 32, 0.4);
}
.information__item dd {
  font-weight: bold;
  width: 18%;
}
.information__item dt {
  font-weight: normal;
  width: 70%;
}

/*shop-map
-----------------------------------------------*/
.shop-map__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shop-map__map {
  width: 48%;
}
.shop-map__textbox {
  width: 48%;
}
.shop-map__text {
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .shop-map__container {
    flex-direction: column;
  }
  .shop-map__textbox, .shop-map__map {
    width: 100%;
  }
  .shop-map__map {
    margin-bottom: 30px;
  }
}

/*popular-page
-----------------------------------------------*/
.popular-page {
  margin-bottom: 70px;
}
.popular-page__bg {
  max-width: 1262px;
  margin: 0 auto;
  padding: 95px 10%;
  background: rgba(162, 72, 32, 0.1);
}
.popular-page__box {
  position: relative;
  margin-bottom: 500px;
}
.popular-page__box--potato {
  margin-bottom: 300px;
}
.popular-page__img {
  max-width: 523px;
}
.popular-page__img--midle {
  position: absolute;
  top: 57.6%;
  left: 45.6%;
}
.popular-page__img--bottom {
  position: absolute;
  top: 120%;
}
.popular-page__titlebox {
  font-size: 2.4rem;
  font-weight: bold;
}
.popular-page__title {
  margin-bottom: 43px;
}
.popular-page__subtitle {
  margin-bottom: 50px;
}
.popular-page__textbox {
  padding: 23px 5px;
  border-top: 2px solid #793618;
  border-bottom: 2px solid #793618;
}
.popular-page__text {
  line-height: 2;
}
.popular-page__text::before, .popular-page__text::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.popular-page__text::before {
  margin-top: calc((1 - 2) * 0.5em);
}
.popular-page__text::after {
  margin-bottom: calc((1 - 2) * 0.5em);
}
@media (max-width: 900px) {
  .popular-page__box {
    margin-bottom: 0;
  }
  .popular-page__img {
    margin-bottom: 30px;
  }
  .popular-page__img--midle {
    position: static;
  }
  .popular-page__img--bottom {
    position: static;
  }
}

/*contact
-----------------------------------------------*/
.contact {
  color: #1B224C;
}
.contact__inner {
  max-width: 700px;
  margin: 0 auto 100px;
}
.contact__text {
  margin-bottom: 40px;
  color: #A24820;
}

.form__item {
  margin-bottom: 20px;
}

.text,
textarea {
  width: 100%;
  font-size: 1.6rem;
  background: #fff;
  border: 0.5px solid #1b224c;
}

.text {
  margin-top: 12px;
  padding: 19px 20px 18px;
}

textarea {
  margin-top: 12px;
  resize: none;
  padding: 22px 23.2px;
}

.privacy-link {
  text-align: center;
  font-size: 1.4rem;
  display: block;
  margin-top: 10px;
  text-decoration: underline;
}
.privacy-link:hover, .privacy-link:focus {
  opacity: 0.7;
}

.checkbox {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

.radio {
  padding: 21px 0 26px;
}
.radio__box {
  margin-right: 15px;
  width: 20px;
  height: 20px;
}
.radio__item {
  margin-bottom: 18px;
}
.radio__item:last-child {
  margin-bottom: 0;
}

.privacy-text {
  vertical-align: bottom;
}

.agree {
  text-align: center;
  margin-bottom: 30.6px;
}
.agree__text {
  margin-bottom: 33px;
}

.select {
  font-weight: bold;
}

/*404.php
-----------------------------------------------*/
.not-found {
  padding: 0 15px;
  width: 50%;
  margin: 0 auto 100px;
  font-size: 2.4rem;
}

/*footer
-----------------------------------------------*/
.footer {
  color: #A24820;
  padding: 53.9px 0;
  background-color: #E2DBD8;
}
.footer__inner {
  padding: 0 4vw;
  max-width: 1470px;
  display: flex;
  margin-bottom: 30px;
}
.footer__item {
  display: flex;
}
.footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__copy {
  font-size: 1.4rem;
  text-align: center;
}
@media (max-width: 600px) {
  .footer__inner {
    align-items: center;
    flex-direction: column;
  }
  .footer__logo {
    margin-bottom: 30px;
  }
}

.news-box {
  padding: 30px 15px;
  background-color: #fff;
  color: #333;
  text-align: center;
}

.important-news:hover {
  opacity: 0.8;
}
/*# sourceMappingURL=style.css.map */

/* ======================================================================
   ANDERSEN 2026 / HOMEPAGE ONLY — editorial photo design
   Legacy CSS above and lower-page templates remain unchanged.
   Maintained directly in CSS: migrate this block before recompiling SCSS.
   ====================================================================== */
body.andersen-home-2026 {
  --a26-paper:#f8f5ed; --a26-ink:#382e29; --a26-muted:#75695f;
  --a26-accent:#783c37; --a26-line:#d9cfc0; --a26-green:#385847;
  --a26-serif:"Yu Mincho","Hiragino Mincho ProN",serif;
  margin:0; background:var(--a26-paper); color:var(--a26-ink);
  font-size:16px; line-height:1.9; letter-spacing:.035em;
  font-family:"Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN",Meiryo,sans-serif;
  -webkit-text-size-adjust:100%;
}
body.andersen-home-2026::before,body.andersen-home-2026::after {content:none}
.andersen-home-2026 *,.andersen-home-2026 *::before,.andersen-home-2026 *::after {box-sizing:border-box}
.andersen-home-2026 :is(h1,h2,h3,p,figure,dl,dd,ul) {margin:0}
.andersen-home-2026 ul {padding:0;list-style:none}
.andersen-home-2026 a {color:inherit;text-decoration:none}
.andersen-home-2026 button {font:inherit;color:inherit;cursor:pointer}
.andersen-home-2026 img {display:block;max-width:100%}
.andersen-home-2026 [hidden] {display:none!important}
.andersen-home-2026 :focus-visible {outline:2px solid var(--a26-accent);outline-offset:5px}
.andersen-home-2026 main:focus {outline:none}
.andersen-home-2026 main {scroll-margin-top:84px}
.andersen-home-2026 .a26-sr-only {position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.andersen-home-2026 .a26-skip-link {position:fixed;top:8px;left:16px;z-index:1000;padding:10px 20px;background:#fff;transform:translateY(-180%)}
.andersen-home-2026 .a26-skip-link:focus {transform:translateY(0)}
.andersen-home-2026 .a26-container {width:calc(100% - 44px);max-width:1240px;margin-inline:auto}
.andersen-home-2026 .a26-section {margin-bottom:80px}
.andersen-home-2026 .a26-eyebrow {color:var(--a26-accent);font-size:11px;font-weight:500;line-height:1.6;letter-spacing:.13em;margin-bottom:16px}
.andersen-home-2026 h2 {font-family:var(--a26-serif);font-weight:500;font-size:clamp(23px,2.4vw,34px);line-height:1.7;letter-spacing:.045em}
.andersen-home-2026 .a26-display-label {font-family:Georgia,"Times New Roman",serif;font-size:clamp(46px,6vw,86px);font-weight:400;line-height:1.08;letter-spacing:-.045em;color:var(--a26-accent);margin-bottom:18px}
.andersen-home-2026 .a26-display-label span {font-style:italic}
.andersen-home-2026 .a26-section-heading {display:flex;flex-direction:column;align-items:flex-start;gap:18px;margin-bottom:36px}
.andersen-home-2026 .a26-section-heading h2 {font-family:inherit;font-size:15px;font-weight:500;letter-spacing:.07em}
.andersen-home-2026 .a26-text-link {display:inline-flex;align-items:center;justify-content:space-between;gap:26px;min-height:48px;padding:9px 0;border-bottom:1px solid currentColor;font-size:13px;line-height:1.7}
.andersen-home-2026 .a26-text-link span {font-size:22px;transition:transform .25s}
.andersen-home-2026 .a26-button {display:inline-flex;align-items:center;justify-content:space-between;gap:24px;min-height:56px;padding:16px 22px;border:1px solid var(--a26-line);border-radius:0;font-size:15px;line-height:1.6;transition:background-color .2s,color .2s}
.andersen-home-2026 .a26-button-outline {background:transparent;border-color:#998f82}
.andersen-home-2026 .a26-button-line {background:var(--a26-green);border-color:var(--a26-green);color:#fff}

/* Small, clear navigation. No script: mobile links remain available. */
.andersen-home-2026 .a26-header {position:sticky;top:0;z-index:100;background:var(--a26-paper);border-bottom:1px solid var(--a26-line)}
.andersen-home-2026 .a26-header-inner {display:flex;flex-wrap:wrap;align-items:center;gap:14px;min-height:74px;width:calc(100% - 36px);max-width:1400px;margin:auto}
.andersen-home-2026 .a26-brand {display:inline-flex;flex:0 0 auto;flex-direction:column;align-items:center;justify-content:center;min-height:52px;color:var(--a26-accent);line-height:1}
.andersen-home-2026 .a26-brand-kicker {font-size:8px;letter-spacing:.2em;margin-bottom:3px}
.andersen-home-2026 .a26-brand-name {font-family:Georgia,"Times New Roman",serif;font-size:31px;letter-spacing:-.045em}
.andersen-home-2026 .a26-header-line {display:inline-flex;align-items:center;gap:8px;margin-left:auto;padding-inline:14px;min-height:44px;font-size:12px;color:#fff;background:var(--a26-green);white-space:nowrap}
.andersen-home-2026 .a26-menu-toggle {display:flex;flex-direction:column;align-items:center;justify-content:center;gap:7px;width:48px;min-height:48px;border:0;padding:4px 0;background:transparent}
.andersen-home-2026 .a26-menu-label {font-size:10px;line-height:1.2;white-space:nowrap}
.andersen-home-2026 .a26-menu-icon {position:relative;display:block;width:24px;height:12px}
.andersen-home-2026 .a26-menu-icon::before,.andersen-home-2026 .a26-menu-icon::after {content:"";position:absolute;left:0;width:24px;height:1px;background:currentColor;transition:transform .2s}
.andersen-home-2026 .a26-menu-icon::before {top:2px}
.andersen-home-2026 .a26-menu-icon::after {bottom:2px}
.andersen-home-2026 .a26-menu-toggle[aria-expanded="true"] .a26-menu-icon::before {transform:translateY(3.5px) rotate(45deg)}
.andersen-home-2026 .a26-menu-toggle[aria-expanded="true"] .a26-menu-icon::after {transform:translateY(-3.5px) rotate(-45deg)}
.andersen-home-2026 .a26-navigation {flex-basis:100%;padding:8px 4px 22px}
.andersen-home-2026 .a26-navigation ul {display:grid;grid-template-columns:1fr 1fr;gap:4px 18px}
.andersen-home-2026 .a26-navigation a {display:flex;align-items:center;min-height:48px;font-size:14px;border-bottom:1px solid var(--a26-line)}
.andersen-home-2026.a26-js .a26-navigation {position:absolute;top:100%;left:0;width:100%;background:var(--a26-paper);padding:12px 24px 26px;border-bottom:1px solid var(--a26-line);max-height:calc(100vh - 120px);max-height:calc(100svh - 120px);overflow-y:auto}
.andersen-home-2026.a26-js .a26-navigation:not(.is-open) {display:none}

/* Photography and a large typographic masthead. */
.andersen-home-2026 .a26-hero {width:calc(100% - 28px);max-width:1400px;margin:20px auto 0}
.andersen-home-2026 .a26-hero-masthead {display:grid;grid-template-columns:1fr 1fr;align-items:end;gap:18px 0;margin-bottom:20px;color:var(--a26-accent)}
.andersen-home-2026 .a26-hero-place {font-size:9px;line-height:1.5;letter-spacing:.12em;padding-left:6px}
.andersen-home-2026 .a26-hero-note {grid-row:1;grid-column:2;font-family:var(--a26-serif);justify-self:end;font-size:12px;line-height:1.7;padding-right:6px}
.andersen-home-2026 .a26-wordmark {grid-column:1/-1;display:block;font-family:Georgia,"Times New Roman",serif;font-size:clamp(66px,21.5vw,304px);font-weight:400;line-height:.86;letter-spacing:-.075em;text-align:center}
.andersen-home-2026 .a26-wordmark > span {font-style:italic}
.andersen-home-2026 .a26-hero-layout {display:grid;grid-template-columns:minmax(0,1fr);gap:24px}
.andersen-home-2026 .a26-hero-main {min-width:0}
.andersen-home-2026 .a26-gallery {display:flex;overflow-x:auto;scroll-snap-type:x mandatory;overscroll-behavior-x:contain;scrollbar-width:thin;scrollbar-color:#a99a8d transparent}
.andersen-home-2026.a26-js .a26-gallery {scrollbar-width:none}
.andersen-home-2026.a26-js .a26-gallery::-webkit-scrollbar {display:none}
.andersen-home-2026 .a26-slide {flex:0 0 100%;min-width:0;aspect-ratio:3/2;overflow:hidden;scroll-snap-align:start;scroll-snap-stop:always;background:#e9ded2}
.andersen-home-2026 .a26-slide img {width:100%;height:100%;object-fit:cover;object-position:center}
.andersen-home-2026 .a26-hero-caption {display:flex;align-items:center;justify-content:space-between;gap:8px;min-height:60px;padding:8px 4px;border-bottom:1px solid var(--a26-line)}
.andersen-home-2026 .a26-hero-caption .a26-eyebrow {margin:0;font-size:8px;letter-spacing:.1em;color:var(--a26-muted)}
.andersen-home-2026 .a26-gallery-controls {display:flex;align-items:center;gap:5px;flex-shrink:0}
.andersen-home-2026 .a26-round-button {display:grid;place-items:center;width:44px;height:44px;border:0;background:transparent;font-size:21px}
.andersen-home-2026 .a26-round-button:disabled {opacity:.3;cursor:default}
.andersen-home-2026 .a26-gallery-count {min-width:34px;text-align:center;font-size:11px;font-variant-numeric:tabular-nums;color:var(--a26-muted)}
.andersen-home-2026 .a26-hero-side {display:none}
.andersen-home-2026 .a26-intro {display:grid;gap:28px;padding-block:54px 72px}
.andersen-home-2026 .a26-intro h1 {font-family:var(--a26-serif);font-size:clamp(31px,3.8vw,56px);font-weight:500;line-height:1.65;letter-spacing:.08em}
.andersen-home-2026 .a26-intro h1 > span {color:var(--a26-accent)}
.andersen-home-2026 .a26-lead {font-size:15px;line-height:2.2;color:#66574d}
.andersen-home-2026 .a26-intro-copy .a26-text-link {margin-top:20px}

/* News continues to use the existing four-post WordPress query. */
.andersen-home-2026 .a26-news {padding-top:30px;border-top:1px solid var(--a26-line)}
.andersen-home-2026 .a26-news .a26-display-label {font-size:44px}
.andersen-home-2026 .a26-news-list {border-top:1px solid var(--a26-line)}
.andersen-home-2026 .a26-news-list li {border-bottom:1px solid var(--a26-line)}
.andersen-home-2026 .a26-news-link {display:grid;grid-template-columns:52px minmax(0,1fr) 16px;align-items:center;gap:14px;padding:20px 0}
.andersen-home-2026 .a26-news-image {display:grid;place-items:center;width:52px;height:52px;background:#ede5db;overflow:hidden;font:italic 23px Georgia,serif;color:var(--a26-accent)}
.andersen-home-2026 .a26-news-image img {width:100%;height:100%;object-fit:cover}
.andersen-home-2026 .a26-news-copy time {display:block;font-size:11px;color:var(--a26-muted);letter-spacing:.1em;margin-bottom:4px}
.andersen-home-2026 .a26-news-copy h3 {font-size:14px;font-weight:400;line-height:1.8;overflow-wrap:anywhere}
.andersen-home-2026 .a26-news-arrow {color:var(--a26-accent)}
.andersen-home-2026 .a26-empty {padding-block:24px;border-block:1px solid var(--a26-line)}

/* Offset photographs, with ample room for the actual product. */
.andersen-home-2026 .a26-sweets {padding-block:60px 64px;background:#eee8dd}
.andersen-home-2026 .a26-product-grid {display:grid;gap:44px}
.andersen-home-2026 .a26-product {min-width:0}
.andersen-home-2026 .a26-product-image {aspect-ratio:1;overflow:hidden;background:#e3d8c8}
.andersen-home-2026 .a26-product-image img {width:100%;height:100%;object-fit:cover;transition:transform .55s ease}
.andersen-home-2026 .a26-product-copy {padding-top:20px}
.andersen-home-2026 .a26-product-copy .a26-eyebrow {font-size:10px;margin-bottom:9px;letter-spacing:.07em}
.andersen-home-2026 .a26-product-copy h3 {display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:14px;font-family:var(--a26-serif);font-size:25px;font-weight:500;line-height:1.6}
.andersen-home-2026 .a26-product-copy h3 span {font:20px sans-serif;color:var(--a26-accent)}
.andersen-home-2026 .a26-product-copy > p:not(.a26-eyebrow) {font-size:15px;line-height:1.9;color:#66574d}
.andersen-home-2026 .a26-product-source {display:inline-block;font-size:12px;margin-top:16px;text-decoration:underline;text-underline-offset:4px}
.andersen-home-2026 .a26-sweets-bottom {display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:24px;margin-top:48px;padding-top:24px;border-top:1px solid var(--a26-line)}
.andersen-home-2026 .a26-sweets-bottom .a26-note {margin-top:0}
.andersen-home-2026 h2[id] {scroll-margin-top:110px}
.andersen-home-2026 .a26-reveal {transition:opacity .75s ease,transform .75s cubic-bezier(.2,.65,.3,1)}
.andersen-home-2026 .a26-reveal-pending {opacity:0;transform:translateY(26px)}
.andersen-home-2026 .a26-reveal:focus-within {opacity:1;transform:none}
@media print{.andersen-home-2026 .a26-reveal-pending{opacity:1;transform:none}}

/* A quiet burgundy spread introduces the shop. */
.andersen-home-2026 .a26-story {background:var(--a26-accent);color:var(--a26-paper);padding-block:60px;margin-bottom:0}
.andersen-home-2026 .a26-story-inner {display:grid;gap:36px;align-items:center}
.andersen-home-2026 .a26-story-image {aspect-ratio:5/4;background:#9a6c5e;overflow:hidden}
.andersen-home-2026 .a26-story-image img {width:100%;height:100%;object-fit:cover}
.andersen-home-2026 .a26-story .a26-display-label {color:#dbc4a9;font-size:58px;font-style:italic;margin-bottom:28px}
.andersen-home-2026 .a26-story-copy h2 {margin-bottom:26px}
.andersen-home-2026 .a26-story-copy > p:not(.a26-display-label) {margin-bottom:22px;line-height:2.1;font-size:15px;color:#f0e5d9}
.andersen-home-2026 .a26-story-copy .a26-text-link {margin-top:8px}
.andersen-home-2026 .a26-desktop-break {display:none}
.andersen-home-2026 .a26-social {padding-block:68px;border-bottom:1px solid var(--a26-line)}
.andersen-home-2026 .a26-social-inner {display:grid;gap:32px}
.andersen-home-2026 .a26-social h2 {font-family:inherit;font-size:18px;margin-bottom:16px}
.andersen-home-2026 .a26-social p:not(.a26-display-label) {color:#66574d;font-size:14px}
.andersen-home-2026 .a26-social-links {display:grid;gap:12px}
.andersen-home-2026 .a26-photo-order {margin-top:20px;font-size:13px;line-height:1.9}
.andersen-home-2026 .a26-photo-order strong {font-weight:500;color:var(--a26-ink)}
.andersen-home-2026 .a26-line-dock {position:fixed;z-index:95;bottom:max(12px,env(safe-area-inset-bottom));left:16px;right:16px;display:flex;align-items:center;justify-content:space-between;gap:16px;min-height:58px;padding:10px 20px;color:#fff;background:var(--a26-green);box-shadow:0 4px 18px #263d3024;border:1px solid #ffffff36}
.andersen-home-2026 .a26-line-dock strong {display:block;font-size:15px;font-weight:500;line-height:1.6}
.andersen-home-2026 .a26-line-dock small {display:block;font-size:10px;line-height:1.6;letter-spacing:.04em}
.andersen-home-2026 {padding-bottom:calc(90px + env(safe-area-inset-bottom))}
@media(min-width:768px){.andersen-home-2026 .a26-line-dock{display:none}.andersen-home-2026{padding-bottom:0}}
@media print{.andersen-home-2026 .a26-line-dock{display:none}}
.andersen-home-2026 .a26-access-grid {display:grid;gap:36px}
.andersen-home-2026 .a26-access-info h3 {font-size:17px;margin-bottom:20px;font-weight:500}
.andersen-home-2026 .a26-shop-details > div {display:grid;grid-template-columns:74px minmax(0,1fr);gap:12px;padding-block:13px;border-bottom:1px solid var(--a26-line);font-size:14px}
.andersen-home-2026 .a26-shop-details dt {color:var(--a26-muted);font-weight:400}
.andersen-home-2026 .a26-shop-details dd {font-weight:400}
.andersen-home-2026 .a26-shop-details a {text-decoration:underline;text-underline-offset:4px}
.andersen-home-2026 .a26-payment {width:100%;max-width:300px;height:auto}
.andersen-home-2026 .a26-note {margin-top:18px;font-size:13px;line-height:1.9;color:#66574d}
.andersen-home-2026 .a26-note a {text-decoration:underline;text-underline-offset:3px}
.andersen-home-2026 .a26-access-actions {display:flex;flex-wrap:wrap;align-items:center;gap:16px 24px;margin-top:28px}
.andersen-home-2026 .a26-map {min-width:0;min-height:320px;background:#e9ded2}
.andersen-home-2026 .a26-map iframe {display:block;width:100%;height:100%;min-height:320px}
.andersen-home-2026 .a26-footer {background:#eee8dd;padding-block:52px 24px}
.andersen-home-2026 .a26-footer-signature {font-family:Georgia,"Times New Roman",serif;font-size:clamp(40px,7.5vw,110px);font-weight:400;line-height:1.03;letter-spacing:-.045em;color:var(--a26-accent);padding-bottom:40px;margin-bottom:36px;border-bottom:1px solid var(--a26-line)}
.andersen-home-2026 .a26-footer-main {display:grid;gap:30px;padding-bottom:32px}
.andersen-home-2026 .a26-footer-brand .a26-brand {margin-bottom:22px}
.andersen-home-2026 .a26-footer-brand p {font-size:13px;line-height:2;margin-bottom:10px}
.andersen-home-2026 .a26-footer-nav ul {display:grid;grid-template-columns:1fr 1fr;gap:2px 20px}
.andersen-home-2026 .a26-footer-nav a {display:flex;align-items:center;min-height:44px;font-size:13px}
.andersen-home-2026 .a26-footer-bottom {border-top:1px solid var(--a26-line);padding-top:20px;display:grid;gap:16px;color:#66574d}
.andersen-home-2026 .a26-footer-bottom > div {display:flex;flex-wrap:wrap;gap:0 20px}
.andersen-home-2026 .a26-footer-bottom a {display:inline-flex;align-items:center;min-height:44px;font-size:12px}
.andersen-home-2026 .a26-footer-bottom small {font-size:11px;letter-spacing:.04em}
.admin-bar.andersen-home-2026 .a26-header {top:32px}
@media(max-width:782px){.admin-bar.andersen-home-2026 .a26-header{top:46px}}
@media(max-width:600px){.admin-bar.andersen-home-2026 .a26-header{position:relative;top:0}}
@media(min-width:600px){
  .andersen-home-2026 .a26-container {width:calc(100% - 72px)}
  .andersen-home-2026 .a26-social-links {grid-template-columns:1fr 1fr}
  .andersen-home-2026 .a26-mobile-break {display:none}
  .andersen-home-2026 .a26-hero-caption .a26-eyebrow {font-size:10px}
}
@media(min-width:768px){
  .andersen-home-2026 .a26-section {margin-bottom:112px}
  .andersen-home-2026 .a26-hero {width:calc(100% - 72px);margin-top:26px}
  .andersen-home-2026 .a26-hero-masthead {gap:18px 0;margin-bottom:30px}
  .andersen-home-2026 .a26-hero-place {font-size:10px}
  .andersen-home-2026 .a26-hero-note {font-size:14px}
  .andersen-home-2026 .a26-hero-layout {grid-template-columns:minmax(0,2.2fr) minmax(0,1fr);gap:5%}
  .andersen-home-2026 .a26-hero-side {display:flex;flex-direction:column;justify-content:flex-end;align-items:center;padding-top:42px;padding-bottom:60px}
  .andersen-home-2026 .a26-flower {font-size:clamp(90px,9vw,140px);line-height:1;color:var(--a26-accent);margin-bottom:32px;font-family:Georgia,serif}
  .andersen-home-2026 .a26-hero-detail {display:block;width:100%;font-size:11px}
  .andersen-home-2026 .a26-hero-detail img {width:100%;aspect-ratio:4/3;object-fit:cover}
  .andersen-home-2026 .a26-hero-detail > span {display:flex;justify-content:space-between;gap:10px;padding-top:12px}
  .andersen-home-2026 .a26-side-note {align-self:flex-start;margin-top:20px;font-size:9px;letter-spacing:.15em;line-height:1.7;color:var(--a26-muted)}
  .andersen-home-2026 .a26-intro {grid-template-columns:1.2fr 1fr;align-items:center;gap:8%;padding-block:76px 98px}
  .andersen-home-2026 .a26-intro-copy {justify-self:end}
  .andersen-home-2026 .a26-lead {font-size:16px}
  .andersen-home-2026 .a26-section-heading {flex-direction:row;justify-content:space-between;align-items:flex-end;gap:28px;margin-bottom:42px}
  .andersen-home-2026 .a26-section-heading > .a26-text-link {flex-shrink:0}
  .andersen-home-2026 .a26-news {padding-top:40px}
  .andersen-home-2026 .a26-news-list {display:grid;grid-template-columns:1fr 1fr;column-gap:48px}
  .andersen-home-2026 .a26-news-copy h3 {font-size:15px}
  .andersen-home-2026 .a26-sweets {padding-block:84px 100px}
  .andersen-home-2026 .a26-product-grid {grid-template-columns:repeat(3,minmax(0,1fr));gap:28px;align-items:start}
  .andersen-home-2026 .a26-product:nth-child(2) {margin-top:76px}
  .andersen-home-2026 .a26-product:nth-child(3) {margin-top:24px}
  .andersen-home-2026 .a26-product-copy h3 {font-size:clamp(18px,1.9vw,27px)}
  .andersen-home-2026 .a26-product-copy > p:not(.a26-eyebrow) {font-size:14px}
  .andersen-home-2026 .a26-story {padding-block:88px;margin-bottom:0}
  .andersen-home-2026 .a26-story-inner {grid-template-columns:1.08fr 1fr;gap:9%}
  .andersen-home-2026 .a26-story-image {aspect-ratio:4/5}
  .andersen-home-2026 .a26-story .a26-display-label {font-size:clamp(56px,6.5vw,94px)}
  .andersen-home-2026 .a26-social {padding-block:90px}
  .andersen-home-2026 .a26-access-grid {grid-template-columns:1fr 1fr;gap:7%;align-items:stretch}
  .andersen-home-2026 .a26-footer {padding-top:72px}
  .andersen-home-2026 .a26-footer-main {grid-template-columns:1fr 1fr;padding-bottom:40px}
  .andersen-home-2026 .a26-footer-nav {justify-self:end;min-width:320px}
  .andersen-home-2026 .a26-footer-bottom {display:flex;align-items:center;justify-content:space-between}
}
@media(min-width:1000px){
  .andersen-home-2026 .a26-header-inner {width:calc(100% - 72px);min-height:84px;flex-wrap:nowrap;gap:32px}
  .andersen-home-2026 .a26-header-line {order:3;margin-left:0;padding-inline:18px;border-left:1px solid var(--a26-line);font-size:13px}
  .andersen-home-2026 .a26-menu-toggle {display:none}
  .andersen-home-2026 .a26-navigation,.andersen-home-2026.a26-js .a26-navigation,.andersen-home-2026.a26-js .a26-navigation:not(.is-open) {display:block;position:static;width:auto;padding:0;margin-left:auto;flex-basis:auto;border:0;max-height:none;overflow:visible}
  .andersen-home-2026 .a26-navigation ul {display:flex;align-items:center;gap:30px}
  .andersen-home-2026 .a26-navigation a {border:0;font-size:13px;white-space:nowrap}
  .andersen-home-2026 .a26-navigation-mobile {display:none}
  .andersen-home-2026 .a26-desktop-break {display:inline}
  .andersen-home-2026 .a26-social-inner {grid-template-columns:1fr 410px;align-items:center;gap:40px}
}
@media(hover:hover) and (prefers-reduced-motion:no-preference){
  .andersen-home-2026 .a26-product:hover .a26-product-image img {transform:scale(1.025)}
  .andersen-home-2026 .a26-text-link:hover > span {transform:translate(3px,-3px)}
}
@media(hover:hover){
  .andersen-home-2026 .a26-text-link:hover,.andersen-home-2026 .a26-navigation a:hover,.andersen-home-2026 .a26-footer a:hover,.andersen-home-2026 .a26-news-link:hover h3 {color:var(--a26-accent)}
  .andersen-home-2026 .a26-story .a26-text-link:hover {color:#dbc4a9}
  .andersen-home-2026 .a26-button-outline:hover {background:#e9ded2}
  .andersen-home-2026 .a26-button-line:hover {background:#284434}
  .andersen-home-2026 .a26-round-button:not(:disabled):hover {color:var(--a26-accent)}
}
@media(prefers-reduced-motion:no-preference){
  .andersen-home-2026 .a26-wordmark {animation:a26-arrive .65s ease-out both}
  @keyframes a26-arrive {from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}
}
@media(prefers-reduced-motion:reduce){
  .andersen-home-2026 .a26-reveal-pending {opacity:1;transform:none}
  .andersen-home-2026 *,.andersen-home-2026 *::before,.andersen-home-2026 *::after {animation:none!important;transition:none!important;scroll-behavior:auto!important}
}
