:root {
	--gp-forest: #1e4d24;
	--gp-green: #2d6a35;
	--gp-mid: #4a9455;
	--gp-sage: #8ab891;
	--gp-mist: #d6eada;
	--gp-pale: #f0f7f1;
	--gp-cream: #faf8f4;
	--gp-ink: #181c18;
	--gp-gray: #5a6359;
	--gp-line: rgba(74,148,85,0.18);
}
.hero {
	width: 100%;
	position: relative;
	padding: 80px 0;
	/*background-size: cover;
	background-position: center left;
	background-repeat: no-repeat;*/
}
.hero:before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(28 58 18 / 30%);
    pointer-events: none;
    z-index: 2;
}
.hero picture, .hero img.bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero .container {
    position: relative;
    z-index: 3;
}
/*.hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.hero-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0,0,0,.25);
}*/
.hero-content {
	position: relative;
    width: 100%;
}
.hero-eyebrow {
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--gp-cream);
	display: flex;
	align-items: center;
	gap: 1rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
	content: '';
	display: block;
	width: 40px;
	height: 1px;
	background-color: var(--gp-cream);
	opacity: 0.5;
}
.hero-h1 {
	font-family: "Work Sans", sans-serif;
	font-size: clamp(2.8rem, 7vw, 5rem);
	font-weight: 600;
	line-height: normal;
	color: #fff;
	margin-bottom: 1.6rem;
	letter-spacing: -0.01em;
}
.hero-h1 em {
	font-style: italic;
	color: var(--gp-cream);
}
.hero-body {
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.7;
	color: var(--white);
	max-width: 500px;
	margin: 0 0 2.8rem;
}
.hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background-color: var(--gp);
	border: 1px solid var(--gp);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 15px 36px;
	border-radius: 2px;
	text-decoration: none;
	transition: background 0.25s, border-color 0.25s;
}
.hero-cta:hover {
	background-color: #000;
	border-color: #000;
}

/* SERVICES */
.services {
	padding: 80px 13px;
	max-width: 1200px;
    margin: 0 auto;
}
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gp-mid);
  margin-bottom: 1.2rem;
}
.section-title {
  font-family: "Work Sans", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--gp-ink);
  max-width: 560px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gp-line);
}
.service-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--gp-line);
  border-bottom: 1px solid var(--gp-line);
}
.service-item:nth-child(3n) { border-right: none; }
.service-item:nth-child(4),
.service-item:nth-child(5),
.service-item:nth-child(6) { border-bottom: none; }
.service-num {
  font-family: "Work Sans", sans-serif;
  font-size: 0.85rem;
  color: var(--gp-sage);
  margin-bottom: 1.2rem;
}
.service-name {
  font-family: "Work Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gp-ink);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}
.service-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--gp-gray);
}

/* FORM SECTION */
.form-section {
	background: var(--gp);
	padding: 100px 0;
}
.form-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
	align-items: start;
	padding: 0 13px;
}
.form-left .section-eyebrow { color: var(--gp-cream); }
.form-left .section-title { color: #fff; font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 1.5rem; }
.form-left-body {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,1);
  margin-bottom: 2.5rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,1);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-detail:hover { color: var(--gp-cream); }
.contact-detail-icon {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

form { display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; }
.field {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.field label {
	font-size: 0.65rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gp-cream);
	padding: 18px 0 4px;
}
.field input, .field select, .field textarea {
	background: transparent;
	border: none;
	outline: none;
	font-family: "Work Sans", sans-serif;
	font-size: 0.92rem;
	font-weight: 300;
	color: #fff;
	padding: 0 0 16px;
	width: 100%;
	appearance: none;
	-webkit-appearance: none;
	caret-color: var(--gp-cream);
}
.field input::placeholder, .field textarea::placeholder {
	color: var(--gp-cream);
}
.field select option { background-color: var(--gp); color: #fff; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238ab891' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 16px;
  cursor: pointer;
}
.field textarea { resize: none; min-height: 80px; padding-top: 4px; }
.field-row .field:first-child { border-right: 1px solid rgba(255,255,255,0.2); padding-right: 20px; }
.field-row .field:last-child { padding-left: 20px; }
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}
.submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-submit {
	background-color: #fff;
	color: var(--gp);
	font-family: "Work Sans", sans-serif;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 14px 36px;
	border: none;
	border-radius: 2px;
	cursor: pointer;
	transition: background 0.2s;
}
.btn-submit:hover { background-color: #000; color: #fff; }
.submit-note { font-size: 0.75rem; font-weight: 300; color: rgba(255,255,255,0.3); }

.success-msg {
  display: none;
  padding: 3rem 0;
  text-align: center;
}
.check-ring {
  width: 56px; height: 56px;
  border: 1.5px solid var(--gp-sage);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem;
}
.success-msg h3 {
  font-family: "Work Sans", sans-serif;
  font-size: 1.8rem; font-weight: 300; color: #fff; margin-bottom: 0.6rem;
}
.success-msg p { font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.45); }
.catering-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 4rem;
}
@media (max-width: 900px) {
  .stats-row { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--gp-line); }
  .stat:last-child { border-bottom: none; }
  .services { padding: 60px 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-item { border-right: none !important; border-bottom: 1px solid var(--gp-line) !important; }
  .service-item:last-child { border-bottom: none !important; }
  .form-section { padding: 60px 2rem; }
  .form-inner { grid-template-columns: 1fr; gap: 50px; }
  .field-row { grid-template-columns: 1fr; }
  .field-row .field:first-child { border-right: none; padding-right: 0; }
  .field-row .field:last-child { padding-left: 0; }
}
@media (max-width: 600px) {
	.hero {
		padding: 40px 0;
	}
	.hero-eyebrow {
		font-size: 10px;
		gap: 8px;
		letter-spacing: 1px;
	}
	.hero-h1 {
		margin-bottom: 1rem;
	}
	.hero-body {
		margin-bottom: 1rem;
		line-height: 1.5;
	}
	.services, .form-section {
        padding: 40px 13px;
    }
	.form-section {
		padding-left: 0;
		padding-right: 0;
	}
	.catering-wrapper {
		margin-bottom: 2rem;
	}
	.service-item {
		padding: 20px;
	}
	.form-left-body, .form-left .section-title {
		margin-bottom: 1rem;
	}
	.contact-detail:last-child {
		margin-bottom: 0;
	}
	.form-inner {
        gap: 20px;
    }
	.submit-row {
		margin-top: 1.5rem;
	}
	.catering-wrapper {
		grid-template-columns: repeat(1, 1fr);
	}
}