/* =======================================================
   TOKENS — COLORS & CONSTANTS
========================================================= */
:root {
  --gp-green: #3e7f3e;
  --gp-green-dark: #2c5b2c;
  --gp-yellow: #f5c441;

  --gp-cream: #f3eee4;
  --gp-cream-soft: #f9f6f0;
  --gp-gray-light: #e3e0d9;
  --gp-gray-mid: #c2bcb0;
  --gp-charcoal: #212121;

  --gp-radius-soft: 12px;
  --gp-radius-lg: 24px;
  --gp-radius-pill: 999px;

  --gp-shadow-soft: 0 10px 24px rgba(0,0,0,0.10);
  --gp-shadow-card: 0 8px 18px rgba(0,0,0,0.10);

  --gp-max-width: 1120px;
  --gp-gutter: 1.5rem;

  --panel-bg: rgba(249, 246, 240, 0.92);
  --panel-border: rgba(0,0,0,0.12);

  --texture-opacity: 0.18;
}

/* =======================================================
   GLOBAL RESET + BACKGROUND (GREEN + END-GRAIN OVERLAY)
========================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--gp-charcoal);
  background: var(--gp-green);
  line-height: 1.6;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("images/end-grain-texture.JPG") center / 900px auto repeat;
  opacity: var(--texture-opacity);
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1100px 650px at 20% 10%, rgba(255,255,255,0.10), transparent 60%),
    radial-gradient(900px 600px at 80% 30%, rgba(0,0,0,0.12), transparent 55%),
    linear-gradient(to bottom, rgba(0,0,0,0.06), rgba(0,0,0,0.14));
  z-index: -1;
  pointer-events: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.gp-shell {
  max-width: var(--gp-max-width);
  margin: 0 auto;
  padding: 0 var(--gp-gutter);
}

/* =======================================================
   HEADER
========================================================= */
.gp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--gp-green);
  border-bottom: 1px solid rgba(0,0,0,0.18);
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}

.gp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

/* BRAND */
.gp-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.gp-logo-mark {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.gp-logo-mark img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.22));
}

.gp-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.gp-brand-name {
  color: #fff;
  font-family: "Roboto Slab", serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gp-brand-since {
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem;
  margin-top: 0.15rem;
}

/* DESKTOP NAV */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.desktop-nav a {
  color: rgba(255,255,255,0.92);
  font-weight: 650;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
}

.desktop-nav a:hover { background: rgba(0,0,0,0.14); }

.desktop-nav a:focus-visible {
  outline: 3px solid rgba(245, 196, 65, 0.55);
  outline-offset: 2px;
}

/* SLOGAN BAR */
.gp-tagline-bar {
  background: rgba(0,0,0,0.12);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

.gp-tagline {
  padding: 0.55rem 0;
  text-align: center;
  color: rgba(249, 246, 240, 0.92);
  font-family: "Roboto Slab", serif;
  font-weight: 650;
  letter-spacing: 0.01em;
}

/* MOBILE MENU BUTTON */
.gp-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 10px;
}

.gp-mobile-toggle:hover { background: rgba(0,0,0,0.12); }

.gp-mobile-toggle span {
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* MOBILE MENU */
.gp-mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(44, 91, 44, 0.98);
  padding: 0.75rem 1rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.18);
}

.gp-mobile-menu a {
  color: #fff;
  padding: 0.65rem 0;
  font-size: 1.05rem;
  font-weight: 650;
}

.gp-mobile-menu a + a {
  border-top: 1px solid rgba(255,255,255,0.10);
}

.gp-mobile-menu.open { display: flex; }

@media (max-width: 800px) {
  .desktop-nav { display: none; }
  .gp-mobile-toggle { display: flex; }
}

/* =======================================================
   HERO (photo background + consistent panel)
========================================================= */
.gp-hero {
  padding: 2.8rem 0 2.4rem;
  position: relative;
}

.gp-hero--photo {
  padding: 2.6rem 0 2.4rem;
}

.gp-hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.gp-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(1.05);
  transform: scale(1.02);
}

.gp-hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.35)),
    radial-gradient(1000px 600px at 20% 20%, rgba(62,127,62,0.35), transparent 60%);
  z-index: -1;
}

