/* ================================================
   Emina Natural Sweets - style.css
   ================================================ */

/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ===== CSS Custom Properties ===== */
:root {
  /* Colors */
  --cream:        #fdf8f0;
  --cream-mid:    #f7f0e3;
  --cream-dark:   #e8ddd0;
  --green:        #4a7c59;
  --green-light:  #6a9e77;
  --green-pale:   #eaf3ed;
  --red:          #c05c6e;
  --red-light:    #d4788a;
  --red-pale:     #faeaed;
  --brown:        #4a3728;
  --brown-mid:    #6b5444;
  --brown-light:  #9a8878;
  --white:        #ffffff;

  /* Shadows */
  --shadow-xs:    0 2px 8px  rgba(74, 55, 40, 0.06);
  --shadow-sm:    0 4px 16px rgba(74, 55, 40, 0.08);
  --shadow-md:    0 8px 28px rgba(74, 55, 40, 0.12);
  --shadow-lg:    0 16px 48px rgba(74, 55, 40, 0.15);

  /* Border Radius */
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  40px;
  --r-full: 9999px;

  /* Transition */
  --t: 0.3s ease;
  --t-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Serif JP', serif;
  background-color: var(--cream);
  color: var(--brown);
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ===== Utilities ===== */
.container {
  max-width: 1080px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.85rem;
  color: var(--brown-light);
  letter-spacing: 0.15em;
}

/* Divider decoration */
.section-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 0.8rem auto 0;
}

.section-deco::before,
.section-deco::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--cream-dark);
}

.section-deco-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-light);
}

/* Scroll fade-in */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: var(--r-full);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  font-family: 'Noto Serif JP', serif;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(74, 124, 89, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(74, 124, 89, 0.4);
}

.btn-red {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(192, 92, 110, 0.3);
}

.btn-red:hover {
  box-shadow: 0 8px 24px rgba(192, 92, 110, 0.4);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--green);
  color: var(--green);
}

.btn-outline:hover {
  background: var(--green-pale);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(253, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t);
}

.header.scrolled {
  border-bottom-color: var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition: opacity var(--t), transform var(--t);
}

.header.scrolled .header-logo {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-logo-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--cream-dark);
}

.header-logo-text {
  line-height: 1.3;
}

.header-logo-en {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--green);
  display: block;
}

.header-logo-ja {
  font-size: 0.68rem;
  color: var(--red);
  letter-spacing: 0.04em;
  display: block;
}

/* Desktop Nav */
.nav-list {
  display: flex;
  gap: 1.8rem;
}

.nav-list a {
  font-size: 0.82rem;
  color: var(--brown-mid);
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--t);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--green);
  border-radius: 2px;
  transition: width var(--t);
}

.nav-list a:hover {
  color: var(--green);
}

.nav-list a:hover::after {
  width: 100%;
}

/* Hamburger Button */
.hamburger {
  display: none;
  position: relative;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1010;
  flex-shrink: 0;
}

.hamburger span {
  position: absolute;
  left: 6px;
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t), top var(--t);
}

.hamburger span:nth-child(1) {
  top: 11px;
}

.hamburger span:nth-child(2) {
  top: 17px;
}

.hamburger span:nth-child(3) {
  top: 23px;
}

.hamburger.active span:nth-child(1) {
  top: 17px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 17px;
  transform: rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 950;
  background: radial-gradient(circle at 80% 20%, rgba(192, 92, 110, 0.08) 0%, var(--cream) 70%), var(--cream);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-slow);
  overflow-y: auto;
  padding: 2.2rem 1.5rem 1.5rem;
}

.mobile-nav.active {
  display: flex;
  opacity: 1;
}

/* Close button on mobile menu */
.mobile-nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--brown-mid);
  transition: transform var(--t), color var(--t);
  z-index: 1000;
  padding: 8px;
}

.mobile-nav-close:hover {
  transform: scale(1.08);
  color: var(--green);
}

.mobile-nav-close .close-icon {
  font-size: 1.8rem;
  line-height: 1;
  font-family: Arial, sans-serif;
  font-weight: 300;
}

.mobile-nav-close .close-text {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  margin-top: -2px;
}

.mobile-nav-content {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin: auto 0;
}

.mobile-nav-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--white);
}

.mobile-nav-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  text-align: center;
}

.mobile-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  transition: transform var(--t);
}

.mobile-nav-link:hover {
  transform: translateY(-2px);
}

.mobile-nav-link .en {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.mobile-nav-link .ja {
  font-size: 0.7rem;
  color: var(--brown-light);
  letter-spacing: 0.08em;
}

.mobile-nav-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  width: 100%;
  border-top: 1px solid var(--cream-dark);
  padding-top: 1rem;
}

.mobile-nav-tel {
  font-size: 1rem;
  color: var(--green);
  font-weight: 600;
}

