:root {
  --ghf-ink: #151611;
  --ghf-charcoal: #24231d;
  --ghf-deep-green: #243a2b;
  --ghf-leaf: #4f6f3d;
  --ghf-clay: #9b5739;
  --ghf-rice: #f7f3ea;
  --ghf-paper: #fffaf0;
  --ghf-line: rgba(21, 22, 17, 0.14);
  --ghf-white: #ffffff;
  --ghf-shadow: 0 22px 60px rgba(21, 22, 17, 0.18);
}

#body_wrap.ghf-site {
  background: var(--ghf-rice);
}

#body_wrap.ghf-site .l-header,
#body_wrap.ghf-site .l-fixHeader,
#body_wrap.ghf-site .p-spMenu,
#body_wrap.ghf-site .p-mainVisual,
#body_wrap.ghf-site #post_slider,
#body_wrap.ghf-site .p-breadcrumb,
#body_wrap.ghf-site .l-footer,
#body_wrap.ghf-site .c-pageTitle,
#body_wrap.ghf-site .p-articleHead,
#body_wrap.ghf-site .p-articleMetas,
#body_wrap.ghf-site .p-articleFoot,
#body_wrap.ghf-site .c-shareBtns,
#body_wrap.ghf-site .l-articleBottom,
#body_wrap.ghf-site .p-commentArea,
#body_wrap.ghf-site #comments,
#body_wrap.ghf-site #respond,
#body_wrap.ghf-site .l-sidebar,
#body_wrap.ghf-site #sidebar,
#body_wrap.ghf-site .p-toc,
#body_wrap.ghf-site .p-pnLinks {
  display: none !important;
}

#body_wrap.ghf-site #content,
#body_wrap.ghf-site .l-mainContent,
#body_wrap.ghf-site .l-mainContent__inner,
#body_wrap.ghf-site .post_content,
#body_wrap.ghf-site .l-content,
#body_wrap.ghf-site .l-container {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

.ghf-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  color: var(--ghf-white);
  background: rgba(24, 25, 20, 0.9);
  backdrop-filter: blur(12px);
}

.ghf-brand {
  color: inherit;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}

.ghf-brand-mark {
  font-family: "Yuji Syuku", "Shippori Mincho", serif;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
  white-space: nowrap;
}

.ghf-brand-sub {
  font-family: "Shippori Mincho", serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ghf-nav {
  display: flex;
  gap: clamp(13px, 1.6vw, 25px);
  font-size: 14px;
  font-weight: 700;
}

.ghf-nav a,
.ghf-mobile-menu a,
.ghf-footer a {
  color: inherit;
  text-decoration: none;
}

.ghf-mobile-menu {
  display: none;
}

.ghf-main,
.ghf-subpage {
  color: var(--ghf-ink);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.85;
}

.ghf-hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ghf-white);
  isolation: isolate;
}

.ghf-hero-media,
.ghf-hero-shade {
  position: absolute;
  inset: 0;
}

.ghf-hero-media {
  z-index: -2;
  background-image: url("assets/hero-farm.png");
  background-size: auto 118%;
  background-position: 50% 54%;
  animation: ghfWalkForward 12s ease-in-out infinite alternate;
  will-change: transform, background-position;
}

@keyframes ghfWalkForward {
  0% {
    background-position: 50% 58%;
    transform: scale(1);
  }
  100% {
    background-position: 50% 46%;
    transform: scale(1.16);
  }
}

.ghf-hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 19, 15, 0.78), rgba(18, 19, 15, 0.4) 42%, rgba(18, 19, 15, 0.1)),
    linear-gradient(0deg, rgba(21, 22, 17, 0.52), rgba(21, 22, 17, 0.08) 48%);
}

.ghf-hero-inner,
.ghf-section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.ghf-eyebrow,
.ghf-section-label {
  margin: 0 0 18px;
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ghf-hero h1 {
  margin: 0;
  font-family: "Yuji Syuku", "Shippori Mincho", serif;
  font-size: clamp(54px, 8vw, 118px);
  font-weight: 400;
  line-height: 1.05;
}

.ghf-hero h1 span {
  display: block;
}

.ghf-hero-copy {
  max-width: 660px;
  margin: 30px 0 0;
  font-size: clamp(16px, 1.55vw, 20px);
  font-weight: 700;
}

.ghf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.ghf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.ghf-primary {
  color: var(--ghf-white);
  background: var(--ghf-clay);
  border-color: var(--ghf-clay);
}

.ghf-secondary {
  color: var(--ghf-white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.62);
}

.ghf-section {
  padding: clamp(72px, 9vw, 128px) 0;
}

.ghf-two-column,
.ghf-split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.ghf-split-feature {
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
}

.ghf-reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
}

