/* ============================================================
   PRIME PACK PROVISIONS  —  Main Stylesheet
   ============================================================ */

/* ---- Google Fonts are loaded via <link> in each HTML file ---- */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Palette */
  --black:        #1B1B18;
  --black-soft:   #252521;
  --black-card:   #2E2E2A;
  --gold:         #C9A84C;
  --gold-dark:    #A8883A;
  --gold-light:   #DDB96C;
  --gold-faint:   rgba(201, 168, 76, 0.10);
  --cream:        #F5EDD7;
  --cream-dark:   #E6DBBF;
  --cream-darker: #D5C9A8;
  --white:        #FDFAF3;

  /* Type */
  --ff-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body:    'Lato', system-ui, -apple-system, sans-serif;

  /* Scale */
  --fs-xs:   0.72rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-lg:   1.125rem;
  --fs-xl:   1.25rem;
  --fs-2xl:  1.5rem;
  --fs-3xl:  2rem;
  --fs-4xl:  2.75rem;
  --fs-5xl:  3.75rem;
  --fs-hero: clamp(2.5rem, 6vw, 4rem);

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radii */
  --r-sm:   3px;
  --r:      6px;
  --r-lg:   14px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0,0,0,.10);
  --shadow:    0 4px 20px rgba(0,0,0,.13);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.20);

  /* Motion */
  --ease:      0.22s ease;
  --ease-slow: 0.42s ease;

  /* Layout */
  --max-w:   1200px;
  --gutter:  1.5rem;
  --nav-h:   72px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.75;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }
a        { color: inherit; text-decoration: none; }
ul, ol   { list-style: none; }
button   { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-pad { padding: var(--sp-24) 0; }
.section-pad--lg { padding: var(--sp-32) 0; }

/* ============================================================
   GOLD ORNAMENT (divider)
   ============================================================ */
.ornament {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin: var(--sp-6) 0;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: .35;
}
.ornament-diamond {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: .7;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: .85rem 2.25rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease), box-shadow var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.38);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,237,215,.55);
}
.btn-outline-cream:hover {
  background: var(--cream);
  color: var(--black);
  border-color: var(--cream);
}

.btn-dark {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}
.btn-dark:hover {
  background: var(--black-soft);
  border-color: var(--black-soft);
  transform: translateY(-2px);
}

/* ============================================================
   SITE HEADER  /  NAV
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 1000;
  background: var(--black);
  transition: box-shadow var(--ease-slow);
}

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,.55);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}
.nav-logo-words {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-name {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.nav-logo-sub {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Desktop links */
.nav-links {
  display: none;
  align-items: center;
  gap: var(--sp-8);
}
.nav-link {
  position: relative;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,237,215,.75);
  transition: color var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -5px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--ease);
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Desktop CTA */
.nav-cta { display: none; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.4,0,.2,1);
  z-index: 999;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-link {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--cream);
  transition: color var(--ease);
}
.mobile-menu-link:hover { color: var(--gold); }

.mobile-menu-cta {
  margin-top: var(--sp-4);
}

