/* =============================================
   PracticePoint Co. — style.css
   Aesthetic: Nautical Private Club × Boutique Law Firm
   Palette: Deep Navy · Warm White · Antique Gold
   ============================================= */

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

:root {
  --navy:       #0f1b2d;
  --navy-mid:   #162236;
  --navy-light: #1e3050;
  --gold:       #b89a5a;
  --gold-light: #d4b97a;
  --gold-pale:  #f0e3c2;
  --cream:      #faf7f2;
  --white:      #ffffff;
  --text-body:  #2c3e50;
  --text-muted: #6b7280;
  --border:     rgba(184, 154, 90, 0.25);
  --border-mid: rgba(184, 154, 90, 0.15);

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

  --max-w: 1100px;
  --section-pad: 100px;
  --radius: 2px;

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* --- GRAIN TEXTURE --- */
.grain, .grain-dark, .grain-subtle {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.grain {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.grain-dark  { opacity: 0.07; background-image: inherit; }
.grain-subtle { opacity: 0.03; background-image: inherit; }

/* --- REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid var(--gold);
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184, 154, 90, 0.25);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--gold-pale);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 36px;
  border: 1px solid rgba(240, 227, 194, 0.4);
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* --- SECTION HEADERS --- */
.section-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header h2 em { font-style: italic; color: var(--gold); }
.section-intro {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* --- DECORATIVE RULES --- */
.hero-rule, .contact-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
.rule-line {
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.rule-diamond {
  font-size: 0.5rem;
  color: var(--gold);
  letter-spacing: 0;
}

/* =============================================
   NAV
   ============================================= */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15, 27, 45, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-mid);
  transition: box-shadow 0.3s ease;
}
#nav.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.3); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
}
.logo-leaf {
  color: var(--gold);
  font-size: 0.85rem;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(250, 247, 242, 0.7);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  color: var(--gold);
  border: 1px solid rgba(184, 154, 90, 0.5);
  padding: 7px 20px;
  transition: var(--transition);
}
.nav-links .nav-cta:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  background: var(--navy);
  border-top: 1px solid var(--border-mid);
  padding: 24px 40px;
}
.nav-mobile ul { display: flex; flex-direction: column; gap: 16px; }
.nav-mobile a {
  color: rgba(250, 247, 242, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold); }

/* =============================================
   HERO
   ============================================= */
#hero {
  position: relative;
  background: var(--navy);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(30, 48, 80, 0.8) 0%, transparent 70%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 40px 80px;
  text-align: center;
  overflow: hidden;
}

/* Subtle horizontal rule accent lines */
#hero::before, #hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.2;
}
#hero::before { top: 100px; }
#hero::after  { bottom: 80px; }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(250, 247, 242, 0.65);
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-rule {
  position: relative;
  z-index: 2;
}
.top-rule { margin-bottom: 48px; }
.bottom-rule { margin-top: 48px; }

/* =============================================
   SECTION DIVIDER
   ============================================= */
.section-divider {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-mid);
  border-bottom: 1px solid var(--border-mid);
  text-align: center;
  padding: 18px 40px;
}
.section-divider span {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(184, 154, 90, 0.6);
}

/* =============================================
   SERVICES
   ============================================= */
#services {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--white);
  padding: 44px 36px;
  border: 1px solid rgba(184, 154, 90, 0.12);
  transition: var(--transition);
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15, 27, 45, 0.1);
  border-color: var(--border);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.8;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* =============================================
   SIGNATURE OFFER
   ============================================= */
#offer {
  position: relative;
  background: var(--navy);
  padding: var(--section-pad) 0;
  overflow: hidden;
}
#offer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(184, 154, 90, 0.06) 0%, transparent 70%);
}

.offer-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.offer-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 6px 20px;
  margin-bottom: 28px;
}
.offer-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 12px;
}
.offer-tagline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: rgba(240, 227, 194, 0.65);
  margin-bottom: 60px;
}

.offer-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
  margin-bottom: 48px;
}

.offer-deliverables h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-mid);
}
.offer-deliverables ul { display: flex; flex-direction: column; gap: 12px; }
.offer-deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(250, 247, 242, 0.75);
  line-height: 1.6;
}
.check {
  color: var(--gold);
  font-size: 0.55rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.offer-pricing {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.price-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 36px;
  transition: var(--transition);
}
.price-card.featured {
  background: rgba(184, 154, 90, 0.08);
  border-color: rgba(184, 154, 90, 0.5);
}
.price-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
}
.price-period {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.5);
  margin-bottom: 12px;
}
.price-note {
  font-size: 0.82rem;
  color: rgba(250, 247, 242, 0.5);
  margin-bottom: 24px;
  line-height: 1.6;
}