.gp-hero-shell {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--gp-radius-lg);
  box-shadow: var(--gp-shadow-soft);
  padding: 2.2rem;
}

.gp-hero h1 {
  font-family: "Roboto Slab", serif;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  line-height: 1.05;
  margin: 0 0 0.7rem;
  letter-spacing: -0.02em;
}

.gp-hero-tagline {
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  margin: 0 0 0.85rem;
  color: rgba(33,33,33,0.86);
}

.gp-hero-sub {
  margin: 0 0 1.35rem;
  color: rgba(33,33,33,0.82);
  max-width: 66ch;
}

.gp-hero-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* BUTTONS */
.gp-button-primary,
.gp-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1.25rem;
  border-radius: var(--gp-radius-pill);
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.06s ease, filter 0.12s ease, background 0.12s ease;
}

.gp-button-primary {
  background: var(--gp-green-dark);
  color: #fff;
  border-color: rgba(0,0,0,0.18);
}

.gp-button-primary:hover { filter: brightness(1.05); }
.gp-button-primary:active { transform: translateY(1px); }

.gp-button-secondary {
  background: rgba(255,255,255,0.80);
  color: var(--gp-charcoal);
  border-color: rgba(0,0,0,0.14);
}

.gp-button-secondary:hover { background: rgba(255,255,255,0.94); }
.gp-button-secondary:active { transform: translateY(1px); }

/* =======================================================
   SECTION HEAD
========================================================= */
.gp-section-head {
  text-align: center;
  margin: 0 auto 1.6rem;
  max-width: 820px;
}

.section-heading {
  font-family: "Roboto Slab", serif;
  font-size: 2rem;
  margin: 0 0 0.4rem;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

.section-subheading {
  margin: 0;
  color: rgba(255,255,255,0.82);
}

/* =======================================================
   SERVICES (photo cards)
========================================================= */
.gp-services {
  padding: 2.8rem 0 3.2rem;
  background: transparent;
}

.gp-services-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1rem;
}

.gp-service-card {
  background: rgba(249, 246, 240, 0.92);
  padding: 1.15rem;
  border-radius: var(--gp-radius-soft);
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: var(--gp-shadow-card);
}

.gp-service-card--photo {
  padding: 0.95rem;
}

.gp-card-media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.10);
  margin-bottom: 0.85rem;
}

.gp-card-media img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  filter: saturate(1.12) contrast(1.03);
}

.gp-service-card h3 {
  margin: 0 0 0.45rem;
  font-family: "Roboto Slab", serif;
  font-size: 1.15rem;
}

.gp-service-card p {
  margin: 0;
  color: rgba(33,33,33,0.80);
}

/* =======================================================
   VISIT (info + map)
========================================================= */
.gp-visit {
  padding: 2.6rem 0 3.2rem;
}

.gp-visit-shell {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.25rem;

  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--gp-radius-lg);
  box-shadow: var(--gp-shadow-soft);
  padding: 1.25rem;
}

.gp-visit-info {
  padding: 0.75rem 0.9rem;
}

.gp-visit-info h2 {
  font-family: "Roboto Slab", serif;
  margin: 0 0 0.8rem;
  font-size: 2rem;
}

.gp-visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin: 0 0 1.1rem;
}

.gp-visit-block {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
}

.gp-visit-label {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(33,33,33,0.62);
  margin-bottom: 0.25rem;
}

.gp-visit-value {
  font-weight: 650;
  color: rgba(33,33,33,0.86);
}

.gp-visit-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.gp-map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.12);
  min-height: 360px;
  background: rgba(255,255,255,0.55);
}

.gp-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

/* =======================================================
   FOOTER
========================================================= */
.gp-footer {
  padding: 1.4rem 0;
  text-align: center;
  background: rgba(0,0,0,0.55);
  color: rgba(249, 246, 240, 0.92);
  font-size: 0.95rem;
  border-top: 1px solid rgba(255,255,255,0.10);
}

/* =======================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px) {
  .gp-services-grid { grid-template-columns: 1fr; }
  .gp-visit-shell { grid-template-columns: 1fr; }
  .gp-visit-grid { grid-template-columns: 1fr; }
  .gp-map { min-height: 320px; }
  .gp-card-media img { height: 210px; }
}

@media (max-width: 800px) {
  .gp-hero-shell { padding: 1.6rem; }
}
