@font-face {
 font-family: "Caveat";
 src: url("../fonts/Caveat/Caveat-Regular.ttf");
 font-style: normal;
 font-weight: normal;
}
@font-face {
 font-family: "Montserrat";
 src: url("../fonts/Montserrat/Montserrat-Regular.ttf");
 font-style: normal;
 font-weight: 400;
 font-display: swap;
}
@font-face {
 font-family: "Cormorant Garamond";
 src: url("../fonts/Cormorant_Garamond/CormorantGaramond-Regular.ttf");
 font-style: normal;
 font-weight: 400;
 font-display: swap;
}
@font-face {
 font-family: "Caveat";
 src: url("../fonts/Caveat/Caveat-Regular.ttf");
 font-style: normal;
 font-weight: normal;
}
:root {
 --navy: #1a2639;
 --gold: #ffb835a8;
 --dark-gold: #9e824f;
 --parchment: #f4efe6;
 --parchment-dark: #eae2d2;
 --text-dark: #2c3539;
 --text-muted: #c4c7ca;
}

body {
 margin: 0;
 padding: 0;
 font-family: "Montserrat", sans-serif;
 color: var(--text-dark);
}

.container {
 max-width: 1400px;
 margin: 0 auto;
 padding: 0 20px;
}
.section-title {
 font-size: 3rem;
 font-weight: 700;
 color: var(--purple-dark);
 margin-bottom: 20px;
}
.gallery {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
 gap: 16px;
}
.ph {
 height: 220px;
 display: flex;
 align-items: center;
 justify-content: center;
 color: white;
 font-weight: 600;
 overflow: hidden;
}

.ph img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
 border-radius: 20px;
}
.block-title {
 font-family: "Cormorant Garamond", serif;
 font-size: 2rem;
 font-weight: 400;
 letter-spacing: 2px;
 color: #271f20;
 margin-bottom: 2.5rem;
 position: relative;
 display: inline-block;
 padding-bottom: 12px;
}

.block-title::after {
 content: "";
 position: absolute;
 left: 0;
 bottom: 0;
 width: 20%;
 height: 2px;
 background: linear-gradient(90deg, #373125 0%, rgba(209, 186, 141, 0.2) 100%);
}

.arrow-link {
 max-width: max-content;
 font-size: 0.95rem;
 text-transform: uppercase;
 letter-spacing: 2px;
 border-bottom: 1px solid var(--dark-gold);
 color: #311e43;
 text-decoration: none;
 font-weight: 600;
 transition: color 0.3s;
 display: inline-block;
}

.arrow-link:hover {
 color: var(--navy);
}

.decorative-separator {
 border: none;
 height: 4px;
 margin: 3rem auto;
 background: linear-gradient(
  to right,
  #4a3319 0%,
  rgba(115, 84, 52, 0.7) 15%,
  rgba(115, 84, 52, 0.7) 95%,
  #4a3319 160%
 );
 clip-path: polygon(
  0% 0%,
  10% 30%,
  5% 25%,
  75% 20%,
  100% 0%,
  100% 65%,
  7% 5%,
  50% 65%,
  25% 55%,
  0% 35%
 );
 filter: blur(0.4px);
 -webkit-filter: blur(0.4px);
 opacity: 0.85;
}
.parchment-bg {
 position: relative;
 background-color: #f3ece0;
 padding: 5rem 0;
 overflow: hidden;
}

.parchment-bg::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background-image: url("../img/sps/paper_texture.png");
 background-repeat: repeat;
 z-index: 1;
 pointer-events: none;
}

.parchment-bg::after {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background-image: linear-gradient(
   to right,
   rgba(84, 58, 32, 0.45) 0%,
   rgba(115, 84, 52, 0.3) 2%,
   rgba(145, 112, 78, 0.2) 5%,
   rgba(166, 133, 96, 0.1) 9%,
   rgba(189, 161, 127, 0.04) 14%,
   rgba(212, 189, 159, 0.01) 18%,
   transparent 22%
  ),
  linear-gradient(
   to left,
   rgba(84, 58, 32, 0.45) 0%,
   rgba(115, 84, 52, 0.3) 2%,
   rgba(145, 112, 78, 0.2) 5%,
   rgba(166, 133, 96, 0.1) 9%,
   rgba(189, 161, 127, 0.04) 14%,
   rgba(212, 189, 159, 0.01) 18%,
   transparent 22%
  );
 z-index: 3;
 pointer-events: none;
}

