/* ============================================
   PATTY B COLLECTIVE — Brand Stylesheet
   Palette: Chinese Black, Dark Jungle Green,
   Jet, Coffee, Antique Brass
   ============================================ */

:root {
  --black: #0C1519;
  --jungle: #162127;
  --jet: #3A3534;
  --coffee: #724B39;
  --brass: #CF9D7B;
  --brass-light: #E3BFA3;
  --cream: #F2E9E1;
  --text: #D9D2CB;
  --text-muted: #9A928A;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', sans-serif;
  --frame-offset: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--coffee); color: var(--cream); }

img { max-width: 100%; display: block; }

a { color: var(--brass); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--brass-light); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; color: var(--cream); line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); letter-spacing: .01em; }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
h3 { font-size: 1.45rem; }

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 1.1rem;
}

.serif-italic { font-family: var(--serif); font-style: italic; color: var(--brass-light); }

/* ---------- Layout ---------- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 6vw; }
section { padding: 6.5rem 0; }
.section-alt { background: var(--jungle); }

.section-head { max-width: 640px; margin-bottom: 3.5rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 1rem; color: var(--text-muted); }

/* ---------- Nav ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 21, 25, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(207, 157, 123, .14);
}
.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.1rem 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: .02em;
  white-space: nowrap;
}
.logo span { color: var(--brass); font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--brass); }
.nav-cta {
  border: 1px solid var(--brass);
  padding: .55rem 1.3rem;
  color: var(--brass) !important;
  transition: all .25s ease;
}
.nav-cta:hover { background: var(--brass); color: var(--black) !important; }

.menu-btn { display: none; background: none; border: none; color: var(--brass); font-size: 1.6rem; cursor: pointer; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border: 1px solid var(--brass);
  color: var(--brass);
  background: transparent;
  cursor: pointer;
  transition: all .3s ease;
}
.btn:hover { background: var(--brass); color: var(--black); }
.btn-solid { background: var(--brass); color: var(--black); }
.btn-solid:hover { background: var(--brass-light); color: var(--black); }
.btn-row { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ---------- Signature frame motif ---------- */
.frame {
  position: relative;
  background: var(--jet);
}
.frame::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: translate(var(--frame-offset), var(--frame-offset));
  border: 1px solid var(--brass);
  pointer-events: none;
  transition: transform .35s ease;
}
.frame:hover::after { transform: translate(8px, 8px); }

.frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Photo placeholder (swap with real <img>) */
.ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: linear-gradient(160deg, var(--jet) 0%, var(--jungle) 100%);
  color: var(--text-muted);
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
  width: 100%;
  height: 100%;
}
.ph svg { opacity: .45; }

/* ---------- Hero ---------- */
.hero {
  padding: 7rem 0 6.5rem;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 5rem;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 6vw;
  padding-right: 6vw;
}
.hero h1 em { font-style: italic; color: var(--brass); }
.hero-tag {
  margin: 1.6rem 0 2.6rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 46ch;
}
.hero-visual { aspect-ratio: 4 / 5; }

/* ---------- About / Meet Patty ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.about-photo { aspect-ratio: 4 / 5; }
.about-grid h2, .about-grid p { text-align: left; }
.about-grid p { color: var(--text-muted); max-width: 50ch; }

/* ---------- Services teaser ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.service-card { display: flex; flex-direction: column; }
.service-card .frame { aspect-ratio: 4 / 5; margin-bottom: 1.8rem; }
.service-card h3 { margin-bottom: .5rem; }
.service-card p { font-size: .95rem; color: var(--text-muted); flex: 1; }
.service-card .link {
  margin-top: 1.2rem;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

/* ---------- Quote band ---------- */
.quote-band { text-align: center; }
.quote-band blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--cream);
  max-width: 780px;
  margin: 0 auto 1.4rem;
  line-height: 1.45;
}
.quote-band cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: .8rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.gallery-grid .frame { aspect-ratio: 3 / 4; }
.gallery-grid .frame.wide { grid-column: span 2; aspect-ratio: auto; }
.gallery-note {
  margin-top: 3rem;
  text-align: center;
  font-size: .9rem;
  color: var(--text-muted);
}

