#mainNav,
#scrollTop {
  position: fixed;
  z-index: 1000;
}
.nav-logo,
.preloader-logo {
  font-family: "Cormorant Garamond", serif;
}
#mainNav.scrolled .nav-logo,
.preloader-logo {
  color: var(--matcha-deep);
}
.hero-eyebrow,
.nav-cta,
.nav-links a {
  text-transform: uppercase;
}
#events,
#gallery,
#menu,
#preloader,
body {
  background: var(--bg);
}
.hero-leaf-bg,
.sig-bg-text {
  pointer-events: none;
  user-select: none;
}
#scrollTop,
.menu-add,
.nav-toggle,
.sig-card {
  cursor: pointer;
}
#about,
#hero,
#signature,
.about-img-main,
.marquee-strip,
.menu-card,
.menu-card-img,
.preloader-bar,
.team-img-wrap {
  overflow: hidden;
}
#mainNav.scrolled .nav-toggle span,
#signature,
footer {
  background: var(--ink);
}
#blog-hero,
#events-hero,
#faq-hero,
#menu-hero,
#privacy-hero,
#terms-hero {
  background: linear-gradient(155deg, #1a2e12 0, #2d4a1e 40%, #386641 100%);
  padding-top: 100px;
  text-align: center;
}
body,
html,
img {
  max-width: 100%;
}
:root {
  --matcha: #6a994e;
  --matcha-deep: #386641;
  --matcha-light: #a7c47e;
  --matcha-pale: #d4e9c0;
  --cream: #f2e8cf;
  --cream-dark: #e6d5b0;
  --bg: #fafaf5;
  --ink: #1a1f0e;
  --ink-soft: #3d4a2e;
  --muted: #7a8a6a;
  --white: #ffffff;
  --shadow-soft: 0 8px 40px rgba(58, 102, 65, 0.1);
  --shadow-card: 0 4px 24px rgba(58, 102, 65, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-pill: 100px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  cursor: none;
}
img {
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
#hero,
.nav-links a,
.preloader-bowl {
  position: relative;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--matcha);
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--matcha);
  opacity: 0.5;
  transition: transform 0.12s, opacity 0.3s;
}
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.6s, visibility 0.6s;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-logo {
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.2em;
}
.nav-links a,
.nav-logo {
  font-weight: 400;
  letter-spacing: 0.08em;
  transition: var(--transition);
}
.preloader-bowl {
  width: 56px;
  height: 56px;
}
.preloader-bowl svg {
  width: 100%;
  height: 100%;
}
.preloader-steam {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.preloader-steam span {
  display: block;
  width: 3px;
  height: 14px;
  background: var(--matcha-light);
  border-radius: 2px;
  animation: 1.4s ease-in-out infinite steam;
}
.preloader-steam span:nth-child(2) {
  animation-delay: 0.2s;
}
.preloader-steam span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes steam {
  0%,
  100% {
    opacity: 0.2;
    transform: scaleY(0.6) translateY(0);
  }
  50% {
    opacity: 1;
    transform: scaleY(1) translateY(-6px);
  }
}
.preloader-bar {
  width: 160px;
  height: 2px;
  background: var(--matcha-pale);
  border-radius: 2px;
}
#scrollTop:hover,
.nav-cta,
.nav-links a::after,
.nav-logo-leaf,
.preloader-progress {
  background: var(--matcha);
}
.preloader-progress {
  height: 100%;
  border-radius: 2px;
  animation: 2s cubic-bezier(0.4, 0, 0.2, 1) forwards progress;
}
@keyframes progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
#scrollTop {
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--matcha-deep);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(56, 102, 65, 0.3);
}
#mainNav,
.nav-links a.active::after,
.nav-links a:hover::after {
  width: 100%;
}
#scrollTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scrollTop:hover {
  transform: translateY(-3px);
}
#mainNav {
  top: 0;
  left: 0;
  padding: 22px 0;
  transition: var(--transition);
}
#mainNav.scrolled {
  background: rgba(250, 250, 245, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(58, 102, 65, 0.08);
}
.menu-card-footer,
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo,
.nav-logo-leaf {
  display: flex;
  align-items: center;
}
.nav-logo {
  font-size: 1.65rem;
  color: var(--white);
  gap: 10px;
}
.nav-logo-leaf {
  width: 28px;
  height: 28px;
  border-radius: 50% 0;
  justify-content: center;
}
#hero,
.nav-links {
  display: flex;
  align-items: center;
}
.nav-logo-leaf i {
  color: #fff;
  font-size: 0.75rem;
}
.nav-links {
  gap: 2rem;
}
.nav-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}
#mainNav.scrolled .nav-links a {
  color: var(--ink-soft);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  transition: var(--transition);
}
#signature .section-eyebrow,
.footer-bottom a:hover,
.nav-links a:hover {
  color: var(--matcha-light);
}
#mainNav.scrolled .nav-links a:hover,
.blog-link:hover,
.event-meta i,
.faq-question:hover,
.text-matcha {
  color: var(--matcha);
}
.nav-cta {
  color: #fff !important;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em;
  transition: var(--transition) !important;
  border: 1.5px solid transparent;
}
.nav-cta:hover {
  background: 0 0 !important;
  border-color: var(--matcha) !important;
  color: var(--matcha) !important;
}
#signature .section-eyebrow::before,
.hero-eyebrow::before {
  background: var(--matcha-light);
}
.nav-cta::after {
  display: none !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: 0 0;
  border: none;
  padding: 4px;
}
.hero-circles,
.hero-circles::before {
  border-radius: 50%;
  position: absolute;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: var(--transition);
  border-radius: 2px;
}
@media (max-width: 991px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}
#hero {
  min-height: 100vh;
  background: linear-gradient(155deg, #1a2e12 0, #2d4a1e 40%, #386641 100%);
}
.hero-actions,
.hero-eyebrow {
  display: flex;
  align-items: center;
}
.hero-circles {
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.hero-circles::before {
  content: "";
  inset: 60px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-circles::after {
  content: "";
  position: absolute;
  inset: 130px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-leaf-bg {
  position: absolute;
  bottom: -5%;
  left: -4%;
  font-size: 22rem;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  font-family: "Noto Serif JP", serif;
}
.event-day,
.hero-badge .badge-num,
.hero-title,
.section-title {
  font-family: "Cormorant Garamond", serif;
}
.hero-content,
.res-inner {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--matcha-light);
  font-weight: 400;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
}
.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--cream);
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 2.5rem;
}
.btn-ghost,
.btn-matcha {
  padding: 14px 36px;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}
