/* ===== V1 "Field Notebook" styles ===== */
.v1 {
  background: var(--paper);
  position: relative;
}

/* Subtle paper texture */
.v1::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(107, 142, 78, 0.03) 0%, transparent 40%);
}

.v1 > * { position: relative; z-index: 2; }

/* ---- HERO ---- */
.v1-hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}
.v1-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.v1-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 960px) {
  .v1-hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.v1-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--forest-500);
  margin-bottom: 32px;
}
.v1-title {
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: var(--forest-900);
  font-family: var(--font-serif);
  font-weight: 500;
}
.v1-title-em {
  position: relative;
  display: inline-block;
  color: var(--forest-700);
}
.v1-title-em::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 8px;
  height: 16px;
  background: var(--honey-soft);
  z-index: -1;
  border-radius: 40px;
  transform: rotate(-0.5deg);
}
.v1-lede {
  font-size: 16px;
  line-height: 2;
  color: var(--ink-soft);
  margin-top: 36px;
  max-width: 42ch;
  font-weight: 500;
}
.v1-lede em {
  font-style: normal;
  background: linear-gradient(transparent 62%, var(--honey-soft) 62%, var(--honey-soft) 95%, transparent 95%);
  padding: 0 2px;
  font-weight: 700;
}
.v1-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.v1-meta-row {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px dashed var(--forest-300);
  flex-wrap: wrap;
}
.v1-meta-num {
  font-size: 36px;
  color: var(--forest-700);
  line-height: 1;
  font-weight: 600;
}
.v1-meta-label {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

.v1-hero-visual {
  position: relative;
}
.v1-hero-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(1deg);
  aspect-ratio: 4 / 5;
  background: var(--forest-100);
}
.v1-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--forest-100);
  filter: saturate(1.1) contrast(1.02);
}
.v1-hero-img-wrap::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(253, 251, 245, 0.6);
  border-radius: 12px;
  pointer-events: none;
  z-index: 2;
}
.v1-hero-stamp {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(253, 251, 245, 0.92);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-8deg);
  border: 2px solid var(--forest-700);
  z-index: 3;
  box-shadow: var(--shadow-md);
}
.v1-stamp-inner {
  text-align: center;
  color: var(--forest-900);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.15em;
}
.v1-hero-caption {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 20px;
  text-align: right;
  letter-spacing: 0.05em;
}

/* ---- INTRO ---- */
.v1-intro {
  padding: 48px 0 72px;
}
.v1-intro-inner {
  text-align: center;
  padding: 20px 24px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  border: none;
  max-width: 680px;
}
.v1-intro-mark { display: flex; justify-content: center; margin-bottom: 16px; opacity: 0.7; transform: scale(0.7); }
.v1-signature {
  color: var(--forest-700);
  font-size: 1.2em;
}
.v1-h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-family: var(--font-serif);
  color: var(--forest-900);
  letter-spacing: 0.04em;
  line-height: 1.5;
  font-weight: 500;
}
.v1-intro .v1-h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 500;
  color: var(--forest-900);
  line-height: 1.6;
}
.v1-intro-p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--ink-soft);
  margin-top: 24px;
  text-align: left;
  font-weight: 500;
}
.v1-intro-p em {
  font-style: normal;
  background: linear-gradient(transparent 62%, var(--honey-soft) 62%, var(--honey-soft) 95%, transparent 95%);
  padding: 0 2px;
  font-weight: 700;
}
.v1-signed {
  margin-top: 28px;
  text-align: right;
  color: var(--forest-700);
  letter-spacing: 0.12em;
  font-size: 13px;
}

/* ---- SERVICES ---- */
.v1-services { padding: 96px 0; }
.v1-sec-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.v1-sec-head-row {
  max-width: 100%;
  text-align: left;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.v1-chip {
  margin-bottom: 20px;
  background: var(--paper-2);
  color: var(--forest-700);
  border: 1px solid var(--forest-200);
}
.v1-sec-sub {
  margin-top: 20px;
  color: var(--ink-soft);
  line-height: 2;
  font-size: 15px;
}
.v1-all-link {
  font-weight: 700;
  color: var(--forest-700);
  font-size: 14px;
  letter-spacing: 0.05em;
}

.v1-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 720px) {
  .v1-service-grid { grid-template-columns: 1fr; }
}
.v1-card {
  background: var(--paper);
  border: 1px solid var(--forest-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  color: var(--ink);
}
.v1-card:hover {
  transform: translateY(-4px) rotate(-0.3deg);
  box-shadow: var(--shadow-lg);
}
.v1-card-num {
  position: absolute;
  top: 20px;
  left: 24px;
  z-index: 3;
  background: var(--paper);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--forest-700);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-serif);
  font-weight: 600;
}
.v1-card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--forest-100);
}
.v1-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.v1-card:hover .v1-card-img img { transform: scale(1.05); }
.v1-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(47, 74, 32, 0.4) 100%);
}
.v1-card-icon {
  position: absolute;
  bottom: 16px;
  right: 20px;
  z-index: 2;
}
.v1-card-body {
  padding: 28px;
}
.v1-card-sub {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--forest-500);
  text-transform: uppercase;
}
.v1-card-title {
  font-size: 22px;
  color: var(--forest-900);
  margin-top: 8px;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.v1-card-desc {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink-soft);
}
.v1-card-more {
  margin-top: 20px;
  color: var(--forest-700);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
}

