:root {
  --dark: #2b160f;
  --red: #b93a2f;
  --red2: #982d24;
  --cream: #f8f2e9;
  --beige: #eadfcd;
  --line: #d8c8b3;
  --tan: #d2ae86;
  --muted: #6f5242;
  --text: #3f2b24;
  --shadow: 0 18px 38px rgba(44, 24, 16, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--dark);
  font-family: "DM Sans", Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
}
h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.18;
  margin: 0 0 22px;
}
.container {
  max-width: 1180px;
  margin: auto;
  padding: 0 24px;
}
.content-narrow {
  max-width: 980px;
  margin: auto;
  padding: 0 24px;
}
.right {
  text-align: right;
}
.red {
  color: var(--red);
}
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: 0.35s;
  background: rgba(250, 246, 240, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(58, 31, 22, 0.06);
}
.site-header.scrolled {
  background: rgba(250, 246, 240, 0.96);
  box-shadow: 0 4px 18px rgba(44, 24, 16, 0.08);
  backdrop-filter: blur(8px);
}
.header-inner {
  height: 78px;
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.logo {
  position: relative;
  display: inline-block;
  padding-left: 14px;
  color: #111;
  line-height: 1;
  text-decoration: none;
  isolation: isolate;
}

/* 左上の赤い円 */
.logo::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  z-index: -1;
  width: 34px;
  height: 34px;
  background-color: #b83d33;
  border-radius: 50%;
}

/* HANA */
.logo span {
  position: relative;
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* BAKERY & PÂTISSERIE */
.logo small {
  display: block;
  margin-top: 8px;
  margin-left: 2px;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 7px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.25em;
  white-space: nowrap;
}.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.desktop-nav a,
.mobile-nav a {
  font-size: 10px;
  letter-spacing: 0.18em;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  font-weight: 700;
}
.desktop-nav a.active,
.desktop-nav a:hover,
.mobile-nav a.active {
  color: var(--red);
  border-color: var(--red);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--text);
  font-size: 10px;
  letter-spacing: 0.15em;
  font-weight: 700;
}
.header-actions a:hover {
  color: var(--dark);
}
.sep {
  color: var(--line);
}
.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  overflow: hidden;
}
.lang-switch button {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  padding: 7px 10px;
  border: 0;
  background: transparent;
}
.lang-switch button + button {
  border-left: 1px solid var(--line);
}
.lang-switch button.active {
  background: var(--dark);
  color: var(--cream);
}
.hamburger {
  display: none;
  width: 34px;
  height: 28px;
  position: relative;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 80;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  background: var(--dark);
  border-radius: 999px;
  transition:
    transform 0.35s ease,
    opacity 0.25s ease,
    top 0.35s ease;
}

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

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

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

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

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

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

.mobile-nav {
  display: flex;
  position: fixed;
  top: 78px;
  left: 0;
  width: 100%;
  flex-direction: column;
  gap: 18px;
  padding: 28px 32px 34px;
  background: rgba(250, 246, 240, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 18px 38px rgba(44, 24, 16, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(-18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.35s ease,
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 60;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav a {
  font-size: 12px;
  letter-spacing: 0.2em;
  padding: 8px 0;
  transform: translateY(-8px);
  opacity: 0;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    color 0.25s ease;
}

.mobile-nav.open a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav.open a:nth-child(1) {
  transition-delay: 0.05s;
}

.mobile-nav.open a:nth-child(2) {
  transition-delay: 0.1s;
}

.mobile-nav.open a:nth-child(3) {
  transition-delay: 0.15s;
}

.mobile-nav.open a:nth-child(4) {
  transition-delay: 0.2s;
}

.mobile-nav.open a:nth-child(5) {
  transition-delay: 0.25s;
}

.mobile-nav.open a:nth-child(6) {
  transition-delay: 0.3s;
}

.mobile-nav.open a:nth-child(7) {
  transition-delay: 0.35s;
}
.page-main {
  padding-top: 78px;
}
.page-hero {
  position: relative;
  height: 270px;
  background: var(--line);
  overflow: hidden;
}
.page-hero.tall {
  height: 100vh;
  min-height: 620px;
  max-height: 900px;
}
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 24, 16, 0.08) 0%,
    rgba(44, 24, 16, 0.22) 45%,
    rgba(44, 24, 16, 0.38) 100%
  );
  pointer-events: none;
}
.page-hero.tall::after {
  display: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(250, 246, 240, 0.78) 0%,
      rgba(250, 246, 240, 0.58) 34%,
      rgba(250, 246, 240, 0.18) 58%,
      rgba(250, 246, 240, 0.02) 100%
    ),
    linear-gradient(
      90deg,
      rgba(44, 24, 16, 0.14) 0%,
      rgba(44, 24, 16, 0.08) 42%,
      rgba(44, 24, 16, 0) 100%
    );
}
.hero-content {
  position: absolute;
  inset: auto 0 0 0;
  max-width: 1180px;
  margin: auto;
  padding: 0 24px 82px;
}