.hero-actions {
  gap: 1.25rem;
  flex-wrap: wrap;
}
.btn-matcha {
  background: var(--matcha);
  color: #fff;
  border: 1.5px solid var(--matcha);
  border-radius: var(--radius-pill);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-matcha:hover {
  background: 0 0;
  color: var(--matcha-light);
  border-color: var(--matcha-light);
  transform: translateY(-2px);
}
.btn-ghost {
  background: 0 0;
  color: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  font-weight: 400;
}
.btn-ghost:hover {
  border-color: var(--cream);
  color: var(--cream);
  transform: translateY(-2px);
}
.hero-img-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-ring {
  width: min(440px, 90vw);
  height: min(440px, 90vw);
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(167, 196, 126, 0.2),
    rgba(56, 102, 65, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: 6s ease-in-out infinite floatRing;
}
#about,
#team,
.hero-badge {
  background: var(--cream);
}
@keyframes floatRing {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}
.hero-img-ring::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  animation: 30s linear infinite spinSlow;
}
.hero-badge,
.hero-badge2 {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  position: absolute;
}
@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}
.hero-bowl-svg {
  width: 70%;
  max-width: 300px;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
}
.hero-badge {
  top: 15%;
  right: -10%;
  color: var(--matcha-deep);
  padding: 14px 18px;
  text-align: center;
  animation: 4s ease-in-out infinite floatBadge;
}
@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}
.event-day,
.hero-badge .badge-num {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: var(--matcha-deep);
}
.hero-badge .badge-txt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.hero-badge2 {
  bottom: 10%;
  left: -8%;
  background: var(--matcha-deep);
  color: #fff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: 5s ease-in-out 1s infinite floatBadge2;
}
@keyframes floatBadge2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
.hero-badge2 i {
  font-size: 1.2rem;
  color: var(--matcha-light);
}
.hero-badge2 .b2-title {
  font-size: 0.78rem;
  font-weight: 500;
}
.hero-badge2 .b2-sub {
  font-size: 0.68rem;
  opacity: 0.7;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.marquee-track span,
.section-eyebrow {
  gap: 10px;
  text-transform: uppercase;
  display: flex;
}
.hero-scroll .scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: 2s ease-in-out infinite scrollPulse;
}
@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleY(0.6);
    opacity: 0.4;
  }
}
section {
  padding: 100px 0;
}
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--matcha);
  font-weight: 500;
  align-items: center;
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--matcha);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1rem;
}
.section-title span {
  color: var(--matcha);
  font-style: italic;
}
.section-desc {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
}
.divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, var(--matcha), var(--matcha-pale));
  border-radius: 2px;
  margin: 1.5rem 0;
}
.marquee-strip {
  background: var(--matcha-deep);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: 28s linear infinite marqueeRoll;
}
.marquee-track span {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.75);
  padding: 0 28px;
  align-items: center;
}
.marquee-track span i {
  color: var(--matcha-light);
  font-size: 0.7rem;
}
@keyframes marqueeRoll {
  to {
    transform: translateX(-50%);
  }
}
.event-tabs,
.menu-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.blog-tab,
.event-tab,
.menu-tab {
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid var(--matcha-pale);
  color: var(--muted);
  background: 0 0;
  cursor: pointer;
  transition: var(--transition);
}
.menu-card-title,
.menu-price {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}
.blog-tab.active,
.blog-tab:hover,
.event-tab.active,
.event-tab:hover,
.menu-tab.active,
.menu-tab:hover {
  background: var(--matcha);
  color: #fff;
  border-color: var(--matcha);
}
.menu-card {
  background: #fff;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid rgba(106, 153, 78, 0.08);
  height: 100%;
}
.event-btn:hover,
.event-card-badge,
.menu-add:hover,
.menu-card-badge {
  background: var(--matcha);
  color: #fff;
}
.blog-card:hover,
.event-card-modern:hover,
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(56, 102, 65, 0.13);
}
.menu-card-img {
  height: 220px;
  position: relative;
}
.blog-card-img img,
.event-card-img img,
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.blog-card:hover .blog-card-img img,
.event-card-modern:hover .event-card-img img,
.gallery-item:hover img,
.menu-card:hover .menu-card-img img {
  transform: scale(1.08);
}
.event-card-badge,
.menu-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
#signature,
.about-img-stack {
  position: relative;
}
.menu-card-body {
  padding: 22px;
}
.menu-card-title {
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.event-card-desc,
.menu-card-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.menu-add,
.menu-price {
  color: var(--matcha-deep);
}
.menu-price {
  font-size: 1.4rem;
}
.about-quote,
.about-stat .stat-num {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
}
.menu-add {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--matcha-pale);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
#reservation::after,
.sig-card {
  background: rgba(255, 255, 255, 0.03);
}
.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
  width: 80%;
}
.about-img-accent img,
.about-img-main img,
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 52%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 6px solid var(--cream);
  aspect-ratio: 1;
}
.about-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.about-stat .stat-num {
  font-size: 2.8rem;
  color: var(--matcha-deep);
  line-height: 1;
}
.about-stat .stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 4px;
}
.about-quote {
  border-left: 3px solid var(--matcha);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.6;
}
.footer-social a:hover,
.newsletter-form input:focus {
  border-color: var(--matcha);
}
.sig-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(8rem, 20vw, 18rem);
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  font-weight: 200;
}
.sig-name,
.sig-price {
  font-family: "Cormorant Garamond", serif;
}
#signature .section-title,
.sig-name {
  color: #fff;
}
.sig-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(4px);
  transition: var(--transition);
  height: 100%;
}
.sig-card:hover {
  background: rgba(106, 153, 78, 0.12);
  border-color: rgba(106, 153, 78, 0.3);
  transform: translateY(-6px);
}
.sig-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(106, 153, 78, 0.25),
    rgba(106, 153, 78, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(106, 153, 78, 0.2);
  font-size: 2rem;
}
#testimonials,
.event-card {
  background: #fff;
}
.sig-name {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}
.sig-desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.sig-price {
  font-size: 1.6rem;
  color: var(--matcha-light);
  font-weight: 300;
}
.event-month,
.event-tag {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--matcha);
  text-transform: uppercase;
}
.event-title,
.team-name {
  font-weight: 500;
  font-family: "Cormorant Garamond", serif;
}
#signature .section-desc {
  color: rgba(255, 255, 255, 0.5);
}
.event-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(106, 153, 78, 0.08);
  transition: var(--transition);
  height: 100%;
}
.event-date-box,
.event-tag {
  background: var(--matcha-pale);
}
.event-card:hover,
.testi-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.event-date-box {
  flex-shrink: 0;
  text-align: center;
  width: 60px;
  border-radius: var(--radius-sm);
  padding: 10px 6px;
}
.comment-content,
.event-info {
  flex: 1;
}
.event-tag {
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 0.6rem;
}
.event-title {
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.event-meta {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.team-overlay,
.team-overlay a {
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.team-card {
  text-align: center;
  transition: var(--transition);
}
.team-img-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 1.4rem;
  border: 3px solid var(--matcha-pale);
  box-shadow: 0 8px 30px rgba(106, 153, 78, 0.15);
  transition: var(--transition);
  position: relative;
}
.team-card:hover .team-img-wrap {
  border-color: var(--matcha);
  transform: scale(1.05);
}
.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(56, 102, 65, 0.75);
  justify-content: center;
  gap: 0.8rem;
  opacity: 0;
  border-radius: 50%;
}
#reservation,
.gallery-item {
  position: relative;
  overflow: hidden;
}
.gallery-item:hover .gallery-overlay,
.team-card:hover .team-overlay {
  opacity: 1;
}
.team-overlay a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
}
.testi-author,
.testi-avatar {
  display: flex;
  align-items: center;
}
.team-overlay a:hover {
  background: rgba(255, 255, 255, 0.35);
}
.team-name {
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.78rem;
  color: var(--matcha);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.testi-card {
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid rgba(106, 153, 78, 0.1);
  transition: var(--transition);
  height: 100%;
}
#newsletter,
.testi-avatar {
  background: var(--matcha-pale);
}
.testi-stars {
  color: #f4a30a;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.testi-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testi-author {
  gap: 0.85rem;
}
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--matcha-pale);
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--matcha-deep);
  font-weight: 500;
}
#reservation::after,
#reservation::before {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.testi-name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink);
}
.testi-loc {
  font-size: 0.78rem;
  color: var(--muted);
}
#reservation {
  background: linear-gradient(135deg, var(--matcha-deep) 0, #2d4a1e 100%);
}
#reservation::before {
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: rgba(255, 255, 255, 0.04);
}
#reservation::after {
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
}
.res-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
}
.btn-cream,
.newsletter-form button {
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
}
.res-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
}
.res-form-wrap {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.res-form .form-control,
.res-form .form-select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
}
.res-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.res-form .form-control:focus,
.res-form .form-select:focus {
  background: rgba(255, 255, 255, 0.13);
  border-color: var(--matcha-light);
  box-shadow: none;
  color: #fff;
}
.res-form .form-select option {
  background: var(--matcha-deep);
}
.res-form label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.btn-cream {
  background: var(--cream);
  color: var(--matcha-deep);
  border: none;
  padding: 14px 40px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  transition: var(--transition);
  width: 100%;
}
.btn-cream:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.faq-question,
.footer-links a,
.footer-social a,
.gallery-overlay,
.newsletter-form button,
.newsletter-form input {
  transition: var(--transition);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(56, 102, 65, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.gallery-overlay i {
  color: #fff;
  font-size: 1.5rem;
}
#newsletter {
  padding: 70px 0;
}
.newsletter-inner {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.newsletter-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.newsletter-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input {
  flex: 1;
  min-width: 200px;
  border: 1.5px solid var(--matcha-pale);
  border-radius: var(--radius-pill);
  padding: 13px 22px;
  font-size: 0.9rem;
  color: var(--ink);
  outline: 0;
}
.footer-logo,
.footer-social a {
  display: flex;
  align-items: center;
}
.newsletter-form button {
  background: var(--matcha);
  color: #fff;
  border: none;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
}
.comment-form button:hover,
.newsletter-form button:hover {
  background: var(--matcha-deep);
  transform: translateY(-2px);
}
.bg-matcha,
.faq-wrapper .section-eyebrow::before,
.footer-social a:hover {
  background: var(--matcha);
}
footer {
  padding: 70px 0 30px;
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
  gap: 10px;
}
.footer-about {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}
.footer-hours li,
.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  display: flex;
}
.footer-social a:hover {
  color: #fff;
}
.footer-heading {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.4rem;
}
.footer-links li {
  margin-bottom: 0.65rem;
}
.footer-links a {
  font-size: 0.88rem;
  align-items: center;
  gap: 8px;
}
.footer-links a i {
  font-size: 0.6rem;
  color: var(--matcha);
}
.footer-links a:hover {
  color: var(--matcha-light);
  padding-left: 4px;
}
.footer-hours li {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  justify-content: space-between;
}
.footer-hours span:last-child {
  color: rgba(255, 255, 255, 0.65);
}
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 2.5rem 0 1.8rem;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}
.mt-section,
.related-posts {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
  section {
    padding: 70px 0;
  }
  .about-img-accent,
  .hero-badge,
  .hero-badge2 {
    display: none;
  }
  .hero-img-ring {
    width: 280px;
    height: 280px;
  }
}
#blog-hero,
#faq-hero,
#privacy-hero,
#terms-hero {
  min-height: 35vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-hero-content,
