/* CSS Variables */
:root {
  --brand-plum: #4B2A3F;
  --brand-gold: #C9A24D;
  --brand-teal: #4E7A7C;
  --brand-forest: #5E6B3E;
  --brand-terracotta: #B35A3C;
  --brand-ivory: #F4EFE9;
  --brand-charcoal: #2B2B2B;
  --font-sans: "Montserrat", sans-serif;
  --font-serif: "Cormorant Garamond", serif;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--brand-ivory);
  color: var(--brand-charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: 
    radial-gradient(circle at top right, rgba(75, 42, 63, 0.05), transparent),
    url("https://www.transparenttextures.com/patterns/natural-paper.png");
}

::selection {
  background-color: rgba(75, 42, 63, 0.1);
}

/* Navigation */
.nav-bar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(244, 239, 233, 0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(75, 42, 63, 0.05);
  padding: 2rem 2.5rem;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.875rem;
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--brand-plum);
  text-decoration: none;
  transition: color 0.5s;
}

.logo-prefix {
  font-size: 0.7em;
  font-weight: 500;
  vertical-align: baseline;
  opacity: 0.85;
  display: inline-block;
  letter-spacing: 0.05em;
}

.nav-logo:hover {
  color: var(--brand-plum);
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-link {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-weight: 700;
  color: rgba(43, 43, 43, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-plum);
}

/* Dropdown Styles */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-toggle {
  cursor: pointer;
  user-select: none;
}

.nav-dropdown-toggle::after {
  content: '▼';
  font-size: 0.5em;
  margin-left: 0.5em;
  display: inline-block;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.active .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(244, 239, 233, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(75, 42, 63, 0.1);
  border-radius: 8px;
  padding: 1rem 0;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.2);
  margin-top: 1rem;
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 0.875rem 2rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-weight: 700;
  color: rgba(43, 43, 43, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-dropdown-item:hover {
  color: var(--brand-plum);
  background: rgba(75, 42, 63, 0.05);
  padding-left: 2.5rem;
}

.nav-dropdown-item:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.nav-dropdown-item:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--brand-charcoal);
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* Page Sections */
.page-section {
  display: block;
}

.page-section.active {
  display: block;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 2rem;
  overflow: hidden;
  background: var(--brand-plum);
  background-image: 
    linear-gradient(to right, 
      rgba(75, 42, 63, 0.98) 0%, 
      rgba(75, 42, 63, 0.95) 66.66%, 
      rgba(201, 162, 77, 0.85) 66.66%, 
      rgba(201, 162, 77, 0.9) 100%
    ),
    url("https://www.transparenttextures.com/patterns/stone-wall.png"),
    url("https://www.transparenttextures.com/patterns/rough-cloth.png");
  background-blend-mode: normal, overlay, multiply;
  background-size: 100% 100%, 400px 400px, 200px 200px;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    url("https://www.transparenttextures.com/patterns/brushed-alum.png"),
    url("https://www.transparenttextures.com/patterns/stone-wall.png");
  background-blend-mode: overlay, multiply;
  opacity: 0.35;
  z-index: -1;
  background-size: 300px 300px, 400px 400px;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .hero-container {
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
  }
}

.hero-content {
  order: 2;
  padding-right: 2rem;
}

@media (min-width: 768px) {
  .hero-content {
    order: 1;
  }
}

.hero-text {
  margin-bottom: 2.5rem;
}

.hero-title {
  font-size: 4.5rem;
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: white;
  margin-bottom: 1.5rem;
  text-transform: lowercase;
}

.hero-title .logo-prefix {
  margin-right: 0.15em;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 9rem;
  }
}

.hero-subtitle {
  font-size: 2rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 36rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 2.5rem;
  }
}

