/* style.css — UPDATED: “Shop Now” is understated (outlined), Rivers-ish */

:root{
  --ink: #121212;
  --paper: #f6f2ea;
  --paper-2: #efe9df;
  --accent: #2c5b2c;

  --max: 1160px;
  --gut: 1.5rem;
  --radius: 18px;

  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

/* Skip link */
.gp-skip{
  position:absolute; left:-999px; top:0;
  background:#fff; color:#000;
  padding:.6rem .8rem; border-radius: 12px;
  z-index: 999;
}
.gp-skip:focus{ left: .75rem; top: .75rem; }

/* Header */
.gp-header{
  position:absolute;
  top:0; left:0; right:0;
  z-index: 50;
  padding: .8rem 0;
}
.gp-nav{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 1rem;
}

.gp-brand{
  display:flex;
  align-items:center;
  gap: .75rem;
  min-width:0;
  color: rgba(255,255,255,.95);
}
.gp-logo{
  width: 56px;
  height: auto;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.25));
}
.gp-brand-text{ display:flex; flex-direction:column; line-height:1.05; }
.gp-brand-name{ font-weight: 950; letter-spacing:.01em; }
.gp-brand-since{ font-size:.9rem; opacity:.8; }

.desktop-nav{
  display:flex;
  align-items:center;
  gap: .9rem;
}
.desktop-nav a{
  color: rgba(255,255,255,.92);
  font-weight: 900;
  padding: .35rem .2rem;
  border-bottom: 2px solid transparent;
}
.desktop-nav a:hover{ border-bottom-color: rgba(255,255,255,.7); }

/* UPDATED: Nav CTA is now subtle (outlined), not yellow */
.gp-nav-cta{
  padding: .55rem .9rem !important;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.95) !important;
  border-bottom: none !important;
}
.gp-nav-cta:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.75);
}

/* Mobile toggle */
.gp-mobile-toggle{
  display:none;
  flex-direction:column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: .5rem;
  cursor:pointer;
}
.gp-mobile-toggle span{
  width: 24px;
  height: 3px;
  background: rgba(255,255,255,.95);
  border-radius: 2px;
}

/* Mobile menu */
.gp-mobile-menu{
  display:none;
  background: rgba(18,18,18,.92);
  backdrop-filter: blur(8px);
  padding: .75rem var(--gut) 1rem;
}
.gp-mobile-menu.open{ display:grid; }
.gp-mobile-menu a{
  color:#fff;
  padding: .75rem 0;
  font-weight: 950;
  border-top: 1px solid rgba(255,255,255,.12);
}
.gp-mobile-menu a:first-child{ border-top: none; }

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

/* Hero */
.gp-hero{
  position: relative;
  min-height: 86vh;
  display:flex;
  align-items:flex-end;
  padding: 6.5rem 0 3rem;
  color: #fff;
  overflow:hidden;
}
.gp-hero-media{
  position:absolute;
  inset:0;
  z-index:-2;
}
.gp-hero-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: contrast(1.02) saturate(1.02);
}
.gp-hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.22), rgba(0,0,0,.62)),
    radial-gradient(900px 500px at 20% 20%, rgba(44,91,44,.30), transparent 60%);
}

.gp-hero-inner{ max-width: 860px; }
.gp-eyebrow{
  margin: 0 0 .8rem;
  font-weight: 950;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: .85rem;
  opacity: .92;
}
.gp-hero-title{
  margin: 0 0 .75rem;
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  line-height: 1.03;
  letter-spacing: -.02em;
  font-weight: 1000;
}
.gp-hero-sub{
  margin: 0 0 1.2rem;
  font-size: 1.05rem;
  max-width: 62ch;
  opacity: .92;
}

.gp-hero-actions{
  display:flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}

/* UPDATED: Buttons are understated (outline + quiet fill) */
.gp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: .85rem 1.1rem;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: .01em;
  border: 1px solid rgba(255,255,255,.45);
  transition: background .12s ease, border-color .12s ease, transform .06s ease;
}
.gp-btn:active{ transform: translateY(1px); }

/* Shop / primary becomes “outline” */
.gp-btn--solid{
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.60);
}
.gp-btn--solid:hover{
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.78);
}

