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

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

body {
  font-family: 'Inter', sans-serif;
  color: #2a2a2a;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ===== CONTAINER ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #fff;
  padding: 14px 0 10px;
  border-bottom: 1px solid #eaeaea;
  position: relative;
  z-index: 1001;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}

.logo-name-highlight {
  font-weight: 700;
}

.logo-ampersand {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 4px;
  margin-top: 1px;
}

.logo-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  color: #7a8a96;
  font-weight: 400;
  margin-top: 3px;
  letter-spacing: 0.2px;
  font-style: italic;
}

/* ===== TOP BAR RIGHT ===== */
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-phone {
  font-size: 0.82rem;
  font-weight: 500;
  color: #3a3a3a;
  transition: color 0.3s;
}

.top-phone:hover {
  color: #00bcd4;
}

/* ===== LANGUAGE SELECTOR ===== */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #3a3a3a;
  cursor: pointer;
  position: relative;
  padding: 5px 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.3s;
}

.lang-selector:hover {
  border-color: #aaa;
}

.flag-icon {
  width: 16px;
  height: 11px;
  object-fit: cover;
  border-radius: 1px;
  display: inline-block;
  vertical-align: middle;
}

.lang-selector svg {
  width: 10px;
  height: 10px;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 10;
  min-width: 80px;
}

.lang-selector:hover .lang-dropdown {
  display: block;
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 0.8rem;
  color: #3a3a3a;
  transition: background 0.2s;
  text-decoration: none;
}

.lang-dropdown a:hover {
  background: #f5f5f5;
}

/* ===== CONTACT BUTTON ===== */
.btn-contact {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: 3px;
  transition: all 0.3s;
}

.btn-contact:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* ===== NAVBAR ===== */
.navbar {
  background: #fff;
  padding: 0;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.68rem;
  font-weight: 600;
  color: #2a2a2a;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
  padding: 12px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #00bcd4;
  transition: width 0.3s;
}

.nav-links a:hover {
  color: #00bcd4;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #2a2a2a;
  transition: all 0.3s;
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(180deg, #e6f7f9 0%, #d4f1f4 40%, #c8ecf0 100%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  padding-left: 10px;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.hero-content .hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: #3a4a56;
  line-height: 1.55;
  font-style: italic;
  letter-spacing: 0.2px;
}

/* ===== BOOKS COLLAGE ===== */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
}

.books-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
  max-width: 520px;
  position: relative;
}

.book-item {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s, box-shadow 0.4s;
}

.book-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.book-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Individual book positioning to match the collage layout */
.book-1 {
  grid-column: 1;
  grid-row: 1 / 3;
  height: 240px;
}

.book-2 {
  grid-column: 2;
  grid-row: 1 / 3;
  height: 240px;
}

.book-3 {
  grid-column: 3;
  grid-row: 1;
  height: 140px;
}

.book-4 {
  grid-column: 3;
  grid-row: 2;
  height: 140px;
}

.book-5 {
  grid-column: 4;
  grid-row: 1;
  height: 115px;
}

.book-6 {
  grid-column: 4;
  grid-row: 2;
  height: 165px;
}

/* Books caption */
.books-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-right: 10px;
  align-self: flex-end;
}

.caption-arrow {
  transform: scaleX(-1);
  flex-shrink: 0;
}

.books-caption span {
  font-size: 0.7rem;
  color: #6a7a8a;
  line-height: 1.45;
  text-align: right;
  font-style: italic;
}

/* ===== MEDIA LOGOS BAR ===== */
.media-logos {
  background: #fff;
  padding: 28px 0;
  border-top: 1px solid #eee;
}

.logos-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.logo-item {
  opacity: 0.45;
  transition: opacity 0.3s;
}

.logo-item:hover {
  opacity: 0.7;
}

.media-logo-text {
  font-size: 0.9rem;
  color: #444;
  font-weight: 500;
}

.washington-post {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
}

.inc-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.inc-logo strong {
  font-weight: 800;
}

.pw-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid #555;
  padding: 2px 6px;
  line-height: 1;
}

.forbes-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
}

.kw-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
}

.boston-globe {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 700;
  font-style: italic;
}

.newsweek-logo {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.wsj-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
}

.wsj-logo strong {
  font-weight: 800;
}

.pw-full-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #b71c1c;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: #0d1b2a;
  padding: 42px 0;
  position: relative;
}

.stats-title {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 8px 12px;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #00d4e6;
  margin-bottom: 4px;
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.45;
}

/* ===== WHO WE ARE ===== */
.who-we-are {
  background: #fff;
  padding: 80px 0;
}

.who-we-are .container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}

.who-content {
  padding-right: 20px;
}

.who-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
  position: relative;
  padding-bottom: 14px;
}

.who-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #00bcd4;
}

