/* 1. 전체 색상과 기본 설정: 색상은 여기서 한 번에 바꿀 수 있습니다. */
:root {
  --paper: #f8f8f2;
  --white: #ffffff;
  --forest: #244b38;
  --forest-dark: #193c2c;
  --ink: #253c2f;
  --muted: #6b756b;
  --line: #dce1d5;
  --sage: #eaf0e3;
  --lime: #d7e7b7;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Malgun Gothic", "Apple SD Gothic Neo", sans-serif; font-size: 16px; line-height: 1.8; word-break: keep-all; overflow-wrap: anywhere; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible { outline: 3px solid #809e45; outline-offset: 6px; }
img { display: block; max-width: 100%; }
figure, p, h1, h2, h3 { margin: 0; }
svg { display: block; }
::selection { background: var(--lime); color: var(--forest-dark); }
.container { width: min(1240px, calc(100% - 96px)); margin-inline: auto; }
.section { padding-block: 100px; }
.eyebrow { margin-bottom: 22px; color: var(--forest); font-size: 11px; font-weight: 700; letter-spacing: .16em; }
h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 700; line-height: 1.5; letter-spacing: -.065em; }
.text-link { display: inline-flex; align-items: center; gap: 20px; font-size: 14px; font-weight: 700; }
.text-link:hover { text-decoration: underline; text-underline-offset: 6px; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 26px; min-height: 54px; padding: 13px 24px; border: 1px solid transparent; border-radius: 4px; font-size: 14px; font-weight: 700; transition: background .2s, transform .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--forest); color: white; }
.button-primary:hover { background: var(--forest-dark); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 100; padding: 12px 20px; background: var(--forest); color: white; }
.skip-link:focus { top: 12px; }