.hero-divider {
  width: 6rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin: 2rem 0;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  max-width: 32rem;
  line-height: 1.6;
  font-style: italic;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-image {
  order: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-image {
    order: 2;
    justify-content: flex-start;
    padding-left: 2rem;
  }
}

.image-border {
  display: none;
}

.image-wrapper {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  filter: grayscale(0);
  transition: filter 1s;
  box-shadow: 0 30px 60px -12px rgba(0,0,0,0.25), 0 18px 36px -18px rgba(0,0,0,0.3);
  border: 3px solid white;
  background: transparent;
  max-width: 100%;
  margin: 0 auto;
}

.image-wrapper:hover {
  filter: grayscale(0);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: normal;
}

/* Buttons */
.btn {
  padding: 1rem 3rem;
  height: 4rem;
  border: none;
  cursor: pointer;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 900;
  transition: all 0.7s;
  font-family: var(--font-sans);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  vertical-align: middle;
}

.btn-primary {
  background: var(--brand-terracotta);
  color: white;
}

.btn-primary:hover {
  background: rgba(179, 90, 60, 0.9);
  box-shadow: 0 0 30px rgba(179, 90, 60, 0.3);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.btn-ghost {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 162, 77, 0.3);
  color: var(--brand-charcoal);
  padding: 1rem 3rem;
}

.btn-ghost:hover {
  border-bottom-color: var(--brand-gold);
}

.btn-gold {
  background: var(--brand-gold);
  color: var(--brand-charcoal);
}

.btn-gold:hover {
  background: rgba(201, 162, 77, 0.9);
  box-shadow: 0 0 40px rgba(201, 162, 77, 0.1);
}

.btn-black {
  background: var(--brand-charcoal);
  color: white;
  width: 100%;
}

@media (min-width: 768px) {
  .btn-black {
    width: auto;
  }
}

.btn-black:hover {
  background: rgba(43, 43, 43, 0.8);
}

/* Book Section */
.book-section {
  position: relative;
  padding: 15rem 2rem;
}

.book-bg {
  position: absolute;
  inset: 0;
  background: rgba(94, 107, 62, 0.05);
  opacity: 0.5;
  z-index: -1;
}

.book-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8rem;
  align-items: center;
}

@media (min-width: 768px) {
  .book-container {
    grid-template-columns: 1fr 1fr;
  }
}

.book-image-wrapper {
  position: relative;
  max-width: 28rem;
  margin: 0 auto;
}

.book-image-hover {
  position: absolute;
  inset: 0;
  background: rgba(94, 107, 62, 0.1);
  filter: blur(100px);
  opacity: 0;
  transition: opacity 1s;
  transform: scale(0.75);
}

.book-image-wrapper:hover .book-image-hover {
  opacity: 1;
}

.book-image {
  width: 100%;
  box-shadow: 0 30px 60px -12px rgba(0,0,0,0.25), 0 18px 36px -18px rgba(0,0,0,0.3);
  transition: transform 1s;
}

.book-image-wrapper:hover .book-image {
  transform: translateY(-2rem);
}

.book-content {
  color: var(--brand-charcoal);
}

.book-text {
  margin-bottom: 3rem;
}

.book-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.6em;
  font-weight: 700;
  color: rgba(201, 162, 77, 0.6);
  margin-bottom: 1.5rem;
}

.book-title {
  font-size: 4rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--brand-plum);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .book-title {
    font-size: 6rem;
  }
}

