/* Growfarm landing page */

:root {
  --color-berry: #a83345;
  --color-berry-deep: #7d2032;
  --color-leaf: #244a36;
  --color-leaf-soft: #3f6d57;
  --color-cream: #f7f2ea;
  --color-cream-deep: #efe2d1;
  --color-sand: #dcc2aa;
  --color-text: #2b2926;
  --color-text-soft: #6d645d;
  --color-white: #fffdf9;
  --shadow-soft: 0 18px 45px rgba(72, 43, 31, 0.1);
  --shadow-strong: 0 30px 60px rgba(43, 30, 23, 0.18);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --font-sans: 'Noto Sans KR', sans-serif;
  --font-serif: 'Noto Serif KR', serif;
  --header-h: 78px;
  --container: min(1180px, calc(100% - 2.5rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(221, 194, 170, 0.28), transparent 34%),
    radial-gradient(circle at right 8% top 12%, rgba(212, 229, 216, 0.22), transparent 28%),
    linear-gradient(180deg, #f8f4ed 0%, #fffdf9 22%, #f5efe7 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.46), transparent 18%),
    radial-gradient(circle at 86% 12%, rgba(255, 243, 234, 0.42), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(214, 229, 219, 0.24), transparent 24%);
  opacity: 0.72;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(255, 252, 247, 0.82);
  border-bottom: 1px solid rgba(79, 56, 42, 0.08);
}

.header::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 51, 69, 0.28), transparent);
}

.header-inner {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-leaf);
}

.logo-img {
  display: block;
  height: 58px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(36, 74, 54, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 24px rgba(43, 30, 23, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.96rem;
  font-weight: 600;
  transition: color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--color-berry);
  background: rgba(168, 51, 69, 0.08);
  outline: none;
  transform: translateY(-1px);
}

.nav-link-icon {
  display: inline-flex;
  width: 1.1rem;
  height: 1.1rem;
  color: var(--color-berry);
}

.nav-link-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.section {
  position: relative;
  padding: 6rem 0;
}

.section-head {
  margin-bottom: 2.75rem;
  text-align: center;
}

.section-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: var(--color-leaf);
}

.section-title--has-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.section-title-icon {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  color: var(--color-berry);
}

.section-title-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.section-desc {
  max-width: 640px;
  margin: 0.9rem auto 0;
  color: var(--color-text-soft);
  font-size: 1.02rem;
}

.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5.5rem 1.25rem 8.5rem;
  overflow: hidden;
  text-align: center;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  top: 12%;
  left: 8%;
  width: 240px;
  height: 240px;
  background: rgba(255, 222, 205, 0.2);
}

.hero::after {
  right: 5%;
  bottom: 16%;
  width: 340px;
  height: 340px;
  background: rgba(168, 51, 69, 0.18);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--color-leaf);
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease, transform 5.2s ease;
}

.hero-bg-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 23, 20, 0.3), rgba(17, 23, 20, 0.68)),
    linear-gradient(120deg, rgba(36, 74, 54, 0.4), rgba(168, 51, 69, 0.3));
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(1120px, 100%);
  color: var(--color-white);
}