/* Secondary stays ghosty */
.gp-btn--ghost{
  background: rgba(255,255,255,.06);
  color:#fff;
  border-color: rgba(255,255,255,.30);
}
.gp-btn--ghost:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.46);
}

.gp-quick-facts{
  display:flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.gp-quick-fact{
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 800;
}

/* Intro */
.gp-intro{
  padding: 3.2rem 0 2.2rem;
  background: var(--paper);
}
.gp-intro-grid{
  display:grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 2rem;
  align-items:start;
}
.gp-kicker{
  margin:0;
  font-size: 2.1rem;
  line-height: 1.1;
  letter-spacing: -.01em;
  font-weight: 1000;
}
.gp-intro-copy p{
  margin:0 0 .9rem;
  max-width: 75ch;
  opacity: .92;
}
.gp-intro-actions{
  display:flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.gp-text-link{
  font-weight: 1000;
  border-bottom: 2px solid rgba(18,18,18,.25);
  padding-bottom: 2px;
}
.gp-text-link:hover{ border-bottom-color: rgba(18,18,18,.7); }

@media (max-width: 900px){
  .gp-intro-grid{ grid-template-columns: 1fr; }
}

/* Gallery */
.gp-gallery{
  padding: 0 0 2.8rem;
  background: var(--paper);
}
.gp-gallery-grid{
  display:grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  gap: 1rem;
}
.gp-gallery-item{
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(0,0,0,.08);
}
.gp-gallery-item img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.gp-gallery-item--wide{
  grid-row: span 2;
  min-height: 520px;
}
.gp-gallery-item:not(.gp-gallery-item--wide){
  min-height: 250px;
}

@media (max-width: 900px){
  .gp-gallery-grid{ grid-template-columns: 1fr; }
  .gp-gallery-item--wide{ grid-row: auto; min-height: 260px; }
  .gp-gallery-item{ min-height: 240px; }
}

/* Section head */
.gp-section-head{ margin-bottom: 1.25rem; }
.gp-section-head h2{
  margin: 0 0 .35rem;
  font-size: 1.9rem;
  letter-spacing: -.01em;
  font-weight: 1000;
}
.gp-section-head p{
  margin: 0;
  max-width: 70ch;
  opacity: .85;
}

/* Story */
.gp-story{
  padding: 2.8rem 0 3.2rem;
  background: var(--paper-2);
}
.gp-story-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.3rem;
}
.gp-story-card{
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(18,18,18,.12);
}
.gp-story-card img{
  width:100%;
  height: 260px;
  object-fit: cover;
}
.gp-story-card figcaption{
  padding: .75rem .9rem;
  font-weight: 950;
  letter-spacing: .02em;
  opacity: .9;
}

.gp-gallery-row{
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 1rem;
  margin-top: 1rem;
}
.gp-gallery-row .gp-gallery-item img{
  height: 360px;
  object-fit: cover;
}

@media (max-width: 900px){
  .gp-story-grid{ grid-template-columns: 1fr; }
  .gp-story-card img{ height: 240px; }
  .gp-gallery-row{ grid-template-columns: 1fr; }
  .gp-gallery-row .gp-gallery-item img{ height: 260px; }
}

/* Services */
.gp-services{
  padding: 3rem 0 3.2rem;
  background: var(--paper);
}
.gp-services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.4rem;
}
.gp-service{
  padding: 1.25rem 1.15rem;
  border: 1px solid rgba(18,18,18,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.45);
}
.gp-service h3{ margin: 0 0 .35rem; font-size: 1.15rem; font-weight: 1000; }
.gp-service p{ margin: 0; opacity: .86; }

@media (max-width: 900px){
  .gp-services-grid{ grid-template-columns: 1fr; }
}