.book-description {
  font-size: 1.5rem;
  color: rgba(43, 43, 43, 0.7);
  font-weight: 300;
  line-height: 1.6;
  font-style: italic;
  border-left: 4px solid rgba(201, 162, 77, 0.2);
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.book-buttons {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding-top: 1.5rem;
}

/* Reviews Section */
.reviews-section {
  padding: 15rem 2rem;
  background: var(--brand-plum);
  background-image: 
    linear-gradient(135deg, rgba(75, 42, 63, 0.98), rgba(75, 42, 63, 0.95)),
    url("https://www.transparenttextures.com/patterns/natural-paper.png");
  background-blend-mode: normal, overlay;
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(201, 162, 77, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201, 162, 77, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.reviews-container {
  max-width: 120rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.reviews-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.8em;
  font-weight: 700;
  color: rgba(201, 162, 77, 0.8);
  margin-bottom: 6rem;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.reviews-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(201, 162, 77, 0.6), transparent);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.review-card {
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: cardFadeIn 0.8s ease-out forwards;
  opacity: 0;
}

.review-card:nth-child(1) {
  animation-delay: 0.1s;
}

.review-card:nth-child(2) {
  animation-delay: 0.3s;
}

.review-card:nth-child(3) {
  animation-delay: 0.5s;
}

.review-card:hover {
  transform: translateY(-8px) scale(1.02);
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-card-inner {
  background: var(--brand-ivory);
  border: 2px solid rgba(201, 162, 77, 0.4);
  padding: 3.5rem 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 
    0 20px 40px -10px rgba(0, 0, 0, 0.3), 
    0 0 0 1px rgba(201, 162, 77, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background-image: url("https://www.transparenttextures.com/patterns/natural-paper.png");
  background-blend-mode: overlay;
  opacity: 0.98;
}

.review-card-decoration {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  opacity: 0.15;
  background: 
    radial-gradient(circle, rgba(201, 162, 77, 0.3) 1px, transparent 1px);
  background-size: 10px 10px;
  pointer-events: none;
}

.review-card-decoration::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 2px solid rgba(201, 162, 77, 0.2);
  border-radius: 50%;
}

.review-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, 
    transparent, 
    var(--brand-gold) 20%, 
    rgba(201, 162, 77, 0.9) 50%, 
    var(--brand-gold) 80%, 
    transparent
  );
  opacity: 0.9;
  box-shadow: 0 2px 8px rgba(201, 162, 77, 0.3);
}

.review-card-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(201, 162, 77, 0.15);
  pointer-events: none;
}

.review-card:hover .review-card-inner {
  border-color: rgba(201, 162, 77, 0.8);
  box-shadow: 
    0 30px 60px -15px rgba(0, 0, 0, 0.5), 
    0 0 0 1px rgba(201, 162, 77, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 0 30px rgba(201, 162, 77, 0.2);
  transform: scale(1.02);
}

.review-card:hover .review-card-decoration {
  opacity: 0.25;
  transform: rotate(5deg);
  transition: all 0.4s ease;
}

.quote-icon {
  font-size: 4rem;
  font-family: var(--font-serif);
  color: rgba(201, 162, 77, 0.5);
  margin: 0 auto 1.5rem;
  transform: rotate(180deg);
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(201, 162, 77, 0.2));
}

.review-card:hover .quote-icon {
  color: rgba(201, 162, 77, 0.7);
  transform: rotate(180deg) scale(1.1);
}

.stars {
  font-size: 1.2rem;
  color: var(--brand-gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.2em;
  opacity: 0.9;
  filter: drop-shadow(0 1px 2px rgba(201, 162, 77, 0.3));
}

.review-text {
  font-size: 1.25rem;
  font-family: var(--font-serif);
  font-style: italic;
  line-height: 1.7;
  color: var(--brand-charcoal);
  margin-bottom: 2rem;
  flex-grow: 1;
  position: relative;
  padding: 0 0.5rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .review-text {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

.review-card:hover .review-text {
  color: rgba(43, 43, 43, 0.95);
}

.review-divider {
  width: 4rem;
  height: 2px;
  background: linear-gradient(to right, 
    transparent, 
    rgba(201, 162, 77, 0.4) 20%, 
    rgba(201, 162, 77, 0.7) 50%, 
    rgba(201, 162, 77, 0.4) 80%, 
    transparent
  );
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.review-card:hover .review-divider {
  width: 5rem;
  background: linear-gradient(to right, 
    transparent, 
    rgba(201, 162, 77, 0.5) 20%, 
    rgba(201, 162, 77, 0.9) 50%, 
    rgba(201, 162, 77, 0.5) 80%, 
    transparent
  );
}

.review-author {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-weight: 700;
  color: var(--brand-plum);
  margin-top: auto;
  transition: all 0.3s ease;
  position: relative;
  padding-top: 0.5rem;
}

.review-author::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--brand-plum);
  transition: width 0.3s ease;
}

.review-card:hover .review-author::before {
  width: 3rem;
}

/* Events Section */
.events-section {
  padding: 15rem 2rem;
  max-width: 100rem;
  margin: 0 auto;
  position: relative;
  background: var(--brand-ivory);
  background-image: 
    linear-gradient(135deg, rgba(244, 239, 233, 0.95), rgba(244, 239, 233, 0.98)),
    url("https://www.transparenttextures.com/patterns/natural-paper.png");
  background-blend-mode: normal, overlay;
}

.events-background {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(201, 162, 77, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(75, 42, 63, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.events-container {
  position: relative;
  z-index: 1;
}

.events-header {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
}

.events-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.6em;
  font-weight: 700;
  color: rgba(75, 42, 63, 0.4);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.events-title {
  font-size: 3rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-style: italic;
  color: var(--brand-plum);
  margin-bottom: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .events-title {
    font-size: 4rem;
  }
}

.events-title-underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, 
    transparent, 
    var(--brand-gold) 20%, 
    rgba(201, 162, 77, 0.9) 50%, 
    var(--brand-gold) 80%, 
    transparent
  );
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(201, 162, 77, 0.3);
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.event-item {
  background: white;
  border: 2px solid rgba(201, 162, 77, 0.2);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.5rem;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(201, 162, 77, 0.1);
  position: relative;
  overflow: hidden;
}

.event-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--brand-gold), rgba(201, 162, 77, 0.8));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.event-item:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 77, 0.5);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(201, 162, 77, 0.3);
}

.event-item:hover::before {
  opacity: 1;
}

@media (max-width: 768px) {
  .event-item {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

.event-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--brand-plum), rgba(75, 42, 63, 0.9));
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 8px 20px -5px rgba(75, 42, 63, 0.3);
  position: relative;
  overflow: hidden;
}

