/* ============================================
   PIPPA ATELIER — styles.css
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ── Variables ── */
:root {
  --white-linen: #fdfbf7;
  --ivory:       #f5f0e8;
  --cream:       #ede6d6;
  --parchment:   #d8cfc0;
  --gold:        #b8a48a;
  --stone:       #9b9187;
  --taupe:       #6b6259;
  --espresso:    #4a3f38;
  --ink:         #2c2520;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;

  --nav-height: 72px;
  --max-width:  1100px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--white-linen);
  color: var(--ink);
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── Typography ── */
.pi-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin-bottom: 1rem;
}
.pi-h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--ink);
}
.pi-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  color: var(--ink);
}
.pi-h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
}
.pi-body {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--taupe);
}
.pi-caption {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--stone);
}

/* ── Buttons ── */
.pi-btn {
  display: inline-block;
  padding: 11px 26px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  background: none;
}
.pi-btn-primary {
  background: var(--ink);
  color: var(--ivory);
  border: 1px solid var(--ink);
}
.pi-btn-primary:hover {
  background: var(--espresso);
  border-color: var(--espresso);
}
.pi-btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.pi-btn-secondary:hover {
  background: var(--ink);
  color: var(--ivory);
}
.pi-btn-ghost {
  background: transparent;
  color: var(--stone);
  border: 1px solid var(--parchment);
}
.pi-btn-ghost:hover {
  border-color: var(--stone);
  color: var(--ink);
}

/* ── Form ── */
.pi-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.pi-form-field label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}
.pi-form-field input,
.pi-form-field textarea,
.pi-form-field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--parchment);
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  width: 100%;
  -webkit-appearance: none;
}
.pi-form-field input::placeholder,
.pi-form-field textarea::placeholder {
  color: var(--parchment);
}
.pi-form-field input:focus,
.pi-form-field textarea:focus,
.pi-form-field select:focus {
  border-bottom-color: var(--ink);
}
.pi-form-field textarea { resize: none; height: 100px; }

/* ── Divider ── */
.pi-divider {
  height: 0.5px;
  background: var(--parchment);
  margin: 0;
  border: none;
}

/* ── Image placeholder ── */
.pi-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--cream) 0%, var(--parchment) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pi-placeholder-inner {
  border: 1px solid rgba(155,145,135,0.3);
  width: 55%;
  height: 65%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(253,251,247,0.5);
}
.pi-placeholder-line {
  width: 50%;
  height: 0.5px;
  background: rgba(107,98,89,0.25);
}
.pi-placeholder-line.short { width: 28%; }
.pi-placeholder-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(107,98,89,0.2);
}

/* ── NAV ── */
.pi-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  background: rgba(253,251,247,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid rgba(216,207,192,0.4);
  transition: background 0.3s;
}
.pi-nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--ink);
  text-transform: uppercase;
}
.pi-nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.pi-nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  transition: color 0.3s;
}
.pi-nav-links a:hover,
.pi-nav-links a.active { color: var(--ink); }
.pi-nav-enquire {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 8px 20px;
  transition: all 0.3s;
}
.pi-nav-enquire:hover {
  background: var(--ink);
  color: var(--ivory);
}
.pi-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.pi-nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: all 0.3s;
}
.pi-nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--white-linen);
  border-bottom: 0.5px solid var(--parchment);
  padding: 2rem 3rem;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 99;
}
.pi-nav-mobile a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  transition: color 0.3s;
}
.pi-nav-mobile a:hover { color: var(--ink); }
.pi-nav-mobile.open { display: flex; }

/* ── FOOTER ── */
.pi-footer {
  background: var(--espresso);
  padding: 4rem 3rem 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}