/* CTA band */
.gp-cta-band{
  margin-top: 1.6rem;
  padding: 1.2rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(18,18,18,.04);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.gp-cta-band__title{ font-weight: 1000; font-size: 1.1rem; }
.gp-cta-band__sub{ opacity: .85; }
.gp-cta-band__actions{ display:flex; gap:.75rem; flex-wrap:wrap; }

/* Visit */
.gp-visit{
  padding: 3rem 0 3.2rem;
  background: var(--paper-2);
}
.gp-visit-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}
.gp-visit-left h2{
  margin: 0 0 1rem;
  font-size: 2rem;
  letter-spacing: -.01em;
  font-weight: 1000;
}
.gp-facts{
  display:grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.gp-fact{
  padding: 1rem 1rem;
  border: 1px solid rgba(18,18,18,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.55);
}
.gp-fact-label{
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
  opacity: .7;
  margin-bottom: .35rem;
}
.gp-fact-value{ font-weight: 800; }
.gp-visit-actions{ display:flex; gap:.75rem; flex-wrap:wrap; margin-bottom: 1rem; }

.gp-pillars{
  display:flex;
  gap: .6rem;
  flex-wrap: wrap;
}
.gp-pillar{
  padding: .55rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.35);
  font-weight: 1000;
}

.gp-visit-right{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(18,18,18,.12);
  min-height: 420px;
  background: rgba(255,255,255,.55);
}
.gp-visit-right iframe{
  width:100%;
  height:100%;
  min-height: 420px;
  border:0;
}

@media (max-width: 900px){
  .gp-visit-grid{ grid-template-columns: 1fr; }
  .gp-visit-right{ min-height: 320px; }
  .gp-visit-right iframe{ min-height: 320px; }
}

/* Footer */
.gp-footer{
  padding: 2rem 0;
  background: #111;
  color: rgba(255,255,255,.9);
}
.gp-footer-grid{
  display:flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.gp-footer-brand{ font-weight: 1000; letter-spacing: .01em; }
.gp-footer-muted{ opacity: .8; }

/* Mobile bottom bar */
.gp-mobile-cta{ display:none; }
@media (max-width: 860px){
  body{ padding-bottom: calc(78px + var(--safe-bottom)); }
  .gp-mobile-cta{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .6rem;
    position: fixed;
    left:0; right:0; bottom:0;
    padding: .6rem .75rem calc(.6rem + var(--safe-bottom));
    background: rgba(17,17,17,.55);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,.12);
    z-index: 200;
  }
  /* UPDATED: mobile bar is subtle too */
  .gp-mobile-cta__btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: .85rem 1rem;
    border-radius: 999px;
    font-weight: 1000;
    background: rgba(255,255,255,.92);
    color: rgba(18,18,18,.95);
    border: 1px solid rgba(0,0,0,.18);
  }
  .gp-mobile-cta__btn--primary{
    background: rgba(255,255,255,.92);
  }
}
/* ================================
   Interior pages (solid header)
================================ */
.gp-header--solid{
  position: sticky;
  background: #111;
  padding: .65rem 0;
}

.gp-page{
  padding: 2.2rem 0 3rem;
  background: var(--paper);
}

.gp-page-hero{
  padding: 2.8rem 0 1.4rem;
  background: var(--paper);
}

.gp-page-title{
  margin: 0 0 .35rem;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  line-height: 1.06;
  letter-spacing: -.02em;
  font-weight: 1000;
}

.gp-page-sub{
  margin: 0;
  max-width: 78ch;
  opacity: .86;
}

.gp-divider{
  height: 1px;
  background: rgba(18,18,18,.12);
  margin: 1.6rem 0;
}

/* light “content cards” for interior sections */
.gp-block{
  border: 1px solid rgba(18,18,18,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.55);
  padding: 1.15rem 1.1rem;
}

.gp-two-col{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.25rem;
  align-items: start;
}

@media (max-width: 900px){
  .gp-two-col{ grid-template-columns: 1fr; }
}

/* simple list */
.gp-list{
  margin: .65rem 0 0;
  padding-left: 1.1rem;
}
.gp-list li{ margin: .25rem 0; }

/* nav active state (optional) */
.desktop-nav a[aria-current="page"]{
  border-bottom-color: rgba(255,255,255,.9);
}
/* ================================
   Media frames (no dead space)
================================ */
.gp-photo {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(0,0,0,.06);
}

.gp-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Two safe aspect ratios you’ll actually use */
.gp-photo--wide { aspect-ratio: 16 / 10; }
.gp-photo--tall { aspect-ratio: 4 / 5; }

/* If you still have old min-heights in the gallery, kill them */
.gp-gallery-item,
.gp-gallery-item--wide { min-height: unset !important; }