.event-date-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 162, 77, 0.2), transparent);
  pointer-events: none;
}

.event-month {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.25rem;
}

.event-day {
  font-size: 2rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: white;
  line-height: 1;
}

.event-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.event-main-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.event-venue {
  font-size: 1.75rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--brand-plum);
  transition: color 0.3s;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .event-venue {
    font-size: 2rem;
  }
}

.event-item:hover .event-venue {
  color: rgba(75, 42, 63, 0.9);
}

.event-location {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-teal);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-location::before {
  content: '📍';
  font-size: 0.875rem;
}

.event-type {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-gold);
  font-weight: 700;
  padding: 0.35rem 1rem;
  background: rgba(201, 162, 77, 0.1);
  border: 1px solid rgba(201, 162, 77, 0.3);
  border-radius: 20px;
  width: fit-content;
  margin-top: 0.5rem;
}

.event-action {
  display: flex;
  align-items: center;
}

.event-btn {
  padding: 0.875rem 2.5rem;
  height: auto;
  min-height: 3rem;
  background: var(--brand-plum);
  color: white;
  border: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px -5px rgba(75, 42, 63, 0.3);
}

.event-btn:hover {
  background: rgba(75, 42, 63, 0.9);
  box-shadow: 0 6px 20px -5px rgba(75, 42, 63, 0.4);
  transform: translateY(-2px);
}

.arrow {
  margin-left: 0.5rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.event-btn:hover .arrow {
  transform: translateX(3px);
}

/* Newsletter Section */
.newsletter-section {
  position: relative;
  padding: 8rem 2rem;
  background: var(--brand-charcoal);
  color: var(--brand-ivory);
  overflow: hidden;
}

.newsletter-pattern {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/natural-paper.png");
  opacity: 0.08;
}

.newsletter-container {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 162, 77, 0.2);
  border-radius: 12px;
  padding: 4rem 3rem;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .newsletter-content {
    padding: 3rem 2rem;
  }
}