.pi-footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  display: block;
  margin-bottom: 1rem;
}
.pi-footer-tagline {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(237,230,214,0.7);
}
.pi-footer-col h4 {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237,230,214,0.6);
  margin-bottom: 1.2rem;
}
.pi-footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.pi-footer-col ul a {
  font-size: 16px;
  font-weight: 300;
  color: rgba(237,230,214,0.75);
  transition: color 0.3s;
}
.pi-footer-col ul a:hover { color: var(--cream); }
.pi-footer-bottom {
  background: var(--espresso);
  border-top: 0.5px solid rgba(237,230,214,0.2);
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pi-footer-bottom p {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(237,230,214,0.5);
}

/* ── Scroll animations ── */
.pi-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.pi-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section layout helpers ── */
.pi-section {
  padding: 6rem 3rem;
}
.pi-section-center {
  max-width: var(--max-width);
  margin: 0 auto;
}
.pi-section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.pi-section-header .pi-eyebrow { margin-bottom: 0.75rem; }

/* ── Page hero (inner pages) ── */
.pi-page-hero {
  padding-top: calc(var(--nav-height) + 5rem);
  padding-bottom: 4rem;
  padding-left: 3rem;
  padding-right: 3rem;
  text-align: center;
  background: var(--ivory);
  border-bottom: 0.5px solid var(--parchment);
}
.pi-page-hero .pi-eyebrow { justify-content: center; display: flex; }

/* ============================================
   HOMEPAGE
   ============================================ */

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-height);
}
.hero-left {
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1.75rem;
}
.hero-title em {
  font-style: italic;
  color: var(--stone);
}
.hero-text {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--taupe);
  max-width: 360px;
  margin-bottom: 2.5rem;
}
.btn-primary {
  display: inline-block;
  padding: 11px 26px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--ivory);
  border: 1px solid var(--ink);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--espresso);
  border-color: var(--espresso);
}
.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-carousel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-carousel-image.active {
  opacity: 1;
}

/* Collections grid */
.pi-collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}
.pi-collection-card { cursor: pointer; }
.pi-collection-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 1rem;
}
.pi-collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.pi-collection-card:hover .pi-collection-image img {
  transform: scale(1.04);
}
.pi-collection-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.2rem;
  transition: color 0.3s ease;
}
.pi-collection-card:hover .pi-collection-name {
  color: var(--stone);
}
.pi-collection-card:hover .pi-caption {
  color: var(--ink);
}

/* Quote band */
.pi-quote-band {
  background: var(--cream);
  padding: 5.5rem 3rem;
  text-align: center;
  border-top: 0.5px solid var(--parchment);
  border-bottom: 0.5px solid var(--parchment);
}
.pi-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.4;
  color: var(--stone);
  opacity: 0.35;
  margin-bottom: 2rem;
  display: block;
}
.pi-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--espresso);
  max-width: 680px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}
.pi-quote-author {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}

/* About section */
.about-section {
  padding: 6rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
}
.about-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-text .pi-h2 {
  margin-bottom: 1.5rem;
}
.pi-about-content {
  background: var(--white-linen);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5rem 5rem 6rem;
}
.pi-about-content .pi-h2 { margin-bottom: 1.5rem; }
.pi-about-content .pi-body { margin-bottom: 2.5rem; }

/* Contact strip */
.pi-contact-strip {
  background: var(--ivory);
  padding: 6rem 3rem;
  border-top: 0.5px solid var(--parchment);
}
.pi-contact-strip .pi-section-header { margin-bottom: 3rem; }
.pi-contact-form {
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.pi-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.pi-form-submit { margin-top: 0.5rem; text-align: center; }

/* ============================================
   COLLECTIONS PAGE
   ============================================ */
.pi-collections-full {
  padding: 3rem 3rem 6rem;
  max-width: 1300px;
  margin: 0 auto;
}
.pi-collections-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pi-collection-full-card { cursor: pointer; }
.pi-collection-full-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.pi-collection-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.pi-collection-full-card:hover .pi-collection-full-image img {
  transform: scale(1.04);
}
.pi-collection-full-card:hover .pi-collection-full-name {
  color: var(--stone);
}
.pi-collection-full-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.3rem;
  text-align: center;
}
.pi-collection-full-style {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.8rem;
}
.pi-collection-full-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--taupe);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.pi-about-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 3rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: start;
}
.pi-about-page-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.pi-about-page-text .pi-h2 { margin-bottom: 2rem; }
.pi-about-page-text .pi-body { margin-bottom: 1.5rem; }
.pi-about-values {
  margin: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pi-about-value {
  border-top: 0.5px solid var(--parchment);
  padding-top: 1.5rem;
}
.pi-about-value-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.pi-about-value-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--taupe);
}
.pi-press {
  background: var(--cream);
  padding: 4rem 3rem;
  border-top: 0.5px solid var(--parchment);
}
.pi-press-grid {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  align-items: center;
  justify-content: center;
}
.pi-press-item {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--stone);
  letter-spacing: 0.04em;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.pi-contact-page {
  max-width: 620px;
  margin: 0 auto;
  padding: 4rem 3rem 6rem;
}
.pi-contact-page .pi-contact-form { max-width: 100%; }
.pi-contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 0.5px solid var(--parchment);
}
.pi-contact-info-item h4 {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.6rem;
}
.pi-contact-info-item p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--taupe);
}