.mobile-nav-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--red);
  font-weight: 600;
  background: var(--red-pale);
  padding: 0.35rem 1.1rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(192, 92, 110, 0.15);
}

/* ===== HERO ===== */
.hero {
  padding: 100px 0 3.5rem;
  background: var(--cream);
  text-align: center;
}

/* Slideshow Area (PC & Mobile Aspect Ratio Fixed) */
.hero-slideshow-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

@media (max-width: 768px) {
  .hero-slideshow-container {
    aspect-ratio: 3 / 2;
  }
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* Bottom Content Area (Logo + Taglines) */
.hero-content-bottom {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-bottom-logo {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 3px solid var(--white);
}

.hero-tagline {
  font-size: clamp(1.4rem, 4.2vw, 2.2rem);
  color: var(--brown);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.hero-sub {
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  color: var(--green);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-note {
  font-size: 0.78rem;
  color: var(--brown-light);
  letter-spacing: 0.06em;
  line-height: 1.8;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--brown-light), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(5px); }
}

/* ===== CONCEPT ===== */
.concept {
  padding: 5rem 2rem;
  background: var(--white);
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.concept-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 2rem 1.4rem;
  text-align: center;
  border: 1px solid var(--cream-dark);
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}

.concept-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  opacity: 0;
  transition: opacity var(--t);
}

.concept-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.concept-card:hover::before {
  opacity: 1;
}

.concept-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.concept-icon.green { background: var(--green-pale); }
.concept-icon.red   { background: var(--red-pale); }

.concept-icon svg {
  width: 24px;
  height: 24px;
}

.concept-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.7rem;
}

.concept-card h3 {
  font-size: 0.95rem;
  color: var(--brown);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.concept-card p {
  font-size: 0.8rem;
  color: var(--brown-light);
  line-height: 1.8;
}

.concept-message {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, var(--cream-mid) 0%, var(--cream) 100%);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  border: 1px solid var(--cream-dark);
}

.concept-message p {
  font-size: 0.9rem;
  color: var(--brown-mid);
  line-height: 2.2;
}

.nobr {
  display: inline-block;
  white-space: nowrap;
}

/* ===== MENU ===== */
.menu {
  padding: 5rem 2rem;
  background: var(--cream);
}

.menu-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.popular-drinks {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.8fr);
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

.popular-drinks-photo {
  overflow: hidden;
  border-radius: calc(var(--r-lg) - 0.4rem);
}

.popular-drinks-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.popular-drinks-copy {
  padding: 1rem 1rem 1rem 0;
}

.popular-drinks-kicker {
  margin-bottom: 0.35rem;
  color: var(--red);
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.popular-drinks-copy h3 {
  margin-bottom: 1.2rem;
  color: var(--brown);
  font-size: 1.3rem;
  font-weight: 600;
}

.popular-drinks-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  list-style: none;
}

.popular-drinks-list li {
  display: grid;
  grid-template-columns: 1.65rem 1fr;
  align-items: center;
  gap: 0.65rem;
  color: var(--brown-mid);
  font-size: 0.84rem;
  line-height: 1.6;
}

.popular-drinks-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.menu-img-area {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-dark);
  background: var(--white);
}

/* When an actual image is loaded, hide the placeholder overlay */
.menu-img-area img {
  width: 100%;
  height: auto;
  display: block;
}

.menu-placeholder {
  text-align: center;
  color: #8a8078;
  line-height: 2;
}

.menu-placeholder p {
  font-size: 0.85rem;
}

.menu-placeholder strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: #6a6058;
}

.menu-note {
  text-align: center;
  margin-top: 1.2rem;
  font-size: 0.82rem;
  color: var(--brown-light);
}

/* ===== GALLERY ===== */
.gallery {
  padding: 5rem 2rem;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-bottom: 2.5rem;
}

.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
  background: var(--cream-dark);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-cta {
  text-align: center;
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  border: 1px solid var(--cream-dark);
}

.gallery-cta p {
  font-size: 0.88rem;
  color: var(--brown-mid);
  line-height: 2;
  margin-bottom: 1.2rem;
}

/* ===== DOG COOKIE ===== */
.dog-cookie {
  padding: 5rem 2rem;
  background: var(--cream-mid);
}

.dog-cookie-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.dog-cookie-images {
  position: relative;
  height: 400px;
  width: 100%;
}

.dog-cookie-images img {
  position: absolute;
  border-radius: var(--r-sm);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--white);
  transition: transform var(--t), box-shadow var(--t), z-index var(--t);
}

/* 1枚目（メイン：左上） */
.dog-cookie-images img:first-child {
  top: 0;
  left: 0;
  width: 70%;
  aspect-ratio: 4 / 3;
  transform: rotate(-3deg);
  z-index: 2;
}

/* 2枚目（サブ：右下） */
.dog-cookie-images img:last-child {
  bottom: 0;
  right: 0;
  width: 60%;
  aspect-ratio: 1 / 1;
  transform: rotate(3deg);
  z-index: 1;
}