.newsletter-title {
  font-size: 2rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--brand-ivory);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .newsletter-title {
    font-size: 2.5rem;
  }
}

.newsletter-description {
  font-size: 1rem;
  color: rgba(244, 239, 233, 0.7);
  font-weight: 300;
  max-width: 32rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .newsletter-description {
    font-size: 1.125rem;
  }
}

.newsletter-highlight {
  color: var(--brand-gold);
  font-style: italic;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 28rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
    gap: 1rem;
  }
}

.newsletter-input {
  flex: 1;
  height: 3.5rem;
  padding: 0 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: var(--brand-ivory);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--brand-gold);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.15);
}

.btn-newsletter {
  height: 3.5rem;
  padding: 0 2rem;
  background: var(--brand-gold);
  color: var(--brand-charcoal);
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px -5px rgba(201, 162, 77, 0.3);
  white-space: nowrap;
}

.btn-newsletter:hover {
  background: rgba(201, 162, 77, 0.9);
  box-shadow: 0 6px 20px -5px rgba(201, 162, 77, 0.4);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  padding: 10rem 2rem;
  border-top: 1px solid rgba(75, 42, 63, 0.05);
  background: var(--brand-ivory);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr 1fr;
    text-align: left;
  }
}

.footer-avatar {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-avatar {
    justify-content: flex-start;
  }
}

.footer-avatar img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%) contrast(125%);
  border: 1px solid rgba(75, 42, 63, 0.1);
}

.footer-center {
  text-align: center;
}