.hero-head {
  max-width: 840px;
  margin: 0 auto;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.2rem;
  padding: 0.45rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 249, 243, 0.92);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 6vw, 4.8rem);
  line-height: 1.2;
  letter-spacing: -0.05em;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.hero-title--has-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-title-icon {
  display: inline-flex;
  width: clamp(2rem, 4vw, 2.65rem);
  height: clamp(2rem, 4vw, 2.65rem);
  color: rgba(255, 250, 241, 0.95);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.hero-title-icon svg {
  width: 100%;
  height: 100%;
}

.hero-tagline {
  max-width: 720px;
  margin: 1.5rem auto 0;
  color: rgba(255, 249, 243, 0.9);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 0.95rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}

.hero-btn:hover,
.hero-btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.hero-btn--primary {
  background: linear-gradient(135deg, #cb566b, var(--color-berry));
  color: #fff;
  box-shadow: 0 18px 30px rgba(168, 51, 69, 0.25);
}

.hero-btn--primary:hover,
.hero-btn--primary:focus-visible {
  box-shadow: 0 22px 34px rgba(168, 51, 69, 0.32);
}

.hero-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.hero-btn--ghost:hover,
.hero-btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.hero-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 760px;
  margin: 2.5rem auto 0;
}

.hero-highlight-card {
  padding: 1.3rem 1.35rem 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px 24px 28px 22px;
  background: rgba(255, 248, 241, 0.14);
  backdrop-filter: blur(12px);
  text-align: left;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.hero-highlight-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: rgba(255, 232, 223, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-highlight-card strong {
  display: block;
  font-size: 1.06rem;
  line-height: 1.45;
}

.hero-highlight-card p {
  margin: 0.65rem 0 0;
  color: rgba(255, 249, 243, 0.8);
  font-size: 0.93rem;
}

.hero-slides-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.4rem;
  z-index: 4;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.hero-slides-nav-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(22, 22, 22, 0.22);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.hero-slide-thumb {
  position: relative;
  width: clamp(64px, 10vw, 88px);
  aspect-ratio: 8 / 5;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.52);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.hero-slide-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.hero-slide-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  filter: saturate(1.06) contrast(1.04);
  transition: opacity 0.22s ease, transform 0.22s ease, filter 0.22s ease;
}

.hero-slide-thumb:hover,
.hero-slide-thumb:focus-visible,
.hero-slide-thumb.is-active {
  border-color: rgba(255, 255, 255, 0.98);
  transform: translateY(-3px);
  outline: none;
}

.hero-slide-thumb:hover img,
.hero-slide-thumb:focus-visible img,
.hero-slide-thumb.is-active img {
  opacity: 1;
  transform: scale(1.03);
  filter: saturate(1.15) contrast(1.08);
}

.hero-slide-thumb.is-active {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.28), 0 20px 34px rgba(0, 0, 0, 0.32);
}

.hero-slide-thumb.is-active::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.06));
}

.growfarm {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 241, 0.96));
}

.growfarm-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.growfarm-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}

.growfarm-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.growfarm-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33, 41, 36, 0.04), rgba(33, 41, 36, 0.38));
}

.growfarm-visual-badge {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1;
  padding: 1rem 1.15rem;
  border-radius: 20px;
  background: rgba(255, 252, 247, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 34px rgba(43, 30, 23, 0.12);
}

.growfarm-visual-badge span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-berry);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.growfarm-visual-badge strong {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  color: var(--color-leaf);
}

.growfarm-copy {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.growfarm-text {
  padding: 2rem 2rem 1.4rem;
  border-radius: 34px 28px 32px 24px;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(120, 93, 73, 0.08);
  box-shadow: 0 18px 36px rgba(72, 43, 31, 0.08);
}

.growfarm-text p {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--color-text);
}

.growfarm-text p:last-child {
  margin-bottom: 0;
}

.growfarm-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  padding: 1.35rem 1.2rem;
  border-radius: 24px 18px 26px 20px;
  background: linear-gradient(180deg, rgba(255, 248, 241, 0.98), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(168, 51, 69, 0.1);
  box-shadow: 0 12px 24px rgba(87, 56, 46, 0.06);
}

.feature-card-number {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--color-berry);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.04rem;
  color: var(--color-leaf);
}

.feature-card p {
  margin: 0.55rem 0 0;
  color: var(--color-text-soft);
  font-size: 0.93rem;
}

.store {
  background:
    radial-gradient(circle at right top, rgba(223, 194, 170, 0.28), transparent 28%),
    linear-gradient(180deg, #fdf8f2 0%, #f6eee4 100%);
}

.store-intro-card {
  max-width: 760px;
  margin: 0 auto 1.5rem;
  padding: 1.6rem 1.8rem;
  border-radius: 30px 24px 28px 22px;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(120, 93, 73, 0.08);
  box-shadow: 0 16px 34px rgba(72, 43, 31, 0.08);
  text-align: center;
}

.store-intro-kicker {
  margin: 0 0 0.5rem;
  color: var(--color-berry);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-intro-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  line-height: 1.3;
  color: var(--color-leaf);
}

.store-intro-card p:last-child {
  margin: 0.7rem 0 0;
  color: var(--color-text-soft);
}

.store-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.store-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 280px;
  padding: 1.85rem;
  border-radius: 28px 22px 30px 24px;
  border: 1px solid rgba(120, 93, 73, 0.08);
  background: rgba(255, 253, 249, 0.94);
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(72, 43, 31, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.store-card:hover,
.store-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(168, 51, 69, 0.26);
  box-shadow: 0 24px 40px rgba(87, 56, 46, 0.14);
  outline: none;
}

.store-card-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: rgba(168, 51, 69, 0.08);
  color: var(--color-berry);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 88px;
  margin-bottom: 1rem;
}