.events-hero-content,
.faq-hero-content,
.menu-hero-content,
.privacy-hero-content,
.terms-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.blog-hero-content h1,
.events-hero-content h1,
.faq-hero-content h1,
.menu-hero-content h1,
.privacy-hero-content h1,
.terms-hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 1rem;
}
.blog-hero-content p,
.events-hero-content p,
.faq-hero-content p,
.menu-hero-content p,
.privacy-hero-content p,
.terms-hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}
.blog-section,
.faq-section,
.privacy-section,
.terms-section {
  padding: 80px 0;
}
.faq-wrapper,
.privacy-wrapper,
.terms-wrapper {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-soft);
}
.faq-wrapper .section-eyebrow {
  justify-content: center;
  margin-bottom: 1.5rem;
}
.faq-wrapper h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 300;
  text-align: center;
  color: var(--ink);
  margin-bottom: 2.5rem;
}
.faq-item {
  border-bottom: 1px solid var(--matcha-pale);
  padding: 1.2rem 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.faq-question i {
  font-size: 0.9rem;
  color: var(--matcha);
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.faq-answer {
  margin-top: 0.8rem;
  padding-right: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}
.faq-answer a {
  color: var(--matcha);
  text-decoration: underline;
}
.privacy-wrapper h2,
.terms-wrapper h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--matcha-deep);
  margin: 2rem 0 1rem;
}
.privacy-wrapper h2:first-of-type,
.terms-wrapper h2:first-of-type {
  margin-top: 0;
}
.privacy-wrapper h3,
.terms-wrapper h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin: 1.5rem 0 0.5rem;
}
.blog-detail-hero h1,
.mobile-menu a {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
}
.privacy-wrapper li,
.privacy-wrapper p,
.terms-wrapper li,
.terms-wrapper p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
}
.privacy-wrapper ul,
.terms-wrapper ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 1rem 0;
}
.privacy-wrapper li,
.terms-wrapper li {
  margin-bottom: 0.3rem;
}
.privacy-wrapper hr,
.terms-wrapper hr {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid var(--matcha-pale);
}
.privacy-wrapper .last-updated,
.terms-wrapper .last-updated {
  font-style: italic;
  color: var(--matcha);
  margin-bottom: 2rem;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 100vw);
  height: 100vh;
  background: var(--bg);
  z-index: 9998;
  padding: 80px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.08);
}
.blog-card,
.blog-link,
.comment-form button,
.event-btn,
.event-card-modern,
.mobile-menu a,
.mobile-overlay,
.share-icon {
  transition: var(--transition);
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu a {
  font-size: 1.8rem;
  color: var(--ink);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--matcha-pale);
  padding-bottom: 0.8rem;
}
.mobile-menu a:hover {
  color: var(--matcha);
  padding-left: 8px;
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
}
.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: 0 0;
  border: none;
  font-size: 1.4rem;
  color: var(--ink);
  cursor: pointer;
}
#events-hero,
#menu-hero {
  min-height: 40vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card,