.footer-copyright {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(43, 43, 43, 0.4);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-quote {
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(43, 43, 43, 0.4);
  font-family: var(--font-serif);
  line-height: 1.6;
  padding: 0 1rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-social {
    justify-content: flex-end;
  }
}

.social-link {
  color: rgba(43, 43, 43, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
}

/* Instagram Colors */
.social-instagram {
  position: relative;
  background: rgba(225, 48, 108, 0.1);
}

.social-instagram::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.social-instagram:hover::before {
  opacity: 0.3;
}

.social-instagram svg {
  color: #E1306C;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(225, 48, 108, 0.2));
}

.social-instagram:hover svg {
  color: #bc1888;
  filter: drop-shadow(0 4px 8px rgba(225, 48, 108, 0.4));
  transform: scale(1.05);
}

/* Twitter/X Colors */
.social-twitter {
  color: #000000;
}

.social-twitter:hover {
  color: #1DA1F2;
  background: rgba(29, 161, 242, 0.1);
}

.social-twitter svg {
  color: #000000;
  transition: color 0.3s ease;
}

.social-twitter:hover svg {
  color: #1DA1F2;
  filter: drop-shadow(0 2px 4px rgba(29, 161, 242, 0.3));
}

/* LinkedIn Colors */
.social-linkedin {
  color: #0A66C2;
}

.social-linkedin:hover {
  color: #0077B5;
  background: rgba(0, 119, 181, 0.1);
}

.social-linkedin svg {
  color: #0A66C2;
  transition: color 0.3s ease;
}

.social-linkedin:hover svg {
  color: #0077B5;
  filter: drop-shadow(0 2px 4px rgba(0, 119, 181, 0.3));
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: var(--brand-ivory);
  z-index: 50;
  border-bottom: 1px solid rgba(43, 43, 43, 0.1);
  padding: 2rem;
}

@media (min-width: 768px) {
  .sidebar {
    width: 16rem;
    height: 100vh;
    border-bottom: none;
    border-right: 1px solid rgba(43, 43, 43, 0.1);
  }
}

.sidebar-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

@media (min-width: 768px) {
  .sidebar-content {
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    justify-content: space-between;
  }
}

.sidebar-logo {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand-charcoal);
  text-decoration: none;
  transition: opacity 0.3s;
}

.sidebar-logo .logo-prefix {
  font-size: 0.7em;
  font-weight: 500;
  vertical-align: baseline;
  opacity: 0.85;
  display: inline-block;
  letter-spacing: 0.05em;
}

.sidebar-logo:hover {
  opacity: 0.7;
}

.sidebar-nav {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .sidebar-nav {
    display: flex;
  }
}

.sidebar-link {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(43, 43, 43, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.sidebar-link:hover,
.sidebar-link.active {
  color: var(--brand-plum);
  font-weight: 500;
}

.sidebar-copyright {
  display: none;
  font-size: 0.75rem;
  color: rgba(43, 43, 43, 0.6);
}

@media (min-width: 768px) {
  .sidebar-copyright {
    display: block;
  }
}

/* Main Content */
.main-content {
  min-height: 100vh;
  width: 100%;
  padding-top: 5rem;
}

@media (min-width: 768px) {
  .main-content {
    padding-left: 16rem;
    padding-top: 0;
  }
}

.content-wrapper {
  padding: 8rem 1.5rem;
  max-width: 72rem;
}

@media (min-width: 768px) {
  .content-wrapper {
    padding: 10rem 5rem;
  }
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-title {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--brand-charcoal);
}

@media (min-width: 768px) {
  .about-title {
    font-size: 3.75rem;
  }
}

.about-description {
  margin-bottom: 4rem;
}

.about-description p {
  font-size: 1.125rem;
  color: rgba(43, 43, 43, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.services-title {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--brand-charcoal);
}

.services-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  color: rgba(43, 43, 43, 0.7);
}

.about-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: rgba(43, 43, 43, 0.05);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Page */
.contact-wrapper {
  padding: 8rem 1.5rem;
  width: 100%;
  max-width: 64rem;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

@media (min-width: 768px) {
  .contact-wrapper {
    padding: 0 5rem;
  }
}

.contact-content {
  width: 100%;
}

.contact-title {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--brand-charcoal);
}

@media (min-width: 768px) {
  .contact-title {
    font-size: 3.75rem;
  }
}

.contact-subtitle {
  font-size: 1.25rem;
  color: rgba(43, 43, 43, 0.7);
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  margin-bottom: 2rem;
}

.info-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--brand-charcoal);
}

.info-value {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  color: var(--brand-charcoal);
  text-decoration: none;
  transition: opacity 0.3s;
}

.info-value:hover {
  opacity: 0.5;
}

.info-value-text {
  color: rgba(43, 43, 43, 0.7);
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 1rem;
  color: rgba(43, 43, 43, 0.7);
}

.social-text-link {
  color: rgba(43, 43, 43, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.social-text-link:hover {
  color: var(--brand-charcoal);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(43, 43, 43, 0.7);
}

.form-input,
.form-textarea {
  border: none;
  border-bottom: 1px solid rgba(43, 43, 43, 0.1);
  border-radius: 0;
  padding: 0.5rem 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--brand-charcoal);
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-bottom-color: var(--brand-charcoal);
}

.form-textarea {
  min-height: 100px;
  resize: none;
}

/* Story Page */
.story-wrapper {
  padding: 8rem 1.5rem;
  width: 100%;
  max-width: 64rem;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

@media (min-width: 768px) {
  .story-wrapper {
    padding: 0 5rem;
  }
}

.story-content {
  width: 100%;
}

.story-header {
  margin-bottom: 4rem;
  text-align: center;
}

.story-title {
  font-size: 3rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-style: italic;
  color: var(--brand-plum);
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .story-title {
    font-size: 4rem;
  }
}

.story-subtitle {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(75, 42, 63, 0.5);
  font-weight: 600;
}

.story-main {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.story-quote-section {
  position: relative;
  padding: 3rem 2rem;
  background: var(--brand-ivory);
  border-left: 4px solid var(--brand-gold);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.story-quote-icon {
  font-size: 4rem;
  font-family: var(--font-serif);
  color: rgba(201, 162, 77, 0.3);
  line-height: 1;
  margin-bottom: 1rem;
}

.story-quote {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  line-height: 1.6;
  color: var(--brand-charcoal);
  margin: 0;
}

@media (min-width: 768px) {
  .story-quote {
    font-size: 1.75rem;
  }
}

.story-text-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.story-paragraph {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(43, 43, 43, 0.8);
}

.story-paragraph p {
  margin: 0;
}

@media (min-width: 768px) {
  .story-paragraph {
    font-size: 1.25rem;
  }
}

.story-cta {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(75, 42, 63, 0.1);
  text-align: center;
}

.story-badge {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand-terracotta);
  font-weight: 700;
  margin-bottom: 2rem;
  padding: 0.5rem 1.5rem;
  background: rgba(179, 90, 60, 0.1);
  border: 1px solid rgba(179, 90, 60, 0.2);
  border-radius: 20px;
}

.story-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .story-buttons {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.btn-story-primary {
  background: var(--brand-terracotta);
  color: white;
  padding: 1rem 2.5rem;
  height: auto;
  min-height: 3.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px -5px rgba(179, 90, 60, 0.3);
}

.btn-story-primary:hover {
  background: rgba(179, 90, 60, 0.9);
  box-shadow: 0 6px 20px -5px rgba(179, 90, 60, 0.4);
  transform: translateY(-2px);
}

.btn-story-outline {
  background: transparent;
  color: var(--brand-plum);
  padding: 1rem 2.5rem;
  height: auto;
  min-height: 3.5rem;
  border: 2px solid var(--brand-plum);
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.btn-story-outline:hover {
  background: var(--brand-plum);
  color: white;
  transform: translateY(-2px);
}

/* Animations */
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px) scale(0.95);
  animation: fadeInRight 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.fade-in-scale {
  opacity: 0;
  transform: scale(0.95);
  animation: fadeInScale 1s 0.2s forwards;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 2s forwards;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Intersection Observer Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 640px) {
  .nav-bar {
    padding: 1.5rem 1.5rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .book-title {
    font-size: 2.5rem;
  }
  
  .review-text {
    font-size: 1.75rem;
  }
  
  .newsletter-title {
    font-size: 2.5rem;
  }
}

/* Animated Celtic Icons */
.celtic-icon {
  position: absolute;
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
}

.celtic-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 5px rgba(201, 162, 77, 0.3));
}

.celtic-icon-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 10%;
  animation: floatRotate 20s ease-in-out infinite;
}

.celtic-icon-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 15%;
  animation: floatRotate 15s ease-in-out infinite reverse;
}

.celtic-icon-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation: floatRotate 18s ease-in-out infinite;
}

@keyframes floatRotate {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.2;
  }
  25% {
    transform: translateY(-20px) rotate(90deg) scale(1.1);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-10px) rotate(180deg) scale(0.9);
    opacity: 0.3;
  }
  75% {
    transform: translateY(-15px) rotate(270deg) scale(1.05);
    opacity: 0.35;
  }
}