.parchment-bg > * {
 position: relative;
 z-index: 3;
}

.hero-section {
 position: relative;
 height: 60vh;
 min-height: 600px;
 display: flex;
 align-items: center;
 justify-content: center;
 color: white;
 text-align: center;
}
.hero-section > img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 position: absolute;
 top: 0;
 left: 0;
}

.hero-overlay {
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: linear-gradient(
  180deg,
  rgba(26, 38, 57, 0.8) 0%,
  rgba(26, 38, 57, 0.4) 100%
 );
 z-index: 1;
}
.mobile-menu-overlay {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-color: rgba(26, 38, 57, 0.98);
 z-index: 9999;
 display: flex;
 justify-content: center;
 align-items: center;
 opacity: 0;
 pointer-events: none;
 transform: translateY(-20px);
 transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-menu-overlay.is-open {
 opacity: 1;
 pointer-events: auto;
 transform: translateY(0);
}

.close-menu-btn {
 position: absolute;
 top: 25px;
 right: 25px;
 background: none;
 border: none;
 color: white;
 font-size: 2.5rem;
 cursor: pointer;
 color: rgba(255, 255, 255, 0.6);
 transition: color 0.3s;
}

.close-menu-btn:hover {
 color: var(--gold);
}

.mobile-nav-links {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 2rem;
}

.mobile-nav-item {
 color: white;
 text-decoration: none;
 font-size: 1.3rem;
 font-weight: 500;
 letter-spacing: 3px;
 transition: color 0.3s;
}

.mobile-nav-item:hover {
 color: var(--gold);
}
.hero-container {
 position: relative;
 z-index: 2;
 width: 100%;
 max-width: 1400px;
 height: 100%;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 padding: 2rem;
}
.hero-nav-container {
 display: flex;
 justify-content: flex-end;
 align-items: center;
 width: 100%;
 padding: 20px 0;
}

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

.nav-item {
 color: rgba(255, 255, 255, 0.8);
 text-decoration: none;
 font-size: 0.8rem;
 font-weight: 500;
 letter-spacing: 2px;
 position: relative;
 transition: color 0.3s ease;
}

.nav-item:first-child:after {
 content: "";
 position: absolute;
 left: 0;
 bottom: -3px;
 width: 100%;
 background: #fff;
 height: 1px;
}

.nav-item:hover {
 color: var(--gold);
}

.burger-menu-btn {
 display: none;
 width: 62px;
 height: 62px;
 border-radius: 50%;
 background-color: #44364c;
 border: 1px solid #ae8f76;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 gap: 4px;
 cursor: pointer;
 padding: 0;
 transition: all 0.3s ease;
}

.burger-bar {
 display: block;
 width: 23px;
 height: 2px;
 background-color: #ae8f76;
}

.burger-menu-btn:hover {
 background-color: var(--gold);
 border-color: var(--gold);
}

.burger-menu-btn:hover .burger-bar {
 background-color: var(--navy);
}
.hero-center {
 margin: auto 0;
}

.hero-logo-wrapper {
 margin-bottom: 1.5rem;
}

.hero-logo {
 width: 150px;
 height: auto;
 filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-title {
 font-family: "Cormorant Garamond", serif;
 font-size: 3.5rem;
 font-weight: 400;
 letter-spacing: 6px;
 line-height: 1.2;
 margin: 1rem 0;
}

.hero-subtitle {
 font-family: "Cormorant Garamond", serif;
 font-size: 1.6rem;
 color: var(--gold);
 margin-bottom: 3rem;
}

.hero-btn {
 display: inline-flex;
 align-items: center;
 padding: 0;
 background-color: #311e43;
 border: 1px solid #7c49ad;
 border-radius: 0 30px 30px 0;
 text-decoration: none;
 transition: all 0.3s ease;
 box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-btn .btn-text {
 color: #fff;
 font-size: 0.8rem;
 font-weight: 600;
 letter-spacing: 2px;
 padding: 18px 25px 18px 35px;
 text-transform: uppercase;
}

.hero-btn .btn-icon {
 color: #fff;
 font-size: 1.1rem;
 padding-right: 25px;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: transform 0.3s ease;
}

.hero-btn:hover {
 background-color: #42295a;
 border-color: #fff;
 box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.hero-btn:hover .btn-icon {
 transform: translateY(2px);
}
.about-text {
 display: flex;
 flex-direction: column;
 align-items: flex-start;
}
.about-grid {
 display: grid;
 grid-template-columns: 0.8fr 2.2fr;
 gap: 50px;
 align-items: start;
 width: 100%;
}
.about-text .block-title {
 margin-bottom: 1.5rem;
}
.manifest-subtext {
 font-size: 0.95rem;
 line-height: 1.7;
 color: var(--text-dark);
 margin: 0 0 20px 0;
}

.manifest-subtext {
 font-size: 1rem;
 line-height: 1.5;
 color: #615650;
}
.features-cards {
 height: 100%;
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 25px;
 align-items: flex-start;
}
.feat-card {
 min-height: 385px;
 background: #fff;
 border: 1px solid rgba(26, 38, 57, 0.08);
 border-radius: 12px;
 display: flex;
 flex-direction: column;
 position: relative;
 box-shadow: 0 10px 30px rgba(26, 38, 57, 0.04);
 padding-top: 35px;
 text-align: center;
}

.feat-icon-badge {
 position: absolute;
 top: -50px;
 left: 50%;
 transform: translateX(-50%);
 width: 100px;
 height: 100px;
 background-color: #9f7e4e;
 border: 2px solid #d3ba89;
 border-radius: 50%;
 box-shadow: 0 1px 0 3px #9f7e4e;
 display: flex;
 align-items: center;
 justify-content: center;
 z-index: 10;
}

.badge-emoji {
 font-size: 1.3rem;
 line-height: 1;
}

.feat-img-wp {
 width: 100%;
 height: 190px;
 overflow: hidden;
 border-radius: 12px 12px 0 0;
 position: relative;
}

.feat-card > img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 filter: sepia(0.12) contrast(0.95);
 transition: transform 0.5s ease;
}

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

.feat-card-content {
 padding: 22px 20px 25px 20px;
 display: flex;
 flex-direction: column;
 flex-grow: 1;
 justify-content: flex-end;
}

.feat-card-content h3 {
 font-family: "Cormorant Garamond", serif;
 font-size: 1.4rem;
 font-weight: 700;
 letter-spacing: 1.5px;
 margin: 0 0 12px 0;
 color: var(--gold);
}

.feat-card-content p {
 font-size: 0.85rem;
 line-height: 1.5;
 color: var(--text-muted);
 margin: 0;
}
.mb-0 {
 margin-bottom: 0 !important;
}
.mt-0 {
 margin-top: 0 !important;
}
.map-section {
 background: rgba(231, 215, 195, 0.5) url("../img/sps/light_paper_fibers.png")
  repeat center;
 background-size: auto;
 position: relative;
 box-shadow: inset 0 0 50px rgba(115, 84, 52, 0.12);
 clip-path: polygon(
  0% 0.3%,
  20% 0%,
  40% 0.4%,
  60% 0.1%,
  80% 0.3%,
  100% 0%,
  99.8% 20%,
  100% 40%,
  99.7% 60%,
  100% 80%,
  99.8% 100%,
  80% 99.7%,
  60% 100%,
  40% 99.6%,
  20% 100%,
  0% 99.8%,
  0.2% 80%,
  0% 60%,
  0.3% 40%,
  0.1% 20%
 );
}

.map-grid {
 display: grid;
 grid-template-columns: 1.4fr 1fr 220px;
 gap: 40px;
 align-items: center;
 margin-right: 7vw;
}

.map-image-wrapper {
 position: relative;
}

.vintage-map {
 position: relative;
 z-index: 1;
 width: 100%;
 max-height: 300px;
 height: auto;
 display: block;
 filter: sepia(0.2) saturate(0.9);
}

.map-text {
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 text-align: left;
}

.map-text .block-title {
 margin-bottom: 1rem;
}

.map-text p {
 font-size: 0.95rem;
 line-height: 1.6;
 color: var(--text-muted);
 margin: 0 0 25px 0;
}

.map-grid > img[alt="compass"] {
 width: 100%;
 min-width: 250px;
 height: auto;
 display: block;
 opacity: 0.5;
 filter: sepia(0.1);
 transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
 margin-top: auto;
}

.map-grid:hover > img[alt="compass"] {
 transform: rotate(15deg);
}

.vintage-map {
 width: 100%;
 height: auto;
 display: block;
 filter: sepia(0.3) saturate(0.8);
}

.fleet-row-layout {
 display: flex;
 align-items: flex-start;
 gap: 50px;
}

.fleet-header-column {
 padding-top: 30px;
 flex: 0 0 250px;
 display: flex;
 flex-direction: column;
 justify-content: flex-start;
}

.fleet-header-column .block-title {
 margin-bottom: 2rem;
}

.fleet-grid {
 flex: 1;
 display: grid;
 grid-template-columns: repeat(3, 1fr) 0.7fr;
 gap: 20px;
}

.fleet-card-item {
 min-height: 261px;
 background: #fff;
 border: 1px solid rgba(26, 38, 57, 0.08);
 border-radius: 12px;
 overflow: hidden;
 display: flex;
 flex-direction: column;
 box-shadow: 0 6px 20px rgba(26, 38, 57, 0.03);
 text-decoration: none;
 color: inherit;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-card-item:hover {
 transform: translateY(-4px);
 box-shadow: 0 10px 25px rgba(26, 38, 57, 0.07);
}

.fleet-img-wp {
 width: 100%;
 height: 150px;
 overflow: hidden;
}

.fleet-img-wp img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

.fleet-card-content {
 padding: 15px;
 display: flex;
 flex-direction: column;
 justify-content: flex-start;
 align-items: flex-start;
 text-align: left;
 flex-grow: 1;
}

.fleet-card-content h3 {
 font-family: "Cormorant Garamond", serif;
 font-size: 1.7rem;
 font-weight: 700;
 color: #4f4747;
 margin: 0 0 6px 0;
}

.fleet-card-content p {
 font-size: 0.9rem;
 line-height: 1.4;
 color: #676261;
 margin: 0;
}
.fleet-more-card {
 background: linear-gradient(rgba(230, 214, 195, 0.5), rgba(230, 214, 195, 0.5)),
  url("../img/sps/craft-paper.png") repeat center;
 border: 1px solid var(--gold);
 display: flex;
 flex-direction: column;
 justify-content: flex-start;
 align-items: flex-start;
 text-align: left;
 position: relative;
 overflow: hidden;
}

.fleet-more-card::after {
 content: "";
 position: absolute;
 bottom: -7px;
 right: -33px;
 width: 132px;
 height: 150px;
 background: url("../img/sps/anchor.png") no-repeat center center / contain;
 opacity: 0.2;
 transform: rotate(25deg);
 pointer-events: none;
 z-index: 1;
 transition: transform 0.4s ease, opacity 0.4s ease;
}

.fleet-more-content {
 position: relative;
 z-index: 2;
 padding: 20px 15px;
 display: flex;
 flex-direction: column;
 justify-content: flex-start;
 align-items: flex-start;
}

.fleet-more-card:hover::after {
 transform: rotate(35deg) scale(1.05);
 opacity: 0.7;
}
.fleet-more-card h3 {
 font-family: "Cormorant Garamond", serif;
 font-size: 1.3rem;
 font-weight: 700;
 letter-spacing: 1px;
 color: #86745b;
 margin: 0 0 8px 0;
}

.fleet-more-card p {
 font-size: 0.85rem;
 line-height: 1.4;
 color: var(--text-muted);
 margin: 0;
}

.fleet-more-card:hover {
 background-color: #ece5d5;
}
.events-section {
 padding: 3rem 0;
}

.events-row-layout {
 display: flex;
 align-items: flex-start;
 gap: 50px;
}

.events-header-column {
 flex: 0 0 220px;
 display: flex;
 flex-direction: column;
 justify-content: flex-start;
 padding-top: 30px;
}

.events-header-column .block-title {
 margin-bottom: 2rem;
}

.events-grid {
 flex: 1;
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 20px;
}

.event-card-v2 {
 color: white;
 border-radius: 12px;
 overflow: hidden;
 display: flex;
 flex-direction: column;
 height: 310px;
 box-shadow: 0 8px 25px rgba(26, 38, 57, 0.15);
}

.event-date-badge {
 width: 20%;
 background-color: #311e43;
 border: 1px solid #7c49ad;
 border-radius: 10px;
 padding: 0.8rem;
 text-align: center;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 margin-left: 15px;
}

.event-date-badge .day {
 font-size: 1.6rem;
 font-weight: 600;
 line-height: 1;
}

.event-date-badge .month {
 font-size: 0.7rem;
 letter-spacing: 2px;
 margin-top: 0.1rem;
}

.event-card-body {
 padding: 20px;
 display: flex;
 flex-direction: column;
 justify-content: flex-end;
 align-items: flex-start;
 flex-grow: 1;
 text-align: left;
}

.event-info-group {
 width: 100%;
 margin-bottom: 15px;
}

.event-card-body h3 {
 font-family: "Cormorant Garamond", serif;
 font-size: 1.8rem;
 letter-spacing: 1px;
 margin: 0 0 6px 0;
 line-height: 1.3;
 color: #e5e5d8;
}

.event-type {
 font-size: 0.85rem;
 color: #e5e5d8;
 text-transform: uppercase;
 letter-spacing: 1px;
 margin: 0 0 4px 0;
}

.event-remain {
 font-size: 0.85rem;
 color: #e5e5d8;
 margin: 0;
}

.event-action-btn {
 display: inline-block;
 background-color: #311e43;
 border: 1px solid #7c49ad;
 color: white;
 text-align: center;
 padding: 10px 22px;
 font-size: 0.75rem;
 font-weight: 600;
 letter-spacing: 1.5px;
 text-decoration: none;
 border-radius: 10px;
 width: auto;
 transition: all 0.3s ease;
}

.event-action-btn:hover {
 background-color: #42295a;
 border-color: #fff;
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.journal-flex-row {
 display: flex;
 align-items: flex-start;
 gap: 40px;
 width: 100%;
 position: relative;
}
.journal-section {
 padding: 4rem 0 0 0;
 margin-bottom: 80px;
}
.journal-header-block {
 display: flex;
 align-items: center;
 gap: 5px;
 margin-bottom: 3rem;
 margin-top: 3rem;
}

.journal-header-block .block-title {
 margin-bottom: 0;
 margin-right: 30px;
}

.journal-row-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 24px;
 margin-bottom: 40px;
}

.journal-post {
 display: flex;
 flex-direction: column;
 justify-content: flex-start;
 align-items: flex-start;
 cursor: pointer;
 border-radius: 20px;
 box-shadow: 0 6px 20px rgba(26, 38, 57, 0.03);
 border: 1px solid rgba(195, 166, 112, 0.3);
}
.journal-posts-grid {
 flex: 1;
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 20px;
}
.journal-info {
 padding: 15px;
 color: #504634;
 font-size: 1.6rem;
 font-weight: 400;
 line-height: 1.6;
}
.journal-img-box {
 width: 100%;
 height: 160px;
 overflow: hidden;
 border-radius: 8px;
 margin-bottom: 12px;
 box-shadow: 0 4px 15px rgba(26, 38, 57, 0.05);
}

.journal-img-box img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.4s ease;
}

.journal-post:hover .journal-img-box img {
 transform: scale(1.04);
}

.journal-post h3 {
 font-size: 0.95rem;
 font-weight: 500;
 line-height: 1.4;
 color: #504634;
 margin: 0 0 8px 0;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}

.journal-tag {
 font-size: 0.7rem;
 color: var(--text-muted);
 letter-spacing: 1px;
 text-transform: uppercase;
 border-bottom: 1px solid var(--gold);
 padding-bottom: 1px;
}
.calligraphy-quote-card {
 box-sizing: border-box;
 margin-top: -148px;
 margin-right: calc((100vw - 100%) / -2);
 width: calc(320px + (100vw - 100%) / 2);
 height: 474px;
 flex-shrink: 0;
 border: 1px solid transparent;
 border-image: linear-gradient(
  to right,
  #2a2a2a 0%,
  rgba(90, 85, 78, 0.6) 15%,
  rgba(90, 85, 78, 0.6) 85%,
  #2a2a2a 100%
 );
 border-image-slice: 1;
 filter: blur(0.3px) drop-shadow(0px 0px 0.5px rgba(42, 42, 42, 0.45));
 -webkit-filter: blur(0.3px) drop-shadow(0px 0px 0.5px rgba(42, 42, 42, 0.45));
 background: linear-gradient(rgba(230, 214, 195, 0.5), rgba(230, 214, 195, 0.5)),
  url("../img/sps/craft-paper.png") repeat center;
 background-color: #e3d6c2;
 position: relative;
 z-index: 10;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: flex-start;
 box-shadow: inset 0 0 40px rgba(92, 64, 39, 0.1);
 clip-path: polygon(
  0% 0.5%,
  20% 0%,
  45% 0.8%,
  70% 0.2%,
  100% 0%,
  100% 100%,
  75% 99.5%,
  50% 100%,
  25% 99.2%,
  0% 100%,
  0.5% 80%,
  0% 60%,
  0.8% 45%,
  0.2% 25%,
  0.6% 10%
 );
}

.quote-text {
 font-family: "Caveat", cursive;
 font-style: italic;
 font-size: 2.7rem;
 line-height: 1.4;
 color: var(--navy);
 font-weight: 400;
 margin: 0;
 padding-left: 20px;
}

.rope-decoration {
 position: absolute;
 bottom: -10px;
 left: 0;
 right: 0;
 height: 60px;
 background: repeating-linear-gradient(
  45deg,
  rgba(92, 64, 39, 0.15),
  rgba(92, 64, 39, 0.15) 4px,
  transparent 4px,
  transparent 12px
 );
 opacity: 0.6;
 pointer-events: none;
}

.quote-content-wrapper {
 width: 100%;
 position: relative;
 text-align: left;
 padding-left: 10px;
}
.quote-content-wrapper img {
 width: 100%;
}

.bird-vector {
 margin-right: 70px;
 margin-left: auto;
 width: 100px;
 font-size: 6.2rem;
 color: var(--navy);
 opacity: 0.25;
 margin-bottom: 10px;
 line-height: 1;
}

.quote-author {
 font-size: 0.85rem;
 text-transform: uppercase;
 letter-spacing: 3px;
 color: var(--dark-gold);
 font-weight: 600;
}

.dynamic-gallery-wrapper {
 margin-top: 4rem;
}

.gallery-subheading {
 font-family: "Cormorant Garamond", serif;
 font-size: 1.5rem;
 color: var(--navy);
 margin-bottom: 1.5rem;
}

.gallery-flex {
 display: flex;
 flex-wrap: wrap;
 gap: 1rem;
}

.gallery-item-v2 img {
 border: 4px solid white;
 box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
 display: block;
 transition: transform 0.3s;
}

.gallery-item-v2 img:hover {
 transform: scale(1.02);
}

.calligraphy-quote {
 margin-top: 4rem;
 text-align: right;
 padding-right: 10%;
 position: relative;
}

.seagull-icon {
 font-size: 1.5rem;
 opacity: 0.3;
 margin-top: 0.5rem;
}

.main-footer {
 background-color: #271c3c;
 color: white;
 padding: 3rem 20px 0;
}

.footer-container {
 max-width: 1400px;
 margin: 0 auto;
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 4rem;
}

.footer-left {
 display: flex;
 gap: 2rem;
 align-items: flex-start;
}
.footer-right {
 display: flex;
 gap: 60px;
}
.footer-right .footer-logo {
 position: relative;
 top: -70px;
}
.footer-logo {
 width: 200px;
 height: auto;
}
.footer-left h3 {
 font-family: "Cormorant Garamond", serif;
 font-size: 1.8rem;
 font-weight: 400;
 margin: 0 0 0.5rem 0;
 letter-spacing: 1px;
 color: #9f8991;
}
.footer-left p {
 font-size: 0.9rem;
 color: var(--gold);
 margin: 0 0 1.5rem 0;
}
.social-icons a {
 color: white;
 text-decoration: none;
 font-size: 1.3rem;
 margin-right: 1rem;
 opacity: 0.7;
 transition: opacity 0.3s;
}
.social-icons a:hover {
 opacity: 1;
}
.footer-right h3 {
 font-family: "Cormorant Garamond", serif;
 font-size: 1.8rem;
 letter-spacing: 2px;
 margin: 0 0 1.5rem 0;
 color: #997a69;
}
.footer-right p {
 font-size: 0.9rem;
 line-height: 1.6;
 margin: 0 0 1rem 0;
 color: #9f8991;
}
.map-link {
 display: inline-block;
 color: #9f8991;
 font-size: 0.85rem;
 letter-spacing: 1px;
 font-weight: 500;
}
.map-link:hover {
 text-decoration: underline;
}
@media (max-width: 1200px) {
 .fleet-row-layout {
  flex-direction: column;
 }
 .fleet-grid {
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
 }
 .events-row-layout {
  flex-direction: column;
 }
 .events-grid {
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
 }
 .journal-row-grid {
  grid-template-columns: repeat(2, 1fr);
 }
 .calligraphy-quote-card {
  grid-column: span 2;
 }
 .about-grid {
  grid-template-columns: 1fr;
  gap: 80px;
 }
}
@media (max-width: 992px) {
 .hero-nav-container {
  padding: 0 0 20px;
 }
 .hero-container {
  padding: 1rem 2rem 2rem;
 }
 .hero-logo {
  width: 100px;
 }
 .hero-title {
  font-size: 2.5rem;
 }
 .hero-subtitle {
  margin-bottom: 2rem;
  font-size: 1.2rem;
 }
 .block-title {
  font-size: 1.5rem;
 }
 .manifest-subtext {
  font-size: 0.85rem;
 }
 .about-grid,
 .map-grid,
 .footer-container {
  grid-template-columns: 1fr;
  gap: 2.5rem;
 }
 .features-cards {
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
 }

 .fleet-grid,
 .events-grid,
 .journal-grid {
  grid-template-columns: repeat(2, 1fr);
 }
 .hero-nav-links {
  display: none;
 }

 .burger-menu-btn {
  display: flex;
 }

 .burger-menu-btn:hover {
  background-color: var(--gold);
  border-color: var(--gold);
 }

 .burger-menu-btn:hover .burger-bar {
  background-color: var(--navy);
 }
 .map-grid {
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
  margin-right: 0;
 }

 .map-text {
  align-items: center;
  text-align: center;
 }

 .map-grid > img[alt="compass"] {
  width: 120px;
  margin: 0 auto;
 }
 .fleet-header-column {
  flex: 0 0 120px;
  padding: 0;
 }
 .arrow-link {
  font-size: 0.85rem;
 }
 .events-header-column {
  flex: 0 0 100px;
  padding: 0;
 }
 .parchment-bg {
  padding: 3rem 0;
 }
 .journal-posts-grid {
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
 }
 .journal-flex-row {
  gap: 10px;
 }
 .calligraphy-quote-card {
  margin-top: 0;
  width: calc(220px + (100vw - 100%) / 2);
  height: 374px;
 }
 .quote-text {
  font-size: 1.7rem;
 }
 .bird-vector {
  width: 50px;
 }
 .footer-right {
  gap: 2rem;
 }
 .footer-right .footer-logo {
  top: 0;
 }
 .footer-logo {
  width: 100px;
 }

 .footer-right .footer-logo {
  height: 150px;
 }
 .main-footer {
  padding: 20px;
 }
 .footer-left h3,
 .footer-right h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
 }
 .footer-left p {
  font-size: 0.8rem;
 }
 .feat-icon-badge {
  width: 70px;
  height: 70px;
  top: -36px;
 }
 .feat-icon-badge img {
  width: 50px;
  height: 50px;
 }
}
@media (max-width: 767px) {
 .hero-btn .btn-text {
  font-size: 0.6rem;
  padding: 15px 10px;
 }
 .hero-container {
  padding: 1rem;
 }
 .gallery {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
 }
 .features-cards {
  gap: 45px;
 }
  .journal-posts-grid {
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
 }
}
@media (max-width: 576px) {
  .features-cards {
  grid-template-columns: 1fr;
 }
 .features-cards,
 .fleet-grid,
 .events-grid,
 .journal-grid {
  grid-template-columns: 1fr;
 }
 .hero-title {
  font-size: 2.3rem;
 }
 .hero-nav {
  gap: 1rem;
  flex-wrap: wrap;
 }
 .fleet-grid {
  grid-template-columns: 1fr;
 }
 .journal-row-grid {
  grid-template-columns: 1fr;
 }
 .calligraphy-quote-card {
  grid-column: span 1;
 }
 .journal-flex-row {
  flex-direction: column;
  align-items: flex-end;
 }
 .calligraphy-quote-card {
  margin-right: 0;
  width: 100%;
  align-items: center;
 }
}
