@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --deep-sapphire: #0b1e3d;
  --champagne-gold: #c9a961;
  --ivory: #f5f3ed;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --border-color: #d4c5a0;
}

body {
  overflow-wrap: anywhere;
  font-family: "Lato", sans-serif;
  color: var(--text-dark);
  background-color: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: var(--deep-sapphire);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.masthead-section {
  background-color: var(--deep-sapphire);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.primary-navigation {
  width: 100%;
}

.nav-container-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-identity {
  flex-shrink: 0;
}

.logo-img {
  height: 60px;
  width: auto;
}

.navigation-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.navigation-menu a {
  color: var(--ivory);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  position: relative;
  padding: 0.5rem 0;
}

.navigation-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--champagne-gold);
  transition: width 0.3s ease;
}

.navigation-menu a:hover::after,
.navigation-menu a.nav-active::after {
  width: 100%;
}

.navigation-menu a.nav-active {
  color: var(--champagne-gold);
}

.hero-showcase {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.hero-imagery {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-imagery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(11, 30, 61, 0.4),
    rgba(11, 30, 61, 0.7)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content-block {
  text-align: center;
  color: var(--ivory);
  max-width: 800px;
  padding: 2rem;
}

.hero-headline {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--ivory);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.cta-primary-button {
  display: inline-block;
  background-color: var(--champagne-gold);
  color: var(--deep-sapphire);
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 3px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-primary-button:hover {
  background-color: #b89550;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.content-limiter {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.intro-statement {
  padding: 6rem 0;
  background-color: var(--ivory);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-title-main {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--deep-sapphire);
}

.lead-paragraph {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.8;
}

.body-text-standard {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.intro-image-column img {
  border-radius: 5px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.amenities-showcase {
  padding: 6rem 0;
  background-color: #ffffff;
}

.section-title-centered {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 4rem;
  color: var(--deep-sapphire);
}

.amenities-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.amenity-card-item {
  background-color: var(--ivory);
  padding: 2.5rem 2rem;
  border-radius: 5px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.amenity-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.amenity-icon-holder {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--champagne-gold);
  border-radius: 50%;
}

.amenity-icon-holder svg {
  stroke: var(--deep-sapphire);
}

.amenity-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--deep-sapphire);
}

.amenity-description {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.featured-posts-section {
  padding: 6rem 0;
  background-color: var(--ivory);
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.blog-card-preview {
  background-color: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-card-preview:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-card-content {
  padding: 2rem;
}

.blog-card-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.blog-card-title a {
  color: var(--deep-sapphire);
}

.blog-card-title a:hover {
  color: var(--champagne-gold);
}

.blog-card-excerpt {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.read-more-link {
  color: var(--champagne-gold);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.read-more-link:hover {
  color: var(--deep-sapphire);
}

.view-all-posts-wrapper {
  text-align: center;
  margin-top: 3rem;
}

.cta-secondary-button {
  display: inline-block;
  background-color: var(--deep-sapphire);
  color: var(--ivory);
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 3px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--deep-sapphire);
}

.cta-secondary-button:hover {
  background-color: transparent;
  color: var(--deep-sapphire);
}

.testimonials-showcase {
  padding: 6rem 0;
  background-color: var(--deep-sapphire);
  color: var(--ivory);
}

.testimonials-showcase .section-title-centered {
  color: var(--ivory);
}

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

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 2.5rem 2rem;
  border-radius: 5px;
  border: 1px solid rgba(201, 169, 97, 0.3);
}

.testimonial-stars {
  color: var(--champagne-gold);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--ivory);
}

.testimonial-author {
  font-weight: 600;
  color: var(--champagne-gold);
}

.site-footer {
  background-color: #0a1629;
  color: var(--ivory);
  padding: 4rem 0 2rem;
}

.footer-content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-description {
  font-size: 0.95rem;
  color: rgba(245, 243, 237, 0.8);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.registration-number {
  font-size: 0.85rem;
  color: var(--champagne-gold);
}

.footer-heading {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--champagne-gold);
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 0.8rem;
}

.footer-menu a {
  color: rgba(245, 243, 237, 0.8);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: var(--champagne-gold);
}

.footer-contact-item {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: rgba(245, 243, 237, 0.8);
  line-height: 1.8;
  display: flex;
  gap: 0.8rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  stroke: var(--champagne-gold);
}

.footer-contact-item a {
  color: rgba(245, 243, 237, 0.8);
}

.footer-contact-item a:hover {
  color: var(--champagne-gold);
}

.footer-legal-links {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 97, 0.3);
  margin-bottom: 1.5rem;
}

.footer-legal-links a {
  color: rgba(245, 243, 237, 0.8);
  margin: 0 1rem;
  font-size: 0.9rem;
}

.footer-legal-links a:hover {
  color: var(--champagne-gold);
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(245, 243, 237, 0.6);
}

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--deep-sapphire);
  color: var(--ivory);
  padding: 2rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  display: none;
}

.cookie-consent-banner.active {
  display: block;
}

.cookie-content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-message-text {
  flex: 1;
}

.cookie-title {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--champagne-gold);
}

.cookie-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(245, 243, 237, 0.9);
}

