/*
Theme Name:  Beaches Notary
Theme URI:   https://beachesnotaryservice.com
Author:      Beaches Notary & Apostille Service
Description: Luxury editorial WordPress theme. Inline Tailwind CSS CDN, Cormorant Garamond + Jost typography, black/parchment palette.
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: beaches-notary
*/

/* ── BRAND VARIABLES ───────────────────── */
:root {
  --ink: #164c80;
  --parchment: #f4f7fc;
  --sand: #d4d1cd;
  --fog: #f4f3f1;
  --offwhite: #ffffff;
  /* --gold: #e8c97a; */
  --gold: #ffffff;
  --nav-h: 68px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--offwhite);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

/* ── UTILITY ───────────────────────────── */
.label {
  font-family: 'Jost', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #888;
}

.label-light {
  color: rgba(255, 255, 255, .7);
}

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

/* ══════════════════════════════════════════
   NAV — overflow:visible on every ancestor
   of .bn-dropdown so the panel is never
   clipped by a parent with overflow:hidden
   (Tailwind CDN can inject this via its
   base/preflight reset on certain elements)
   ══════════════════════════════════════════ */

/* ── NAV BASE ──────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--offwhite);
  transition: box-shadow .3s;
  overflow: visible;
  /* must NOT clip the dropdown */
}

#navbar.scrolled {
  box-shadow: 0 1px 0 var(--sand);
}

/* ── NAV INNER ─────────────────────────── */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  overflow: visible;
  /* must NOT clip the dropdown */
}

/* ── BRAND ─────────────────────────────── */
.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .9rem;
}

.bn-mono {
  position: relative;
  width: 48px;
  height: 34px;
  flex-shrink: 0;
}

.bn-mono span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.3rem;
  font-weight: 300;
  line-height: 1;
  position: absolute;
  bottom: 0;
  color: var(--ink);
}

.bn-mono span:first-child {
  left: 0;
}

.bn-mono span:last-child {
  right: 0;
}

.bn-mono-line {
  position: absolute;
  left: 50%;

  top: 3px;
  bottom: 0;
  width: 1px;
  background: var(--ink);
  transform: translateX(-50%);
}

.brand-text {
  display: none;
}

@media (min-width: 640px) {
  .brand-text {
    display: block;
    line-height: 1.3;
  }
}

.brand-name {
  font-family: 'Jost', sans-serif;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
}

.brand-sub {
  font-family: 'Jost', sans-serif;
  font-size: .55rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #999;
}

/* ── DESKTOP NAV LINKS WRAPPER ─────────── */
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  overflow: visible;
  /* must NOT clip the dropdown */
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

/* ── DESKTOP MENU LIST ─────────────────── */
.bn-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: visible;
  /* must NOT clip the dropdown */
}

/* ── MENU ITEM ─────────────────────────── */
.bn-menu-item {
  position: relative;
  overflow: visible;
  /* must NOT clip the dropdown */
}

/* ── DESKTOP NAV LINKS ─────────────────── */
.nav-link {
  font-family: 'Jost', sans-serif;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width .3s ease;
}

.nav-link:hover::after,
.bn-menu-item.is-active>.nav-link::after {
  width: 100%;
}

/* ── CHEVRON ───────────────────────────── */
.nav-chevron {
  display: inline-block;
  margin-left: 2px;
  flex-shrink: 0;
  transition: transform .25s ease;
  position: relative;
  top: -1px;
}

nav#navbar .bn-menu-item.has-dropdown:hover .nav-chevron,
nav#navbar .bn-menu-item.has-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg);
}

/* ── DROPDOWN PANEL ────────────────────── */
.bn-dropdown {
  display: none;
  position: absolute;
  /* top: calc(100% + 14px); */
  top: 100%;
  /* ← was calc(100% + 14px) — gap broke hover */
  padding-top: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--offwhite);
  border: 1px solid var(--sand);
  box-shadow: 0 12px 40px rgba(10, 10, 10, .12);
  list-style: none;
  margin: 0;
  padding: .5rem 0;
  min-width: 220px;
  z-index: 9999;
  /* high enough to always sit above page content */
  --tri: 7px;
}

/* Triangle — outer border colour */
.bn-dropdown::before {
  content: '';
  position: absolute;
  top: calc(var(--tri) * -1);
  left: 50%;
  transform: translateX(-50%);
  border-left: var(--tri) solid transparent;
  border-right: var(--tri) solid transparent;
  border-bottom: var(--tri) solid var(--sand);
}