/* Section Celtic Decorations */
.section-celtic {
  position: absolute;
  z-index: 1;
  opacity: 0.3;
  pointer-events: none;
}

.section-celtic svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 5px rgba(201, 162, 77, 0.3));
}

.section-celtic-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 5%;
  animation: sectionFloat 22s ease-in-out infinite;
}

.section-celtic-2 {
  width: 100px;
  height: 100px;
  bottom: 15%;
  right: 8%;
  animation: sectionFloat 18s ease-in-out infinite reverse;
}

.section-celtic-3 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 10%;
  animation: sectionFloat 20s ease-in-out infinite;
}

.section-celtic-4 {
  width: 90px;
  height: 90px;
  bottom: 20%;
  left: 12%;
  animation: sectionFloat 16s ease-in-out infinite reverse;
}

.section-celtic-5 {
  width: 130px;
  height: 130px;
  top: 15%;
  left: 8%;
  animation: sectionFloat 24s ease-in-out infinite;
}

.section-celtic-6 {
  width: 110px;
  height: 110px;
  bottom: 18%;
  right: 10%;
  animation: sectionFloat 19s ease-in-out infinite reverse;
}

@keyframes sectionFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.2;
  }
  25% {
    transform: translateY(-15px) rotate(90deg) scale(1.1);
    opacity: 0.35;
  }
  50% {
    transform: translateY(-8px) rotate(180deg) scale(0.95);
    opacity: 0.25;
  }
  75% {
    transform: translateY(-12px) rotate(270deg) scale(1.05);
    opacity: 0.3;
  }
}