.cookie-policy-link {
  color: var(--champagne-gold);
  text-decoration: underline;
}

.cookie-actions-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn-accept,
.cookie-btn-customize,
.cookie-btn-decline {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 3px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background-color: var(--champagne-gold);
  color: var(--deep-sapphire);
}

.cookie-btn-accept:hover {
  background-color: #b89550;
}

.cookie-btn-customize {
  background-color: transparent;
  color: var(--ivory);
  border: 2px solid var(--ivory);
}

.cookie-btn-customize:hover {
  background-color: var(--ivory);
  color: var(--deep-sapphire);
}

.cookie-btn-decline {
  background-color: transparent;
  color: rgba(245, 243, 237, 0.7);
  border: 2px solid rgba(245, 243, 237, 0.3);
}

.cookie-btn-decline:hover {
  border-color: rgba(245, 243, 237, 0.7);
  color: var(--ivory);
}

.page-hero-minimal {
  background-color: var(--deep-sapphire);
  padding: 5rem 0 4rem;
  text-align: center;
}

.page-hero-title {
  font-size: 3.5rem;
  color: var(--ivory);
  margin-bottom: 1rem;
}

.page-hero-lead {
  font-size: 1.3rem;
  color: rgba(245, 243, 237, 0.8);
  font-weight: 300;
}

.about-story-section {
  padding: 6rem 0;
  background-color: var(--ivory);
}

.story-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-image-block img {
  border-radius: 5px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.values-section {
  padding: 6rem 0;
  background-color: #ffffff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(201, 169, 97, 0.1);
  border-radius: 50%;
}

.value-icon svg {
  stroke: var(--champagne-gold);
}

.value-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--deep-sapphire);
}