.offer-disclaimer {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-mid);
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  text-align: left;
}
.offer-disclaimer p {
  font-size: 0.82rem;
  color: rgba(250, 247, 242, 0.5);
  line-height: 1.7;
}
.offer-disclaimer strong { color: var(--gold-light); }

/* =============================================
   PROCESS
   ============================================= */
#process {
  background: var(--white);
  padding: var(--section-pad) 0;
}

.process-steps {
  max-width: 680px;
  margin: 0 auto;
}
.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  text-align: right;
}
.step-content { padding-bottom: 4px; }
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.process-connector {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  opacity: 0.25;
  margin: 8px 0 8px 30px;
}

/* =============================================
   WHY PRACTICEPOINT
   ============================================= */
#why {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-text .section-tag { margin-bottom: 12px; }
.why-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 28px;
}
.why-text h2 em { font-style: italic; color: var(--gold); }
.why-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.why-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 8px;
}
.pillar {
  padding: 28px;
  border: 1px solid var(--border-mid);
  background: var(--white);
  transition: var(--transition);
}
.pillar:hover {
  border-color: var(--border);
  box-shadow: 0 8px 28px rgba(15, 27, 45, 0.07);
}
.pillar-icon {
  display: block;
  color: var(--gold);
  font-size: 0.55rem;
  margin-bottom: 14px;
}
.pillar h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}
.pillar p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   ABOUT
   ============================================= */
#about {
  position: relative;
  background: var(--navy-mid);
  padding: var(--section-pad) 0;
  overflow: hidden;
  text-align: center;
}

.about-emblem {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.15;
  margin-bottom: 32px;
  display: block;
}

#about .section-header h2 { color: var(--cream); }
#about .section-header h2 em { color: var(--gold); }
#about .section-tag { color: var(--gold); }

.about-body {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.about-body p {
  font-size: 1rem;
  color: rgba(250, 247, 242, 0.65);
  line-height: 1.9;
  margin-bottom: 20px;
}

/* =============================================
   FAQ
   ============================================= */
#faq {
  background: var(--white);
  padding: var(--section-pad) 0;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  border-top: 1px solid rgba(184, 154, 90, 0.15);
}
.faq-item {
  border-bottom: 1px solid rgba(184, 154, 90, 0.15);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.25s ease;
  gap: 20px;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq-answer p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding-bottom: 24px;
}

/* =============================================
   CONTACT
   ============================================= */
#contact {
  position: relative;
  background: var(--navy);
  padding: var(--section-pad) 0;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(184, 154, 90, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact-container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.contact-rule { margin-bottom: 48px; }
.contact-rule:last-child { margin-top: 64px; margin-bottom: 0; }

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 16px;
}
.contact-title em { font-style: italic; color: var(--gold); }

.contact-sub {
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.55);
  margin-bottom: 52px;
  line-height: 1.7;
}

.contact-form {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full-width { margin-bottom: 20px; }

label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

input, select, textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184, 154, 90, 0.25);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.93rem;
  padding: 14px 16px;
  transition: border-color 0.25s ease, background 0.25s ease;
  outline: none;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: rgba(250, 247, 242, 0.25); }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.07);
}
select option { background: var(--navy-mid); color: var(--cream); }
textarea { resize: vertical; min-height: 130px; }

.form-submit { margin-top: 28px; text-align: center; }
.form-submit .btn-primary {
  font-size: 0.8rem;
  padding: 16px 52px;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-mid);
  padding: 56px 40px;
  text-align: center;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-brand .logo-leaf { font-size: 0.75rem; }
.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(250, 247, 242, 0.35);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-bottom: 36px;
}
.footer-nav a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.45);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-disclaimer {
  max-width: 680px;
  margin: 0 auto 24px;
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.28);
  line-height: 1.7;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(250, 247, 242, 0.22);
  letter-spacing: 0.05em;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  :root { --section-pad: 72px; }
  .container { padding: 0 28px; }
  .nav-inner { padding: 0 28px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .offer-body { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-pillars { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }

  #hero { padding-top: 90px; }
}

@media (max-width: 600px) {
  :root { --section-pad: 56px; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-mobile { padding: 20px; }

  .services-grid { grid-template-columns: 1fr; }
  .why-pillars { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .offer-pricing { gap: 16px; }

  .hero-headline { font-size: 2.6rem; }
  .footer-nav { gap: 8px 16px; }
}

/* --- Mobile menu open state --- */
#nav.mobile-open .nav-mobile { display: block; }
#nav.mobile-open .nav-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
#nav.mobile-open .nav-toggle span:nth-child(2) { opacity: 0; }
#nav.mobile-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
