/** Shopify CDN: Minification failed

Line 27:0 All "@import" rules must come first

**/
/* ================================================================
   GOYAMA FOODS — section-contact-form.css
   ================================================================ */

:root {
  --goyama-brown: #502e19;
  --goyama-brown-light: #7a4d30;
  --goyama-brown-pale: #f5ede4;
  --goyama-brown-cream: #faf6f1;
  --goyama-green: #4c6445;
  --goyama-green-light: #6b8a63;
  --goyama-green-pale: #eaf1e8;
  --goyama-green-dark: #2f3e2d;
  --goyama-sand: #e8d9c8;
  --goyama-text: #2a1f16;
  --goyama-text-muted: #7a6558;
  --goyama-white: #fffdf9;
  --goyama-serif: 'Cormorant Garamond', Georgia, serif;
  --goyama-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ─── WRAPPER ─── */
.goyama-contact-wrap {
  font-family: var(--goyama-sans);
  color: var(--goyama-text);
  overflow-x: hidden;
}

/* ─── PAGE HERO ─── */
.goyama-page-hero {
  background: var(--goyama-brown-cream);
  padding: 80px 72px 72px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--goyama-sand);
}

.goyama-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(80, 46, 25, 0.06) 1px, transparent 1px),
    radial-gradient(circle, rgba(80, 46, 25, 0.04) 1.5px, transparent 1.5px);
  background-size: 32px 32px, 64px 64px;
  background-position: 0 0, 16px 16px;
  pointer-events: none;
}

.goyama-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.goyama-page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--goyama-green);
  font-weight: 500;
  margin-bottom: 20px;
}

.goyama-page-hero-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--goyama-green);
}

.goyama-page-hero-title {
  font-family: var(--goyama-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--goyama-brown);
  margin-bottom: 16px;
}

.goyama-page-hero-title em {
  font-style: italic;
  color: var(--goyama-green);
}

.goyama-page-hero-sub {
  font-size: 15px;
  color: var(--goyama-text-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── CONTACT LAYOUT ─── */
.goyama-contact-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  min-height: 640px;
}

/* ─── LEFT PANEL — INFO ─── */
.goyama-contact-info {
  background: var(--goyama-green-dark);
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
}

.goyama-contact-info::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    radial-gradient(circle, #d8ebd5 1px, transparent 1px),
    radial-gradient(circle, #d8ebd5 1.5px, transparent 1.5px);
  background-size: 32px 32px, 64px 64px;
  background-position: 0 0, 16px 16px;
  pointer-events: none;
}

.goyama-contact-info-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a8c9a3;
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.goyama-contact-info-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: #a8c9a3;
}

.goyama-contact-info-title {
  font-family: var(--goyama-serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
  color: #d8ebd5;
  line-height: 1.12;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.goyama-contact-info-title em {
  font-style: italic;
  color: #a8c9a3;
}

.goyama-contact-info-body {
  font-size: 14px;
  color: rgba(216, 235, 213, 0.65);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 48px;
  max-width: 340px;
  position: relative;
  z-index: 1;
}

.goyama-contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.goyama-contact-detail {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.goyama-contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #a8c9a3;
  transition: background 0.2s;
}

.goyama-contact-detail:hover .goyama-contact-detail-icon {
  background: var(--goyama-brown);
}

.goyama-contact-detail-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a8c9a3;
  font-weight: 500;
  margin-bottom: 5px;
}

.goyama-contact-detail-value {
  font-size: 14px;
  color: #d8ebd5;
  font-weight: 400;
  line-height: 1.6;
}

.goyama-contact-detail-value a {
  color: #d8ebd5;
  text-decoration: none;
  transition: color 0.2s;
}

.goyama-contact-detail-value a:hover {
  color: #a8c9a3;
}

/* Hours strip */
.goyama-hours-strip {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(216, 235, 213, 0.12);
  border-radius: 2px;
  padding: 18px 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.goyama-hours-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6dbe6d;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(109, 190, 109, 0.6);
  animation: goyama-pulse 2s infinite;
}

@keyframes goyama-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(109, 190, 109, 0.6); }
  50% { box-shadow: 0 0 16px rgba(109, 190, 109, 0.9); }
}

