
:root{
  --ink:#161616;
  --muted:#6d6255;
  --paper:#f7f1e6;
  --paper-2:#fffaf0;
  --accent:#b13a27;
  --gold:#b98a4a;
  --line:rgba(22,22,22,.16);
  --yuwa-blue:#0b6ea8;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:
    radial-gradient(circle at 20% 5%, rgba(185,138,74,.15), transparent 28rem),
    linear-gradient(180deg,var(--paper-2),var(--paper));
  font-family:"Yu Mincho","Hiragino Mincho ProN","Times New Roman",serif;
  letter-spacing:.04em;
  line-height:1.9;
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

/* 950px centered site frame */
.site-header,
main,
.site-footer{
  width:100%;
  max-width:950px;
  margin-left:auto;
  margin-right:auto;
}

main{
  background:rgba(255,250,240,.38);
  box-shadow:0 0 34px rgba(22,22,22,.06);
}


.site-header{
  position:fixed;
  z-index:20;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:100%;
  max-width:950px;
  padding:12px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  background:rgba(255,250,240,.98);
  border-bottom:1px solid rgba(22,22,22,.1);
  box-shadow:0 8px 26px rgba(22,22,22,.08);
}

.brand{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  padding:0;
  background:transparent;
  border-radius:0;
}
.brand img{width:180px;height:auto}
.global-nav{
  flex:1;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:600;
  line-height:1.4;
  white-space:nowrap;
}
.global-nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 12px;
  border:1px solid rgba(22,22,22,.14);
  background:rgba(255,255,255,.62);
  border-radius:999px;
  
}
.global-nav a:hover{
  border-color:var(--accent);
  background:#fff;
  color:var(--accent);
}

.hero{
  min-height:680px;
  position:relative;
  padding:105px 30px 56px;
  overflow:hidden;
  display:block;
}
.hero::before{
  content:"";
  position:absolute;
  inset:105px 30px 56px;
  background:linear-gradient(90deg, rgba(255,255,255,.34), rgba(255,255,255,.12) 48%, rgba(255,255,255,.04));
  z-index:2;
  pointer-events:none;
}
.hero__photo{
  position:absolute;
  inset:105px 30px 56px;
  z-index:1;
  overflow:hidden;
  border-radius:0 170px 0 0;
  background:#ddd;
}
.hero__photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  filter:brightness(1.16) saturate(1.08) contrast(.98);
}
.hero__copy{
  position:relative;
  z-index:4;
  min-height:519px;
  width:min(430px,54%);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  text-align:left;
  padding:42px 38px;
  color:#fff;
}
.eyebrow{
  color:#111;
  font-size:clamp(22px,2.6vw,30px);
  font-weight:800;
  white-space:nowrap;
  margin:0 0 24px;
  letter-spacing:.08em;
  text-shadow:0 2px 8px rgba(255,255,255,.72);
}
.hero h1{
  writing-mode:vertical-rl;
  text-orientation:upright;
  font-size:clamp(40px,5.2vw,62px);
  line-height:1.68;
  letter-spacing:.10em;
  font-weight:900;
  margin:0;
  min-height:360px;
  text-shadow:0 3px 18px rgba(0,0,0,.42);
}
.hero h1 span{display:block;white-space:nowrap}
.lead{
  max-width:430px;
  margin:28px 0 0;
  color:#fff;
  font-weight:600;
  background:transparent;
  border:none;
  border-radius:0;
  padding:0;
  text-shadow:
    -1px -1px 0 rgba(0,0,0,.72),
     1px -1px 0 rgba(0,0,0,.72),
    -1px  1px 0 rgba(0,0,0,.72),
     1px  1px 0 rgba(0,0,0,.72),
     0 2px 10px rgba(0,0,0,.48);
}
.scroll{
  position:absolute;
  left:50%;
  bottom:28px;
  transform:translateX(-50%);
  color:var(--muted);
  font-size:12px;
  letter-spacing:.18em;
}
.scroll::after{display:none}

.section{
  padding:clamp(64px,9vw,110px) 30px;
}
.section-title{
  display:flex;
  align-items:flex-end;
  gap:0;
  margin-bottom:44px;
}
.section-title--center{
  justify-content:center;
  text-align:center;
  flex-direction:column;
  align-items:center;
  gap:0;
}
.num{
  margin:0;
  color:var(--gold);
  font-size:13px;
  letter-spacing:.28em;
  font-family:Georgia,serif;
}
.section-title h2,
.contact h2{
  margin:0;
  font-size:clamp(28px,4vw,44px);
  line-height:1.35;
  font-weight:500;
}

