

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

:root {
  --clr-primary:      #2C5F2E;
  --clr-primary-dk:   #1B3D1D;
  --clr-primary-lt:   #3D7A40;
  --clr-accent:       #8BAF4F;
  --clr-accent-lt:    #B5D07A;
  --clr-bg:           #F5F0E8;
  --clr-bg-alt:       #EAE4D6;
  --clr-surface:      #FFFFFF;
  --clr-text:         #1A1A1A;
  --clr-text-m:       #5A5A5A;
  --clr-border:       #D0C9BC;
  --clr-placeholder:  #C4BCB0;

  --ff-heading: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --ff-body:    'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;

  --max-w:            1200px;
  --pad-section:      88px;
  --pad-section-sm:   56px;
  --radius:           4px;
  --radius-lg:        8px;
}

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

html {
  font-size: 16px;
  scroll-behavior: auto;
}

body {
  font-family: var(--ff-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
}

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

a {
  color: var(--clr-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: var(--pad-section);
}

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

.layout-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.section-head {
  text-align: center;
  margin-bottom: 52px;
}

.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  color: var(--clr-primary);
  line-height: 1.4;
}

.section-subtitle {
  margin-top: 12px;
  font-size: 15px;
  color: var(--clr-text-m);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.85;
}

.photo-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

.brew-step-img {
  margin-bottom: 0;
  border-radius: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background-color: var(--clr-primary);
  color: #fff;
}

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

.btn-accent {
  background-color: var(--clr-accent);
  color: #fff;
}

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

.btn-ghost {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.site-header {
  background-color: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  padding-block: 18px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-logo:hover {
  text-decoration: none;
}

.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-brand {
  display: block;
  font-family: var(--ff-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-primary);
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.logo-tagline {
  display: block;
  font-size: 10px;
  color: var(--clr-text-m);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.hero {
  background-color: var(--clr-primary);
  padding-block: 64px;
  text-align: center;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-inner {
  max-width: 100%;
  margin-inline: 0;
  text-align: left;
}

.hero-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--clr-accent-lt);
  margin-bottom: 20px;
  font-family: var(--ff-body);
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 22px;
}

.hero-title em {
  font-style: normal;
  color: var(--clr-accent-lt);
}

.hero-text {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 100%;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  width: 100%;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

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

  .hero-inner {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }
}

.about-matcha .section-label {
  display: block;
  text-align: left;
}

.about-matcha h2 {
  font-family: var(--ff-heading);
  font-size: clamp(20px, 2.8vw, 32px);
  color: var(--clr-primary);
  margin-bottom: 20px;
  line-height: 1.45;
}

.about-matcha p {
  color: var(--clr-text-m);
  margin-bottom: 14px;
  line-height: 1.9;
  font-size: 15px;
}

.tea-ceremony .text-wrap {
  order: 2;
}

.tea-ceremony .img-side {
  order: 1;
}

.tea-ceremony .section-label {
  text-align: left;
}

.tea-ceremony h2 {
  font-family: var(--ff-heading);
  font-size: clamp(20px, 2.8vw, 32px);
  color: var(--clr-primary);
  margin-bottom: 20px;
  line-height: 1.45;
}

.tea-ceremony p {
  color: var(--clr-text-m);
  margin-bottom: 14px;
  line-height: 1.9;
  font-size: 15px;
}

.tea-quote {
  margin-top: 24px;
  padding: 20px 24px;
  border-left: 3px solid var(--clr-accent);
  background-color: var(--clr-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.tea-quote p {
  font-family: var(--ff-heading);
  font-size: 19px;
  color: var(--clr-primary);
  margin: 0;
}

.tea-quote small {
  display: block;
  font-size: 12px;
  color: var(--clr-text-m);
  letter-spacing: 0.06em;
  margin-top: 6px;
}

.brewing-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.brew-step {
  background-color: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 0 0 28px 0;
  overflow: hidden;
  text-align: center;
}

.brew-step-img {
  margin-bottom: 0;
  border-radius: 0;
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.brew-step-body {
  padding: 24px 24px 0;
}

.step-num {
  width: 52px;
  height: 52px;
  background-color: var(--clr-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 20px;
  font-weight: 600;
  margin: 0 auto 16px;
}

.brew-step h3 {
  font-family: var(--ff-heading);
  font-size: 17px;
  color: var(--clr-primary);
  margin-bottom: 10px;
}

.brew-step p {
  font-size: 14px;
  color: var(--clr-text-m);
  line-height: 1.75;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background-color: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.product-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-cat {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--ff-heading);
  font-size: 16px;
  color: var(--clr-primary);
  margin-bottom: 8px;
  line-height: 1.45;
}

.product-desc {
  font-size: 13px;
  color: var(--clr-text-m);
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1;
}

.product-price {
  font-family: var(--ff-heading);
  font-size: 22px;
  color: var(--clr-primary);
  font-weight: 700;
  margin-bottom: 14px;
}

.product-price small {
  font-size: 12px;
  color: var(--clr-text-m);
  font-weight: 400;
  margin-left: 4px;
}

.product-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px;
  background-color: var(--clr-primary);
  color: #fff;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.product-btn:hover {
  background-color: var(--clr-primary-dk);
  text-decoration: none;
}

.desserts .section-label {
  text-align: left;
}

.desserts h2 {
  font-family: var(--ff-heading);
  font-size: clamp(20px, 2.8vw, 32px);
  color: var(--clr-primary);
  margin-bottom: 20px;
  line-height: 1.45;
}

.desserts p {
  color: var(--clr-text-m);
  margin-bottom: 14px;
  line-height: 1.9;
  font-size: 15px;
}

.dessert-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dessert-gallery .photo-ph--wide {
  grid-column: span 2;
}

.dessert-menu {
  margin-top: 20px;
}

.dessert-menu li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 10px;
  border-bottom: 1px solid var(--clr-border);
  font-size: 14px;
  color: var(--clr-text);
}

.dessert-menu li::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--clr-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.benefits {
  background-color: var(--clr-primary-dk);
  color: #fff;
}

.benefits .section-label {
  color: var(--clr-accent-lt);
}

.benefits .section-title {
  color: #fff;
}

.benefits h2 {
  font-family: var(--ff-heading);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

.benefits .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

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

.benefit-card {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  text-align: center;
}

.benefit-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(139, 175, 79, 0.18);
  border-radius: 50%;
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
}

.benefit-card h3 {
  font-family: var(--ff-heading);
  font-size: 16px;
  color: var(--clr-accent-lt);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.origin .section-label {
  text-align: left;
}

.origin h2 {
  font-family: var(--ff-heading);
  font-size: clamp(20px, 2.8vw, 32px);
  color: var(--clr-primary);
  margin-bottom: 20px;
  line-height: 1.45;
}

.origin-text p {
  color: var(--clr-text-m);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 14px;
}

.locations {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-item {
  padding: 14px 18px;
  background-color: var(--clr-bg-alt);
  border-left: 3px solid var(--clr-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.location-name {
  font-family: var(--ff-heading);
  font-size: 15px;
  color: var(--clr-primary);
  font-weight: 600;
}

.location-desc {
  font-size: 13px;
  color: var(--clr-text-m);
  margin-top: 4px;
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background-color: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.testi-quote-mark {
  font-size: 32px;
  color: var(--clr-accent);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}

.testi-text {
  font-family: var(--ff-heading);
  font-size: 15px;
  line-height: 1.75;
  color: var(--clr-text);
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--clr-primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  font-family: var(--ff-heading);
  font-weight: 600;
}

.testi-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-text);
}

.testi-loc {
  font-size: 12px;
  color: var(--clr-text-m);
  margin-top: 2px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background-color: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
}

.contact-icon-wrap {
  width: 56px;
  height: 56px;
  background-color: var(--clr-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

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

.contact-card h3 {
  font-family: var(--ff-heading);
  font-size: 17px;
  color: var(--clr-primary);
  margin-bottom: 10px;
}

.contact-card .contact-meta {
  font-size: 13px;
  color: var(--clr-text-m);
  line-height: 1.6;
  margin-bottom: 10px;
}

.contact-card a {
  color: var(--clr-primary);
  font-size: 15px;
  display: block;
  line-height: 1.5;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card address {
  font-style: normal;
  font-size: 14px;
  color: var(--clr-text-m);
  line-height: 1.7;
}

.site-footer {
  background-color: var(--clr-primary-dk);
  padding-block: 48px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.footer-logo:hover {
  text-decoration: none;
}

.footer-logo .logo-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.footer-logo .logo-brand {
  font-size: 17px;
  color: #fff;
}

.footer-logo .logo-tagline {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  text-decoration: none;
  line-height: 1.5;
}

.footer-nav a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-copy {
  font-size: 12px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
}

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

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --pad-section: var(--pad-section-sm);
  }

  .layout-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tea-ceremony .text-wrap {
    order: 1;
  }

  .tea-ceremony .img-side {
    order: 2;
  }

  .brewing-steps {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }

  .testimonials-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-copy {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .dessert-gallery {
    display: none;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--clr-primary-dk);
  color: rgba(255, 255, 255, 0.9);
  padding: 24px;
  z-index: 1000;
  display: none;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.cookie-banner-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-banner-text h3 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.cookie-banner-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.cookie-banner-text a {
  color: var(--clr-accent-lt);
  text-decoration: none;
}

.cookie-banner-text a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-family: var(--ff-body);
}

.cookie-btn:hover {
  text-decoration: none;
}

.cookie-decline {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.cookie-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.cookie-customize {
  background-color: transparent;
  color: var(--clr-accent-lt);
  border: 1px solid var(--clr-accent-lt);
}

.cookie-customize:hover {
  background-color: rgba(139, 175, 79, 0.1);
}

.cookie-accept {
  background-color: var(--clr-accent);
  color: #fff;
}

.cookie-accept:hover {
  background-color: var(--clr-accent-lt);
}

.cookie-customize-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.customize-content {
  background-color: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 480px;
  width: 100%;
  color: var(--clr-text);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.customize-content h3 {
  font-family: var(--ff-heading);
  font-size: 20px;
  color: var(--clr-primary);
  margin-bottom: 8px;
}

.customize-content > p {
  font-size: 14px;
  color: var(--clr-text-m);
  margin-bottom: 24px;
}

.cookie-option {
  margin-bottom: 20px;
}

.cookie-option label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.cookie-option input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
  accent-color: var(--clr-primary);
}

.cookie-option input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-option strong {
  display: block;
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: 2px;
}

.cookie-desc {
  display: block;
  font-size: 13px;
  color: var(--clr-text-m);
  line-height: 1.5;
}

.customize-buttons {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.cookie-customize-cancel {
  flex: 1;
  background-color: transparent;
  color: var(--clr-text-m);
  border: 1px solid var(--clr-border);
}

.cookie-customize-cancel:hover {
  background-color: var(--clr-bg-alt);
}

.cookie-customize-save {
  flex: 1;
  background-color: var(--clr-primary);
  color: #fff;
}

.cookie-customize-save:hover {
  background-color: var(--clr-primary-dk);
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 16px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }

  .customize-content {
    padding: 24px;
    max-width: 100%;
  }
}
