/* ═══════════════════════════════════════════════════════
   LAYOUT — The Saracen's Head Inn
   Section layouts, grids, and structural patterns
   ═══════════════════════════════════════════════════════ */

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

/* ── Sections ── */
.section {
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

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

.section--timber {
  background-color: var(--timber);
  color: var(--cream);
}

.section--timber .section-title,
.section--timber h2,
.section--timber h3,
.section--timber h4 {
  color: var(--cream);
}

.section--timber p {
  color: var(--parchment);
}

.section--timber .section-subtitle {
  color: var(--parchment-dark);
}

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

.section--dark .section-title,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--cream);
}

.section--dark p {
  color: var(--parchment);
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header .section-subtitle {
  margin: var(--space-sm) auto 0;
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background-color var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 var(--border);
}

.nav.scrolled .nav__logo-text {
  color: var(--ink);
}

.nav.scrolled .nav__link {
  color: var(--ink);
}

.nav.scrolled .nav__link:hover {
  color: var(--ale);
}

.nav.scrolled .nav__hamburger span {
  background: var(--ink);
}

.nav.scrolled .nav__logo svg g {
  stroke: var(--ale);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.nav__logo svg {
  width: 30px;
  height: auto;
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--cream);
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav__link {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 0.25rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--duration-normal) var(--ease-out);
  opacity: 0.5;
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--ale-light);
}

.nav__book {
  padding: 0.45rem 1.25rem;
  background: transparent;
  color: var(--cream);
  border-radius: 0;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all var(--duration-normal) var(--ease-out);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.nav__book:hover {
  background: var(--ale);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px var(--ale);
}

.nav.scrolled .nav__book {
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(26, 26, 46, 0.2);
}

.nav.scrolled .nav__book:hover {
  background: var(--ink);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px var(--ink);
}

/* ── Hamburger ── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 8px;

}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all var(--duration-normal) var(--ease-out);
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Mobile Drawer ── */
.nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: var(--ink);
  padding: calc(var(--nav-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-out);
  z-index: 999;
  box-shadow: var(--shadow-xl);
}

.nav__drawer.open {
  transform: translateX(0);
}

.nav__drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 41, 59, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-out);
  z-index: 998;
}

.nav__drawer-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.nav__drawer .nav__link {
  font-size: var(--text-lg);
  padding: var(--space-xs) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav__drawer .nav__book {
  display: inline-block;
  text-align: center;
  margin-top: var(--space-sm);
  padding: 0.75rem 2rem;
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--ink);
}

/* Vignette */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(0, 0, 0, 0.4) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.hero__bg {
  position: absolute;
  inset: -10%;
  z-index: 0;
  background: url('../images/pub-front.jpg') center 30% / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.7) 100%);
}

/* Side timber panels */
.hero__timber-left,
.hero__timber-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}

.hero__timber-left {
  left: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
}

.hero__timber-right {
  right: 0;
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 var(--space-md);
}

.hero__since {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ale-light);
  margin-bottom: var(--space-sm);
  opacity: 0;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-sm);
  opacity: 0;
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--parchment-dark);
  margin-bottom: var(--space-md);
  opacity: 0;
}

.hero__body {
  font-size: var(--text-base);
  color: var(--parchment);
  max-width: 560px;
  margin: 0 auto var(--space-lg);
  opacity: 0;
  line-height: 1.8;
}

.hero__ctas {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
}

/* Hero SVG elements */
.hero__svg-element {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}

.hero__hops-left {
  left: 3%;
  top: 20%;
  width: 100px;
  opacity: 0.15;
}

.hero__hops-right {
  right: 3%;
  top: 25%;
  width: 100px;
  opacity: 0.15;
  transform: scaleX(-1);
}

.hero__ghost-wisp {
  right: 8%;
  bottom: 15%;
  width: 80px;
  opacity: 0.06;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
}

.hero__scroll-text {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ale-light);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--ale-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════
   ENTRANCE OVERLAY (Door Animation)
   ═══════════════════════════════════════════════════════ */

.entrance-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

.entrance-overlay__top,
.entrance-overlay__bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  z-index: 2;
}