.intro__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.intro__grid article{
  background:rgba(255,255,255,.55);
  border:1px solid var(--line);
  padding:34px 24px;
  min-height:310px;
}
.intro__grid img{
  width:132px;
  height:auto;
  margin:0 auto 26px;
}
.intro__grid h3{
  font-size:22px;
  margin:0 0 14px;
  text-align:center;
}
.intro__grid p{margin:0;color:var(--muted);text-align:left}

.story{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:center;
  background: rgb(0,90,160);
  color:#fff;
}
.story__text{
  max-width:560px;
  margin:0 auto;
}
.story__text h2{
  font-size:clamp(32px,4.6vw,48px);
  line-height:1.35;
  font-weight:500;
  margin:0 0 30px;
}
.story__text p:not(.vertical-small){color:rgba(255,255,255,.78)}
.vertical-small{
  color:#e3c28a;
  letter-spacing:.28em;
  font-size:12px;
  margin:0 0 26px;
}
.story__image img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:180px 0 0 0;
}

.product-list{
  display:flex;
  flex-direction:column;
  gap:44px;
  max-width:870px;
  margin:0 auto;
}
.product-card{
  display:grid;
  grid-template-columns:34% 1fr;
  gap:28px;
  align-items:center;
  padding:34px;
  border:1px solid var(--line);
}
.product-card--reverse{
  grid-template-columns:1fr 34%;
}
.product-card--reverse figure{order:2}
.product-card figure{
  margin:0;
  overflow:hidden;
  border-radius:0 110px 0 0;
  background:#ddd;
  height:235px;
}
.product-card--reverse figure{border-radius:110px 0 0 0}
.product-card img{
  width:100%;
  height:100%;
  aspect-ratio:auto;
  object-fit:cover;
  object-position:center center;
  transform:none;
}
.product-label{
  color:var(--gold);
  font-size:12px;
  letter-spacing:.24em;
  margin:0 0 10px;
}
.product-card h3{
  font-size:clamp(28px,3.8vw,40px);
  margin:0 0 18px;
  font-weight:500;
}
.product-card p:last-child{color:var(--muted);margin:0}
.product-card--dark{
  background: rgb(0,90,160);
  color:#fff;
  border-color:rgba(255,255,255,.14);
}
.product-card--dark p:last-child{color:rgba(255,255,255,.82)}
.product-card--dark figure{background: rgb(0,90,160)}
.product-card--light{
  background:rgba(255,255,255,.74);
  color:var(--ink);
}
.product-card--light p:last-child{color:var(--muted)}

.company{
  background:rgba(255,255,255,.45);
}
.company-table{
  max-width:870px;
  margin:0 auto;
  border-top:1px solid var(--line);
}
.company-table div{
  display:grid;
  grid-template-columns:220px 1fr;
  border-bottom:1px solid var(--line);
  padding:20px 0;
}
.company-table dt{
  color:var(--accent);
}
.company-table dd{
  margin:0;
}

.contact{
  text-align:center;
}
.contact__inner{
  max-width:820px;
  margin:0 auto;
  padding:70px 28px;
  border:1px solid var(--line);
  background:
    linear-gradient(rgba(255,255,255,.7),rgba(255,255,255,.7)),
    repeating-linear-gradient(90deg, rgba(185,138,74,.08) 0 1px, transparent 1px 26px);
}
.contact__inner p{
  max-width:620px;
  margin:20px auto;
  color:var(--muted);
}
.tel-button{
  display:inline-block;
  margin-top:24px;
  padding:15px 36px;
  border:1px solid var(--ink);
  background:var(--ink);
  color:#fff;
  font-size:22px;
  letter-spacing:.08em;
}
.fax{font-size:14px}

.site-footer{
  padding:46px 24px;
  text-align:center;
  color:#fff;
  background: rgb(0,90,160);
}
.footer-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}
.footer-mainline{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}
.site-footer p{margin:0}
.site-footer small{color:rgba(255,255,255,.6)}