/* ============================================================
   HOMEPAGE HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Subtle gold glow accents */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(201,168,76,.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(201,168,76,.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Large decorative "PP" watermark */
.hero-bg-pp {
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: clamp(18rem, 32vw, 44rem);
  font-weight: 700;
  color: rgba(201,168,76,.035);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.06em;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + var(--sp-16)) 0 var(--sp-20);
}

.hero-logo-img {
  width: 180px;
  height: 180px;
  display: block;
  margin: 0 auto var(--sp-8);
  border-radius: 50%;
  overflow: hidden;
  /* clip-path clips the actual image pixels, removing the white-edge crop artifact */
  clip-path: circle(47% at 50% 50%);
  object-fit: cover;
  object-position: center center;
}

.hero-title {
  font-size: var(--fs-hero);
  color: var(--cream);
  margin-bottom: var(--sp-6);
  line-height: 1.08;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: var(--fs-lg);
  color: rgba(245,237,215,.68);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.85;
  margin-bottom: var(--sp-10);
}

.hero-tagline {
  font-size: var(--fs-base);
  color: var(--gold);
  font-weight: 400;
  letter-spacing: .02em;
  margin-bottom: var(--sp-8);
  opacity: .9;
}

.hero-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Scroll nudge */
.scroll-hint {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: var(--gold);
  opacity: .5;
  animation: hint-bounce 2.2s ease-in-out infinite;
}
.scroll-hint-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.scroll-hint-arrow {
  width: 16px;
  height: 16px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}
@keyframes hint-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   PAGE HERO  (inner pages)
   ============================================================ */
.page-hero {
  background: var(--black);
  padding: calc(var(--nav-h) + var(--sp-16)) 0 var(--sp-16);
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .3;
}
.page-hero-content { max-width: 680px; }
.page-hero-title {
  font-size: clamp(var(--fs-3xl), 5vw, var(--fs-4xl));
  color: var(--cream);
  margin-bottom: var(--sp-4);
}
.page-hero-sub {
  font-size: var(--fs-lg);
  color: rgba(245,237,215,.65);
  font-weight: 300;
}

/* ============================================================
   INTRO  /  WHO WE ARE  (homepage)
   ============================================================ */
.intro { background: var(--cream); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}

.intro-text h2 {
  font-size: clamp(var(--fs-2xl), 3.5vw, var(--fs-3xl));
  color: var(--black);
  margin-bottom: var(--sp-6);
}
.intro-text p {
  font-size: var(--fs-lg);
  color: rgba(27,27,24,.78);
  margin-bottom: var(--sp-4);
}
.intro-text p:last-of-type { margin-bottom: var(--sp-8); }

/* Decorative badge */
.paw-badge {
  width: 300px;
  height: 300px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  position: relative;
  margin: 0 auto;
}
.paw-badge::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: .35;
}
.paw-badge-icon { color: var(--gold); opacity: .85; }
.paw-badge-label {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--black);
  text-align: center;
  line-height: 1.25;
}
.paw-badge-sub {
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ============================================================
   FEATURE CARDS  (homepage)
   ============================================================ */
.features { background: var(--black); }

.features-header { text-align: center; max-width: 640px; margin: 0 auto var(--sp-12); }
.features-header h2 {
  font-size: clamp(var(--fs-2xl), 3.5vw, var(--fs-3xl));
  color: var(--cream);
  margin-bottom: var(--sp-4);
}
.features-header p {
  color: rgba(245,237,215,.6);
  font-size: var(--fs-lg);
  font-weight: 300;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.feature-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,.13);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  transition: border-color var(--ease), transform var(--ease);
}
.feature-card:hover {
  border-color: rgba(201,168,76,.42);
  transform: translateY(-4px);
}
.feature-card-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-faint);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-6);
  color: var(--gold);
}
.feature-card h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  color: var(--cream);
  margin-bottom: var(--sp-3);
}
.feature-card p {
  font-size: var(--fs-base);
  color: rgba(245,237,215,.58);
  line-height: 1.85;
}

/* ============================================================
   CTA BANNER  (homepage)
   ============================================================ */
.cta-banner { background: var(--gold); }

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}
.cta-banner-text h2 {
  font-size: clamp(var(--fs-2xl), 3vw, var(--fs-3xl));
  color: var(--black);
  margin-bottom: var(--sp-2);
}
.cta-banner-text p {
  font-size: var(--fs-lg);
  color: rgba(27,27,24,.72);
  font-weight: 300;
}

/* ============================================================
   OUR STORY  PAGE
   ============================================================ */
.story-block { background: var(--cream); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  margin-bottom: var(--sp-20);
}
.story-grid:last-child { margin-bottom: 0; }

/* Flip alternate rows */
.story-grid.flip .story-text { order: 2; }
.story-grid.flip .story-visual { order: 1; }

.story-text h2 {
  font-size: clamp(var(--fs-2xl), 3vw, var(--fs-3xl));
  color: var(--black);
  margin-bottom: var(--sp-6);
}
.story-text p {
  font-size: var(--fs-lg);
  color: rgba(27,27,24,.78);
  margin-bottom: var(--sp-4);
}

/* Image placeholder */
.img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  border-radius: var(--r-lg);
  border: 2px dashed var(--gold-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  color: var(--gold-dark);
  opacity: .6;
}
.img-placeholder svg { opacity: .6; }
.img-placeholder span {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Pull quote */
.pull-quote { background: var(--black-soft); text-align: center; }

.pull-quote-mark {
  font-family: var(--ff-display);
  font-size: 5rem;
  line-height: .6;
  color: var(--gold);
  opacity: .35;
  margin-bottom: var(--sp-4);
}
.pull-quote-text {
  font-family: var(--ff-display);
  font-size: clamp(var(--fs-xl), 3vw, var(--fs-3xl));
  font-style: italic;
  color: var(--cream);
  max-width: 780px;
  margin: 0 auto var(--sp-6);
  line-height: 1.5;
}
.pull-quote-text em { font-style: normal; color: var(--gold); }
.pull-quote-attr {
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201,168,76,.6);
}

/* Values */
.values-section { background: var(--cream-dark); }

.values-header { margin-bottom: var(--sp-12); }
.values-header h2 {
  font-size: clamp(var(--fs-2xl), 3vw, var(--fs-3xl));
  margin-bottom: var(--sp-4);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10) var(--sp-12);
}

.value-item { display: flex; gap: var(--sp-5); }
.value-num {
  font-family: var(--ff-display);
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: var(--gold);
  opacity: .28;
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
}
.value-body h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-2);
}
.value-body p { color: rgba(27,27,24,.72); }

/* ============================================================
   FIND US  PAGE
   ============================================================ */
.find-section { background: var(--cream); }

.coming-soon { text-align: center; }

