* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.hamburger-btn {
  display: none;
}
body {
  font-family: 'Montserrat', 'Noto Sans JP', "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  font-size: 15px;
}
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  list-style: none;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 80px;
}
.section-title {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 30px;
  font-family: 'Montserrat', sans-serif;
}
.site-header {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  flex-direction: column;
}
.logo-main {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: 'Noto Sans JP', sans-serif;
}
.logo-sub {
  font-size: 12px;
  color: var(--muted);
  font-family: 'Montserrat', sans-serif;
}
.hero-section {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 60px;
}
.slides {
  position: relative;
  width: 100%;
  height: auto;
}
.slide {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.0s ease-in-out;
}
.slide.active {
  opacity: 1;
  position: relative;
}
.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}
.dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.dot.active {
  background-color: var(--primary);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-nav ul {
  display: flex;
  gap: 20px;
}
.site-nav a {
  color: var(--primary);
  font-size: 14px;
}
.social-icons {
  display: flex;
  gap: 15px;
}
.social-icons a {
  color: var(--primary);
  font-size: 16px;
}
.hero-section {
  width: 100%;
  margin-bottom: 60px;
}
.hero-section img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.news-list { list-style: none; padding-left: 0; margin: 20px; }
.news-list li { margin: 0.25rem 0; }
.news-list time { font-variant-numeric: tabular-nums; margin-right: 0.5rem; color: #555; }
.news-list a { text-decoration: underline; }
#news-section { margin-top: 6px; margin-bottom: 80px;}
.news-notice {
  line-height: 1.4;  
}
.btn-wrapper {
  text-align: left;
}
.btn-primary {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 20px;
  border: 3px solid var(--primary);
  color: var(--primary);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  background: #fff;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.btn-primary:hover {
  background: var(--primary);
  color: #fff;
}
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.brand-item {
  text-align: center;
}
.brand-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}
.brand-item h3 {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 700;
}
.brand-item p {
  font-size: 13px;
  color: #555;
}
.brand-grid {
  display: grid;
  grid-template-columns: 1fr;              
  gap: 20px;                               
}
@media (min-width: 600px) {
  .brand-grid { grid-template-columns: 1fr 1fr; }  
}
@media (min-width: 1024px) {
  .brand-grid { grid-template-columns: 1fr 1fr 1fr; }  
}
.brand-item .brand-card {
  display: block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;                         
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.brand-item .brand-media {
  position: relative;
  aspect-ratio: 16 / 9;                     
  overflow: hidden;
  background: #f7f7f7;
}
.brand-item .brand-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;                         
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.brand-item .brand-title {
  font-size: 16px;
  font-weight: 700;
  margin: 12px 14px 4px;
  color: var(--text);
}
.brand-item .brand-desc {
  font-size: 13px;
  color: #555;
  margin: 0 14px 14px;
  line-height: 1.6;
}
@media (hover: hover) {
  .brand-item .brand-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.10);
  }
  .brand-item .brand-card:hover .brand-media img {
    opacity: 0.95;
    transform: scale(1.02);
  }
}
.brand-item .brand-card:focus-visible {
  outline: 2px solid rgba(204, 0, 0, 0.35);   
  outline-offset: 4px;
}
.brand-item,
.brand-item .brand-card,
.brand-item .brand-title,
.brand-item .brand-desc { overflow-wrap: anywhere; }
@media (max-width: 768px) {
  .container { padding-left: 16px; padding-right: 16px; }
}
.about-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.about-image {
  flex: 1;
}
.about-text {
  flex: 1;
  background-color: transparent;
  padding-top: 20px;
}
.about-text h3 {
  font-size: 16px;
  margin-bottom: 20px;
  font-family: monospace;
}
.sites-list li {
  margin-bottom: 10px;
}
.sites-list a {
  color: var(--primary);
}
.social-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}
.btn-social {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fff;
}
.btn-x {
  background-color: #000;
}
.btn-insta {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.btn-fb {
  background-color: #1877f2;
}
.btn-note {
  background-color: #41c9b4;
  color: #fff;
}
.topics-list li {
  margin-bottom: 20px;
}
.topics-list a {
  display: block;
  color: var(--primary);
  margin-bottom: 5px;
}
.topics-list .date {
  font-size: 12px;
  color: var(--primary);
}
.history-block {
  margin-bottom: 30px;
}
.history-block h3 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}
.text-link {
  color: var(--primary);
  word-break: break-all;
}
.history-row {
  display: flex;
  margin-bottom: 5px;
  font-size: 14px;
}
.history-row dt {
  min-width: 100px;
}
.more-link {
  display: inline-block;
  color: var(--primary);
  margin-top: 10px;
}
.contact-info {
  margin-bottom: 30px;
}
.contact-email-box {
  margin: 30px 0;
}
.contact-email-box a {
  display: inline-block;
  border: 1px solid var(--border);
  padding: 15px 40px;
  font-size: 24px;
  background: #fff;
  color: #000;
}
.contact-note p {
  font-size: 12px;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #555;
}
.site-footer {
  background-color: var(--bg);
  padding: 40px 20px;
  text-align: left;
  border-top: 1px solid var(--border);
  margin-top: 60px;
  font-size: 12px;
}
.footer-links,
.footer-legal {
  margin-bottom: 20px;
}
.footer-links a,
.footer-legal a {
  margin-right: 15px;
  color: var(--primary);
}
.footer-legal a {
  color: var(--muted);
}
.copyright {
  text-align: center;
  margin-top: 40px;
  color: var(--muted);
}
.news-accordion {
  margin-bottom: 20px;
}
.accordion-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: bold;
  color: var(--primary);
  padding: 0;
  text-align: left;
  outline: none;
}
.accordion-trigger .arrow {
  display: inline-block;
  transition: transform 0.3s;
  font-size: 10px;
  margin-right: 5px;
}
.accordion-trigger.is-active .arrow {
  transform: rotate(90deg);
}
.accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
  background-color: #fff;
  border-left: 3px solid var(--primary);
}
.accordion-inner {
  padding: 15px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text);
}
@media (max-width: 850px) {
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }
  .site-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    z-index: 150;
  }
  .site-nav.is-active {
    display: flex;
    right: 0;
  }
  .hamburger-btn {
    display: block;
    position: relative;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
  }
  .hamburger-btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text);
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  }
  .hamburger-btn span:nth-of-type(1) {
    top: 0;
  }
  .hamburger-btn span:nth-of-type(2) {
    top: 11px;
  }
  .hamburger-btn span:nth-of-type(3) {
    bottom: 0;
  }
  .hamburger-btn.is-active span:nth-of-type(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .hamburger-btn.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  .hamburger-btn.is-active span:nth-of-type(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
}
.product-list-section {
  padding-top: 100px;
}
.section-description {
  font-size: 16px;
  margin-bottom: 50px;
  text-align: center;
  color: var(--muted);
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
.product-item {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}
.product-item:hover {
  transform: translateY(-5px);
}
.product-image {
  width: 100%;
}
.product-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.product-content {
  padding: 25px;
}
.product-category {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
}
.product-name {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 15px;
}
.product-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  padding: 0;
  list-style: none;
}
.product-tags li {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 4px;
}
.product-description {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .product-item {
    flex-direction: row;
    height: auto;
  }
  .product-image {
    width: 40%;
    min-width: 150px;
  }
  .product-image img {
    height: 100%;
    border-radius: 0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }
  .product-content {
    width: 60%;
  }
}
#page-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
#page-top:hover {
  background-color: darkred;
}
#page-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.shoplist-section {
  padding-top: 40px;
}
.shoplist-trigger {
  display: block;
  width: 100%;
  padding: 15px 20px;
  background-color: #f9f9f9;
  border: 0px solid var(--border);
  border-radius: 8px;
  margin-bottom: 10px;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s;
}
.shoplist-trigger::after {
  content: "\f13a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s;
  font-size: 24px;
  color: brown;
}
.shoplist-trigger.is-active::after {
  transform: translateY(-50%) rotate(180deg);
}
.shoplist-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 10px;
}
.shoplist-content.is-active {
}
.shoplist-inner {
  padding: 15px 20px;
}
.shop-list-group {
  list-style: none;
  padding: 0;
  margin: 0;
}
.shop-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
  font-size: 14px;
}
.shop-item:last-child {
  border-bottom: none;
}
.shop-name {
  font-weight: 700;
  width: 100%;
  margin-bottom: 5px;
  color: var(--primary);
}
.shop-address {
  flex-grow: 1;
  margin-right: 15px;
}
.tag-note-block {
  font-size: 10px;
  color: #777;
  margin-top: 2px;
  line-height: 1.2;
}
.product-icons {
  display: flex;
  gap: 8px;
  margin-top: 5px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.product-tag {
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 500;
  white-space: nowrap;
}
.tag-tenugui {
  background-color: #ffe0e0;
  color: var(--primary);
}
.tag-bousai {
  background-color: lightblue;
  color: darkblue;
}
.tag-sumizome {
  background-color: #e0e0e0;
  color: var(--text);
}
.tag-shirt {
  background-color: palegoldenrod;
  color: saddlebrown;
}
@media (min-width: 768px) {
  .shop-item {
    align-items: flex-start;
  }
  .shop-address {
    width: auto;
    flex-grow: 1;
    margin-right: 20px;
  }
  .product-icons {
    width: 30%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
  }
  .product-text {
    flex-basis: 100%;
    width: 100%;
    margin-top: 5px;
  }
  .product-text p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.3;
    margin: 0;
    text-align: right;
  }
}
.product-tag {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 500;
  white-space: nowrap;
  display: inline-block;
}
.webshop-promo {
  background-color: #fff9f9;
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 30px 20px;
  margin-bottom: 40px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(204, 0, 0, 0.05);
}
.promo-header {
  margin-bottom: 20px;
}
.promo-label {
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.promo-lead {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.promo-benefits {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
.benefit-item {
  background: #fff;
  border: 1px solid #ffcccc;
  border-radius: 6px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  max-width: 320px;
  text-align: left;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}
.benefit-item i {
  font-size: 24px;
  color: var(--primary);
  width: 30px;
  text-align: center;
}
.benefit-item span {
  font-size: 14px;
  line-height: 1.4;
  color: var(--text);
}
.benefit-item strong {
  font-size: 18px;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
}
.promo-btn {
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  padding: 12px 40px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.promo-btn:hover {
  background-color: #aa0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.promo-btn i {
  margin-left: 8px;
  font-size: 12px;
}
@media (min-width: 768px) {
  .promo-benefits {
    flex-wrap: nowrap;
    gap: 30px;
  }
  .benefit-item {
    width: auto;
    flex: 1;
    justify-content: center;
  }
}
.promo-notes {
  font-size: 11px;
  color: #888;
  margin-bottom: 15px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .promo-notes {
    font-size: 12px;
  }
  .contact-email-box {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    min-width: 280px;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .contact-btn:hover {
    background-color: beige;
    transform: translateY(-2px);
    opacity: 1;
  }
  .contact-btn i {
    margin-left: 10px;
    font-size: 14px;
  }
  @media (min-width: 768px) {
    .contact-btn {
      min-width: 320px;
      padding: 18px 50px;
    }
  }
  .copyright-notice {
    text-align: left;
    padding: 20px 0;
    margin-top: -30px;
  }
  .copyright-notice hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 0 auto 15px;
    width: 80%;
    max-width: 600px;
  }
  .copyright-notice p {
    font-size: 11px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 5px;
  }
  .sp-only {
    display: none;
  }
@media (max-width: 768px) {
    .sp-only {
        display: inline; 
    }
    .product-text p {
        font-size: 12px;
    }
}
  }
:root{
  --primary:#cc0000;
  --text:#333;
  --muted:#666;
  --bg:#f2f2f2;
  --border:#ccc;
}
.site-nav a,
.news-link,
.shop-name,
.footer-links a,
.text-link { color: var(--primary, #cc0000); }
.btn-primary { border-color: var(--primary, #cc0000); color: var(--primary, #cc0000); }
.btn-primary:hover { background: var(--primary, #cc0000); color:#fff; }
.promo-label { background-color: var(--primary, #cc0000); color:#fff; }
.promo-btn { background-color: var(--primary, #cc0000); color:#fff; }
.promo-btn:hover { background-color:#aa0000; }
#page-top { background-color: var(--primary, #cc0000); }
.dot
.section.shoplist-section > .banner { padding-bottom: 16px; }
@media (min-width: 768px) {
  .section.shoplist-section > .banner { padding-bottom: 24px; }
}
@media (min-width: 1024px) {
  .section.shoplist-section > .banner { padding-bottom: 32px; }
}
.not-found-main {
    text-align: center;
    padding: 100px 20px;
    background-color: var(--color-white); 
    min-height: calc(100vh - 70px - 250px); 
    display: flex;
    align-items: center; 
    justify-content: center;
}
.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: lightpink;
    margin-bottom: 0.5rem;
    line-height: 1;
}
.error-message {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
}
.error-detail {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}
@media (max-width: 768px) {
    .not-found-main {
        padding: 80px 15px;
        min-height: calc(100vh - 70px - 300px); 
    }
    .error-code {
        font-size: 6rem;
    }
    .error-message {
        font-size: 1.4rem;
    }
    .error-detail {
        font-size: 0.9rem;
    }
}
@media (max-width: 768px) {
    .product-card h4 span {
        white-space: normal;
    }
}
.site-header .header-inner {
  max-width: none !important; 
  width: 100% !important;     
  margin: 0 !important;       
   padding: 0 20px;            
.brand-grid .brand-item a {
  display: inline-block;
  border: none !important;        
  padding: 0 !important;           
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  border-radius: 8px;              
  overflow: hidden;                }
  transition: box-shadow 0.25s ease;
}
.brand-grid .brand-item a img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.brand-grid .brand-item a:hover img {
  opacity: 0.92;
  transform: scale(1.02);
}
.brand-grid .brand-item a:hover {
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}
.brand-grid .brand-item a:focus-visible {
  outline: 2px solid rgba(204, 0, 0, 0.35); 
  outline-offset: 4px;
  border: none !important;
}
.brand-section .btn-primary {
  border: none !important;
  padding: 0 !important;
  background: transparent !important;
  color: inherit !important;
  width: auto !important;
  max-width: none !important;
  display: inline-block !important;
}
@media (hover: none) {
  .brand-grid .brand-item a:hover img {
    opacity: 1;
    transform: scale(1.01); 
  }
}
@media (max-width: 850px) {
  .site-nav.is-active {
    display: flex;              
    flex-direction: column;     
    justify-content: flex-start;
    align-items: stretch;       
    padding: 24px 24px;         
    gap: 16px;                  
    background-color: rgba(255, 255, 255, 0.98); 
  }
  .site-nav ul {
    display: flex;
    flex-direction: column;
    gap: 16px;                  
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .site-nav ul li {
    list-style: none;
    width: 100%;
  }
  .site-nav a {
    display: block;
    font-size: 20px;            
    line-height: 1.8;           
    padding: 14px 10px;         
    text-align: left;           
    color: var(--text);         
    text-decoration: none;
  }
  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(0,0,0,0.03);
    outline: none;
  }
  .site-nav a[aria-current="page"] {
    color: var(--primary);
    font-weight: 700;
  }
  body.no-scroll {
    height: 100vh;
    overflow: hidden;
  }
}
.section.about-section .about-content {
  display: flex;
  gap: 40px;                  
  align-items: flex-start;
}
.section.about-section .about-image {
  flex: 1;
  min-width: 280px;           
}
.section.about-section .about-media {
  position: relative;
  aspect-ratio: 4 / 3;        
  overflow: hidden;
  border-radius: 8px;
  background: #f7f7f7;
}
.section.about-section .about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section.about-section .about-text {
  flex: 1;
  padding-top: 12px;
  background: transparent;
}
.section.about-section .about-text h3 {
  font-size: 18px;
  font-weight: 700;           
  margin-bottom: 16px;
  color: var(--text);
}
.section.about-section .about-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .section.about-section .about-content {
    flex-direction: column;   
    gap: 20px;
  }
  .section.about-section .about-image,
  .section.about-section .about-text {
    flex: auto;
    width: 100%;
  }
  .section.about-section .about-text h3 { font-size: 17px; }
  .section.about-section .about-text p { font-size: 14px; line-height: 1.7; }
}
.section.about-section .about-text,
.section.about-section .about-text p {
  overflow-wrap: anywhere;
}
.section.about-section img,
.section.about-section iframe,
.section.about-section table {
  max-width: 100%;
}
.social-icons,
.social-buttons {
  display: flex;
  flex-wrap: wrap;                 
  justify-content: center;         
  gap: 12px;                       
  margin: 10px 0;
  padding: 0;
  max-width: 100%;                 
  box-sizing: border-box;
}
.social-icons a,
.social-buttons a,
.btn-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;                 
  min-height: 40px;
  padding: 8px;                    
  border-radius: 20px;             
  text-decoration: none;
  box-sizing: border-box;
  line-height: 1;
}
.social-icons a i,
.social-buttons a i,
.btn-social i {
  font-size: clamp(16px, 5vw, 22px); 
  width: 1em;                         
  text-align: center;
}
@media (max-width: 600px) {
  .social-icons,
  .social-buttons {
    gap: 10px;
    justify-content: center;
  }
  .social-icons a,
  .social-buttons a,
  .btn-social {
    min-width: 36px;
    min-height: 36px;
    padding: 6px;
  }
  .social-icons a i,
  .social-buttons a i,
  .btn-social i {
    font-size: clamp(15px, 6vw, 20px);
  }
}
#our-sites,
.section .social-icons,
.section .social-buttons {
  padding-left: 16px;
  padding-right: 16px;
}
#news-section .news-list li {
  margin: 10px 0;          
  padding: 4px 0;          
  display: flex;           
  gap: 8px;                
}
#news-section .news-list time {
  margin-right: 8px;       
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;/
  gap: 20px;
}

@media (max-width: 599.98px) {
  .brand-grid { grid-template-columns: 1fr; }
}

@media (min-width: 1024px) {
  .brand-grid { grid-template-columns: 1fr 1fr; }
}
``
