/* =========================================
 *  TASTE GARDEN — Contact form
 * ========================================= */

.contact-section__lead {
	font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', sans-serif;
	font-size: 14px;
	line-height: 2;
	color: #555;
	text-align: center;
	margin: 0 0 40px;
}

.contact-section__heading {
	font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', sans-serif;
	font-size: clamp(18px, 2vw, 22px);
	font-weight: 700;
	letter-spacing: .04em;
	color: #111;
	text-align: left;
	margin: 0 0 28px;
	padding: 0 0 14px;
	border-bottom: 1.5px solid var(--green);
}

/* ---------- Alert (success / error) ---------- */
.tg-form__alert {
	font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', sans-serif;
	font-size: 14px;
	line-height: 1.8;
	padding: 18px 22px;
	border-radius: 4px;
	margin: 0 0 36px;
}

.tg-form__alert--success {
	background: #f4faf2;
	border-left: 3px solid #7BAE6E;
	color: #2D5A24;
}

.tg-form__alert--error {
	background: #fdf3f2;
	border-left: 3px solid #C9645A;
	color: #7A2E26;
}

.tg-form__alert ul {
	margin: 8px 0 0;
	padding-left: 20px;
}

/* ---------- Form ---------- */
.tg-form {
	font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', sans-serif;
	color: #222;
}

.tg-form__row {
	margin: 0 0 26px;
}

.tg-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 24px;
}

@media (max-width: 600px) {
	.tg-form__grid {
		grid-template-columns: 1fr;
	}
}

.tg-form__label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .04em;
	color: #111;
	margin: 0 0 10px;
}

.tg-form__req {
	display: inline-block;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .08em;
	color: #999;
	background: transparent;
	padding: 0;
	margin-left: 6px;
	vertical-align: middle;
	line-height: 1.3;
}
.tg-form__req::before { content: '（'; }
.tg-form__req::after  { content: '）'; }

.tg-form__input,
.tg-form__textarea {
	display: block;
	width: 100%;
	font-family: inherit;
	font-size: 15px;
	line-height: 1.6;
	color: #111;
	background: #fff;
	border: 1px solid #d8d5cc;
	border-radius: 3px;
	padding: 13px 14px;
	transition: border-color .2s, box-shadow .2s;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
}

.tg-form__textarea {
	resize: vertical;
	min-height: 160px;
}

select.tg-form__input {
	background-image: linear-gradient(45deg, transparent 50%, #888 50%),
	                  linear-gradient(135deg, #888 50%, transparent 50%);
	background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
	padding-right: 36px;
	cursor: pointer;
}

.tg-form__input:focus,
.tg-form__textarea:focus {
	outline: none;
	border-color: #C9A86A;
	box-shadow: 0 0 0 3px rgba(201, 168, 106, .15);
}

/* Honeypot — visually hidden but still focusable for bots */
.tg-form__hp {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.tg-form__note {
	font-size: 12px;
	color: #888;
	line-height: 1.7;
	text-align: center;
	margin: 0 0 28px;
}

.tg-form__submit {
	text-align: center;
}

.tg-form__btn {
	min-width: 240px;
	font-size: 13px;
	letter-spacing: .12em;
}