.entrance-overlay__top {
  top: 0;
  background: #0a0a0a;
}

.entrance-overlay__bottom {
  bottom: 0;
  background: #0a0a0a;
}

/* Decorative seam where doors meet */
.entrance-overlay__top::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ale), transparent);
  opacity: 0.3;
}

.entrance-overlay__text {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.entrance-overlay__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  letter-spacing: 0.05em;
  color: #ffffff;
  opacity: 0;
}

.entrance-overlay__est {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ale-light);
  margin-top: var(--space-xs);
  opacity: 0;
}

/* Loading spinner — thin ring */
.entrance-overlay__loader {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--ale-light);
  border-radius: 50%;
  animation: loaderSpin 0.9s linear infinite;
  margin-bottom: var(--space-lg);
}

/* ═══════════════════════════════════════════════════════
   QUICK INFO BAR
   ═══════════════════════════════════════════════════════ */

.info-bar {
  background: var(--ink);
  padding: var(--space-lg) 0;
}

.info-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.info-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.info-bar__icon {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.info-bar__text {
  font-size: var(--text-sm);
  color: var(--parchment);
  line-height: 1.5;
}

.info-bar__text a {
  color: var(--ale-light);
  transition: color var(--duration-fast);
}

.info-bar__text a:hover {
  color: var(--ale);
}

.info-bar__highlight {
  grid-column: 1 / -1;
  padding: var(--space-xs) var(--space-sm);
  color: var(--ale-light);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════
   OUR STORY
   ═══════════════════════════════════════════════════════ */

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

.story__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xl);
  align-items: start;
}

.story__text {
  position: relative;
}

.story__text .pull-quote {
  margin-bottom: var(--space-lg);
}

.story__text p {
  margin-bottom: var(--space-sm);
  font-size: var(--text-base);
}

.story__ghost-text {
  font-style: italic;
  color: var(--ghost-text);
  position: relative;
  padding: var(--space-sm);
  border-radius: var(--border-radius);
  background: rgba(138, 155, 176, 0.06);
}

.story__decorative {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
}

.story__decorative svg {
  max-width: 180px;
}

/* ═══════════════════════════════════════════════════════
   THE PUB
   ═══════════════════════════════════════════════════════ */

.pub__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.pub__card {
  background: var(--cream);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  position: relative;
  transition: all var(--duration-normal) var(--ease-out);
  border: 1px solid var(--border);
}

.pub__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.pub__card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-sm);
  color: var(--ale);
}

.pub__card h3 {
  margin-bottom: var(--space-xs);
}

.pub__card p {
  color: var(--stone);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   FOOD
   ═══════════════════════════════════════════════════════ */

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

.food__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.food__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
}

.food__card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.food__card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-sm);
  color: var(--ale-light);
}

.food__card h3 {
  color: var(--cream);
  margin-bottom: var(--space-xs);
}

.food__card p {
  color: var(--parchment-dark);
  font-size: var(--text-sm);
}

.food__cta {
  text-align: center;
  margin-top: var(--space-lg);
}

.food__note {
  text-align: center;
  color: var(--parchment-dark);
  font-style: italic;
  font-size: var(--text-sm);
  margin-top: var(--space-sm);
}

/* ═══════════════════════════════════════════════════════
   ROOMS
   ═══════════════════════════════════════════════════════ */

.rooms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.room__card {
  display: block;
  background: var(--cream);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
  border: 1px solid var(--border);
  color: inherit;
  text-decoration: none;
}

.room__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  color: inherit;
}

.room__card-visual {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.room__card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.room__card:hover .room__card-visual img {
  transform: scale(1.04);
}

.room__card-count {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--ale);
  color: var(--cream);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.room__card-body {
  padding: var(--space-md);
}

.room__card-body h3 {
  margin-bottom: var(--space-xs);
}

.room__card-link {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ale);
  transition: color var(--duration-fast);
}

.room__card:hover .room__card-link {
  color: var(--ale-dark);
}

.room__card-link::after {
  content: ' \2192';
  transition: transform var(--duration-fast);
  display: inline-block;
}

.room__card:hover .room__card-link::after {
  transform: translateX(3px);
}

.room__card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-sm);
}