.who-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #5a6a7a;
  line-height: 1.75;
  margin-bottom: 20px;
}

.inline-link {
  color: #00bcd4;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s;
}

.inline-link:hover {
  color: #0097a7;
}

.meet-team-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #00bcd4;
  transition: all 0.3s;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.meet-team-link:hover {
  color: #0097a7;
  gap: 10px;
}

.who-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.who-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ===== WHAT WE DO ===== */
.what-we-do {
  background: #18a5b5;
  padding: 60px 0 70px;
}

.wwd-title {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 44px;
  font-style: italic;
}

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

.wwd-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.35s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wwd-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

.wwd-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.4;
}

.wwd-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.wwd-card p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.wwd-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #0d1b2a;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: 3px;
  transition: all 0.3s;
  margin-top: auto;
}

.wwd-btn:hover {
  background: #1a2d42;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ===== COMPREHENSIVE WRITING SOLUTIONS ===== */
.writing-solutions {
  background: #fff;
  padding: 70px 0 80px;
}

.ws-title {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 44px;
  font-style: italic;
}

.ws-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px 16px;
}

.ws-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 8px;
  transition: transform 0.3s;
  cursor: pointer;
}

.ws-item:hover {
  transform: translateY(-4px);
}

.ws-icon-box {
  width: 64px;
  height: 64px;
  background: #e8f6f8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, box-shadow 0.3s;
}

.ws-item:hover .ws-icon-box {
  background: #d0eef2;
  box-shadow: 0 4px 14px rgba(24, 165, 181, 0.15);
}

.ws-item span {
  font-size: 0.72rem;
  font-weight: 600;
  color: #2a2a2a;
  line-height: 1.4;
  letter-spacing: 0.2px;
}

/* ===== OUR RECENT WORK ===== */
.recent-work {
  background: #fff;
  padding: 80px 0 60px;
}

.rw-title {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 48px;
}

.rw-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: end;
}

.rw-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
}

.rw-book-container {
  width: 100%;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  margin-bottom: -15px;
  /* Pulls the book over the box */
}

.rw-book-img {
  max-height: 200px;
  max-width: 85%;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18), 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.rw-card:hover .rw-book-img {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.12);
}

/* Custom stack styling for the FNAF cards */
.rw-stacked-books {
  position: relative;
  width: 100%;
  height: 220px;
}

.rw-stacked-books .rw-book-img {
  position: absolute;
  bottom: 0;
  max-height: 180px;
}

.rw-stacked-books .stack-1 {
  z-index: 5;
  left: 50%;
  transform: translateX(-50%);
}

.rw-stacked-books .stack-2 {
  z-index: 4;
  left: 36%;
  transform: rotate(-7deg);
  opacity: 0.95;
}

.rw-stacked-books .stack-3 {
  z-index: 3;
  left: 64%;
  transform: rotate(7deg);
  opacity: 0.9;
}

.rw-card:hover .rw-stacked-books .stack-1 {
  transform: translateX(-50%) translateY(-10px) scale(1.04);
}

.rw-card:hover .rw-stacked-books .stack-2 {
  transform: rotate(-10deg) translateX(-8px) translateY(-5px);
}

.rw-card:hover .rw-stacked-books .stack-3 {
  transform: rotate(10deg) translateX(8px) translateY(-5px);
}

.rw-info-box {
  background: #0d1b2a;
  border-radius: 8px;
  width: 100%;
  padding: 24px 14px 16px;
  min-height: 80px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 5px solid #18a5b5;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.rw-info-box p {
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2px;
}

/* ===== CLIENT TESTIMONIALS ===== */
.testimonials {
  background: #fff;
  padding: 60px 0 90px;
  border-top: 1px solid #eaeaea;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 16px;
}

.quote-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.8rem;
  color: #bde4e8;
  line-height: 1;
  margin-top: -30px;
  margin-bottom: -15px;
  opacity: 0.8;
  user-select: none;
}

.quote-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #4a5a6a;
  line-height: 1.75;
  margin-bottom: 24px;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f0f0f0;
  padding-top: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.author-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a1a;
}

.author-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  color: #7a8a96;
  line-height: 1.35;
}

/* ===== GHOSTWRITING AND EDITING TEAM ===== */
.team-section {
  background: #f4f7f9;
  padding: 80px 0;
}

.team-section-title {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #0d1b2a;
}

.team-divider {
  width: 72px;
  height: 3px;
  background: #18a5b5;
  margin: 16px auto 48px;
}

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

.team-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s, box-shadow 0.35s;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.team-img-box {
  width: 100%;
  height: 290px;
  overflow: hidden;
  position: relative;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-card:hover .team-img {
  transform: scale(1.04);
}

.team-card-content {
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.member-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.member-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #0d1b2a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.member-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: #5a6a7a;
  line-height: 1.6;
  margin-bottom: 16px;
  min-height: 52px;
  flex-grow: 1;
}

.bio-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #18a5b5;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
  margin-bottom: 24px;
  transition: color 0.3s;
}