.value-description {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.team-section {
  padding: 6rem 0;
  background-color: var(--ivory);
}

.team-intro-text {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 900px;
  margin: 0 auto 4rem;
  line-height: 1.8;
}

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

.team-member-card {
  background-color: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.team-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.team-member-name {
  font-size: 1.5rem;
  margin: 1.5rem 1.5rem 0.5rem;
  color: var(--deep-sapphire);
}

.team-member-position {
  font-size: 1rem;
  color: var(--champagne-gold);
  margin-bottom: 1rem;
  font-weight: 600;
  padding: 0 1.5rem;
}

.team-member-bio {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  padding: 0 1.5rem 2rem;
}

.commitment-section {
  padding: 6rem 0;
  background-color: var(--deep-sapphire);
  color: var(--ivory);
}

.commitment-section .section-title-centered {
  color: var(--ivory);
}

.commitment-content {
  max-width: 1000px;
  margin: 0 auto;
}

.commitment-content .body-text-standard {
  color: rgba(245, 243, 237, 0.9);
  font-size: 1.1rem;
  text-align: center;
}

.blog-listing-section {
  padding: 6rem 0;
  background-color: var(--ivory);
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.blog-post-card {
  background-color: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 400px 1fr;
  transition: all 0.3s ease;
}

.blog-post-card:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-post-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.post-date,
.post-category {
  font-size: 0.85rem;
  color: var(--champagne-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.blog-post-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.blog-post-title a {
  color: var(--deep-sapphire);
}

.blog-post-title a:hover {
  color: var(--champagne-gold);
}

.blog-post-excerpt {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contact-info-section {
  padding: 4rem 0;
  background-color: var(--ivory);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.contact-info-card {
  background-color: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(201, 169, 97, 0.1);
  border-radius: 50%;
}

.contact-icon svg {
  stroke: var(--champagne-gold);
}

.contact-info-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--deep-sapphire);
}

.contact-info-detail {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.contact-info-detail a {
  color: var(--text-light);
}

.contact-info-detail a:hover {
  color: var(--champagne-gold);
}

.contact-form-section {
  padding: 6rem 0;
  background-color: #ffffff;
}

.contact-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.form-intro-text {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-sapphire);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  padding: 1rem;
  font-size: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 3px;
  font-family: "Lato", sans-serif;
  transition: all 0.3s ease;
  background-color: var(--ivory);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--champagne-gold);
  background-color: #ffffff;
}

.form-submit-btn {
  padding: 1.2rem 3rem;
  background-color: var(--champagne-gold);
  color: var(--deep-sapphire);
  border: none;
  border-radius: 3px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.form-submit-btn:hover {
  background-color: #b89550;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background-color: #ffffff;
  border-radius: 5px;
  max-width: 500px;
  width: 90%;
  padding: 3rem;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.modal-title {
  font-size: 2rem;
  color: var(--deep-sapphire);
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--deep-sapphire);
}

.modal-body {
  text-align: center;
}

.modal-body svg {
  margin: 0 auto 1.5rem;
}

.modal-message {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.calculator-section {
  padding: 6rem 0;
  background-color: var(--ivory);
}

.calculator-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.calculator-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.calc-form-group {
  margin-bottom: 1.5rem;
}

.calc-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-sapphire);
  margin-bottom: 0.5rem;
}

.calc-select,
.calc-input {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 3px;
  font-family: "Lato", sans-serif;
  background-color: var(--ivory);
  transition: all 0.3s ease;
}

.calc-select:focus,
.calc-input:focus {
  outline: none;
  border-color: var(--champagne-gold);
  background-color: #ffffff;
}

.calc-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.calc-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
}

.calc-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.calc-btn-primary {
  width: 100%;
  padding: 1.2rem;
  background-color: var(--champagne-gold);
  color: var(--deep-sapphire);
  border: none;
  border-radius: 3px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.calc-btn-primary:hover {
  background-color: #b89550;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.calculator-result {
  background-color: var(--deep-sapphire);
  padding: 3rem 2.5rem;
  border-radius: 5px;
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.result-title {
  font-size: 1.8rem;
  color: var(--champagne-gold);
  margin-bottom: 2rem;
  text-align: center;
}

.result-breakdown {
  margin-bottom: 2rem;
}

.result-line {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  font-size: 1.05rem;
}

.result-tax {
  font-style: italic;
  color: rgba(245, 243, 237, 0.8);
}

.result-total {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0 1rem;
  border-top: 2px solid var(--champagne-gold);
  margin-top: 1rem;
}

.result-label-total {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--champagne-gold);
}

.result-value-total {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--champagne-gold);
}

.result-note {
  font-size: 0.85rem;
  color: rgba(245, 243, 237, 0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
}

.calc-btn-secondary {
  display: block;
  width: 100%;
  padding: 1rem;
  background-color: var(--champagne-gold);
  color: var(--deep-sapphire);
  text-align: center;
  border-radius: 3px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.calc-btn-secondary:hover {
  background-color: #b89550;
}

.calculator-info-section {
  padding: 6rem 0;
  background-color: #ffffff;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.included-item {
  text-align: center;
}

.included-item svg {
  margin: 0 auto 1rem;
  stroke: var(--champagne-gold);
}

.included-title {
  font-size: 1.1rem;
  color: var(--deep-sapphire);
  margin-bottom: 0.5rem;
}

.included-desc {
  font-size: 0.9rem;
  color: var(--text-light);
}

.timeline-intro-section {
  padding: 4rem 0;
  background-color: var(--ivory);
}

.timeline-intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.timeline-section {
  padding: 6rem 0;
  background-color: #ffffff;
}

.timeline-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.timeline-container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--champagne-gold);
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 4rem;
  position: relative;
  width: 50%;
}

.timeline-left {
  left: 0;
  padding-right: 4rem;
}

.timeline-right {
  left: 50%;
  padding-left: 4rem;
}

.timeline-marker {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--champagne-gold);
  border: 4px solid #ffffff;
  border-radius: 50%;
  top: 0;
  box-shadow: 0 0 0 3px var(--champagne-gold);
}

.timeline-left .timeline-marker {
  right: -10px;
}

.timeline-right .timeline-marker {
  left: -10px;
}

.timeline-content {
  background-color: var(--ivory);
  padding: 2rem;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.timeline-year {
  font-size: 2rem;
  font-weight: 700;
  color: var(--champagne-gold);
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}

.timeline-title {
  font-size: 1.5rem;
  color: var(--deep-sapphire);
  margin-bottom: 1rem;
}

.timeline-description {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.milestones-section {
  padding: 6rem 0;
  background-color: var(--deep-sapphire);
}

.milestones-section .section-title-centered {
  color: var(--ivory);
}

.milestones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.milestone-card {
  text-align: center;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  border: 1px solid rgba(201, 169, 97, 0.3);
}

.milestone-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--champagne-gold);
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}

.milestone-label {
  font-size: 1.1rem;
  color: var(--ivory);
}

.future-vision-section {
  padding: 6rem 0;
  background-color: var(--ivory);
}

.future-vision-content {
  max-width: 900px;
  margin: 0 auto;
}

.future-vision-content .body-text-standard {
  text-align: center;
  font-size: 1.1rem;
}

.post-article-container {
  background-color: #ffffff;
}

.post-header-section {
  background-color: var(--deep-sapphire);
  padding: 4rem 0 3rem;
}

.post-meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1.5rem;
  justify-content: center;
  color: var(--champagne-gold);
}

.post-date-stamp,
.post-category-badge {
  font-size: 0.9rem;
  color: var(--champagne-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.post-main-title {
  font-size: 3.5rem;
  color: var(--ivory);
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.post-lead-text {
  font-size: 1.3rem;
  color: rgba(245, 243, 237, 0.9);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.post-featured-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-content-wrapper {
  padding: 5rem 0;
}

.post-text-content {
  max-width: 900px;
  margin: 0 auto;
}

.post-text-content h2 {
  font-size: 2.2rem;
  color: var(--deep-sapphire);
  margin: 3rem 0 1.5rem;
}

.post-text-content h3 {
  font-size: 1.6rem;
  color: var(--deep-sapphire);
  margin: 2rem 0 1rem;
}

.post-text-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.post-navigation {
  max-width: 900px;
  margin: 4rem auto 0;
  padding-top: 3rem;
  border-top: 2px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back-to-blog-link {
  color: var(--champagne-gold);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.back-to-blog-link:hover {
  color: var(--deep-sapphire);
}

.related-posts-links {
  display: flex;
  gap: 2rem;
}

.related-post-link {
  color: var(--champagne-gold);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.related-post-link:hover {
  color: var(--deep-sapphire);
}

@media (max-width: 1024px) {
  .navigation-menu {
    gap: 1.5rem;
  }

  .hero-headline {
    font-size: 3rem;
  }

  .intro-grid,
  .story-grid-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

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

  .footer-grid-layout {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .blog-post-card {
    grid-template-columns: 1fr;
  }

  .blog-post-image img {
    height: 300px;
  }

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

  .calculator-container {
    grid-template-columns: 1fr;
  }

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

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

  .timeline-container::before {
    left: 0;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 4rem !important;
    padding-right: 0 !important;
  }

  .timeline-marker {
    left: -10px !important;
  }
}

@media (max-width: 768px) {
  .navigation-menu {
    flex-direction: column;
    gap: 1rem;
  }
  .nav-container-wrap {
    flex-direction: column;
  }
  .calculator-container {
    padding: 1rem;
  }
  .hero-headline {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title-main,
  .section-title-centered {
    font-size: 2.2rem;
  }

  .amenities-grid-layout,
  .blog-preview-grid,
  .values-grid,
  .team-grid-layout,
  .contact-info-grid,
  .included-grid,
  .milestones-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid-layout {
    grid-template-columns: 1fr;
  }

  .cookie-content-wrapper {
    flex-direction: column;
  }

  .cookie-actions-buttons {
    width: 100%;
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .page-hero-title {
    font-size: 2.5rem;
  }

  .post-main-title {
    font-size: 2.5rem;
  }

  .post-navigation {
    flex-direction: column;
    gap: 1.5rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  word-break: break-word;
}
