/* =====================================================
   遊楽里（ゆらり）｜ style.css
   ===================================================== */

/* ----- みきゆフォント 毛筆体 ----- */
@font-face {
  font-family: 'MikiyuPenji';
  src: url('../fonts/mikiyu-newpenji-p.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ----- カスタムプロパティ ----- */
:root {
  /* カラー */
  --clr-primary:    #3d2b1f;   /* 濃いこげ茶 */
  --clr-secondary:  #7a5c44;   /* 中間茶 */
  --clr-accent:     #5c6b3e;   /* 苔緑 */
  --clr-gold:       #b8936a;   /* 金茶 */
  --clr-bg:         #f4ede0;   /* 温かみのあるクリーム */
  --clr-bg-dark:    #e8ddd0;   /* やや濃いクリーム */
  --clr-text:       #2a1f16;   /* テキスト色 */
  --clr-text-muted: #7a6b5c;   /* サブテキスト */
  --clr-white:      #fff9f2;   /* オフホワイト */

  /* タイポグラフィ */
  --font-mikiyu: 'MikiyuPenji', 'Noto Serif JP', serif;
  --font-serif: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', '游明朝', serif;
  --font-sans:  'Noto Sans JP', 'Yu Gothic', 'YuGothic', '游ゴシック', sans-serif;

  /* スペーシング */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  2rem;
  --space-xl:  4rem;
  --space-2xl: 7rem;

  /* レイアウト */
  --container: 1100px;
  --pad: clamp(1.25rem, 5vw, 2rem);

  /* エフェクト */
  --shadow:    0 2px 12px rgba(61, 43, 31, 0.10);
  --shadow-lg: 0 6px 24px rgba(61, 43, 31, 0.16);
  --radius:    4px;
  --radius-lg: 8px;
  --ease:      0.3s ease;
}

/* ----- リセット ----- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 68px;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease), opacity var(--ease);
}

ul, ol { list-style: none; }
button { font-family: inherit; }

/* ----- ユーティリティ ----- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.pc-br { display: none; }
@media (min-width: 768px) { .pc-br { display: block; } }


/* =====================================================
   ナビゲーション
   ===================================================== */
#header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(42, 31, 22, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow var(--ease);
}

#header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.9rem var(--pad);
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-logo-ja {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--clr-gold);
  letter-spacing: 0.12em;
}

.nav-logo-kana {
  font-size: 0.72rem;
  color: rgba(184, 147, 106, 0.65);
  letter-spacing: 0.25em;
}

.nav-menu {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.nav-link {
  font-size: 0.875rem;
  color: rgba(255, 249, 242, 0.8);
  letter-spacing: 0.12em;
  position: relative;
  padding-bottom: 3px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-gold);
  transition: width var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--clr-gold);
}

.nav-link--shop {
  border: 1px solid rgba(184, 147, 106, 0.5);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius);
  letter-spacing: 0.15em;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}

.nav-link--shop:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-primary) !important;
}

.nav-link--shop::after { display: none; }

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

/* モバイル用トグルボタン */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--clr-gold);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 767px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    inset: 59px 0 auto;
    background: rgba(42, 31, 22, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 2rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--ease), opacity var(--ease);
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    display: block;
    padding: 1rem var(--pad);
    font-size: 1rem;
    border-bottom: 1px solid rgba(184, 147, 106, 0.12);
  }

  .nav-link::after { display: none; }
}


/* =====================================================
   ヒーロー（TOPセクション）
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* 背景画像 — images/hero.jpg に差し替えてください */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero.jpg') center / cover no-repeat;
}

@media (min-width: 768px) {
  .hero-bg { background-attachment: fixed; }
}

/* 格子模様（和紙風テクスチャ） */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    repeating-linear-gradient(0deg, var(--clr-gold), var(--clr-gold) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, var(--clr-gold), var(--clr-gold) 1px, transparent 1px, transparent 40px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 10, 6, 0.50);
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--clr-white);
  padding: var(--pad);
  animation: fadeInUp 1s ease both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.5em;
  color: var(--clr-gold);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.hero-title {
  font-family: var(--font-mikiyu);
  font-size: clamp(4.5rem, 14vw, 9rem);
  font-weight: normal;
  letter-spacing: 0.18em;
  line-height: 1;
  color: rgba(255, 249, 242, 0.82);
  text-shadow: 0 2px 12px rgba(0,0,0,0.35), 0 4px 30px rgba(0,0,0,0.25);
  margin-bottom: 0.6rem;
}