.event-card-modern {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(106, 153, 78, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card-img,
.event-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.event-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.event-card-date {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--matcha);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.event-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.event-card-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.event-btn,
.event-price {
  color: var(--matcha-deep);
  font-weight: 500;
}
.event-card-meta i {
  color: var(--matcha);
  width: 16px;
}
.event-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.event-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
}
.event-btn {
  background: var(--matcha-pale);
  border: none;
  cursor: pointer;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.author-bio-text a,
.blog-detail-meta,
.blog-meta {
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.blog-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  justify-content: center;
}
.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-meta {
  display: flex;
  align-items: center;
  color: var(--muted);
}
.blog-title {
  color: var(--ink);
}
.blog-excerpt {
  color: var(--muted);
  flex: 1;
}
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  color: var(--matcha-deep);
}
.blog-detail-hero {
  min-height: 50vh;
  background: linear-gradient(155deg, #1a2e12 0, #2d4a1e 40%, #386641 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  padding-top: 120px;
}
.blog-detail-hero .hero-noise,
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.blog-detail-hero .container {
  position: relative;
  z-index: 2;
  color: #fff;
}
.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}
.blog-detail-meta i {
  color: var(--matcha-light);
  margin-right: 5px;
}
.blog-detail-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  max-width: 900px;
  margin-bottom: 1rem;
}
.article-content h2,
.article-content h3 {
  font-weight: 400;
  font-family: "Cormorant Garamond", serif;
}
.blog-detail-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--matcha-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--matcha-deep);
  font-weight: 500;
  border: 2px solid var(--matcha-light);
}
.share-icon,
.share-section {
  align-items: center;
  display: flex;
}
.article-content,
.featured-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.author-info {
  font-size: 0.9rem;
}
.author-info .name {
  font-weight: 600;
  color: #fff;
}
.author-info .title {
  color: rgba(255, 255, 255, 0.6);
}
.featured-image {
  margin-top: -100px;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}