.tab-row { display: flex; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
.tab {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .7rem 1.5rem;
  border: 1px solid rgba(207,157,123,.35);
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  font-family: var(--sans);
  transition: all .25s ease;
}
.tab.active, .tab:hover { border-color: var(--brass); color: var(--brass); }

/* ---------- Pricing ---------- */
.price-group { margin-bottom: 5rem; }
.price-group:last-child { margin-bottom: 0; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}
.price-card {
  background: var(--jungle);
  border: 1px solid rgba(207,157,123,.16);
  padding: 2.6rem 2.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .3s ease, transform .3s ease;
}
.section-alt .price-card { background: var(--black); }
.price-card:hover { border-color: var(--brass); transform: translateY(-4px); }
.price-card.featured { border-color: var(--brass); }
.badge {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brass);
  color: var(--black);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  white-space: nowrap;
}
.price-card h3 { letter-spacing: .04em; }
.price-card .price {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--brass);
  margin: .6rem 0 .4rem;
}
.price-card .desc { font-size: .9rem; color: var(--text-muted); margin-bottom: 1.6rem; min-height: 3em; }
.price-card ul { list-style: none; flex: 1; margin-bottom: 2rem; }
.price-card li {
  font-size: .93rem;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(217,210,203,.08);
  padding-left: 1.4rem;
  position: relative;
}
.price-card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--brass);
}
.price-card .btn { text-align: center; }
.savings { font-size: .82rem; color: var(--brass-light); font-style: italic; margin-bottom: 1.4rem; }

.addons {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}
.addon {
  border: 1px solid rgba(207,157,123,.16);
  padding: 1.3rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .92rem;
}
.addon strong { color: var(--brass); font-weight: 500; white-space: nowrap; }

.deposit-note {
  background: var(--jungle);
  border-left: 2px solid var(--brass);
  padding: 1.8rem 2rem;
  margin-bottom: 4rem;
  font-size: .95rem;
  color: var(--text-muted);
}
.deposit-note strong { color: var(--cream); font-weight: 400; }

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testi-card {
  background: var(--jungle);
  border: 1px solid rgba(207,157,123,.14);
  padding: 2.4rem 2.2rem;
  display: flex;
  flex-direction: column;
}
.testi-card .mark {
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: .6;
  color: var(--coffee);
  margin-bottom: 1.2rem;
}
.testi-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream);
  flex: 1;
  line-height: 1.55;
}
.testi-card footer { margin-top: 1.6rem; }
.testi-card .name { font-size: .85rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brass); }
.testi-card .type { font-size: .78rem; color: var(--text-muted); letter-spacing: .1em; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
details {
  border-bottom: 1px solid rgba(207,157,123,.18);
  padding: 1.6rem 0;
}
summary {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--cream);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: color .25s ease;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--brass);
  transition: transform .3s ease;
  flex-shrink: 0;
}
details[open] summary::after { transform: rotate(45deg); }
details[open] summary { color: var(--brass); }
details p { margin-top: 1rem; color: var(--text-muted); font-size: .97rem; max-width: 62ch; }

/* ---------- Contact ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.contact-intro p { color: var(--text-muted); margin-top: 1.2rem; max-width: 42ch; }
.contact-sign {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--brass);
  margin-top: 2.4rem;
}
form { display: grid; gap: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
label {
  display: block;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
input, select, textarea {
  width: 100%;
  background: var(--jungle);
  border: 1px solid rgba(207,157,123,.2);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  padding: .95rem 1.1rem;
  transition: border-color .25s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--brass);
}
textarea { resize: vertical; min-height: 140px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23CF9D7B' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.1rem center; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  background: var(--jungle);
  border-top: 1px solid rgba(207,157,123,.14);
  border-bottom: 1px solid rgba(207,157,123,.14);
}
.cta-band h2 { max-width: 620px; margin: 0 auto 1rem; }
.cta-band p { color: var(--text-muted); margin-bottom: 2.4rem; }

/* ---------- Footer ---------- */
footer.site-footer {
  padding: 3.5rem 0;
  border-top: 1px solid rgba(207,157,123,.12);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-inner p { font-size: .82rem; color: var(--text-muted); letter-spacing: .06em; }
.footer-links { display: flex; gap: 1.6rem; list-style: none; }
.footer-links a { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); }
.footer-links a:hover { color: var(--brass); }

/* ---------- Instagram embeds ---------- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-items: center;
}
.insta-card {
  width: 100%;
  max-width: 400px;
  border: 1px solid rgba(207,157,123,.18);
  padding: 6px;
  background: var(--jet);
}
.insta-card iframe, .insta-card blockquote { width: 100% !important; margin: 0 !important; }

/* ---------- Reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s ease;
  }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 3.5rem; padding-top: 4.5rem; }
  .hero-visual { max-width: 440px; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo { max-width: 340px; margin: 0 auto; }
  .services-grid, .price-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 640px) {
  section { padding: 4.5rem 0; }
  .services-grid, .price-grid, .gallery-grid, .form-row { grid-template-columns: 1fr; }
  .gallery-grid .frame.wide { grid-column: span 1; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--jungle);
    padding: 1.6rem 6vw 2rem;
    gap: 1.3rem;
    border-bottom: 1px solid rgba(207,157,123,.2);
  }
  .nav-links.open { display: flex; }
  .menu-btn { display: block; }
}