@media (max-width: 950px){
  .footer-mainline{
    flex-direction:column;
    gap:12px;
  }

  .site-header{
    position:fixed;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    padding:12px 16px;
  }
  .brand img{width:128px}
  .global-nav{
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px;
    font-size:13px;
  }
  .global-nav a{
    padding:8px 12px;
  }
  .hero{
    min-height:auto;
    padding:150px 26px 60px;
  }
  .hero::before{
    inset:150px 26px 60px;
    background:linear-gradient(180deg, rgba(22,22,22,.16), rgba(22,22,22,.62));
  }
  .hero::after{display:none}
  .hero__photo{
    position:relative;
    inset:auto;
    height:auto;
    aspect-ratio:4/3;
    border-radius:0 90px 0 0;
  }
  .hero__copy{
    position:absolute;
    left:26px;
    right:26px;
    bottom:60px;
    width:auto;
    min-height:auto;
    padding:30px 24px;
    align-items:flex-start;
  }
  .hero h1{
    font-size:clamp(34px,8vw,48px);
    min-height:320px;
    line-height:1.58;
    font-weight:900;
  }
  .lead{margin-top:18px}
  .scroll{display:none}
  .intro__grid{
    grid-template-columns:1fr;
  }
  .story{
    grid-template-columns:1fr;
  }
  .story__image img{
    border-radius:90px 0 0 0;
  }
  .product-card,
  .product-card--reverse{
    grid-template-columns:1fr;
    padding:28px 22px;
  }
  .product-card--reverse figure{order:0}
  .company-table div{
    grid-template-columns:1fr;
    gap:4px;
  }
}

@media (max-width: 560px){
  body{letter-spacing:.02em}
  .site-header{
    padding:12px 14px;
    justify-content:center;
  }
  .brand{
    padding:6px 10px;
  }
  .global-nav{
    display:flex;
    justify-content:flex-start;
    width:100%;
    overflow-x:auto;
    padding-bottom:4px;
    gap:8px;
    -webkit-overflow-scrolling:touch;
  }
  .global-nav a{
    flex:0 0 auto;
    padding:8px 11px;
    font-size:12px;
  }
  .section{
    padding:64px 18px;
  }
  .hero{
    padding:166px 18px 56px;
  }
  .hero::before{inset:166px 18px 56px}
  .hero__copy{left:18px;right:18px;bottom:56px}

  .intro__grid article{
    padding:30px 24px;
  }
  .product-list{
    gap:52px;
  }
  .contact__inner{
    padding:52px 20px;
  }
  .tel-button{
    width:100%;
    font-size:18px;
    padding:14px 18px;
  }
}


@media (min-width: 951px){
  .global-nav{flex-wrap:nowrap;}
}

@media (max-width: 720px){
  .site-header{
    justify-content:center;
  }
  .global-nav{
    width:100%;
    justify-content:center;
  }
  .intro__grid img{
    width:148px;
  }
  .product-card figure{
    height:230px;
  }
}

@media (max-width: 430px){
  .global-nav{
    justify-content:flex-start;
    overflow-x:auto;
  }
  .hero{
    padding-top:178px;
  }
  .hero::before{inset:178px 18px 56px}
  .hero h1{
    font-size:30px;
    min-height:285px;
  }
  .hero__copy{padding:24px 18px}
  .intro__grid img{
    width:138px;
  }
}

.contact-actions{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:22px;
}
.contact-actions .tel-button,
.contact-actions .fax-button,
.contact-actions .mail-button{
  border:none;
  cursor:pointer;
  font-family:inherit;
}
.fax-button,
.mail-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:190px;
  padding:13px 24px;
  border-radius:999px;
  background: rgb(0,90,160);
  color:#161616;
  border:1px solid rgba(22,22,22,.18);
  font-weight:700;
  letter-spacing:.06em;
}
.fax-button--shown{
  cursor:default;
}
.contact-note{
  margin:14px 0 0;
  font-size:12px;
  color:rgba(255,250,240,.78);
}
@media (max-width:640px){
  .eyebrow{font-size:19px;}
  .lead{font-size:13px; padding:10px 12px;}
  .contact-actions{gap:10px;}
  .fax-button,
.mail-button{width:100%; max-width:280px;}
}