.featured-image img {
  width: 100%;
}
.article-content blockquote,
.article-content img {
  border-radius: var(--radius-md);
}
.article-wrapper {
  margin: 20px auto;
  padding: 0 1rem;
}
.article-content {
  background: #fff;
  padding: 2.5rem;
}
.article-content h2 {
  font-size: 2rem;
  color: var(--matcha-deep);
  margin: 2rem 0 1rem;
}
.article-content h3 {
  font-size: 1.5rem;
  color: var(--ink-soft);
  margin: 1.5rem 0 0.5rem;
}
.article-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.article-content blockquote {
  border-left: 4px solid var(--matcha);
  background: var(--matcha-pale);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink-soft);
}
.article-content ol,
.article-content ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  color: var(--muted);
}
.article-content li {
  margin-bottom: 0.5rem;
}
.article-content figure {
  margin: 2rem 0;
}
.article-content figcaption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
}
.share-section {
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2.5rem 0 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--matcha-pale);
}
.share-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.share-icons {
  display: flex;
  gap: 0.5rem;
}
.share-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--matcha-pale);
  justify-content: center;
  color: var(--matcha-deep);
}
.share-icon:hover {
  background: var(--matcha);
  color: #fff;
  transform: translateY(-3px);
}
.author-bio {
  display: flex;
  gap: 1.5rem;
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 2rem 0;
  align-items: center;
  border: 1px solid var(--matcha-pale);
}
.author-bio-avatar,
.comment-avatar {
  border-radius: 50%;
  background: var(--matcha-pale);
  display: flex;
}
.author-bio-avatar {
  width: 80px;
  height: 80px;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--matcha-deep);
  font-weight: 500;
  flex-shrink: 0;
}
.author-bio-text h4,
.comments-title {
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
}
.author-bio-text h4 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.author-bio-text p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.author-bio-text a {
  color: var(--matcha);
  font-size: 0.8rem;
}
.comments-section {
  margin: 3rem 0;
}
.comment,
.comment-form h4,
.comments-title {
  margin-bottom: 1.5rem;
}
.comments-title {
  font-size: 1.6rem;
  font-weight: 400;
}
.comment {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--matcha-pale);
}
.comment-avatar {
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--matcha-deep);
  flex-shrink: 0;
}
.comment-author {
  font-weight: 600;
  color: var(--ink);
}
.comment-form h4,
.related-title {
  font-weight: 400;
  font-family: "Cormorant Garamond", serif;
}
.comment-date {
  font-size: 0.7rem;
  color: var(--muted);
  margin-left: 0.5rem;
}
.comment-text {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0.3rem 0 0.5rem;
}
.comment-reply {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--matcha);
}
.comment-form {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-top: 2rem;
}
.blog-card-badge,
.comment-form button {
  background: var(--matcha);
  text-transform: uppercase;
}
.comment-form h4 {
  font-size: 1.3rem;
}
.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--matcha-pale);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}
.comment-form input:focus,
.comment-form textarea:focus {
  outline: 0;
  border-color: var(--matcha);
}
.comment-form button {
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.related-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--ink);
}
.blog-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  z-index: 2;
}
.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.blog-meta i {
  color: var(--matcha);
  width: 14px;
}
.blog-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.blog-excerpt {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--matcha-deep);
  margin-top: auto;
}
.blog-link i {
  font-size: 0.6rem;
  transition: transform 0.2s;
}
.blog-link:hover i {
  transform: translateX(4px);
}
.privacy-wrapper address {
  font-style: normal;
  color: var(--muted);
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .faq-wrapper,
  .privacy-wrapper,
  .terms-wrapper {
    padding: 1.5rem;
  }
}
body,
html {
  overflow-x: hidden;
}
.footer-link {
  display: flex;
  gap: 1.5rem;
}