/* ── DESIGN TOKENS ────────────────────────────────────────────────────────── */
:root {
  /* Brand palette — green/teal from logo + warm neutrals */
  --pb-green:       #2d6a4f;
  --pb-green-mid:   #40916c;
  --pb-green-light: #74c69d;
  --pb-teal:        #1b7a6e;
  --pb-cream:       #faf7f2;
  --pb-bone:        #f3ede3;
  --pb-ink:         #1a1a18;
  --pb-slate:       #4a4a44;
  --pb-slate-soft:  #6b6b63;
  --pb-gold:        #b5892a;
  --pb-gold-light:  #d4a843;
  --pb-line:        #e2ddd5;

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --container:    1200px;
  --nav-h:        72px;

  /* Radius */
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --radius-xl:    32px;

  /* Shadow */
  --shadow-card:  0 2px 12px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.05);
  --shadow-lift:  0 8px 32px rgba(0,0,0,.12);
}

/* ── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--pb-cream);
  color: var(--pb-ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ── UTILITIES ────────────────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.eyebrow {
  font-family: var(--font-body);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pb-green-mid);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.eyebrow::before { content: ''; display: block; width: 1.5rem; height: 1.5px; background: currentColor; }
.eyebrow--light { color: var(--pb-green-light); }
.eyebrow--light::before { background: var(--pb-green-light); }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--pb-green);
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: .75rem 1.75rem;
  border-radius: 100px;
  border: 2px solid var(--pb-green);
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--pb-teal); border-color: var(--pb-teal); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  padding: .75rem 1.75rem;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,.6);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  white-space: nowrap;
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  padding: .7rem 1.5rem;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,.65);
  cursor: pointer;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.btn-outline-light:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-full { width: 100%; justify-content: center; }
.btn-order {
  background: var(--pb-green);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  padding: .55rem 1.2rem;
  border-radius: 100px;
  transition: background .2s;
  white-space: nowrap;
}
.btn-order:hover { background: var(--pb-teal); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── NAV ──────────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(250,247,242,.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--pb-line);
}
.container-nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo-link { flex-shrink: 0; }
.logo-img { height: 54px; width: auto; background: rgba(255,255,255,.88); border-radius: 8px; padding: 4px 10px; display: block; }
.site-header.scrolled .logo-img { background: transparent; padding: 0; border-radius: 0; }
.desktop-nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.desktop-nav a {
  font-size: .87rem;
  font-weight: 500;
  color: var(--pb-slate);
  transition: color .2s;
}
.desktop-nav a:hover { color: var(--pb-green); }
.site-header.scrolled .desktop-nav a { color: var(--pb-slate); }
.site-header:not(.scrolled) .desktop-nav a { color: rgba(255,255,255,.85); }
.site-header:not(.scrolled) .desktop-nav a:hover { color: #fff; }
.site-header:not(.scrolled) .btn-order { background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.5); color: #fff; }
.site-header:not(.scrolled) .btn-order:hover { background: rgba(255,255,255,.25); }
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  margin-left: auto;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pb-ink);
  border-radius: 2px;
  transition: background .2s;
}
.site-header:not(.scrolled) .mobile-menu-btn span { background: #fff; }
.mobile-nav {
  background: var(--pb-cream);
  border-top: 1px solid var(--pb-line);
  padding: 1rem 1.5rem 1.5rem;
  display: none;
  flex-direction: column;
  gap: .75rem;
}
.mobile-nav a { font-size: .95rem; font-weight: 500; color: var(--pb-slate); }
.mobile-order-btn {
  display: inline-block;
  margin-top: .5rem;
  background: var(--pb-green);
  color: #fff !important;
  padding: .65rem 1.4rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .87rem;
  text-align: center;
}

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,20,12,.88) 0%, rgba(10,20,12,.75) 55%, rgba(10,20,12,.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 5rem 1.5rem 5rem;
  margin: 0 auto 0 max(1.5rem, calc((100vw - var(--container)) / 2 + 1.5rem));
}
.hero-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #a8e6c8;
  margin-bottom: 1.1rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}
.hero-headline em { font-style: italic; font-weight: 400; color: var(--pb-green-light); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.5);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-mouse {
  width: 20px;
  height: 30px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 3px;
  height: 6px;
  background: rgba(255,255,255,.5);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot { 0%,100%{opacity:1;transform:translateY(0)} 60%{opacity:0;transform:translateY(8px)} }

/* ── TRUST BAR ────────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--pb-green);
  padding: 1.1rem 1.5rem;
}
.trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .75rem 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  font-weight: 500;
}
.trust-item svg { width: 1rem; height: 1rem; stroke: var(--pb-green-light); flex-shrink: 0; }
.trust-divider { width: 1px; height: 1.1rem; background: rgba(255,255,255,.2); }

/* ── SERVICES ─────────────────────────────────────────────────────────────── */
.section-services { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--pb-ink);
  margin: .6rem 0 .9rem;
  line-height: 1.2;
}
.section-sub { color: var(--pb-slate-soft); max-width: 520px; margin: 0 auto; font-size: .97rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s;
  transition-delay: var(--delay, 0s);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.service-img-wrap { height: 280px; overflow: hidden; }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card:hover .service-img { transform: scale(1.04); }
.service-body { padding: 1.6rem; }
.service-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pb-green);
  background: rgba(45,106,79,.08);
  padding: .2rem .65rem;
  border-radius: 100px;
  margin-bottom: .75rem;
}
.service-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--pb-ink);
  margin-bottom: .6rem;
}
.service-desc { font-size: .9rem; color: var(--pb-slate-soft); line-height: 1.65; margin-bottom: 1rem; }
.service-list {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1.25rem;
}
.service-list li {
  font-size: .85rem;
  color: var(--pb-slate);
  padding-left: 1rem;
  position: relative;
}
.service-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--pb-green-mid);
}
.service-cta {
  display: inline-block;
  font-size: .84rem;
  font-weight: 600;
  color: var(--pb-green);
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 1px;
  transition: color .2s;
}
.service-cta:hover { color: var(--pb-teal); }