/* final adjustments */
.contact-actions .tel-button,
.contact-actions .fax-button,
.contact-actions .mail-button{
  box-sizing:border-box;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:240px;
  min-width:240px;
  height:56px;
  margin:0;
  padding:0 24px;
  border-radius:999px;
  font-size:18px;
  line-height:1;
}
.contact-actions .tel-button{
  border:1px solid var(--ink);
}
.contact-actions .fax-button,
.mail-button{
  border:1px solid rgba(22,22,22,.18);
}
@media (max-width:640px){
  .eyebrow{white-space:normal;}
  .contact-actions .tel-button,
  .contact-actions .fax-button,
  .contact-actions .mail-button{
    width:100%;
    max-width:280px;
    min-width:0;
    height:54px;
  }
}

/* tablet / smartphone hero layout fix */
@media (max-width: 950px){
  .hero{
    position:relative;
    min-height:720px;
    padding:150px 26px 60px;
    display:flex;
    align-items:center;
  }
  .hero::before{
    inset:150px 26px 60px;
    background:linear-gradient(90deg, rgba(255,255,255,.46), rgba(255,255,255,.18) 48%, rgba(0,0,0,.18));
  }
  .hero__photo{
    position:absolute;
    inset:150px 26px 60px;
    height:auto;
    aspect-ratio:auto;
    border-radius:0 100px 0 0;
  }
  .hero__copy{
    position:relative;
    left:auto;
    right:auto;
    bottom:auto;
    width:100%;
    min-height:510px;
    padding:34px 28px;
    justify-content:center;
    align-items:flex-start;
  }
  .eyebrow{
    font-size:clamp(21px,3.6vw,28px);
    line-height:1.5;
    white-space:nowrap;
    margin-bottom:22px;
  }
  .hero h1{
    font-size:clamp(38px,7vw,52px);
    line-height:1.55;
    min-height:350px;
  }
  .lead{
    max-width:440px;
    font-size:15px;
    line-height:1.85;
    margin-top:22px;
  }
}

@media (max-width: 560px){
  .hero{
    min-height:660px;
    padding:166px 18px 52px;
  }
  .hero::before{
    inset:166px 18px 52px;
    background:linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,.14) 44%, rgba(0,0,0,.40));
  }
  .hero__photo{
    inset:166px 18px 52px;
    border-radius:0 66px 0 0;
  }
  .hero__copy{
    padding:26px 18px;
    min-height:442px;
  }
  .eyebrow{
    font-size:clamp(16px,4.4vw,20px);
    letter-spacing:.02em;
    white-space:nowrap;
    margin-bottom:16px;
  }
  .hero h1{
    font-size:clamp(31px,8.3vw,38px);
    line-height:1.45;
    min-height:300px;
  }
  .lead{
    max-width:100%;
    font-size:13px;
    line-height:1.75;
    margin-top:16px;
    padding:0;
  }
}

@media (max-width: 430px){
  .hero{
    min-height:640px;
    padding-top:178px;
  }
  .hero::before{inset:178px 18px 52px;}
  .hero__photo{inset:178px 18px 52px;}
  .hero__copy{padding:22px 16px;}
  .eyebrow{font-size:15px;}
  .hero h1{
    font-size:30px;
    line-height:1.42;
    min-height:286px;
  }
}

/* remove decorative text and bottom line from hero image */
.hero::after,
.scroll{
  display:none !important;
}

/* tablet / smartphone hamburger menu */
.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid rgba(22,22,22,.18);
  border-radius:999px;
  background: rgb(0,90,160);
  cursor:pointer;
  padding:0;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  z-index:45;
}
.menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  background: rgb(0,90,160);
  border-radius:999px;
  
}
.nav-overlay{display:none;}

