

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Playball&display=swap');

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

:root {
  --color-bg-light: #fcfbfa;
  --color-bg-medium: #f4efe6;
  --color-bg-dark: #eae3d5;
  --color-bg-wood: #2a241e;
  
  --color-bg-black: #2a241e;
  
  --color-text-main: #3c3027;
  --color-text-muted: #786b61;
  --color-text-light: #a6988f;
  --color-text-white: #ffffff;
  --color-accent-red: #e03e2d;
  --color-accent-gold: #c5a880;

  --font-sans: "YakuHanJP_Noto", "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  --font-en-script: "YakuHanJP_Noto", "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text-main);
  background-color: var(--color-bg-light);
  font-size: 14px;
  
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
}

.site-body-text {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: justify;
}

.site-body-text.text-muted {
  color: var(--color-text-muted);
}

.site-body-text.text-light {
  color: rgba(255, 255, 255, 0.8);
}

.section-bg-light-texture {
  background-color: var(--color-bg-medium);
  background-image: url('img/section-bg02.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.section-padding {
  padding: 90px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.image-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  
}

.section-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.btn-red {
  display: inline-block;
  background-color: var(--color-accent-red);
  color: var(--color-text-white);
  padding: 12px 40px;
  border-radius: 30px;
  
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  border: 1px solid var(--color-accent-red);
  cursor: pointer;
}

.btn-red:hover {
  
  background-color: var(--color-accent-red);
  color: var(--color-text-white);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff;
  padding: 18px 60px;
  border-bottom: 1px solid rgba(60, 48, 39, 0.08);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.header-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  max-height: 38px;
  
  width: auto;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-main);
  padding: 5px 0;
}

.nav-links a:hover {
  
  opacity: 1;
}

.header-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
}

.header-insta-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  width: 45px;
  height: 45px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-text-main);
  position: absolute;
  left: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  top: 16px;
}

.menu-toggle span:nth-child(2) {
  top: 22px;
}

.menu-toggle span:nth-child(3) {
  top: 28px;
}