.ghf-reverse .ghf-feature-image {
  order: 2;
}

.ghf-section-copy h2,
.ghf-section-heading h2,
.ghf-cta h2,
.ghf-page-hero h1,
.ghf-legal-body h2 {
  margin: 0 0 24px;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.32;
}

.ghf-section-copy p,
.ghf-page-hero p,
.ghf-legal-body p {
  margin: 0 0 18px;
  color: rgba(21, 22, 17, 0.78);
}

.ghf-farm-note {
  padding: clamp(26px, 4vw, 44px);
  background: var(--ghf-paper);
  border: 1px solid var(--ghf-line);
  border-radius: 6px;
  box-shadow: var(--ghf-shadow);
}

.ghf-farm-note dl {
  margin: 0;
}

.ghf-farm-note div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ghf-line);
}

.ghf-farm-note div:last-child {
  border-bottom: 0;
}

.ghf-farm-note dt {
  color: var(--ghf-leaf);
  font-weight: 700;
}

.ghf-farm-note dd {
  margin: 0;
}

.ghf-dark {
  color: var(--ghf-paper);
  background: linear-gradient(135deg, rgba(36, 58, 43, 0.96), rgba(36, 35, 29, 0.98));
}

.ghf-section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.ghf-quality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 250, 240, 0.16);
  border: 1px solid rgba(255, 250, 240, 0.16);
}

.ghf-quality-grid article {
  min-height: 260px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 250, 240, 0.05);
}

.ghf-quality-grid span {
  display: block;
  margin-bottom: 48px;
  color: #d5a06d;
  font-family: "Shippori Mincho", serif;
  font-size: 32px;
}

.ghf-quality-grid h3 {
  margin: 0 0 12px;
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
}

.ghf-quality-grid p {
  margin: 0;
  color: rgba(255, 250, 240, 0.78);
}

.ghf-feature-image {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--ghf-shadow);
  aspect-ratio: 4 / 3;
}

.ghf-feature-image img,
.ghf-post-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ghf-produce-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.ghf-produce-list li {
  padding: 8px 13px;
  border: 1px solid rgba(79, 111, 61, 0.34);
  border-radius: 999px;
  color: var(--ghf-deep-green);
  background: rgba(255, 250, 240, 0.74);
  font-weight: 700;
}

.ghf-process {
  background: var(--ghf-paper);
}

.ghf-column-preview {
  background: #f0eadf;
}

.ghf-inline-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.ghf-text-link {
  color: var(--ghf-clay);
  font-weight: 700;
  text-decoration: none;
}

.ghf-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
}

.ghf-post-card {
  background: var(--ghf-paper);
  border: 1px solid var(--ghf-line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(21, 22, 17, 0.1);
}

.ghf-post-card a {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.ghf-post-card img {
  aspect-ratio: 16 / 10;
}

.ghf-post-card div {
  padding: 24px;
}

.ghf-post-card time {
  display: block;
  margin-bottom: 10px;
  color: var(--ghf-leaf);
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  font-weight: 700;
}

.ghf-post-card h3 {
  margin: 0 0 12px;
  font-family: "Shippori Mincho", serif;
  font-size: 23px;
  line-height: 1.45;
}

.ghf-post-card p {
  margin: 0;
  color: rgba(21, 22, 17, 0.72);
}

.ghf-cta {
  padding: clamp(74px, 10vw, 132px) 20px;
  color: var(--ghf-white);
  background: linear-gradient(rgba(21, 22, 17, 0.76), rgba(21, 22, 17, 0.78)), url("assets/hero-farm.png") center / cover;
}

.ghf-cta-inner {
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}

.ghf-cta p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.84);
}

.ghf-page-hero {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 122px) 0 clamp(38px, 5vw, 64px);
}

.ghf-legal-body {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 clamp(80px, 10vw, 132px);
}

.ghf-contact-section {
  padding-top: 0;
}

.ghf-contact-phone,
.ghf-contact-nap {
  font-weight: 700;
}

.ghf-contact-phone a,
.ghf-contact-nap a,
.ghf-footer a[href^="tel:"] {
  color: var(--ghf-clay);
}

.ghf-contact-nap {
  display: grid;
  gap: 4px;
  margin-top: 22px;
  padding: 18px 20px;
  background: var(--ghf-paper);
  border: 1px solid var(--ghf-line);
  border-radius: 6px;
}

.ghf-contact-nap p {
  margin: 0;
}

.ghf-contact-box {
  max-width: 820px;
  padding: clamp(26px, 4vw, 44px);
  background: var(--ghf-paper);
  border: 1px solid var(--ghf-line);
  border-radius: 6px;
  box-shadow: var(--ghf-shadow);
}