.bio-link:hover {
  color: #0c8290;
}

.member-books {
  display: flex;
  justify-content: center;
  gap: 8px;
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
}

.member-books img {
  width: 38px;
  height: 54px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  border-radius: 1px;
}

.team-action {
  margin-top: 48px;
  text-align: center;
}

.btn-meet-team {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: #18a5b5;
  color: #0d1b2a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  border-radius: 3px;
  transition: all 0.3s;
}

.btn-meet-team:hover {
  background: #148e9c;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(24, 165, 181, 0.25);
}

/* ===== WHY CHOOSE KAA ===== */
.why-choose {
  background: #fafcfd;
  padding: 90px 0;
}

.wc-main-title {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 64px;
  line-height: 1.3;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.wc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 72px;
  align-items: center;
}

.wc-row-reverse {
  /* Reversed columns grid */
  grid-template-columns: 1fr 1fr;
}

.wc-img-col {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.wc-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.wc-text-col {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.wc-point {
  display: flex;
  position: relative;
  padding-left: 28px;
}

.wc-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.8rem;
  font-weight: 700;
  color: rgba(24, 165, 181, 0.08);
  position: absolute;
  left: -8px;
  top: -24px;
  line-height: 1;
  user-select: none;
  z-index: 1;
}

.wc-point-content {
  position: relative;
  z-index: 2;
}

.wc-point-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.wc-point-content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  color: #5a6a7a;
  line-height: 1.65;
}

/* Tuscany Row Custom Styling */
.wc-tuscany-row {
  margin-bottom: 0;
  align-items: center;
}

.wc-tuscany-img {
  height: 300px;
}

.wc-perk-col {
  padding-left: 10px;
}

.wc-perk-header {
  position: relative;
  padding-left: 16px;
  margin-bottom: 16px;
}

.wc-perk-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: #18a5b5;
}

.wc-perk-header h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1.4;
}

.wc-perk-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #4a5a6a;
  line-height: 1.7;
}


/* ===== PARTNER CALLOUT SECTION ===== */
.partner-callout {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}

.pc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #0d1b2a;
  line-height: 1.25;
}

.pc-divider {
  width: 72px;
  height: 3px;
  background: #18a5b5;
  margin: 20px auto;
}

.pc-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  color: #5a6a7a;
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== CLIENT LOGOS SECTION ===== */
.client-logos-section {
  background: #f4f8fa;
  padding: 80px 0 90px;
}

.cls-title {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 48px;
  line-height: 1.45;
}

.cls-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.cls-item {
  width: 100%;
}

.logo-box {
  background: #fff;
  border-radius: 4px;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  user-select: none;
}

.logo-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* Typographic Logo Styles to Mimic Authentic Branding */
.logo-box span {
  display: inline-block;
  text-align: center;
}

.l-prh {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  line-height: 1.2;
}

.l-ss {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  font-weight: 600;
  font-style: italic;
  color: #111;
}

.l-hc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  color: #222;
  letter-spacing: -0.2px;
}

.l-mac {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: #2a2a2a;
  letter-spacing: 0.5px;
}