/* Hero eyebrow */
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--muted);
  margin: 0 0 13px;
}

.hero-content.light .eyebrow {
  color: #b9925a;
  font-weight: 700;
}

/* Base h1 */
h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.08;
  margin: 0 0 18px;
}

/* Hero title */
.hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 6.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

/* Hero title color and shadow */
.hero-content.light h1,
.hero h1 em {
  color: #a93a2f;
  text-shadow:
    0 1px 0 rgba(250, 246, 240, 0.72),
    0 8px 22px rgba(58, 31, 22, 0.16);
}

.hero h1 em {
  font-style: italic;
  letter-spacing: -0.035em;
}

/* Hero paragraph */
.hero-content.light p {
  color: rgba(58, 31, 22, 0.82);
}

/* Hero subcopy */
.subcopy {
  max-width: 560px;
  color: rgba(58, 31, 22, 0.82) !important;
  line-height: 1.9;
  font-size: 16px;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(250, 246, 240, 0.72);
}.buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--cream);
  padding: 13px 28px;
  font-size: 12px;
  letter-spacing: 0.2em;
  border: 0;
  text-decoration: none;
  transition: 0.25s;
}
.btn:hover {
  background: var(--red2);
  transform: translateY(-1px);
}
.btn.ghost {
  color: #3a1f16;
  background: rgba(250, 246, 240, 0.48);
  border: 1px solid rgba(58, 31, 22, 0.28);
}

.btn.ghost:hover {
  color: var(--cream);
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-1px);
}
.subcopy {
  max-width: 560px;
  color: rgba(58, 31, 22, 0.82) !important;
  line-height: 1.9;
  font-size: 16px;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(250, 246, 240, 0.72);
}
.section {
  padding: 88px 0;
}
.section.alt {
  background: var(--beige);
}
.section.dark {
  background: var(--dark);
  color: var(--cream);
}
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 42px;
}
.section-label .num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  color: #cbb89f;
  font-weight: 500;
}
.section.dark .section-label .num {
  color: rgba(250, 246, 240, 0.18);
}
.section.dark .section-label .label {
  color: rgba(250, 246, 240, 0.72);
  font-weight: 700;
}
.section.dark .eyebrow {
  color: #c8a57f;
}
.section-label .line {
  height: 1px;
  width: 56px;
  background: var(--red);
}
.section-label .label {
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--muted);
  font-weight: 700;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.topics article,
.menu-card {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  transition: 0.25s;
}
.topics article:hover,
.menu-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}
.meta {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  flex-wrap: wrap;
}
.badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.12em;
  background: var(--line);
  color: var(--muted);
  padding: 4px 9px;
}
.red-badge {
  background: var(--red);
  color: var(--cream);
}
.topics p {
  font-size: 14px;
  line-height: 1.75;
}
.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.link:hover {
  border-color: var(--red);
}
.light-link {
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.2em;
}
.light-link:hover {
  color: #f3d7ba;
  border-color: #f3d7ba;
}
.about-image {
  position: relative;
}
.about-image img,
.section img {
  border-radius: 0;
  box-shadow: var(--shadow);
}
.about-image img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}
.years {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 112px;
  height: 112px;
  background: var(--red);
  display: grid;
  place-items: center;
  color: var(--cream);
  text-align: center;
}
.years strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  display: block;
}
.feature {
  padding: 0 24px;
}
.feature:not(:last-child) {
  border-right: 1px solid var(--line);
}
.feature img {
  height: 210px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 22px;
}
.feature .small {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--muted);
}
.feature p,
.value-card p,
.team-card p,
.job-card p,
.menu-card p {
  color: var(--text);
  line-height: 1.85;
  font-size: 15px;
}
.shop-dark img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.shop-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  color: var(--tan);
  line-height: 1.85;
  font-size: 15px;
}
.shop-list li {
  margin: 13px 0;
}
.shop-list small {
  color: rgba(250, 246, 240, 0.82);
  font-size: 0.95em;
}
.shop-list.light {
  color: var(--text);
}
.page-title {
  position: absolute;
  inset: auto 0 0 0;
  max-width: 1180px;
  margin: auto;
  padding: 0 24px 38px;
  z-index: 1;
}
.page-title h1 {
  font-size: clamp(34px, 5vw, 56px);
  color: var(--cream);
  text-shadow: 0 2px 10px rgba(44, 24, 16, 0.35);
}
.page-title .eyebrow {
  color: rgba(250, 246, 240, 0.88);
  text-shadow: 0 1px 6px rgba(44, 24, 16, 0.25);
}
.text-block {
  line-height: 2;
  color: var(--text);
  font-size: 15px;
}
.text-block p {
  margin: 0 0 16px;
}
.value-card,
.job-card {
  border-top: 2px solid var(--red);
  padding: 24px;
  background: rgba(255, 255, 255, 0.2);
}
.value-card .value-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  color: var(--line);
  margin: 0;
}
.team-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.team-card img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  flex: 0 0 auto;
}
.tabs {
  position: sticky;
  top: 78px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  z-index: 20;
  overflow-x: auto;
}
.tabs-inner {
  max-width: 980px;
  margin: auto;
  display: flex;
  padding: 0 24px;
}
.tabs button {
  white-space: nowrap;
  padding: 16px 20px;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.18em;
  background: transparent;
  cursor: pointer;
}
.tabs button.active {
  border-color: var(--red);
  color: var(--red);
}
.menu-category {
  display: none;
}
.menu-category.active {
  display: block;
} /* JS controls active menu category */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}
.menu-card {
  display: flex;
  gap: 20px;
}
.menu-card img {
  width: 108px;
  height: 108px;
  object-fit: cover;
  flex: 0 0 auto;
  box-shadow: none;
}
.menu-card h3 {
  margin: 0;
  font-size: 18px;
}
.price {
  color: var(--red);
  font-weight: 700;
}
.menu-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}
.note {
  white-space: pre-line;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
  margin-top: 46px;
}
.shops {
  display: grid;
  gap: 64px;
}
.shop-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.shop-row:nth-child(even) .shop-photo {
  order: 2;
}
.shop-row img {
  height: 290px;
  width: 100%;
  object-fit: cover;
}
.news-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}
.news-filters button {
  padding: 8px 16px;
  background: var(--line);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  border: 0;
  cursor: pointer;
}
.news-filters button.active {
  background: var(--dark);
  color: var(--cream);
}
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.news-list li {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  color: var(--text);
}
.form-card {
  background: var(--beige);
  padding: 32px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}