@media (max-width: 950px){
  body.is-menu-fixed{overflow:hidden;}
  .site-header{
    flex-wrap:nowrap !important;
    justify-content:space-between !important;
    align-items:center !important;
  }
  .brand img{width:156px;height:auto;}

  .menu-toggle{display:inline-flex;}
  .global-nav{
    position:fixed;
    top:0;
    right:0;
    width:min(78vw,320px) !important;
    height:100vh;
    padding:88px 24px 32px;
    display:flex !important;
    flex-direction:column;
    justify-content:flex-start !important;
    align-items:stretch;
    gap:14px;
    background: rgb(0,90,160);
    box-shadow:-18px 0 34px rgba(22,22,22,.18);
    transform:translateX(105%);
    
    z-index:40;
    overflow-y:auto;
  }
  .global-nav a{
    width:100%;
    justify-content:flex-start;
    padding:14px 16px;
    font-size:15px;
    border-radius:12px;
    background:#fff;
  }
  .nav-overlay{
    display:block;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.32);
    opacity:0;
    pointer-events:none;
    
    z-index:35;
  }
  .site-header.is-menu-open .global-nav{transform:translateX(0);}
  .site-header.is-menu-open .nav-overlay{
    opacity:1;
    pointer-events:auto;
  }
  .site-header.is-menu-open .menu-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg);}
  .site-header.is-menu-open .menu-toggle span:nth-child(2){opacity:0;}
  .site-header.is-menu-open .menu-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
}



/* WebP picture layout / Core Web Vitals image stability */
picture{display:block;max-width:100%;}
.brand picture{display:flex;align-items:center;}
.hero__photo picture,
.product-card figure picture{width:100%;height:100%;}
.hero__photo picture img,
.product-card figure picture img{width:100%;height:100%;object-fit:cover;}
.intro__grid picture{width:132px;margin:0 auto 26px;}
.intro__grid picture img{width:100%;height:auto;margin:0;}
@media (max-width:560px){.intro__grid picture{width:138px;}}