.hero-kana {
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  letter-spacing: 0.9em;
  color: rgba(255, 249, 242, 0.5);
  margin-bottom: 1.75rem;
}

.hero-tagline {
  font-size: clamp(0.875rem, 2.5vw, 1.05rem);
  letter-spacing: 0.25em;
  color: rgba(255, 249, 242, 0.82);
  margin-bottom: 2.75rem;
  font-weight: 300;
}

.hero-cta {
  display: inline-block;
  padding: 0.85rem 2.8rem;
  border: 1px solid var(--clr-gold);
  color: var(--clr-gold);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  transition: background var(--ease), color var(--ease);
}

.hero-cta:hover {
  background: var(--clr-gold);
  color: var(--clr-primary);
}

/* スクロールインジケーター */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 249, 242, 0.45);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  animation: fadeIn 2s ease 1.2s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-scroll-line {
  width: 1px;
  height: 44px;
  overflow: hidden;
  background: linear-gradient(to bottom, transparent, rgba(255, 249, 242, 0.45));
  position: relative;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 249, 242, 0.45);
  animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
  0%   { transform: translateY(0); }
  100% { transform: translateY(200%); }
}


/* =====================================================
   コンセプト（About）
   ===================================================== */
.about {
  padding: var(--space-2xl) 0;
  background: var(--clr-white);
  text-align: center;
}

.about-inner {
  max-width: 820px;
  margin-inline: auto;
}

/* 装飾ライン */
.about-ornament {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--clr-gold), transparent);
  margin: 0 auto 2rem;
}

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--clr-primary);
  letter-spacing: 0.12em;
  margin-bottom: 1.75rem;
}

.about-text {
  color: var(--clr-text-muted);
  line-height: 2.4;
  font-size: 0.95rem;
  margin-bottom: 3.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.75rem;
}

.about-feature {
  padding: 2rem 1.5rem;
  background: var(--clr-bg);
  border-radius: var(--radius);
  transition: transform var(--ease), box-shadow var(--ease);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.about-feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-feature h3 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--clr-primary);
  margin-bottom: 0.6rem;
  letter-spacing: 0.06em;
}

.about-feature p {
  font-size: 0.825rem;
  color: var(--clr-text-muted);
  line-height: 1.85;
}


/* =====================================================
   セクション共通
   ===================================================== */
.section {
  padding: var(--space-2xl) 0;
}

.section--dark {
  background: var(--clr-bg-dark);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  color: var(--clr-gold);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--clr-primary);
  letter-spacing: 0.12em;
  display: inline-block;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--clr-gold);
  margin: 0.9rem auto 0;
}

/* ローディング */
.loading {
  text-align: center;
  color: var(--clr-text-muted);
  padding: 4rem;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
}

.empty-msg,
.error-msg {
  text-align: center;
  color: var(--clr-text-muted);
  padding: 3rem;
  font-size: 0.875rem;
}


/* =====================================================
   について（Story）
   ===================================================== */
.story {
  max-width: 740px;
  margin-inline: auto;
}

.story-block {
  margin-bottom: 2.5rem;
}

.story-heading {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--clr-primary);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.story-heading::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--clr-gold);
  flex-shrink: 0;
}

.story-block p {
  font-size: 0.925rem;
  color: var(--clr-text-muted);
  line-height: 2.2;
}

.story-quote {
  margin: 2.5rem 0;
  padding: 1.75rem 2rem;
  background: var(--clr-white);
  border-left: 3px solid var(--clr-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.story-quote-en {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--clr-secondary);
  margin-bottom: 0.6rem;
  font-family: Georgia, serif;
}

.story-quote-ja {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.9;
}

/* 野菜ラインナップ */
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

.lineup-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(184, 147, 106, 0.2);
  transition: box-shadow var(--ease), transform var(--ease);
}

.lineup-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.lineup-season {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--clr-primary);
  font-weight: 500;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lineup-icon {
  font-size: 1rem;
}

.lineup-vegs {
  font-size: 0.825rem;
  color: var(--clr-text-muted);
  line-height: 1.85;
}

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

.story-sign {
  text-align: right;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(61, 43, 31, 0.12);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--clr-primary);
  letter-spacing: 0.1em;
}


/* =====================================================
   お知らせ
   ===================================================== */