/* ---- QUOTE ---- */
.v1-quote {
  background: var(--forest-50);
  padding: 96px 0;
  position: relative;
}
.v1-quote-inner {
  max-width: 760px;
  text-align: center;
  position: relative;
}
.v1-quote-deco { position: absolute; inset: 0; pointer-events: none; }
.v1-quote-mark {
  font-size: 120px;
  color: var(--forest-300);
  line-height: 0.6;
  margin-bottom: 0;
}
.v1-quote-text {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.9;
  color: var(--forest-900);
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ---- COMMUNITY ---- */
.v1-community { padding: 96px 0; }
.v1-comm-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 860px) {
  .v1-comm-grid { grid-template-columns: 1fr; gap: 48px; }
}
.v1-comm-visual {
  position: relative;
  padding: 40px 20px;
}
.v1-comm-polaroid {
  background: var(--paper);
  padding: 18px 18px 48px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
  border: 1px solid var(--paper-3);
}
.v1-comm-polaroid img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
.v1-comm-caption {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.15em;
}
.v1-comm-tape {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 100px;
  height: 28px;
  background: rgba(201, 169, 97, 0.5);
  z-index: 2;
  border-left: 1px dashed rgba(0,0,0,0.1);
  border-right: 1px dashed rgba(0,0,0,0.1);
}
.v1-comm-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}
.v1-comm-list li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--forest-200);
  font-size: 15px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}
.v1-comm-list .mono {
  color: var(--honey);
  font-size: 18px;
}

/* ---- BLOG ---- */
.v1-blog {
  background: var(--paper-2);
  padding: 96px 0;
}
.v1-blog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}
.v1-blog-row {
  display: grid;
  grid-template-columns: 120px 100px 1fr 40px;
  gap: 24px;
  align-items: center;
  padding: 24px 12px;
  border-bottom: 1px solid var(--forest-100);
  color: var(--ink);
  transition: background .2s ease, padding .2s ease;
}
.v1-blog-row:hover {
  background: var(--paper);
  padding-left: 24px;
}
.v1-blog-date {
  color: var(--forest-500);
  font-size: 13px;
  letter-spacing: 0.08em;
}
.v1-blog-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: 11px;
  background: var(--forest-700);
  color: var(--paper);
  font-weight: 700;
  letter-spacing: 0.12em;
  max-width: fit-content;
}
.v1-blog-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--forest-900);
  font-family: var(--font-sans);
}
.v1-blog-arrow {
  color: var(--forest-500);
  text-align: right;
  font-size: 18px;
}
@media (max-width: 720px) {
  .v1-blog-row {
    grid-template-columns: 1fr 40px;
    gap: 8px;
  }
  .v1-blog-date, .v1-blog-tag {
    grid-column: 1 / -1;
    display: inline-block;
    margin-right: 8px;
  }
  .v1-blog-title { grid-column: 1; }
}

/* ---- CTA ---- */
.v1-cta {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.v1-cta-inner {
  text-align: center;
  background: var(--forest-900);
  color: var(--paper);
  padding: 80px 40px;
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.v1-cta-inner::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1.5px dashed rgba(255,255,255,0.15);
  border-radius: calc(var(--r-xl) - 16px);
  pointer-events: none;
}
.v1-cta-title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--paper);
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.v1-cta-sub {
  margin-top: 20px;
  font-size: 15px;
  color: var(--forest-200);
  line-height: 2;
}
.v1-cta-btn {
  margin-top: 32px;
  background: var(--honey);
  color: #3A2E10;
}
.v1-cta-btn:hover {
  background: #D4B46A;
  color: #3A2E10;
}