.l-hachette {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.l-caa {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: #000;
  letter-spacing: -0.5px;
}

.l-wme {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}

.l-wh {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.8rem;
  font-weight: 700;
  color: #333;
}

.l-folio {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #222;
}

.l-pf {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 1px;
}

.l-inkwell {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  font-style: italic;
}

.l-trident {
  font-family: 'Inter', sans-serif;
  font-size: 0.48rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.5px;
}

.l-icm {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  background: #000;
  color: #fff;
  padding: 2px 6px;
  border-radius: 1px;
}

.l-stmartins {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #333;
}

.l-mcgraw {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #b71c1c;
}

.l-hbr {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #222;
}

.l-sterling {
  font-family: 'Inter', sans-serif;
  font-size: 0.42rem;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.2px;
}

.l-abrams {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #000;
  line-height: 1;
}

.l-uta {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  background: #000;
  padding: 2px 6px;
}

.l-wiley {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #111;
  letter-spacing: 1px;
}

.l-hmh {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: #222;
}


/* ===== TITLES BROUGHT TO MARKET ===== */
.brought-to-market {
  background: #fff;
  padding: 85px 0 65px;
  border-top: 1px solid #f0f0f0;
}

.btm-title {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #0d1b2a;
}

.btm-divider {
  width: 72px;
  height: 3px;
  background: #18a5b5;
  margin: 16px auto;
}

.btm-desc {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #5a6a7a;
  margin-bottom: 48px;
}

.btm-grid {
  align-items: end;
}

/* ===== MAIN FOOTER ===== */
.main-footer {
  background: #fff;
  padding: 64px 0 48px;
  border-top: 1px solid #eaeaea;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #0d1b2a;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 18px;
  line-height: 1.3;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  color: #5a6a7a;
  text-decoration: none;
  line-height: 1.4;
  display: inline-block;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #18a5b5;
}

.retreat-date {
  font-size: 0.58rem;
  color: #8a9aaa;
  font-style: italic;
  display: inline-block;
  margin-top: 2px;
}

.rates-list .bold-link {
  font-weight: 700;
  color: #0d1b2a;
}

.rates-list .bold-link:hover {
  color: #18a5b5;
}

.contact-col {
  display: flex;
  flex-direction: column;
}

.footer-address {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  color: #5a6a7a;
  line-height: 1.45;
  margin-bottom: 12px;
}

.footer-phone,
.footer-email {
  margin-bottom: 6px;
}

.footer-phone a,
.footer-email a {
  font-weight: 700;
  color: #0d1b2a;
}

.btn-footer-cta {
  display: inline-block;
  padding: 10px 12px;
  background: #18a5b5;
  color: #0d1b2a !important;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 2px;
  text-align: center;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s, transform 0.3s;
}

.btn-footer-cta:hover {
  background: #148e9c;
  transform: translateY(-1px);
}

/* ===== BOTTOM BAR ===== */
.bottom-bar {
  background: #0d1b2a;
  padding: 24px 0;
}

.bottom-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  text-decoration: none;
  display: block;
}

.f-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.5px;
  display: block;
}

.f-logo-name-highlight {
  font-weight: 700;
}

.f-logo-ampersand {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.45rem;
  font-weight: 500;
  color: #a0b0c0;
  letter-spacing: 1.5px;
  display: block;
  margin-top: -2px;
}

.bottom-center {
  text-align: center;
}

.bottom-center p {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  color: #a0b0c0;
  margin-bottom: 4px;
}

.bottom-center p:last-child {
  margin-bottom: 0;
}

.bottom-center a {
  color: #18a5b5;
  text-decoration: none;
}

.bottom-center a:hover {
  text-decoration: underline;
}

.footer-dot {
  color: #18a5b5;
  margin: 0 4px;
}

.built-by {
  font-size: 0.58rem;
  color: #657585;
}

.built-by a {
  color: #8595a5;
}

.bottom-right {
  display: flex;
  justify-content: flex-end;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #18a5b5;
  color: #0d1b2a;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #fff;
  color: #18a5b5;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    padding-left: 0;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-visual {
    align-items: center;
    margin-top: 20px;
  }

  .books-collage {
    max-width: 450px;
  }

  .books-caption {
    align-self: center;
  }

  .nav-links {
    gap: 20px;
  }

  .who-we-are .container {
    grid-template-columns: 1fr;
  }

  .who-content {
    padding-right: 0;
    text-align: center;
  }

  .who-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .who-image {
    max-width: 600px;
    margin: 0 auto;
  }

  .wwd-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

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

  .testimonials-grid {
    gap: 24px;
  }

  .team-grid {
    gap: 20px;
  }

  .wc-row {
    gap: 40px;
  }

  .wc-img {
    height: 320px;
  }

  .cls-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 20px;
  }
}

@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    gap: 10px;
  }

  .top-bar-right {
    gap: 12px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    padding: 36px;
    transition: right 0.4s;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.1);
    gap: 0;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 0.82rem;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    width: 100%;
    text-align: left;
  }

  .hamburger {
    display: flex;
  }

  .navbar .container {
    justify-content: flex-end;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-content .hero-sub {
    font-size: 1rem;
  }

  .books-collage {
    max-width: 340px;
  }

  .book-1,
  .book-2 {
    height: 180px;
  }

  .book-3,
  .book-4 {
    height: 100px;
  }

  .book-5 {
    height: 85px;
  }

  .book-6 {
    height: 125px;
  }

  .logos-track {
    gap: 24px;
  }

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

  .stat-number {
    font-size: 2.2rem;
  }

  .who-image img {
    height: 320px;
  }

  .wwd-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ws-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 12px;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .wc-row,
  .wc-row-reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .wc-img {
    height: 280px;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }

  .bottom-bar-flex {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .bottom-right {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .books-collage {
    max-width: 280px;
  }

  .book-1,
  .book-2 {
    height: 150px;
  }

  .logo-name {
    font-size: 1.3rem;
  }

  .top-bar-right {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .who-image img {
    height: 250px;
  }

  .ws-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 8px;
  }

  .rw-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .wc-img {
    height: 200px;
  }

  .wc-main-title {
    font-size: 1.65rem;
  }

  .cls-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .contact-col {
    align-items: center;
  }
}