.form-card label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.form-card input,
.form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 13px;
  color: var(--dark);
  outline: none;
}
.form-card input:focus,
.form-card textarea:focus {
  border-color: var(--red);
}
.site-footer {
  background: var(--dark);
  color: var(--beige);
  padding: 70px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 60px;
}
.site-footer h2 {
  font-size: 30px;
  letter-spacing: 0.15em;
  margin: 0;
}
.tagline,
.footer-heading {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: #b99568;
  font-weight: 700;
}
.footer-copy {
  white-space: pre-line;
  color: var(--tan);
  line-height: 1.8;
}
.socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(250, 246, 240, 0.28);
  border-radius: 50%;
  color: var(--cream);
  transition: 0.3s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link:hover {
  background: rgba(250, 246, 240, 0.1);
  border-color: rgba(250, 246, 240, 0.65);
  color: #f3d7ba;
  transform: translateY(-2px);
}

.footer-links a {
  color: #d2ae86;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.shop-info {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #d2ae86;
  line-height: 1.7;
}
.footer-bottom {
  border-top: 1px solid #3d2518;
  margin-top: 56px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
}
@media (max-width: 920px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .header-inner {
    height: 68px;
    padding: 0 18px;
  }
  .page-main {
    padding-top: 68px;
  }
  .logo span {
    font-size: 26px;
  }
  .page-hero.tall {
    min-height: 640px;
  }
  .hero-content {
    padding: 0 28px 70px;
  }
  .section {
    padding: 68px 0;
  }
  .grid-2,
  .grid-3,
  .menu-grid,
  .shop-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .feature {
    padding: 32px 0;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }
  .about-image img {
    height: 390px;
  }
  .years {
    display: none;
  }
  .menu-card {
    gap: 16px;
  }
  .news-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .shop-row:nth-child(even) .shop-photo {
    order: 0;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .tabs {
    top: 68px;
  }
  .contact-list li {
    display: block;
  }
  .form-card {
    padding: 24px;
  }
  .team-card {
    display: block;
  }
  .team-card img {
    margin-bottom: 18px;
  }
}

/* Montréal localization adjustments */
.logo small,
.tagline {
  letter-spacing: 0.04em;
}

.shop-info li,
.shop-list li {
  line-height: 1.7;
}


/* Montréal locations page */
.shop-description {
  max-width: 520px;
  margin: 14px 0 22px;
  color: rgba(58, 31, 22, 0.72);
  font-size: 0.98rem;
  line-height: 1.8;
}

.logo small {
  letter-spacing: 0.04em;
}

.shop-info li {
  line-height: 1.7;
}

@media (max-width: 768px) {
  .shop-description {
    font-size: 0.92rem;
    line-height: 1.7;
  }
}