/* smooth top button */
.back-to-top{
  position:fixed;
  right:max(18px, calc((100vw - 950px) / 2 + 18px));
  bottom:22px;
  z-index:30;
  width:58px;
  height:58px;
  border:1px solid rgba(22,22,22,.16);
  border-radius:999px;
  background:rgba(255,250,240,.94);
  color:var(--ink);
  font-family:inherit;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  box-shadow:0 12px 28px rgba(22,22,22,.16);
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transform:translateY(12px);
  
}
.back-to-top.is-visible{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.back-to-top:hover{
  background:var(--ink);
  color:#fff;
}
.brand{cursor:pointer;}
@media (max-width: 950px){
  .back-to-top{
    right:18px;
    bottom:18px;
    width:54px;
    height:54px;
    font-size:12px;
  }
}

/* FAQ section */
.faq{
  background:rgba(255,255,255,.35);
}
.faq-list{
  max-width:870px;
  margin:0 auto;
  display:grid;
  gap:18px;
}
.faq-item{
  background:rgba(255,255,255,.78);
  border:1px solid var(--line);
  padding:28px 30px;
}
.faq-item h3{
  margin:0 0 14px;
  color:var(--accent);
  font-size:clamp(18px,2.2vw,23px);
  line-height:1.55;
  font-weight:700;
}
.faq-item p{
  margin:0;
  color:var(--muted);
  line-height:1.9;
}
.faq-item p span{
  display:inline-block;
  margin-right:.45em;
  color:var(--ink);
  font-weight:700;
}
@media (max-width:640px){
  .faq-item{
    padding:24px 20px;
  }
}


/* mail button: Yuwa blue */
.contact-actions .mail-button{
  background:var(--yuwa-blue);
  color:#fff;
  border:1px solid var(--yuwa-blue);
  box-shadow:0 8px 18px rgba(11,110,168,.22);
}
.contact-actions .mail-button:hover{
  filter:brightness(1.05);
}


/* mail button nowrap fix */
.contact-actions .mail-button,
.contact-actions .js-show-mail{
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  min-width: 260px;
  letter-spacing: .03em;
  padding-left: 18px;
  padding-right: 18px;
}
@media (max-width:640px){
  .contact-actions .mail-button,
  .contact-actions .js-show-mail{
    width: 100%;
    max-width: 320px;
    min-width: 260px;
    font-size: 18px;
    white-space: nowrap;
  }
}


/* Instagram latest feed */
.section-lead{
  margin:12px auto 0;
  color:var(--muted);
  max-width:620px;
  line-height:1.8;
}
.instagram{
  background:rgba(255,255,255,.28);
}
.instagram-panel{
  max-width:870px;
  margin:0 auto;
  padding:34px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.72);
}
.instagram-head{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-bottom:28px;
  text-align:left;
}
.instagram-head img{
  width:58px;
  height:58px;
  object-fit:contain;
  flex:0 0 auto;
}
.instagram-head h3{
  margin:0;
  font-size:24px;
  line-height:1.3;
}
.instagram-head p{
  margin:4px 0 0;
  color:var(--muted);
  font-size:14px;
}
.instagram-feed{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.instagram-card{
  display:block;
  overflow:hidden;
  border:1px solid rgba(22,22,22,.12);
  background:#fff;
  
}
.instagram-card:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(22,22,22,.12);
}
.instagram-card__image{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  background:#eee;
}
.instagram-card__body{
  padding:16px 16px 18px;
}
.instagram-card__date{
  margin:0 0 8px;
  color:var(--gold);
  font-size:12px;
  letter-spacing:.12em;
}
.instagram-card__caption{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.75;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.instagram-placeholder{
  grid-column:1/-1;
  padding:26px;
  text-align:center;
  color:var(--muted);
  border:1px dashed rgba(22,22,22,.22);
  background:rgba(255,250,240,.72);
}
.instagram-placeholder p{margin:0;}
.instagram-placeholder code{
  font-family:ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size:.92em;
}
.instagram-button{
  display:flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  min-width:220px;
  height:54px;
  margin:28px auto 0;
  padding:0 28px;
  border-radius:999px;
  background:var(--yuwa-blue);
  color:#fff;
  font-weight:700;
  letter-spacing:.06em;
  box-shadow:0 8px 18px rgba(11,110,168,.22);
}
.instagram-button:hover{filter:brightness(1.05);}
@media (max-width:720px){
  .instagram-panel{padding:28px 20px;}
  .instagram-feed{grid-template-columns:1fr;}
  .instagram-head{flex-direction:column;text-align:center;}
}

/* ===== 2026-07 responsive layout refinements ===== */
:root{--yuwa-blue:#0b6ea8;}

/* Header menu colors unified with the logo blue */
.global-nav a{
  color:#fff;
  background:var(--yuwa-blue);
  border-color:var(--yuwa-blue);
  box-shadow:0 4px 12px rgba(11,110,168,.14);
}
.global-nav a:hover,
.global-nav a:focus-visible{
  color:#fff;
  background: rgb(0,90,160);
  border-color:#095d8f;
}
.menu-toggle{
  background:var(--yuwa-blue);
  border-color:var(--yuwa-blue);
}
.menu-toggle span{background:#fff;}

/* Hero image fills the entire content width */
.hero{
  min-height:680px;
  padding:92px 0 0;
  background:#fff;
}
.hero__photo{
  inset:92px 0 0;
  border-radius:0;
}
.hero::before{
  inset:92px 0 0;
  background:linear-gradient(90deg,rgba(255,255,255,.42),rgba(255,255,255,.13) 53%,rgba(255,255,255,0));
}
.hero__copy{
  min-height:588px;
  width:min(460px,52%);
  padding:42px 50px;
}
.hero h1{
  font-size:clamp(40px,5vw,60px);
  line-height:1.55;
  min-height:350px;
}
.eyebrow{
  font-size:clamp(21px,2.5vw,29px);
  margin-bottom:18px;
}
.lead{margin-top:20px;}

/* Tighter rhythm between major sections */
.section{padding:clamp(48px,6.5vw,72px) 30px;}
.section-title{margin-bottom:32px;}
.product-list{gap:28px;}

/* Product photos always show the whole image without cropping */
.product-card figure,
.product-card--reverse figure{
  height:auto;
  aspect-ratio:13 / 8;
  border-radius:0 72px 0 0;
  background: rgb(0,90,160);
}
.product-card--reverse figure{border-radius:72px 0 0 0;}
.product-card figure picture,
.product-card figure img,
.product-card figure picture img{
  width:100%;
  height:100%;
  object-fit:contain !important;
  object-position:center;
}

@media (max-width:950px){
  .global-nav{background: rgb(0,90,160);}
  .global-nav a{
    color:#fff;
    background:var(--yuwa-blue);
    border-color:var(--yuwa-blue);
  }

  /* Stack hero text below image to prevent overlap on tablets */
  .hero{
    padding:80px 0 0;
    min-height:0;
    display:flex;
    flex-direction:column;
  }
  .hero__photo{
    position:relative;
    inset:auto;
    width:100%;
    height:auto;
    aspect-ratio:3 / 2;
    border-radius:0;
    order:1;
  }
  .hero::before{display:none;}
  .hero__copy{
    position:relative;
    inset:auto;
    order:2;
    width:100%;
    min-height:0;
    padding:32px 28px 36px;
    color:var(--ink);
    background:rgba(255,250,240,.96);
    align-items:center;
    text-align:center;
  }
  .eyebrow{
    color:var(--yuwa-blue);
    font-size:clamp(20px,3.3vw,27px);
    white-space:normal;
    margin:0 0 18px;
    text-shadow:none;
  }
  .hero h1{
    writing-mode:horizontal-tb;
    text-orientation:mixed;
    min-height:0;
    font-size:clamp(34px,6vw,48px);
    line-height:1.35;
    letter-spacing:.07em;
    color:var(--ink);
    text-shadow:none;
    margin:0;
  }
  .hero h1 span{display:block;white-space:normal;}
  .lead{
    max-width:680px;
    color:var(--ink);
    text-shadow:none;
    margin:20px auto 0;
    line-height:1.8;
  }
  .section{padding:54px 24px;}
  .product-card,
  .product-card--reverse{gap:22px;}
}

@media (max-width:640px){
  .hero{padding-top:72px;}
  .hero__photo{aspect-ratio:4 / 3;}
  .hero__copy{padding:26px 18px 30px;}
  .eyebrow{font-size:19px;line-height:1.55;}
  .hero h1{font-size:clamp(29px,8.3vw,38px);line-height:1.38;}
  .lead{font-size:14px;padding:0;}
  .section{padding:44px 18px;}
  .section-title{margin-bottom:26px;}
  .product-list{gap:22px;}
  .product-card,
  .product-card--reverse{padding:22px 16px;}
  .product-card figure,
  .product-card--reverse figure{
    border-radius:0 46px 0 0;
  }
  .product-card--reverse figure{border-radius:46px 0 0 0;}
}

header,.header,.site-header,nav,.navbar{background:rgb(0,90,160)!important;}header a,.header a,nav a,.navbar a,.menu a,.nav-menu a{color:#fff!important;}

.menu-btn,.hamburger,.nav-toggle,nav a,.nav a{background:rgb(0,90,160)!important;color:#fff!important;border-color:rgb(0,90,160)!important;}

/* Contact buttons final color fix */
.contact-actions .fax-button,
.contact-actions button.fax-button,
.contact-actions span.fax-button,
.contact-actions .js-show-fax {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 2px solid #000000 !important;
  box-shadow: none !important;
}
.contact-actions .fax-button:hover,
.contact-actions .fax-button:focus-visible,
.contact-actions .js-show-fax:hover,
.contact-actions .js-show-fax:focus-visible {
  background-color: #f3f3f3 !important;
  color: #000000 !important;
}
.contact-actions .mail-button,
.contact-actions button.mail-button,
.contact-actions a.mail-button,
.contact-actions .js-show-mail {
  background-color: rgb(0, 90, 160) !important;
  color: #ffffff !important;
  border: 2px solid rgb(0, 90, 160) !important;
  box-shadow: 0 8px 18px rgba(0, 90, 160, .22) !important;
}
.contact-actions .mail-button:hover,
.contact-actions .mail-button:focus-visible,
.contact-actions .js-show-mail:hover,
.contact-actions .js-show-mail:focus-visible {
  background-color: rgb(0, 76, 136) !important;
  border-color: rgb(0, 76, 136) !important;
  color: #ffffff !important;
}


/* ===== Final navigation adjustment: larger text, no background fade ===== */
.global-nav a {
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: #ffffff !important;
  background-color: rgb(0, 90, 160) !important;
  border-color: rgb(0, 90, 160) !important;
  transition: none !important;
  position: relative;
}
.global-nav a:hover,
.global-nav a:focus-visible {
  color: #c9d4df !important;
  background-color: rgb(0, 90, 160) !important;
  border-color: rgb(0, 90, 160) !important;
  filter: none !important;
  transform: none !important;
}
.global-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: none !important;
}
.global-nav a:hover::after,
.global-nav a:focus-visible::after {
  transform: scaleX(1);
}

@media (max-width: 950px) {
  .global-nav a {
    font-size: 17px !important;
  }
  .global-nav a::after {
    left: 20px;
    right: 20px;
    bottom: 8px;
  }
}