.news-list {
  max-width: 820px;
  margin-inline: auto;
}

.news-item {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1.5rem 2rem;
  align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(61, 43, 31, 0.1);
  cursor: default;
}

.news-item:first-child {
  border-top: 1px solid rgba(61, 43, 31, 0.1);
}

.news-date {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  white-space: nowrap;
  letter-spacing: 0.05em;
  padding-top: 0.15em;
}

.news-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--clr-primary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
  line-height: 1.65;
}

.news-text {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.9;
}

@media (max-width: 600px) {
  .news-item {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}


/* =====================================================
   メニュー
   ===================================================== */
.menu-category {
  margin-bottom: var(--space-xl);
}

.menu-category:last-child {
  margin-bottom: 0;
}

.menu-category-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--clr-primary);
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(184, 147, 106, 0.5);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-category-title::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--clr-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}

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

.menu-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.menu-card-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--clr-bg-dark), var(--clr-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.menu-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.menu-card-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--clr-primary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.06em;
}

.menu-card-desc {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
  min-height: 2.8em;
}

.menu-card-price {
  font-size: 0.9rem;
  color: var(--clr-secondary);
  font-weight: 500;
}

.menu-card-price-tax {
  font-size: 0.7rem;
  color: var(--clr-text-muted);
  font-weight: 300;
  margin-left: 0.2em;
}

@media (max-width: 479px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }
  .menu-card-img,
  .menu-card-img-placeholder { aspect-ratio: 1 / 1; }
  .menu-card-body { padding: 0.875rem; }
  .menu-card-desc { display: none; }
}


/* =====================================================
   Instagram
   ===================================================== */
.instagram-widget-wrap {
  max-width: 960px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.instagram-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

.btn--outline {
  background: transparent;
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

.btn--outline:hover {
  background: var(--clr-gold);
  color: var(--clr-primary);
}


/* =====================================================
   アクセス
   ===================================================== */
.access-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.access-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--clr-bg);
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--clr-text-muted);
  font-size: 0.875rem;
  line-height: 2;
}

.access-dl {
  display: grid;
  grid-template-columns: 5em 1fr;
  gap: 0.9rem 1.5rem;
  align-items: baseline;
  margin-bottom: 2rem;
}

.access-dl dt {
  font-size: 0.75rem;
  color: var(--clr-gold);
  letter-spacing: 0.1em;
  font-weight: 500;
  white-space: nowrap;
  padding-top: 0.1em;
}

.access-dl dd {
  font-size: 0.9rem;
  color: var(--clr-text);
  line-height: 1.85;
}

.access-hours {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hours-row {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
}

.hours-days  { color: var(--clr-text-muted); min-width: 6em; }
.hours-time  { color: var(--clr-text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2.2rem;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  border-radius: var(--radius);
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--clr-accent);
  color: var(--clr-white);
  border-color: var(--clr-accent);
}

.btn--primary:hover {
  background: transparent;
  color: var(--clr-accent);
}

@media (max-width: 767px) {
  .access-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}


/* =====================================================
   フッター
   ===================================================== */
.footer {
  background: var(--clr-primary);
  color: rgba(255, 249, 242, 0.65);
  padding: 3.5rem 0 2rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.footer-logo-ja {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--clr-gold);
  letter-spacing: 0.12em;
}

.footer-logo-kana {
  font-size: 0.7rem;
  color: rgba(184, 147, 106, 0.55);
  letter-spacing: 0.25em;
}

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

.footer-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 0.25rem;
}

.footer-nav a:hover {
  color: var(--clr-gold);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(184, 147, 106, 0.3);
  border-radius: 50%;
  color: rgba(255, 249, 242, 0.65);
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}

.footer-social a:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  background: rgba(184, 147, 106, 0.1);
}

.footer-social a svg {
  display: block;
  flex-shrink: 0;
}

.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.footer-font-credit {
  font-size: 0.65rem;
  color: var(--clr-text-muted);
  margin-top: 0.25rem;
}

.footer-font-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* =====================================================
   ページトップボタン
   ===================================================== */
.to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--clr-primary);
  color: var(--clr-gold);
  border: 1px solid rgba(184, 147, 106, 0.5);
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--ease), transform var(--ease), background var(--ease);
  z-index: 900;
}

.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--clr-secondary);
}

@media (max-width: 767px) {
  .to-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
  }
}