.goyama-hours-text {
  font-size: 12px;
  color: rgba(216, 235, 213, 0.7);
  font-weight: 300;
}

.goyama-hours-text strong {
  color: #d8ebd5;
  font-weight: 500;
}

/* Social links */
.goyama-info-socials {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.goyama-info-social {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  color: #d8ebd5;
}

.goyama-info-social:hover {
  background: var(--goyama-brown);
}

/* ─── RIGHT PANEL — FORM ─── */
.goyama-contact-form-wrap {
  background: var(--goyama-white);
  padding: 72px 64px;
  border-left: 1px solid var(--goyama-sand);
}

.goyama-form-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--goyama-green);
  font-weight: 500;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.goyama-form-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--goyama-green);
}

.goyama-form-title {
  font-family: var(--goyama-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--goyama-brown);
  line-height: 1.12;
  margin-bottom: 8px;
}

.goyama-form-title em {
  font-style: italic;
  color: var(--goyama-green);
}

.goyama-form-sub {
  font-size: 14px;
  color: var(--goyama-text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 36px;
}

.goyama-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.goyama-form-group {
  margin-bottom: 20px;
}

.goyama-form-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--goyama-text-muted);
  font-weight: 500;
  margin-bottom: 8px;
}

.goyama-form-label span {
  color: var(--goyama-green);
}