.store-brand-logo img {
  width: auto;
  max-width: 160px;
  max-height: 56px;
  object-fit: contain;
}

.store-card-desc {
  margin: 0 0 1rem;
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

.store-cta {
  margin-top: auto;
  color: var(--color-berry);
  font-weight: 700;
}

.story {
  background:
    radial-gradient(circle at left bottom, rgba(198, 225, 209, 0.28), transparent 28%),
    linear-gradient(180deg, #f3f6f2 0%, #edf4ee 100%);
}

.story-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.story-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 320px;
  padding: 1.85rem;
  border-radius: 26px 30px 22px 28px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(36, 74, 54, 0.08);
  box-shadow: 0 16px 32px rgba(57, 82, 66, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.story-card:hover,
.story-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(36, 74, 54, 0.2);
  box-shadow: 0 24px 40px rgba(57, 82, 66, 0.14);
  outline: none;
}

.story-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 118px;
  margin-bottom: 1.1rem;
  padding: 1.1rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff4ee, #f6ebdf);
}

.story-card-img--youtube {
  background: linear-gradient(135deg, #fff3f0, #ffe0d8);
}

.story-card-img img {
  width: auto;
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.story-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.story-card-label {
  color: var(--color-berry);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-card h3 {
  margin: 0.65rem 0 0;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1.3;
  color: var(--color-leaf);
}

.story-card-body p {
  margin: 0.8rem 0 1.1rem;
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

.story-cta {
  margin-top: auto;
  color: var(--color-berry);
  font-weight: 700;
}

.contact {
  background:
    radial-gradient(circle at top right, rgba(199, 218, 205, 0.3), transparent 28%),
    linear-gradient(180deg, #f8fbf8 0%, #f2f7f1 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
  gap: 1.25rem;
}

.contact-panel,
.contact-side-card {
  padding: 1.9rem;
  border-radius: 30px 24px 28px 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(36, 74, 54, 0.08);
  box-shadow: 0 16px 34px rgba(57, 82, 66, 0.08);
}

.location-contact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem 1rem;
  margin: 0;
}

.location-contact dt {
  color: var(--color-leaf);
  font-weight: 800;
}

.location-contact dd {
  margin: 0;
  color: var(--color-text);
}

.location-contact a {
  color: var(--color-berry);
  text-decoration: none;
}

.location-contact a:hover,
.location-contact a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.account-num {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.location-note {
  margin: 1rem 0 0;
  color: var(--color-text-soft);
  font-size: 0.94rem;
}

.contact-side-kicker {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--color-berry);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-side-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.65rem;
  line-height: 1.3;
  color: var(--color-leaf);
}

.contact-side-card p {
  margin: 0.85rem 0 0;
  color: var(--color-text-soft);
}

.contact-checklist {
  margin: 1rem 0 1.35rem;
  padding: 0;
  list-style: none;
}

.contact-checklist li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--color-text);
}

.contact-checklist li + li {
  margin-top: 0.7rem;
}

.contact-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-berry), #d97a87);
  transform: translateY(-50%);
}

.contact-side-btn {
  min-width: 0;
}

.location {
  background: linear-gradient(180deg, #fffdf9 0%, #f7efe4 100%);
}

.location-body {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  max-width: 860px;
  margin: 0 auto;
}

.location-summary-card {
  padding: 1.45rem 1.55rem;
  border-radius: 28px 22px 30px 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(120, 93, 73, 0.08);
  box-shadow: 0 16px 34px rgba(72, 43, 31, 0.08);
  text-align: center;
}

.location-address-line {
  margin: 0;
  font-size: 1.08rem;
  color: var(--color-text);
}

.location-address-line strong {
  color: var(--color-leaf);
  margin-right: 0.35rem;
}

.location-summary-copy {
  margin: 0.6rem 0 0;
  color: var(--color-text-soft);
}

.location-map {
  overflow: hidden;
  border-radius: 34px 28px 32px 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(120, 93, 73, 0.08);
  box-shadow: 0 24px 46px rgba(43, 30, 23, 0.12);
}

.location-map-preview {
  display: block;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(180deg, #edf2ee, #dde6de);
  transition: transform 0.22s ease, filter 0.22s ease;
}

.location-map-preview:hover,
.location-map-preview:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.02);
  outline: none;
}

.location-map-preview img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.location-map-caption {
  display: block;
  padding: 0.9rem 1.2rem 0.95rem;
  color: var(--color-text-soft);
  font-size: 0.94rem;
}

.location-map-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding: 1rem 1.25rem 1.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 244, 236, 0.95));
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 0.88rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-leaf-soft), var(--color-leaf));
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(36, 74, 54, 0.2);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn-directions:hover,
.btn-directions:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(36, 74, 54, 0.24);
  outline: none;
}