@media (max-width: 768px) {
  .celtic-icon,
  .section-celtic {
    display: none;
  }
}

/* Press Release Logo Grid Section */
.press-release-section {
  padding: 8rem 2rem;
  background: var(--brand-ivory);
  position: relative;
}

.press-release-container {
  max-width: 1280px;
  margin: 0 auto;
}

.press-release-header {
  text-align: center;
  margin-bottom: 5rem;
}

.press-release-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.8em;
  font-weight: 700;
  color: rgba(75, 42, 63, 0.4);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.press-release-title {
  font-size: 3rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-style: italic;
  color: var(--brand-plum);
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .press-release-title {
    font-size: 4rem;
  }
}

.press-release-underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, 
    transparent, 
    var(--brand-gold) 20%, 
    rgba(201, 162, 77, 0.9) 50%, 
    var(--brand-gold) 80%, 
    transparent
  );
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(201, 162, 77, 0.3);
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2.5rem;
  padding: 2rem 0;
}

@media (min-width: 640px) {
  .logos-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .logos-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3.5rem;
  }
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2 / 1;
  background: white;
  border: 2px solid rgba(75, 42, 63, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: logoFadeIn 0.6s ease-out forwards;
}

.logo-item:nth-child(1) { animation-delay: 0.1s; }
.logo-item:nth-child(2) { animation-delay: 0.15s; }
.logo-item:nth-child(3) { animation-delay: 0.2s; }
.logo-item:nth-child(4) { animation-delay: 0.25s; }
.logo-item:nth-child(5) { animation-delay: 0.3s; }
.logo-item:nth-child(6) { animation-delay: 0.35s; }
.logo-item:nth-child(7) { animation-delay: 0.4s; }
.logo-item:nth-child(8) { animation-delay: 0.45s; }
.logo-item:nth-child(9) { animation-delay: 0.5s; }
.logo-item:nth-child(10) { animation-delay: 0.55s; }
.logo-item:nth-child(n+11) { animation-delay: 0.6s; }

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.logo-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(201, 162, 77, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo-item:hover::before {
  opacity: 1;
}

.logo-item:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(201, 162, 77, 0.5);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(201, 162, 77, 0.3);
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: grayscale(20%);
}

.logo-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.logo-item-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-charcoal);
  text-align: center;
  line-height: 1.4;
  transition: color 0.3s ease;
  word-break: break-word;
}

.logo-item:hover .logo-item-text {
  color: var(--brand-plum);
}

/* Mobile dropdown adjustments */
@media (max-width: 767px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    margin-top: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 0.5rem 0;
    box-shadow: none;
    min-width: auto;
  }
  
  .nav-dropdown-item {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
  }
  
  .logos-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 2rem;
  }
}

/* Elementor Support */
.elementor-content {
  width: 100%;
  min-height: 100px;
  margin-bottom: 2rem;
}

.elementor-content:empty {
  display: none;
}

.elementor-widget-container {
  width: 100%;
}

/* Ensure Elementor content respects page layout */
#elementor-canvas-container {
  padding-top: 8rem; /* Account for fixed navbar */
}