.goyama-form-input,
.goyama-form-select,
.goyama-form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--goyama-sand);
  border-radius: 2px;
  font-family: var(--goyama-sans);
  font-size: 14px;
  color: var(--goyama-text);
  background: var(--goyama-white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.goyama-form-input::placeholder,
.goyama-form-textarea::placeholder {
  color: rgba(122, 101, 88, 0.4);
}

.goyama-form-input:focus,
.goyama-form-select:focus,
.goyama-form-textarea:focus {
  border-color: var(--goyama-green);
  box-shadow: 0 0 0 3px rgba(76, 100, 69, 0.08);
}

.goyama-form-input--error {
  border-color: #c0392b !important;
}

.goyama-form-textarea {
  resize: vertical;
  min-height: 128px;
  line-height: 1.6;
}

.goyama-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a6558' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.goyama-btn-primary {
  background: var(--goyama-brown);
  color: #fff;
  padding: 14px 36px;
  border: none;
  border-radius: 2px;
  font-family: var(--goyama-sans);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.goyama-btn-primary:hover {
  background: var(--goyama-brown-light);
  transform: translateY(-1px);
}

.goyama-btn-primary svg {
  transition: transform 0.2s;
}

.goyama-btn-primary:hover svg {
  transform: translateX(3px);
}

.goyama-form-note {
  font-size: 12px;
  color: var(--goyama-text-muted);
  margin-top: 14px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 6px;
}

.goyama-form-note svg {
  color: var(--goyama-green);
  flex-shrink: 0;
}

.goyama-field-error {
  display: block;
  font-size: 12px;
  color: #c0392b;
  margin-top: 6px;
}

.goyama-form-error-msg {
  background: #fff0f0;
  border: 1px solid #f5c6c6;
  border-radius: 2px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 13px;
  color: #c0392b;
}

/* ─── SUCCESS STATE ─── */
.goyama-form-success {
  text-align: center;
  padding: 60px 20px;
}

.goyama-success-icon {
  width: 68px;
  height: 68px;
  background: var(--goyama-green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--goyama-green);
}

.goyama-success-title {
  font-family: var(--goyama-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--goyama-brown);
  margin-bottom: 12px;
}

.goyama-success-body {
  font-size: 14px;
  color: var(--goyama-text-muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 320px;
  margin: 0 auto;
}

/* ─── MAP SECTION ─── */
.goyama-map-section {
  border-top: 1px solid var(--goyama-sand);
}

.goyama-map-wrap {
  width: 100%;
  height: 360px;
  background: var(--goyama-green-pale);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.goyama-map-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #eaf1e8 0%, #d8e8d4 50%, #c8dcc3 100%);
}

.goyama-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(76, 100, 69, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 100, 69, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.goyama-map-roads {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.goyama-map-card {
  position: relative;
  z-index: 2;
  background: var(--goyama-white);
  border: 1px solid var(--goyama-sand);
  border-radius: 4px;
  padding: 24px 28px;
  box-shadow: 0 12px 48px rgba(80, 46, 25, 0.14);
  max-width: 320px;
  width: 90%;
  text-align: center;
}

.goyama-map-pin {
  width: 48px;
  height: 48px;
  background: var(--goyama-brown);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(80, 46, 25, 0.3);
}

.goyama-map-pin svg {
  transform: rotate(45deg);
  color: #fff;
}

.goyama-map-card-name {
  font-family: var(--goyama-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--goyama-brown);
  margin-bottom: 6px;
}

.goyama-map-card-addr {
  font-size: 12px;
  color: var(--goyama-text-muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 16px;
}

.goyama-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--goyama-green);
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.2s;
}

.goyama-map-link:hover {
  gap: 10px;
}

/* ─── FAQ SECTION ─── */
.goyama-faq-section {
  padding: 96px 72px;
  background: var(--goyama-brown-cream);
  border-top: 1px solid var(--goyama-sand);
}

.goyama-faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.goyama-section-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--goyama-green);
  font-weight: 500;
  margin-bottom: 14px;
  display: block;
}

.goyama-section-title {
  font-family: var(--goyama-serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  color: var(--goyama-brown);
  line-height: 1.1;
}

.goyama-section-title em {
  font-style: italic;
  color: var(--goyama-green);
}

.goyama-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 900px;
  margin: 0 auto;
  background: var(--goyama-sand);
  border: 1px solid var(--goyama-sand);
  border-radius: 4px;
  overflow: hidden;
}

.goyama-faq-item {
  background: var(--goyama-white);
  padding: 28px 32px;
  cursor: pointer;
  transition: background 0.2s;
}

.goyama-faq-item:hover {
  background: var(--goyama-brown-pale);
}

.goyama-faq-question {
  font-size: 14px;
  font-weight: 500;
  color: var(--goyama-brown);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--goyama-sans);
}

.goyama-faq-question svg {
  flex-shrink: 0;
  color: var(--goyama-green);
  transition: transform 0.25s;
  margin-top: 2px;
}

.goyama-faq-item.open .goyama-faq-question svg {
  transform: rotate(45deg);
}

.goyama-faq-answer {
  font-size: 13px;
  color: var(--goyama-text-muted);
  line-height: 1.75;
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.goyama-faq-item.open .goyama-faq-answer {
  max-height: 200px;
  opacity: 1;
}

/* ─── RESPONSIVE ─── */
@media screen and (max-width: 900px) {
  .goyama-page-hero {
    padding: 60px 32px 52px;
  }

  .goyama-contact-section {
    grid-template-columns: 1fr;
  }

  .goyama-contact-info {
    padding: 52px 32px;
  }

  .goyama-contact-form-wrap {
    padding: 52px 32px;
    border-left: none;
    border-top: 1px solid var(--goyama-sand);
  }

  .goyama-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .goyama-faq-section {
    padding: 64px 24px;
  }

  .goyama-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 600px) {
  .goyama-page-hero {
    padding: 48px 24px 40px;
  }

  .goyama-contact-info {
    padding: 44px 24px;
  }

  .goyama-contact-form-wrap {
    padding: 44px 24px;
  }
}