.ghf-contact-box .wpcf7 p {
  margin: 0 0 20px;
}

.ghf-contact-box label {
  display: grid;
  gap: 8px;
  color: var(--ghf-ink);
  font-weight: 700;
}

.ghf-contact-box input[type="text"],
.ghf-contact-box input[type="email"],
.ghf-contact-box textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(21, 22, 17, 0.22);
  border-radius: 4px;
  background: #fff;
  color: var(--ghf-ink);
}

.ghf-contact-box input[type="submit"] {
  min-height: 50px;
  padding: 12px 28px;
  border: 0;
  border-radius: 4px;
  color: var(--ghf-white);
  background: var(--ghf-clay);
  font-weight: 700;
  cursor: pointer;
}

#body_wrap.ghf-site.single-post .post_content,
.ghf-article {
  width: min(860px, calc(100% - 40px)) !important;
  margin: 0 auto !important;
  padding: clamp(70px, 9vw, 122px) 0 !important;
  color: rgba(21, 22, 17, 0.78);
}

#body_wrap.ghf-site.single-post .post_content {
  width: 100% !important;
  padding: 0 !important;
}

.ghf-article-header {
  padding-bottom: 34px;
}

.ghf-article-header time {
  display: block;
  margin-bottom: 10px;
  color: var(--ghf-leaf);
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  font-weight: 700;
}

.ghf-article-header h1 {
  margin: 0;
  color: var(--ghf-ink);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.35;
}

.ghf-article-eyecatch {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--ghf-shadow);
}

.ghf-article-body {
  margin-top: 48px;
}

#body_wrap.ghf-site.single-post .post_content h2 {
  margin: 42px 0 14px;
  color: var(--ghf-ink);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(24px, 3vw, 34px);
}

.ghf-article-back {
  margin-top: 42px;
}

.ghf-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 4vw, 56px);
  background: var(--ghf-charcoal);
  color: var(--ghf-paper);
  font-family: "Noto Sans JP", system-ui, sans-serif;
}

.ghf-footer-brand .ghf-brand-mark {
  font-size: 30px;
}

.ghf-footer p,
.ghf-footer small {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
}

.ghf-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 13px;
}

@media (max-width: 860px) {
  .ghf-header {
    padding: 16px 20px;
  }
  .ghf-nav {
    display: none;
  }
  .ghf-mobile-menu {
    display: block;
    margin-left: auto;
  }
  .ghf-mobile-menu summary {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 4px;
    list-style: none;
    cursor: pointer;
  }
  .ghf-mobile-menu summary::-webkit-details-marker {
    display: none;
  }
  .ghf-mobile-menu summary span {
    grid-area: 1 / 1;
    width: 20px;
    height: 1px;
    background: currentColor;
  }
  .ghf-mobile-menu summary span:nth-child(1) { transform: translateY(-7px); }
  .ghf-mobile-menu summary span:nth-child(3) { transform: translateY(7px); }
  .ghf-mobile-menu[open] summary span:nth-child(1) { transform: rotate(38deg); }
  .ghf-mobile-menu[open] summary span:nth-child(2) { opacity: 0; }
  .ghf-mobile-menu[open] summary span:nth-child(3) { transform: rotate(-38deg); }
  .ghf-mobile-menu nav {
    position: absolute;
    top: calc(100% - 8px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 2px;
    padding: 14px;
    color: var(--ghf-ink);
    background: rgba(255, 250, 240, 0.98);
    border: 1px solid var(--ghf-line);
    border-radius: 6px;
    box-shadow: var(--ghf-shadow);
  }
  .ghf-mobile-menu nav a {
    padding: 12px 10px;
    border-bottom: 1px solid var(--ghf-line);
    font-weight: 700;
  }
  .ghf-mobile-menu nav a:last-child {
    border-bottom: 0;
  }
  .ghf-two-column,
  .ghf-split-feature,
  .ghf-reverse,
  .ghf-post-grid {
    grid-template-columns: 1fr;
  }
  .ghf-reverse .ghf-feature-image {
    order: 0;
  }
  .ghf-quality-grid {
    grid-template-columns: 1fr;
  }
  .ghf-inline-heading,
  .ghf-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .ghf-hero {
    min-height: 86svh;
  }
}

@media (max-width: 520px) {
  .ghf-brand-mark {
    font-size: 25px;
  }
  .ghf-hero-inner,
  .ghf-section-inner {
    width: min(100% - 32px, 1120px);
  }
  .ghf-hero-actions,
  .ghf-button {
    width: 100%;
  }
  .ghf-farm-note div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