/* 2. 상단 로고와 메뉴 */
.site-header { position: sticky; top: 0; z-index: 20; background: var(--paper); border-bottom: 1px solid var(--line); }
.header-inner { min-height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; color: var(--forest); }
.brand-mark { width: 35px; height: 43px; }
.brand-type { display: flex; flex-direction: column; }
.brand-type strong { font-size: 24px; line-height: 1.3; letter-spacing: -.08em; }
.brand-type > span { margin-top: 3px; font-size: 8px; letter-spacing: .19em; line-height: 1.4; }
.main-nav { display: flex; gap: 32px; margin-left: auto; margin-right: 32px; }
.main-nav a { padding-block: 14px; font-size: 13px; font-weight: 700; }
.main-nav a:hover { color: #688339; }
.header-contact { display: flex; align-items: center; gap: 24px; padding: 9px 18px; border: 1px solid var(--forest); border-radius: 4px; font-size: 12px; font-weight: 700; }
.header-contact:hover { background: var(--forest); color: white; }

/* 3. 첫 화면 */
.hero { display: grid; grid-template-columns: 1fr 1.05fr; gap: 36px; padding-top: 38px; padding-bottom: 42px; align-items: center; }
.hero-copy { padding-block: 28px; }
.hero-copy .eyebrow { display: flex; align-items: center; gap: 9px; font-size: 12px; letter-spacing: .03em; }
.status-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #6b8746; }
h1 { margin-block: 28px 26px; font-size: clamp(38px, 4.5vw, 62px); line-height: 1.38; letter-spacing: -.075em; font-weight: 700; }
h1 em { font-style: normal; color: #61804c; }
.hero-description { color: var(--muted); font-size: 15px; line-height: 1.95; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; margin-top: 34px; }
.hero-footnote { display: flex; gap: 12px; align-items: center; margin-top: 62px; color: var(--muted); font-size: 11px; letter-spacing: .03em; }
.small-line { width: 32px; height: 1px; background: #9da88c; }
.hero-image { position: relative; min-width: 0; height: 580px; overflow: hidden; border-radius: 4px 96px 4px 4px; background: var(--sage); }
.hero-image::after { position: absolute; inset: 55% 0 0; content: ""; background: linear-gradient(transparent, rgb(12 35 20 / 72%)); pointer-events: none; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.photo-label { position: absolute; top: 24px; left: 24px; padding: 7px 12px; border-radius: 2px; background: var(--paper); color: var(--forest); font-size: 9px; letter-spacing: .14em; font-weight: 700; }
.hero-image figcaption { position: absolute; bottom: 24px; inset-inline: 26px; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: white; font-size: 12px; }
.hero-image figcaption > span:last-child { font-size: 10px; }
.hero-image figcaption > span:last-child span { margin-left: 12px; }
.service-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); padding-block: 25px; }
.service-strip p { display: flex; justify-content: center; align-items: center; gap: 14px; font-size: 13px; font-weight: 700; }
.service-strip p + p { border-left: 1px solid var(--line); }
.service-strip p > span { font-size: 10px; color: #727f62; font-weight: 400; }

/* 4. 농장 소개 */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.about-copy { padding-top: 12px; color: var(--muted); font-size: 14px; }
.about-copy p + p { margin-top: 18px; }
.about-copy .text-link { margin-top: 26px; color: var(--forest); }

/* 5. 주요 수종 */
.plants-section { background: var(--sage); }
.section-heading { display: flex; justify-content: space-between; gap: 30px; align-items: flex-end; margin-bottom: 40px; }
.section-heading .eyebrow { margin-bottom: 14px; }
.section-description { padding-bottom: 7px; color: var(--muted); font-size: 13px; line-height: 1.9; }
.plant-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.plant-card { display: flex; flex-direction: column; background: var(--paper); border-radius: 5px; overflow: hidden; }
.plant-image { position: relative; aspect-ratio: 1.18; overflow: hidden; }
.plant-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; transition: transform .4s; }
.plant-card:hover img { transform: scale(1.035); }
.image-index { position: absolute; bottom: 16px; left: 18px; padding: 4px 9px; background: var(--paper); color: var(--forest); font-size: 9px; font-weight: 700; letter-spacing: .1em; }
.plant-copy { flex: 1; display: flex; flex-direction: column; padding: 24px; }
.plant-kicker { color: var(--muted); font-size: 11px; }
.plant-copy h3 { margin-top: 3px; margin-bottom: 17px; font-size: 23px; letter-spacing: -.05em; line-height: 1.5; }
.plant-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 28px; padding: 0; list-style: none; }
.plant-tags li { border: 1px solid var(--line); padding: 3px 8px; border-radius: 3px; font-size: 11px; color: #596450; }
.plant-link { display: flex; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 15px; border-top: 1px solid var(--line); font-size: 12px; font-weight: 700; }
.plant-link:hover { color: #63813f; }
.more-plants { display: flex; align-items: baseline; gap: 28px; padding-top: 29px; margin-top: 30px; border-top: 1px solid #cbd5c1; }
.more-plants h3 { flex-shrink: 0; font-size: 13px; }
.more-plants p { color: #5d6956; font-size: 12px; line-height: 1.9; }
.availability-note { margin-top: 18px; color: #64705e; font-size: 11px; }

/* 6. 농장 사진 */
.gallery-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; }
.gallery-grid img { width: 100%; height: 340px; object-fit: cover; border-radius: 4px; }
.gallery-grid figure:first-child img { object-position: center 45%; }
.gallery-grid figcaption { margin-top: 15px; font-size: 12px; }
.gallery-grid figcaption span { padding-right: 12px; font-size: 10px; color: var(--muted); }

/* 7. 상담 영역과 하단 정보 */
.contact-section { background: var(--forest); color: var(--paper); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 90px; padding-block: 76px; }
.contact-copy .eyebrow { color: var(--lime); }
.contact-copy h2 { font-size: 42px; }
.contact-copy > p:not(.eyebrow) { margin-top: 20px; color: #cad6c8; font-size: 13px; }
.contact-topics { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.contact-topics span { font-size: 10px; padding: 4px 10px; border: 1px solid #65816b; border-radius: 30px; color: #e0e8da; }
.contact-details { padding-top: 10px; }
.contact-label { font-size: 11px; color: var(--lime); }
.phone-number { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-block: 12px; font-size: clamp(26px, 3.1vw, 44px); line-height: 1.4; font-weight: 700; letter-spacing: -.035em; white-space: nowrap; }
.phone-number > span { font-size: 29px; font-weight: 400; }
.contact-help { margin-top: 10px; color: #cad6c8; font-size: 12px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 25px; }
.button-light { background: var(--lime); color: var(--forest-dark); }
.button-light:hover { background: #e3efce; }
.button-outline { border-color: #819a84; color: var(--paper); }
.button-outline:hover { background: #365d45; }
.address-block { margin-top: 28px; padding-top: 22px; border-top: 1px solid #50715b; }
address { margin-top: 5px; font-size: 14px; font-style: normal; }
.visit-note { margin-top: 5px; color: #cad6c8; font-size: 11px; }
.site-footer { padding-block: 38px; }
.footer-inner { display: flex; justify-content: space-between; gap: 35px; }
.footer-brand { display: block; margin-bottom: 12px; font-size: 19px; letter-spacing: -.05em; }
.footer-inner p { margin-top: 4px; font-size: 11px; color: var(--muted); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: flex-end; align-content: start; font-size: 11px; }
.footer-links a { padding-block: 5px; }
.footer-links a:hover { text-decoration: underline; }
.footer-links > span { flex-basis: 100%; text-align: right; font-size: 9px; color: var(--muted); letter-spacing: .06em; }
.mobile-contact { display: none; }

/* 8. 태블릿과 휴대폰 화면 */
@media (min-width: 1600px) {
  .hero-image { height: 620px; }
}
@media (max-width: 1080px) {
  .container { width: calc(100% - 64px); }
  .main-nav { gap: 22px; margin-right: 12px; }
  .hero { gap: 24px; }
  .hero-image { height: 540px; }
  .hero-actions { gap: 20px; }
  .hero-actions .button { gap: 16px; padding-inline: 18px; }
  .hero-actions .text-link { font-size: 12px; gap: 12px; }
  .about { gap: 44px; }
  .contact-inner { gap: 50px; }
  .plant-grid { gap: 18px; }
  .plant-copy { padding: 20px; }
  .gallery-grid img { height: 290px; }
  .contact-actions .button { font-size: 12px; gap: 15px; padding-inline: 16px; }
}
@media (max-width: 800px) {
  html { scroll-padding-top: 140px; }
  .container { width: calc(100% - 40px); }
  .section { padding-block: 64px; }
  .header-inner { min-height: 76px; gap: 0 20px; flex-wrap: wrap; padding-top: 14px; }
  .brand-mark { width: 28px; height: 36px; }
  .brand-type strong { font-size: 21px; }
  .brand-type > span { font-size: 7px; }
  .header-contact { margin-left: auto; padding: 7px 12px; gap: 16px; }
  .main-nav { order: 3; flex-basis: 100%; justify-content: space-between; gap: 10px; margin: 10px 0 0; }
  .main-nav a { font-size: 12px; padding-block: 10px 13px; }
  .hero { grid-template-columns: 1fr; gap: 30px; padding-top: 18px; padding-bottom: 30px; }
  .hero-copy { padding-top: 22px; padding-bottom: 0; }
  .hero-copy .eyebrow { font-size: 11px; margin-bottom: 0; }
  h1 { font-size: clamp(38px, 7vw, 54px); margin-block: 21px; }
  .hero-description { font-size: 14px; }
  .hero-actions { margin-top: 26px; gap: 22px; }
  .hero-actions .button { min-height: 50px; font-size: 12px; }
  .hero-footnote { display: none; }
  .hero-image { height: 420px; border-top-right-radius: 76px; }
  .hero-image img { object-position: center 46%; }
  .service-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 0; padding-block: 23px; }
  .service-strip p { justify-content: flex-start; font-size: 12px; gap: 10px; }
  .service-strip p:nth-child(odd) { border: none; }
  .service-strip p:nth-child(even) { padding-left: 20px; }
  .about { grid-template-columns: 1fr; gap: 24px; }
  .about .eyebrow { margin-bottom: 14px; }
  .about-copy { padding-top: 0; }
  .section-heading { display: block; margin-bottom: 28px; }
  .section-description { margin-top: 18px; font-size: 12px; }
  .plant-grid { grid-template-columns: 1fr; gap: 24px; }
  .plant-card { display: grid; grid-template-columns: .95fr 1fr; }
  .plant-image { height: 100%; min-height: 300px; aspect-ratio: auto; }
  .plant-copy { padding: 24px; }
  .plant-copy h3 { font-size: 22px; }
  .more-plants { display: block; }
  .more-plants p { margin-top: 10px; }
  .availability-note { font-size: 10px; }
  .gallery-grid { gap: 16px; grid-template-columns: 1fr 1fr; }
  .gallery-grid figure:first-child { grid-column: 1 / -1; }
  .gallery-grid figure:first-child img { height: 320px; }
  .gallery-grid img { height: 260px; }
  .gallery-grid figcaption { font-size: 11px; }
  .contact-inner { grid-template-columns: 1fr; gap: 34px; padding-block: 60px; }
  .contact-copy h2 { font-size: 36px; }
  .contact-copy .eyebrow { margin-bottom: 16px; }
  .contact-details { padding-top: 28px; border-top: 1px solid #50715b; }
  .phone-number { font-size: clamp(26px, 6.5vw, 42px); }
  .footer-inner { display: block; }
  .footer-links { justify-content: flex-start; margin-top: 20px; }
  .footer-links > span { text-align: left; }
}
@media (max-width: 480px) {
  .hero-image { height: 360px; }
  .hero-image figcaption { inset-inline: 18px; font-size: 11px; }
  .hero-image figcaption > span:last-child { font-size: 9px; }
  .photo-label { left: 18px; top: 18px; }
  .service-strip p { font-size: 11px; }
  .service-strip p:nth-child(even) { padding-left: 14px; }
  .plant-card { display: flex; }
  .plant-image { aspect-ratio: 1.2; height: auto; min-height: 0; }
  .plant-copy { padding: 24px; }
  .gallery-grid img { height: 220px; }
  .gallery-grid figure:first-child img { height: 280px; }
  .gallery-grid figcaption span { padding-right: 6px; }
  .contact-actions { gap: 10px; }
  .contact-actions .button { flex: 1; padding-inline: 12px; gap: 10px; font-size: 12px; }
  .site-footer { padding-bottom: calc(100px + env(safe-area-inset-bottom)); }
  .mobile-contact { position: fixed; bottom: 0; inset-inline: 0; z-index: 30; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 20px calc(16px + env(safe-area-inset-bottom)); color: white; background: var(--forest-dark); border-top: 1px solid #65816b; }
  .mobile-contact > span { font-size: 11px; }
  .mobile-contact strong { font-size: 15px; white-space: nowrap; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