/* Triangle — inner fill colour */
.bn-dropdown::after {
  content: '';
  position: absolute;
  top: calc(var(--tri) * -1 + 1px);
  left: 50%;
  transform: translateX(-50%);
  border-left: var(--tri) solid transparent;
  border-right: var(--tri) solid transparent;
  border-bottom: var(--tri) solid var(--offwhite);
}

/*
  ── DROPDOWN SHOW RULE ──────────────────────────────────────
  Uses nav#navbar prefix for higher specificity than any
  Tailwind CDN utility that might set display:none or
  overflow:hidden on a parent element.
  !important ensures it wins even if Tailwind generates a
  conflicting utility class at the same specificity level.
*/
nav#navbar .bn-menu-item.has-dropdown:hover .bn-dropdown,
nav#navbar .bn-menu-item.has-dropdown:focus-within .bn-dropdown {
  display: block !important;
  animation: dropIn .2s ease both;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ── DROPDOWN LINKS ────────────────────── */
.dropdown-link {
  display: block;
  padding: .65rem 1.4rem;
  font-family: 'Jost', sans-serif;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, border-color .15s;
  border-left: 2px solid transparent;
}

.dropdown-link:hover,
.dropdown-link.is-active {
  background: var(--fog);
  border-left-color: var(--ink);
  color: var(--ink);
}

/* ── HAMBURGER ─────────────────────────── */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  height: 1px;
  background: var(--ink);
  transition: all .3s;
}

.hamburger span:first-child {
  width: 24px;
}

.hamburger span:nth-child(2) {
  width: 24px;
}

.hamburger span:last-child {
  width: 16px;
}

/* ── MOBILE MENU WRAPPER ───────────────── */
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .45s ease, opacity .3s ease;
  background: var(--offwhite);
  border-top: 1px solid var(--sand);
}

#mobile-menu.open {
  max-height: 800px;
  opacity: 1;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
}

/* ── MOBILE MENU LIST ──────────────────── */
.bn-mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.bn-mobile-item {
  border-bottom: 1px solid var(--sand);
}

.bn-mobile-item:first-child {
  border-top: 1px solid var(--sand);
}

/* ── MOBILE PARENT ROW ─────────────────── */
.mobile-parent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── MOBILE LINKS ──────────────────────── */
.mobile-link {
  display: block;
  flex: 1;
  padding: .9rem 0;
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s;
}

.mobile-link:hover,
.mobile-link.is-active {
  color: #444;
}

/* ── MOBILE TOGGLE BUTTON ──────────────── */
.mobile-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: .9rem .5rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-toggle svg {
  transition: transform .3s ease;
}

.mobile-toggle.open svg {
  transform: rotate(180deg);
}

/* ── MOBILE SUBMENU ────────────────────── */
.bn-mobile-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  background: var(--fog);
}

.bn-mobile-submenu.open {
  max-height: 400px;
}

.bn-mobile-subitem {
  border-bottom: none !important;
}

/* ── MOBILE SUBLINKS ───────────────────── */
.mobile-sublink {
  display: block;
  padding: .72rem 1.25rem;
  font-family: 'Jost', sans-serif;
  font-size: .67rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #555;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: border-color .2s, color .2s;
}

.mobile-sublink:hover,
.mobile-sublink.is-active {
  border-left-color: var(--ink);
  color: var(--ink);
}

/* ── BUTTONS ───────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .9rem 2.4rem;
  text-decoration: none;
  transition: background .25s, color .25s, border-color .25s;
  cursor: pointer;
  border: none;
}

.btn-dark {
  background: var(--ink);
  color: var(--offwhite);
}

.btn-dark:hover {
  background: #333;
  color: var(--offwhite);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--offwhite);
}

.btn-white {
  background: var(--offwhite);
  color: var(--ink);
}

.btn-white:hover {
  background: var(--parchment);
  color: var(--ink);
}

.btn-ghost-white {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .4);
  color: var(--offwhite);
}

.btn-ghost-white:hover {
  border-color: var(--offwhite);
  background: rgba(255, 255, 255, .08);
}

/* ── HERO ──────────────────────────────── */
.hero-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(.85);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 10, 10, .75) 0%, rgba(10, 10, 10, .4) 55%, rgba(10, 10, 10, .18) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-stats {
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: var(--ink);
  backdrop-filter: blur(12px);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1024px) {
  .stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  padding: 1.4rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-label {
  font-family: 'Jost', sans-serif;
  font-size: .56rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: .3rem;
}

.stat-val {
  font-family: 'Cormorant Garamond', serif;
  color: #faf9f8;
  font-size: 1.1rem;
  font-weight: 300;
}

/* ── PAGE HERO BANNER ──────────────────── */
.page-hero {
  background: var(--parchment);
  padding: 7rem 0 4.5rem;
}

.page-hero-img {
  height: 360px;
  overflow: hidden;
  position: relative;
}

.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72);
}