/* ホバーした方を前面に */
.dog-cookie-images img:hover {
  z-index: 10;
  transform: scale(1.05) rotate(0deg);
  box-shadow: var(--shadow-lg);
}

.dog-cookie-lead {
  font-size: 0.8rem;
  color: var(--red);
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.dog-cookie-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--brown);
  line-height: 1.4;
  margin-bottom: 1.2rem;
}

.dog-cookie-copy {
  font-size: 0.88rem;
  color: var(--brown-mid);
  line-height: 2.1;
  margin-bottom: 1.5rem;
}

.dog-cookie-features {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--brown-mid);
}

.feature-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.dog-cookie-note {
  font-size: 0.78rem;
  color: var(--brown-light);
  background: var(--white);
  padding: 0.8rem 1.1rem;
  border-radius: var(--r-sm);
  border-left: 3px solid var(--green-light);
  margin-bottom: 1.3rem;
}

.dog-cookie-shipping {
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.dog-cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* ===== STORE INFO ===== */
.store {
  padding: 5rem 2rem;
  background: var(--white);
}

.store-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.store-photo {
  margin-bottom: 1.2rem;
}

.store-photo img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.store-map {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
}

.store-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

.store-info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.5rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-md);
  overflow: hidden;
}

.store-info-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  border-bottom: 1px solid var(--cream-dark);
  transition: background var(--t);
}

.store-info-row:last-child {
  border-bottom: none;
}

.store-info-row:hover {
  background: var(--cream);
}

.store-info-label {
  padding: 0.85rem 1rem;
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--green-pale);
  display: flex;
  align-items: flex-start;
  line-height: 1.8;
}

.store-info-value {
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: var(--brown-mid);
  line-height: 1.9;
}

.store-note-small {
  display: block;
  font-size: 0.75rem;
  color: var(--brown-light);
  margin-top: 0.3rem;
}

.tel-link {
  color: var(--green);
  font-weight: 600;
  font-size: 1rem;
  transition: color var(--t);
}

.tel-link:hover {
  color: var(--green-light);
}

.store-contact-box {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 1.5rem;
  font-size: 0.83rem;
  color: var(--brown-mid);
  line-height: 2;
  border: 1px solid var(--cream-dark);
  margin-bottom: 1.5rem;
}

.store-contact-box strong {
  color: var(--green);
  display: block;
  margin-bottom: 0.2rem;
}

.store-contact-box strong + strong {
  margin-top: 0.8rem;
}

.store-cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brown);
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  padding: 3.5rem 2rem 2.5rem;
}

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 2px solid rgba(255,255,255,0.2);
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.2rem;
}

.footer-address {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem 1.8rem;
  margin-bottom: 1.5rem;
}

.footer-nav a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  transition: color var(--t);
}

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

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  padding: 0.55rem 1.4rem;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  transition: background var(--t);
  border: 1px solid rgba(255,255,255,0.15);
}

.footer-instagram:hover {
  background: rgba(255,255,255,0.18);
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .concept-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Header */
  .nav-list   { display: none; }
  .hamburger  { display: block; }

  /* Sections */
  section, .concept, .menu, .gallery, .dog-cookie, .store {
    padding: 4rem 1.2rem;
  }

  .popular-drinks {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
  }

  .popular-drinks-copy {
    padding: 1.4rem 1rem 1rem;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  /* Dog Cookie */
  .dog-cookie-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .dog-cookie-images {
    height: 320px;
    max-width: 450px;
    margin: 0 auto;
  }

  /* Store */
  .store-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 540px) {
  /* Concept */
  .concept-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .concept-card {
    padding: 1.4rem 1rem;
  }

  .concept-message {
    padding: 1.5rem 1rem;
  }

  .concept-message p {
    font-size: clamp(0.65rem, 3.2vw, 0.85rem);
    line-height: 2;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Dog cookie images */
  .dog-cookie-images {
    height: 240px;
  }

  /* Store CTA */
  .store-cta,
  .dog-cookie-actions {
    flex-direction: column;
  }

  .store-cta .btn,
  .dog-cookie-actions .btn {
    width: 100%;
  }
}

/* ===== FLOATING INSTAGRAM BUTTON ===== */
.floating-instagram {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 800;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(192, 92, 110, 0.4);
  transition: transform var(--t), box-shadow var(--t), opacity var(--t);
}

.floating-instagram:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 92, 110, 0.6);
}

.floating-instagram svg {
  width: 26px;
  height: 26px;
  display: block;
}

/* Hide floating button when menu is open */
body.menu-open .floating-instagram {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 540px) {
  .floating-instagram {
    bottom: 16px;
    right: 16px;
    width: 46px;
    height: 46px;
  }
  .floating-instagram svg {
    width: 22px;
    height: 22px;
  }
}