.room__amenity {
  font-size: var(--text-xs);
  color: var(--stone);
  background: transparent;
  padding: 0;
  letter-spacing: 0.02em;
}

.room__amenity + .room__amenity::before {
  content: '\00b7';
  margin-right: 0.5rem;
  opacity: 0.3;
}

.rooms__breakfast {
  text-align: center;
  margin-top: var(--space-lg);
  padding: var(--space-md);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.rooms__breakfast p {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: var(--text-lg);
  color: var(--ink);
}

.rooms__nearby {
  text-align: center;
  margin-top: var(--space-lg);
}

.rooms__nearby-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.rooms__nearby-item {
  font-size: var(--text-xs);
  color: var(--stone);
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid var(--border);
  border-radius: 0;
  letter-spacing: 0.02em;
}

.rooms__booking-note {
  text-align: center;
  margin-top: var(--space-md);
  color: var(--stone);
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════
   WHAT'S ON / EVENTS
   ═══════════════════════════════════════════════════════ */

.events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.event__card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  transition: all var(--duration-normal) var(--ease-out);
  background: rgba(255, 255, 255, 0.03);
}

.event__card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

.event__card-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto var(--space-sm);
  color: var(--ale-light);
}

.event__card h3 {
  color: var(--cream);
  margin-bottom: var(--space-xs);
}

.event__card p {
  color: var(--parchment-dark);
  font-size: var(--text-sm);
}

/* ═══════════════════════════════════════════════════════
   FIND US
   ═══════════════════════════════════════════════════════ */

.find-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.find-us__map {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  height: 400px;
}

.find-us__map iframe {
  width: 100%;
  height: 100%;
}

.find-us__details {
  position: relative;
}

.find-us__details h3 {
  margin-bottom: var(--space-sm);
}

.find-us__details p {
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.find-us__info-block {
  margin-bottom: var(--space-md);
}

.find-us__info-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ale);
  margin-bottom: 0.25rem;
  display: block;
}

.find-us__compass {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  opacity: 0.12;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */

.footer {
  background: var(--ink);
  padding: var(--space-xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__logo svg {
  width: 26px;
  height: auto;
}

.footer__logo-text {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--cream);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__tagline {
  color: var(--stone);
  font-style: italic;
  font-size: var(--text-sm);
}

.footer__nav h4 {
  color: var(--cream);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__nav-list a {
  color: var(--stone);
  font-size: var(--text-sm);
  transition: color var(--duration-fast);
}

.footer__nav-list a:hover {
  color: var(--ale-light);
}

.footer__contact h4 {
  color: var(--cream);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.footer__contact p {
  color: var(--stone);
  font-size: var(--text-sm);
  margin-bottom: 0.5rem;
}

.footer__contact a {
  color: var(--ale-light);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast);
  color: rgba(255, 255, 255, 0.4);
}

.footer__social-link:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-sm) 0;
  text-align: center;
}

.footer__bottom p {
  color: var(--stone);
  font-size: var(--text-xs);
}

/* ═══════════════════════════════════════════════════════
   FLOATING CTA
   ═══════════════════════════════════════════════════════ */

.floating-cta {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  z-index: 900;
  opacity: 0;
  transform: translateX(100px);
  pointer-events: none;
}

.floating-cta.visible {
  pointer-events: all;
}

.floating-cta__btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: #ffffff;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(26, 26, 46, 0.25);
  transition: all var(--duration-fast);
}

.floating-cta__btn:hover {
  background: var(--ale);
  color: #ffffff;
  box-shadow: 0 6px 25px rgba(26, 26, 46, 0.3);
}

/* ═══════════════════════════════════════════════════════
   SVG ORNAMENTAL RULES
   ═══════════════════════════════════════════════════════ */

.ornate-rule {
  display: flex;
  justify-content: center;
  padding: var(--space-md) 0;
}

.ornate-rule svg {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* ═══════════════════════════════════════════════════════
   AMBIENT FLOATING ELEMENTS
   ═══════════════════════════════════════════════════════ */

.ambient-leaf {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
  z-index: 0;
}

.ambient-leaf svg {
  width: 100%;
  height: 100%;
}