.page-hero-img .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, .7) 0%, rgba(10, 10, 10, .2) 60%, transparent);
}

.page-hero-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
}

/* ── SECTIONS ──────────────────────────── */
.section {
  padding: 6rem 0;
}

.section-sm {
  padding: 4rem 0;
}

.section-parchment {
  background: var(--parchment);
}

.section-ink {
  background: var(--ink);
}

.section-fog {
  background: var(--fog);
}

/* ── GRIDS ─────────────────────────────── */
.grid-2 {
  display: grid;
  gap: 3rem;
}

.grid-3 {
  display: grid;
  gap: 2rem;
}

.grid-4 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (min-width: 1024px) {
  .grid-2-5 {
    grid-template-columns: 2fr 3fr;
  }

  .grid-3-2 {
    grid-template-columns: 3fr 2fr;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-5col {
    grid-template-columns: 2fr 3fr;
  }
}

/* ── SERVICE CARDS ─────────────────────── */
.svc-card {
  background: var(--offwhite);
  border: 1px solid var(--sand);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .35s, box-shadow .35s;
}

.svc-card:hover {
  border-color: var(--ink);
  box-shadow: 0 8px 40px rgba(10, 10, 10, .09);
}

.svc-img {
  height: 210px;
  overflow: hidden;
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.svc-card:hover .svc-img img {
  transform: scale(1.06);
}

.svc-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  flex: 1;
}

.svc-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--sand);
}

/* ── PRICING CARDS ─────────────────────── */
.price-card {
  border: 1px solid var(--sand);
  padding: 2.25rem;
  background: var(--offwhite);
  transition: border-color .3s, box-shadow .3s;
  position: relative;
}

.price-card:hover {
  border-color: var(--ink);
  box-shadow: 0 8px 32px rgba(10, 10, 10, .08);
}

.price-card.featured {
  background: var(--ink);
  border-color: var(--ink);
}

.price-card.featured .price-val,
.price-card.featured h3,
.price-card.featured li {
  color: #ffffff;
}

.price-card.featured .label {
  color: white;
}

.price-card.featured .price-sub {
  color: rgba(255, 255, 255, .45);
}

.price-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}

.price-sub {
  font-size: .75rem;
  color: #999;
  margin-top: .35rem;
  line-height: 1.5;
}

.price-divider {
  border: none;
  border-top: 1px solid var(--sand);
  margin: 1.5rem 0;
}

.price-card.featured .price-divider {
  border-color: rgba(255, 255, 255, .15);
}

.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.price-list li {
  font-size: .82rem;
  color: #555;
  line-height: 1.6;
  padding-left: 1.1rem;
  position: relative;
}

.price-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--ink);
}

.price-card.featured .price-list li::before {
  color: var(--gold);
}

/* ── PROCESS STEPS ─────────────────────── */
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  margin-bottom: .5rem;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: .5rem;
}

/* ── FAQ ───────────────────────────────── */
.faq-item {
  border-top: 1px solid var(--sand);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--sand);
}

.faq-trigger {
  width: 100%;
  text-align: left;
  padding: 1.4rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  color: var(--ink);
}

.faq-chev {
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform .3s ease;
}

.faq-chev.open {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-body.open {
  max-height: 600px;
}

.faq-answer {
  font-size: .86rem;
  line-height: 1.8;
  color: #555;
  padding-bottom: 1.4rem;
}

/* ── TESTIMONIALS ──────────────────────── */
.testi {
  border-left: 2px solid var(--sand);
  padding-left: 1.5rem;
}

.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: .75rem;
}

.testi-meta {
  font-family: 'Jost', sans-serif;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #aaa;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
}

/* ── IMAGE BLOCKS ──────────────────────── */
.img-zoom {
  overflow: hidden;
}