/* ============================================
   FAQS PAGE
   ============================================ */
.pi-faqs {
  max-width: 750px;
  margin: 0 auto;
  padding: 5rem 3rem 6rem;
}
.pi-faqs-list {
  display: flex;
  flex-direction: column;
}
.pi-faq-item {
  border-bottom: 0.5px solid var(--parchment);
  list-style: none;
}
.pi-faq-item details {
  padding: 0;
}
.pi-faq-question {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  padding: 22px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color 0.3s ease;
}
.pi-faq-question:hover {
  color: var(--stone);
}
.pi-faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--stone);
  margin-left: 2rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
}
.pi-faq-item[open] .pi-faq-question::after {
  transform: rotate(45deg);
  color: var(--taupe);
}
.pi-faq-answer {
  padding: 0 0 20px 0;
  color: var(--taupe);
  font-size: 14px;
  line-height: 1.75;
}
.pi-faq-answer p {
  color: var(--taupe);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .pi-nav-links { display: none; }
  .pi-nav-enquire { display: none; }
  .pi-nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 4rem 2rem 3rem; }
  .hero-right { min-height: 60vw; }

  .pi-collections-grid,
  .pi-collections-full-grid { grid-template-columns: repeat(2, 1fr); }

  .about-section { grid-template-columns: 1fr; gap: 3rem; }
  .pi-about-strip { grid-template-columns: 1fr; }
  .pi-about-content { padding: 3rem 2rem; }

  .pi-about-page { grid-template-columns: 1fr; }
  .pi-about-page-image { position: static; aspect-ratio: 4/3; }

  .pi-footer { grid-template-columns: 1fr 1fr; }
  .pi-footer > *:first-child { grid-column: 1 / -1; }

  .pi-section { padding: 4rem 2rem; }
  .pi-nav { padding: 0 1.5rem; }
  .pi-contact-strip { padding: 4rem 2rem; }
  .pi-contact-page { padding: 3rem 2rem 4rem; }
}

@media (max-width: 560px) {
  .pi-collections-grid,
  .pi-collections-full-grid { grid-template-columns: 1fr; }
  .pi-form-row { grid-template-columns: 1fr; }
  .pi-footer { grid-template-columns: 1fr; padding: 3rem 2rem 1.5rem; }
  .pi-footer-bottom { flex-direction: column; gap: 0.5rem; padding: 1rem 2rem; }
  .pi-contact-info { grid-template-columns: 1fr; }
  .pi-quote-band { padding: 4rem 1.5rem; }
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.pi-lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 1rem;
  padding-left: 1.5rem;
  border-left: 0.5px solid var(--parchment);
}
.pi-lang-active {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: default;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
}
.pi-lang-sep {
  font-size: 10px;
  color: var(--parchment);
}
.pi-lang-link {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color 0.3s;
}
.pi-lang-link:hover { color: var(--ink); }

/* Mobile language switcher */
.pi-lang-switcher-mobile {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding-top: 1rem;
  border-top: 0.5px solid var(--parchment);
  margin-top: 0.5rem;
}
.pi-lang-switcher-mobile span,
.pi-lang-switcher-mobile a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
}
.pi-lang-switcher-mobile .pi-lang-active {
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
}

/* Language banner */
#pi-lang-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
  z-index: 200;
  box-shadow: 0 4px 24px rgba(44,37,32,0.18);
  white-space: nowrap;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from { transform: translateX(-50%) translateY(120%); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}
.pi-lang-banner-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.pi-lang-banner-accept,
.pi-lang-banner-dismiss {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
  font-family: var(--font-body);
  transition: color 0.3s;
}
.pi-lang-banner-accept { color: var(--gold); }
.pi-lang-banner-accept:hover { color: var(--cream); }
.pi-lang-banner-dismiss:hover { color: var(--gold); }

@media (max-width: 900px) {
  #pi-lang-banner {
    bottom: 1rem;
    left: 1.5rem;
    right: 1.5rem;
    transform: none;
    width: auto;
    flex-direction: column;
    gap: 0.75rem;
    white-space: normal;
  }
  .pi-lang-banner-actions {
    width: 100%;
    justify-content: center;
  }
}