@media (max-width: 768px) {
  header {
    padding: 12px 20px;
  }

  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-nav.mobile-open {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    
    height: 100vh;
    background-color: var(--color-bg-wood);
    
    padding: 0;
    gap: 40px;
    z-index: 999;
  }

  .header-nav.mobile-open .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .header-nav.mobile-open .nav-links a {
    font-size: 20px;
    
    color: var(--color-text-white);
    letter-spacing: 0.1em;
  }

  .header-nav.mobile-open .header-insta-icon {
    filter: brightness(0) invert(1);
    
    width: 28px;
    height: 28px;
  }

  .menu-toggle {
    z-index: 1001;
    
  }

  .menu-toggle.open span {
    background-color: var(--color-text-white);
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/hero.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.hero-logo-img {
  width: 210px;
  
  max-width: 80%;
  height: auto;
  margin-bottom: 40px;
  display: block;
}

.hero-btn-choose {
  display: inline-block;
  background-color: var(--color-accent-red);
  color: var(--color-text-white);
  padding: 14px 45px;
  border-radius: 30px;
  
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  border: 1px solid var(--color-accent-red);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-instagram-link {
  position: absolute;
  bottom: 45px;
  right: 60px;
  z-index: 10;
  color: var(--color-text-white);
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.hero-instagram-link:hover {
  opacity: 1;
}

.hero-insta-icon {
  width: 32px;
  
  height: 32px;
  object-fit: contain;
  display: block;
}

.insta-footer-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.hero-instagram-link svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .hero-logo-img {
    max-width: 180px;
  }

  .hero-subtitle-top {
    font-size: 11px;
  }

  .hero-subtitle-bottom {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .hero-instagram-link {
    display: none;
  }
}

.section-heading-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.section-heading-wrap .heading-img {
  height: 44px;
  width: auto;
  display: block;
}

.section-label {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.25em;
  
}

.text-spacing-about {
  letter-spacing: 0.25em;
}

.text-spacing-muku {
  letter-spacing: 0.4em;
}

.text-spacing-takeout {
  letter-spacing: 0.3em;
  line-height: 1.5;
}

.text-spacing-map {
  letter-spacing: 0.25em;
}

.section-sub-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-top: 10px;
  margin-bottom: 35px;
  letter-spacing: 0.05em;
  display: block;
}

.title-ornament-img {
  margin-bottom: 15px;
}

.heading-img {
  height: 52px;
  width: auto;
  display: inline-block;
  
}

.title-ornament-both {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.heading-img-l,
.heading-img-r {
  height: 22px;
  width: auto;
  display: block;
}

.promise-header-title {
  font-size: 32px;
  
  letter-spacing: 0.25em;
  font-weight: 700;
}

.about-section {
  background-color: #ffffff;
  
  padding: 90px 0 90px 0;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.about-section .container {
  max-width: 100%;
  padding-right: 0;
  padding-left: 40px;
}

@media (max-width: 768px) {
  .about-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .about-section .container {
    padding-left: calc((100vw - 1120px) / 2);
  }
}

@media (min-width: 1601px) {
  .about-section .container {
    padding-left: 240px;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: stretch;
}

.about-text {
  padding-right: 40px;
  align-self: center;
}

.about-image {
  width: 100%;
  height: 100%;
}

.about-image .image-wrap {
  width: 100%;
  height: 100%;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-section {
  padding: 0 0 100px 0;
  background-color: var(--color-bg-light);
  overflow: hidden;
}

.gallery-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.gallery-carousel-track {
  display: flex;
  width: max-content;
  animation: infinite-scroll 35s linear infinite;
  
}

.gallery-carousel-group {
  display: flex;
  gap: 20px;
  padding: 0 10px;
}

.gallery-item {
  width: 280px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0;
}

.gallery-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

@keyframes infinite-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
    
  }
}

@media (max-width: 768px) {
  .gallery-item {
    width: 220px;
  }

  .gallery-carousel-group {
    gap: 15px;
    padding: 0 7.5px;
  }

  .gallery-carousel-track {
    animation: infinite-scroll 25s linear infinite;
  }

  .gallery-section {
    padding: 0 0 60px 0;
  }
}

.promises-section {
  text-align: center;
}

.promises-header {
  margin-bottom: 60px;
}

.promises-header .section-sub-en {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.promises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.promise-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.promise-image-wrap {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  
  overflow: hidden;
  margin-bottom: 25px;
  border: 1px solid rgba(60, 48, 39, 0.1);
  background-color: #eae5dc;
}

.promise-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.promise-title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 8px;
}

@media (max-width: 768px) {
  .promises-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .promise-image-wrap {
    width: 200px;
    height: 200px;
  }
}

.dark-background-group {
  position: relative;
  background-image: url('img/section-bg01.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.recs-section {
  background-color: transparent;
  color: var(--color-text-white);
}

.recs-header {
  text-align: center;
  margin-bottom: 70px;
}

.recs-header .section-label {
  font-size: 32px;
  letter-spacing: 0.4em;
  margin-bottom: 5px;
  font-weight: 700;
}

.recs-header .section-sub-en {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.35em;
  color: var(--color-text-white);
  opacity: 0.8;
  text-transform: uppercase;
}

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

.rec-card {
  background-color: var(--color-bg-wood);
  
  border: none;
  border-radius: 0;
  
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rec-img-wrap {
  width: 100%;
  overflow: hidden;
}

.rec-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.rec-card-body {
  padding: 25px 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--color-bg-wood);
  
  color: var(--color-text-white);
}

.rec-card-title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.rec-card-sub-en {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-text-white);
  opacity: 0.8;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.rec-card-desc {
  
}

@media (max-width: 1024px) {
  .recs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 580px) {
  .recs-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .rec-card-body {
    padding: 20px 15px;
  }
}

.contest-section {
  background-color: transparent;
  color: var(--color-text-white);
  padding-top: 20px;
  padding-bottom: 100px;
}

.contest-header {
  text-align: center;
  margin-bottom: 60px;
}

.contest-header .section-label {
  font-size: 28px;
  letter-spacing: 0.25em;
  margin-bottom: 5px;
  font-weight: 700;
}

.contest-header .section-sub-en {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.35em;
  color: var(--color-text-white);
  opacity: 0.8;
  text-transform: uppercase;
}

.contest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.contest-card {
  background-color: var(--color-bg-black);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  border-radius: 0;
  
  display: flex;
  flex-direction: column;
}

.contest-img-wrap {
  width: 100%;
  overflow: hidden;
}

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

.contest-card-body {
  padding: 35px 30px;
  text-align: center;
}

.contest-award {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--color-text-white);
  opacity: 0.9;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  font-weight: 700;
}

.contest-title-jp {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

.contest-title-en {
  font-family: var(--font-sans);
  font-size: 15px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.6);
}

.contest-desc {
  
}

@media (max-width: 900px) {
  .contest-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 580px) {
  .contest-card-body {
    padding: 25px 20px;
  }

  .contest-title-jp {
    font-size: 16px;
  }
}

.muku-section {
  background-color: #ffffff;
  
  padding: 90px 0 90px 0;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.muku-section .container {
  max-width: 100%;
  padding-right: 0;
  padding-left: 40px;
}

@media (max-width: 768px) {
  .muku-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .muku-section .container {
    padding-left: calc((100vw - 1120px) / 2);
  }
}

@media (min-width: 1601px) {
  .muku-section .container {
    padding-left: 240px;
  }
}

.muku-heading-center {
  justify-content: flex-start;
  
}

.muku-heading-sub {
  text-align: left;
  
  margin-bottom: 30px;
}

.muku-brand-wrap {
  margin: 40px auto;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.muku-logo-img {
  max-width: 160px;
  height: auto;
  display: block;
  margin: 0 auto 10px auto;
}

.muku-sub-en {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.muku-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: stretch;
}

.muku-text {
  padding-right: 40px;
  align-self: center;
  text-align: left;
  
}

.muku-image {
  width: 100%;
  height: 100%;
}

.muku-image .image-wrap {
  width: 100%;
  height: 100%;
}

.muku-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .muku-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .muku-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .muku-text {
    padding-right: 0;
  }
}

.muffin-month-section {
  
}

.muffin-month-section .recs-header .section-sub-en {
  color: var(--color-text-muted);
}

.muffin-month-section .rec-card {
  background-color: var(--color-bg-wood);
  
  border: none;
  color: var(--color-text-white);
  border-radius: 0;
}

.muffin-month-section .rec-card .rec-card-body {
  background-color: var(--color-bg-wood);
  color: var(--color-text-white);
}

.muffin-month-section .rec-card .rec-card-sub-en {
  color: var(--color-text-white);
  opacity: 0.8;
  font-weight: 700;
}

.muffin-month-section .rec-card .rec-card-desc {
  color: rgba(255, 255, 255, 0.7);
}

.takeout-section {
  background-color: #ffffff;
  
  padding: 90px 0 90px 0;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.takeout-section .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 40px;
}

@media (max-width: 768px) {
  .takeout-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .takeout-section .container {
    padding-right: calc((100vw - 1120px) / 2);
  }
}

@media (min-width: 1601px) {
  .takeout-section .container {
    padding-right: 240px;
  }
}

.takeout-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: stretch;
}

.takeout-image {
  width: 100%;
  height: 100%;
}

.takeout-image .image-wrap {
  width: 100%;
  height: 100%;
}

.takeout-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.takeout-text {
  padding-left: 40px;
  align-self: center;
  text-align: left;
  
}

.takeout-text .section-label {
  text-align: right;
  
  width: 100%;
}

.takeout-text .takeout-sub-en {
  text-align: right;
  
  width: 100%;
  margin-bottom: 40px;
}

.takeout-text .about-content {
  display: block;
  text-align: left;
  
}

@media (max-width: 1024px) {
  .takeout-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .takeout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .takeout-grid .image-wrap {
    order: 2;
  }

  .takeout-text {
    order: 1;
    padding-left: 0;
    text-align: center;
  }

  .takeout-text .section-label,
  .takeout-text .takeout-sub-en,
  .takeout-text .about-content {
    text-align: center;
    
  }
}

.insta-section {
  background-color: var(--color-bg-black);
  color: var(--color-text-white);
}

.insta-header {
  text-align: center;
  margin-bottom: 50px;
}

.insta-header .section-label {
  font-size: 32px;
  letter-spacing: 0.4em;
  font-weight: 700;
}

.insta-feed-container {
  position: relative;
  width: 600px;
  overflow: hidden;
  margin: 0 auto 40px;
  border-radius: 0;
  
}

.insta-feed-link {
  display: block;
  position: relative;
}

.insta-feed-img {
  width: 100％;
  height: auto;
  display: block;
  border-radius: 0;
}

.insta-hover-overlay {
  display: none;
  
}

.insta-feed-link:hover .insta-hover-overlay {
  display: none;
}

.insta-hover-overlay svg {
  width: 32px;
  height: 32px;
  fill: var(--color-text-white);
}

.insta-footer {
  display: flex;
  justify-content: flex-end;
}

.insta-account-link {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.insta-account-link:hover {
  
  color: rgba(255, 255, 255, 0.6);
}

.insta-account-link svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .insta-header .section-label {
    font-size: 26px;
  }
}

.map-section {
  text-align: center;
}

.map-container {
  width: 100%;
  height: 480px;
  border-radius: 0;
  
  overflow: hidden;
  position: relative;
  background-color: #eae3d5;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e3dbcc;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(15%) contrast(90%) saturate(90%) sepia(8%);
}

.map-card-info {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--color-bg-light);
  padding: 25px 30px;
  border-radius: 0;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  max-width: 320px;
  z-index: 2;
}

.map-card-title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

.map-card-text {
  font-size: 12px;
  line-height: 1.8;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .map-container {
    height: 350px;
  }

  .map-card-info {
    position: relative;
    bottom: 0;
    left: 0;
    margin: 20px auto 0 auto;
    max-width: 100%;
  }
}

footer {
  background-color: var(--color-bg-black);
  color: var(--color-text-white);
  padding: 80px 0 60px 0;
  position: relative;
}

.footer-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/footer-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  
  z-index: 1;
  pointer-events: none;
}

.footer-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}

.footer-info {
  max-width: 450px;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-logo {
  display: block;
}

.footer-logo-img {
  height: 54px;
  
  width: auto;
  display: block;
}

.footer-brand-title {
  font-family: var(--font-sans);
  font-size: 14px;
  
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: 0;
  letter-spacing: 0.05em;
}

.footer-details {
  font-size: 14px;
  
  line-height: 1.8;
  
  letter-spacing: 0.05em;
  
  color: rgba(255, 255, 255, 0.7);
}

.footer-details p {
  margin-bottom: 8px;
  
}

.footer-details p:last-child {
  margin-bottom: 0;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  min-width: 150px;
}

.footer-nav a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.footer-nav a:hover {
  
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 60px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 50px;
  }

  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    margin-top: 40px;
  }

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

  .about-text {
    padding-right: 0;
    text-align: center;
  }

  .about-image {
    width: 100%;
    height: auto;
  }

  .about-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
  }

  .section-label {
    font-size: 24px !important;
    letter-spacing: 0.15em !important;
    line-height: 1.3;
  }

  .promise-header-title {
    font-size: 24px !important;
  }

  .section-sub-title {
    font-size: 15px;
    margin-bottom: 25px;
  }
}