.coming-badge {
  display: inline-block;
  background: var(--gold-faint);
  border: 1px solid rgba(201,168,76,.45);
  color: var(--gold-dark);
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
}
.coming-soon h2 {
  font-size: clamp(var(--fs-2xl), 3.5vw, var(--fs-3xl));
  margin-bottom: var(--sp-4);
}
.coming-soon > p {
  font-size: var(--fs-lg);
  color: rgba(27,27,24,.68);
  max-width: 520px;
  margin: 0 auto var(--sp-10);
  font-weight: 300;
}

/* Skeleton location cards */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-16);
  opacity: .38;
  pointer-events: none;
}
.loc-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}
.loc-card-dot {
  width: 36px; height: 36px;
  background: var(--cream-darker);
  border-radius: 50%;
  margin-bottom: var(--sp-4);
}
.loc-card-line {
  height: 10px;
  background: var(--cream-darker);
  border-radius: 3px;
  margin-bottom: var(--sp-3);
}
.loc-card-line.short  { width: 65%; }
.loc-card-line.shorter{ width: 42%; }

/* Suggest section */
.suggest-section { background: var(--black); text-align: center; }

.suggest-section h2 {
  font-size: clamp(var(--fs-2xl), 3vw, var(--fs-3xl));
  color: var(--cream);
  margin-bottom: var(--sp-4);
}
.suggest-section p {
  font-size: var(--fs-lg);
  color: rgba(245,237,215,.6);
  max-width: 500px;
  margin: 0 auto var(--sp-10);
  font-weight: 300;
}

/* ============================================================
   CONTACT  PAGE
   ============================================================ */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: var(--sp-16);
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(var(--fs-2xl), 3vw, var(--fs-3xl));
  margin-bottom: var(--sp-4);
}
.contact-info > p {
  font-size: var(--fs-lg);
  color: rgba(27,27,24,.72);
  font-weight: 300;
  margin-bottom: var(--sp-10);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--black);
}
.contact-detail-body dt {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 2px;
}
.contact-detail-body dd { font-size: var(--fs-base); color: var(--black); }
.contact-detail-body dd a:hover { color: var(--gold-dark); }

/* Form card */
.contact-form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-10) var(--sp-10);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

.form-group { margin-bottom: var(--sp-5); }
.form-group label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: var(--sp-2);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .875rem 1rem;
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--r);
  font-size: var(--fs-base);
  color: var(--black);
  transition: border-color var(--ease), background var(--ease);
  outline: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A8883A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  font-size: var(--fs-xs);
  color: rgba(27,27,24,.45);
  margin-top: var(--sp-3);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-10) 0;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 64px; height: 64px;
  background: var(--gold-faint);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
  color: var(--gold);
}
.form-success h3 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-3);
}
.form-success p {
  color: rgba(27,27,24,.65);
  font-size: var(--fs-lg);
  font-weight: 300;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  padding: var(--sp-16) 0 var(--sp-8);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(201,168,76,.12);
  margin-bottom: var(--sp-8);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.footer-logo-img {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}
.footer-logo-name {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--cream);
}

.footer-tagline {
  font-size: var(--fs-sm);
  color: rgba(245,237,215,.45);
  max-width: 300px;
  line-height: 1.85;
  margin-bottom: var(--sp-6);
}

.footer-social {
  display: flex;
  gap: var(--sp-3);
}
.footer-social-link {
  width: 34px; height: 34px;
  border: 1px solid rgba(201,168,76,.22);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,168,76,.6);
  transition: all var(--ease);
}
.footer-social-link:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.footer-col-heading {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-5);
}

.footer-nav-link {
  display: block;
  font-size: var(--fs-sm);
  color: rgba(245,237,215,.5);
  margin-bottom: var(--sp-3);
  transition: color var(--ease);
}
.footer-nav-link:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.footer-copy, .footer-badge {
  font-size: var(--fs-xs);
  color: rgba(245,237,215,.3);
  letter-spacing: 0.04em;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children > * { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .nav-cta { display: inline-flex; }
  .mobile-menu { display: none; }
}

/* Small tablet — collapse some grids */
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --nav-h: 62px;
    --gutter: 1.125rem;
  }

  .section-pad     { padding: var(--sp-16) 0; }
  .section-pad--lg { padding: var(--sp-20) 0; }

  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }

  .hero-bg-pp { display: none; }

  .hero-content {
    padding-top: calc(var(--nav-h) + var(--sp-10));
    padding-bottom: var(--sp-16);
  }

  .scroll-hint { display: none; }

  .intro-grid {
    grid-template-columns: 1fr;
  }
  .intro-visual { display: none; }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .story-grid,
  .story-grid.flip {
    grid-template-columns: 1fr;
  }
  .story-grid.flip .story-text { order: 1; }
  .story-grid.flip .story-visual { order: 2; }

  .values-grid { grid-template-columns: 1fr; }

  .location-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .contact-form-card {
    padding: var(--sp-6);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .paw-badge { width: 240px; height: 240px; }
}

/* Large screens */
@media (min-width: 1280px) {
  :root { --gutter: 2rem; }
}