.img-zoom img {
  transition: transform .7s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-zoom:hover img {
  transform: scale(1.05);
}

/* ── PARALLAX ──────────────────────────── */
.par-wrap {
  position: relative;
  overflow: hidden;
}

.par-img {
  position: absolute;
  inset: -15% 0;
  height: 130%;
  width: 100%;
  object-fit: cover;
  will-change: transform;
}

/* ── DOCUMENT TAGS ─────────────────────── */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.tag {
  border: 1px solid var(--sand);
  padding: .4rem .85rem;
  font-size: .7rem;
  color: #666;
  font-family: 'Jost', sans-serif;
}

/* ── CONTACT FORM ──────────────────────── */
.form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-field label {
  font-family: 'Jost', sans-serif;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #888;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid var(--sand);
  padding: .85rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: .88rem;
  background: var(--offwhite);
  outline: none;
  transition: border-color .2s;
  color: var(--ink);
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--ink);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── TABLE ─────────────────────────────── */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: .6rem 0;
  font-size: .85rem;
  border-bottom: 1px solid var(--sand);
  color: #555;
}

.hours-table td:first-child {
  font-weight: 500;
  color: var(--ink);
  width: 100px;
}

/* ── TIMELINE ──────────────────────────── */
.timeline-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--sand);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-key {
  min-width: 80px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  flex-shrink: 0;
}

.timeline-val h4 {
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .3rem;
}

.timeline-val p {
  font-size: .8rem;
  color: #777;
  line-height: 1.65;
}

/* ── CHECKLIST ─────────────────────────── */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.checklist li {
  font-size: .88rem;
  color: #555;
  line-height: 1.65;
  padding-left: 1.4rem;
  position: relative;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ink);
  font-weight: 600;
}

.checklist-white li {
  color: rgba(255, 255, 255, .7);
}

.checklist-white li::before {
  color: #faf9f8;
}

/* ── AREA GRID ─────────────────────────── */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, .07);
}

.area-cell {
  background: rgba(10, 10, 10, .55);
  padding: 1.3rem 1.6rem;
  backdrop-filter: blur(8px);
}

.area-name {
  font-family: 'Cormorant Garamond', serif;
  color: #faf9f8;
  font-size: 1.05rem;
}

.area-type {
  font-family: 'Jost', sans-serif;
  font-size: .56rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .28);
  margin-top: .25rem;
}

/* ── SCROLL REVEAL ─────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fu {
  animation: fadeUp .9s ease both;
}

.fu1 {
  animation-delay: .12s;
}

.fu2 {
  animation-delay: .26s;
}

.fu3 {
  animation-delay: .42s;
}

.fu4 {
  animation-delay: .58s;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── FLOAT CTA ─────────────────────────── */
#float-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  transition: opacity .4s, transform .4s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

#float-cta.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.float-btn {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: var(--ink);
  color: #faf9f8;
  padding: .85rem 1.5rem;
  box-shadow: 0 8px 32px rgba(10, 10, 10, .35);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .07);
  font-family: 'Jost', sans-serif;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .25s;
}

.float-btn:hover {
  background: #222;
  color: #faf9f8;
}

/* ── SOCIAL ICONS ──────────────────────── */
.soc {
  transition: opacity .2s;
  text-decoration: none;
}

.soc:hover {
  opacity: .45;
}

/* ── FOOTER ────────────────────────────── */
.footer-wrap {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, .7);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
  }
}

.footer-heading {
  font-family: 'Jost', sans-serif;
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  margin-bottom: .9rem;
}

.footer-link {
  display: block;
  font-size: .77rem;
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  margin-bottom: .55rem;
  transition: color .2s;
}

.footer-link:hover {
  color: #faf9f8;
}

.footer-text {
  font-size: .77rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, .7);
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

@media (min-width: 640px) {
  .footer-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-copy {
  font-size: .66rem;
  color: rgba(255, 255, 255, .7);
}

.footer-disclaimer {
  font-size: .64rem;
  color: rgba(255, 255, 255, .7);
}

/* ── WORDPRESS CONTENT ─────────────────── */
.wp-content h1,
.wp-content h2,
.wp-content h3,
.wp-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 1rem;
}

.wp-content p {
  font-size: .9rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}

.wp-content a {
  color: var(--ink);
}

.wp-content ul,
.wp-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.wp-content li {
  font-size: .9rem;
  color: #555;
  line-height: 1.8;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}