/* Order band */
.order-band {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, var(--pb-green) 0%, var(--pb-teal) 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.order-band-text h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .35rem;
}
.order-band-text p { font-size: .9rem; color: rgba(255,255,255,.8); }

/* ── GALLERY ──────────────────────────────────────────────────────────────── */
.section-gallery { padding: 6rem 0; background: var(--pb-bone); }
.gallery-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: .75rem;
  padding: 0 1.5rem;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.gallery-item { overflow: hidden; border-radius: var(--radius-md); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.04); }

/* ── ABOUT ────────────────────────────────────────────────────────────────── */
.section-about { padding: 6rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-col { position: relative; }
.about-img-wrap { border-radius: var(--radius-xl); overflow: hidden; }
.about-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1rem;
  background: var(--pb-green);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-lift);
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--pb-green-light);
  line-height: 1;
}
.badge-num sup { font-size: 1rem; vertical-align: super; }
.badge-label { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.75); display: block; margin-top: .25rem; }
.about-text { display: flex; flex-direction: column; gap: 1rem; }
.about-text p { font-size: .97rem; color: var(--pb-slate); line-height: 1.75; }
.about-links { margin-top: .5rem; }
.text-link { font-size: .9rem; font-weight: 600; color: var(--pb-green); border-bottom: 1.5px solid currentColor; padding-bottom: 1px; }
.text-link:hover { color: var(--pb-teal); }

/* ── DUKE CALLOUT ─────────────────────────────────────────────────────────── */
.duke-callout {
  background: linear-gradient(135deg, var(--pb-green) 0%, var(--pb-teal) 100%);
  padding: 2.75rem 1.5rem;
}
.duke-callout-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.duke-callout-text { max-width: 560px; }
.duke-callout-body { font-size: .97rem; color: rgba(255,255,255,.85); margin-top: .5rem; }

/* ── CONTACT ──────────────────────────────────────────────────────────────── */
.section-contact { padding: 6rem 0; background: var(--pb-bone); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info p { font-size: .97rem; color: var(--pb-slate); }
.contact-details { display: flex; flex-direction: column; gap: .75rem; margin-top: .5rem; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--pb-slate);
}
.contact-detail-item svg { width: 1rem; height: 1rem; stroke: var(--pb-green-mid); flex-shrink: 0; margin-top: 2px; }
.contact-detail-item a { color: var(--pb-green); font-weight: 500; }
.contact-detail-item a:hover { color: var(--pb-teal); }

/* Form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  transition-delay: var(--delay, 0s);
}
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--pb-slate); letter-spacing: .03em; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--pb-line);
  border-radius: var(--radius-sm);
  padding: .65rem .9rem;
  font-size: .9rem;
  color: var(--pb-ink);
  background: var(--pb-cream);
  transition: border-color .2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--pb-green-mid); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.site-footer { background: var(--pb-ink); color: rgba(255,255,255,.8); padding: 4rem 1.5rem 0; }
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo { height: 48px; width: auto; max-width: 180px; object-fit: contain; filter: brightness(0) invert(1); opacity: .85; display: block; }
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: .5rem; }
.footer-col-title { font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: .25rem; }
.footer-col a { font-size: .87rem; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col a:hover { color: var(--pb-green-light); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.25rem 0;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-col { max-width: 500px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--tall { grid-row: span 1; }
}
@media (max-width: 768px) {
  .desktop-nav, .btn-order { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-content { margin-left: 0; padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-divider { display: none; }
  .trust-inner { justify-content: flex-start; }
  .order-band { flex-direction: column; align-items: flex-start; }
  .duke-callout-inner { flex-direction: column; align-items: flex-start; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 1.75rem; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.2rem; }
  .section-title { font-size: 1.65rem; }
  .about-badge { right: 0; bottom: -.75rem; }
}