.footer {
  padding: 3rem 1.25rem 3.25rem;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(212, 121, 136, 0.12), transparent 32%),
    linear-gradient(180deg, #20362a 0%, #16251d 100%);
  color: rgba(255, 251, 247, 0.88);
}

.footer p {
  margin: 0 0 0.4rem;
}

.footer-logo {
  margin-bottom: 0.85rem;
}

.footer-logo-img {
  display: block;
  height: 82px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}

.footer-contact {
  margin: 1rem 0 0;
  font-style: normal;
  line-height: 1.8;
  color: rgba(255, 251, 247, 0.82);
}

.footer-contact a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:nth-child(2n),
.store-card:nth-child(2n),
.story-card:nth-child(2n) {
  border-radius: 22px 30px 24px 28px;
}

@media (min-width: 1025px) {
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 420px);
    column-gap: 2.25rem;
    align-items: end;
  }

  .hero-head {
    max-width: 760px;
    margin: 0;
    text-align: left;
  }

  .hero-title--has-icon,
  .hero-actions {
    justify-content: flex-start;
  }

  .hero-kicker {
    justify-content: flex-start;
  }

  .hero-tagline {
    margin-left: 0;
  }

  .hero-highlights {
    grid-column: 2;
    grid-row: 1 / span 2;
    max-width: none;
    margin: 0;
  }

  .hero-highlight-card:nth-child(1) {
    transform: translateX(10px);
  }

  .hero-highlight-card:nth-child(2) {
    transform: translateY(16px);
  }

  .hero-highlight-card:nth-child(3) {
    transform: translateX(-8px) translateY(8px);
  }

  .growfarm .section-head,
  .store .section-head,
  .story .section-head,
  .contact .section-head,
  .location .section-head {
    text-align: left;
    max-width: 720px;
  }

  .growfarm .section-desc,
  .store .section-desc,
  .story .section-desc,
  .contact .section-desc,
  .location .section-desc {
    margin-left: 0;
    margin-right: 0;
  }

  .store-intro-card {
    margin-left: 0;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-bg-slide,
  .reveal-on-scroll,
  .hero-btn,
  .store-card,
  .story-card,
  .btn-directions,
  .hero-slide-thumb,
  .nav a {
    transition: none !important;
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 5rem 0;
  }

  .growfarm-content,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .growfarm-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 900px) {
  .store-cards,
  .story-cards,
  .growfarm-features {
    grid-template-columns: 1fr;
  }

  .growfarm-visual img {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 72px;
    --container: min(100% - 1.5rem, 1180px);
  }

  .header-inner {
    min-height: var(--header-h);
  }

  .logo-img {
    height: 50px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    right: 0;
    padding: 0.7rem;
    border-radius: 24px;
    background: rgba(255, 253, 249, 0.96);
    border: 1px solid rgba(120, 93, 73, 0.08);
    box-shadow: 0 26px 45px rgba(43, 30, 23, 0.14);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.32s ease, opacity 0.22s ease, transform 0.22s ease;
  }

  .nav.is-open {
    max-height: calc(100vh - var(--header-h) - 24px);
    max-height: calc(100dvh - var(--header-h) - 24px);
    opacity: 1;
    transform: translateY(0);
    overflow-y: auto;
  }

  .nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .nav a {
    justify-content: flex-start;
    border-radius: 16px;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: auto;
    padding: 4.5rem 1rem 8rem;
  }

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

  .hero-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
  }

  .hero-title {
    font-size: clamp(2.3rem, 9vw, 3.4rem);
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-highlight-card,
  .growfarm-text,
  .contact-panel,
  .contact-side-card,
  .store-card,
  .story-card,
  .store-intro-card,
  .location-summary-card {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .hero-highlight-card:nth-child(1),
  .hero-highlight-card:nth-child(2),
  .hero-highlight-card:nth-child(3) {
    transform: none;
  }

}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-btn,
  .btn-directions {
    width: 100%;
  }

  .hero-slides-nav-inner {
    gap: 0.45rem;
    padding: 0.45rem 0.55rem;
  }

  .hero-slide-thumb {
    width: 58px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .story-card h3,
  .store-intro-card h3,
  .contact-side-card h3 {
    font-size: 1.38rem;
  }
}
