@charset "UTF-8";
/*  Config modules are loaded in indivual stylesheets by @use rule:
    - SETTINGS: Base variables and configurations
    - TOOLS: Mixins, functions, and other helpers

    Example:
    @use "settings.variables";
    @use "tools.mixins";
*/
/* ELEMENTS – Base HTML element styles */
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
html {
  height: 100%;
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

*, *:before, *:after {
  box-sizing: inherit;
  outline-color: #007B5E;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: #0C1D33;
  background-color: #F8F9FA;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  color: #FFFFFF;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-shadow: 2px 4px 12px rgba(12, 29, 51, 0.7);
  line-height: 1.15;
}

h2 {
  margin: 0 0 0.5em;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: #B8956A;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-shadow: 1px 2px 6px rgba(12, 29, 51, 0.5);
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  color: #0C1D33;
  margin-top: 0;
}

p {
  margin-top: 0;
  margin-bottom: 1em;
}

a {
  color: #007B5E;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #B8956A;
}

.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(12, 29, 51, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(12, 29, 51, 0.3);
  border-bottom: 1px solid rgba(184, 149, 106, 0.2);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875em 1.5em;
}
@media screen and (min-width: 768px) {
  .nav-container {
    padding: 0.875em 2em;
  }
}
@media screen and (min-width: 1200px) {
  .nav-container {
    padding: 0.875em 3em;
  }
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-family: "Cormorant", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #B8956A;
  font-style: italic;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.nav-brand:hover {
  transform: translateX(2px);
  color: rgb(197.1672727273, 168.6581818182, 133.6327272727);
}
@media screen and (min-width: 768px) {
  .nav-brand {
    font-size: 1.125rem;
    gap: 0.5em;
  }
}
@media screen and (min-width: 1024px) {
  .nav-brand {
    font-size: 1.375rem;
  }
}

.nav-icon {
  color: #B8956A;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .nav-icon {
    width: 32px;
    height: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .nav-icon {
    width: 40px;
    height: 40px;
  }
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
  transition: all 0.3s ease;
}
.hamburger:hover {
  opacity: 0.8;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #B8956A;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
}
.hamburger span:nth-child(1) {
  top: 8px;
}
.hamburger span:nth-child(2) {
  top: 15px;
}
.hamburger span:nth-child(3) {
  top: 22px;
}
.hamburger.is-active span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.nav-links {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background-color: rgba(12, 29, 51, 0.98);
  backdrop-filter: blur(20px);
  padding: 2em 1.5em;
  gap: 1.5em;
  box-shadow: 0 10px 30px rgba(12, 29, 51, 0.5);
  border-top: 1px solid rgba(184, 149, 106, 0.2);
  z-index: 999;
}
.nav-links.is-open {
  display: flex;
}
@media screen and (min-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    background-color: transparent;
    backdrop-filter: none;
    padding: 0;
    gap: 1.5em;
    box-shadow: none;
    border-top: none;
  }
}
@media screen and (min-width: 1024px) {
  .nav-links {
    gap: 2em;
  }
}
@media screen and (min-width: 1200px) {
  .nav-links {
    gap: 2.5em;
  }
}

.nav-link {
  font-family: "Cormorant", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #C7CCD3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75em 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  text-align: center;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #B8956A, transparent);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}
.nav-link:hover {
  color: #FFFFFF;
}
.nav-link:hover::after {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .nav-link {
    font-size: 0.85rem;
    text-align: left;
    padding: 0.5em 0;
  }
}
@media screen and (min-width: 1024px) {
  .nav-link {
    font-size: 0.95rem;
  }
}

.nav-link-accent {
  background: linear-gradient(135deg, #B8956A 0%, rgb(192.2295454545, 161.2863636364, 123.2704545455) 100%);
  color: #0C1D33;
  padding: 0.75em 2em;
  border-radius: 0.375em;
  border-bottom: none;
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: 0 2px 10px rgba(184, 149, 106, 0.2);
  position: relative;
  overflow: hidden;
  margin-top: 0.5em;
}
.nav-link-accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.nav-link-accent:hover {
  background: linear-gradient(135deg, rgb(197.1672727273, 168.6581818182, 133.6327272727) 0%, rgb(203.7509090909, 178.4872727273, 147.4490909091) 100%);
  color: #0C1D33;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(184, 149, 106, 0.4);
}
.nav-link-accent:hover::before {
  left: 100%;
}
.nav-link-accent:hover::after {
  width: 0;
}
@media screen and (min-width: 768px) {
  .nav-link-accent {
    padding: 0.65em 1.25em;
    font-size: 0.85rem;
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .nav-link-accent {
    padding: 0.65em 1.5em;
    font-size: 0.9rem;
  }
}

.main {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url("/assets/pexels-header.jpg");
  background-size: auto 110%;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 100vh;
  width: 100%;
  padding: 3em 1.5em 5em;
  position: relative;
}
.header h1 {
  margin-bottom: 7em;
}
.header h2 {
  width: 10em;
}
@media screen and (min-width: 380px) {
  .header {
    padding: 4.5em 1.5em 5em;
  }
  .header h1 {
    margin-bottom: 8em;
  }
}
@media screen and (min-width: 500px) {
  .header {
    padding: 7em 2em 5em;
    background-size: cover;
    background-position: center;
  }
  .header h1 {
    margin-bottom: 8em;
  }
  .header h2 {
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .header {
    padding-top: 7.5em;
  }
  .header h1 {
    margin-bottom: 18rem;
  }
}
@media screen and (min-width: 1024px) {
  .header {
    background-attachment: fixed;
  }
}
@media screen and (min-width: 1200px) {
  .header h1 {
    margin-bottom: 20vw;
  }
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(12, 29, 51, 0.25) 0%, rgba(12, 29, 51, 0.38) 40%, rgba(12, 29, 51, 0.55) 100%);
}
.header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(12, 29, 51, 0.25) 100%);
}
.header > * {
  position: relative;
  z-index: 1;
}

.header-content {
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.header-content h1, .header-content h2 {
  max-width: 22em;
  margin-left: auto;
  margin-right: auto;
}
.header-content h1 {
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.header-content h2 {
  animation: fadeInUp 1.2s 0.2s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}
.header-content .header-description {
  animation: fadeInUp 1.2s 0.4s cubic-bezier(0.4, 0, 0.2, 1) backwards;
  max-width: 50em;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header-description {
  font-size: clamp(1.125rem, 1.75vw, 1.375rem);
  color: #FFFFFF;
  font-weight: 300;
  max-width: 52em;
  margin: 0 auto;
  text-shadow: 1px 2px 12px rgba(12, 29, 51, 0.9);
  opacity: 0.97;
  text-align: left;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .header-description {
    padding: 0 1.5em;
    line-height: 2;
  }
}
@media screen and (min-width: 1200px) {
  .header-description {
    padding: 0 3em;
    line-height: 2.1;
  }
}

.btn {
  display: inline-block;
  padding: 1em 2em;
  font-family: "Cormorant", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0.5625em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}
.btn:hover::before {
  width: 300px;
  height: 300px;
}
.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, #007B5E 0%, rgb(0, 82.2, 62.8195121951) 100%);
  color: white;
  border-color: #007B5E;
  box-shadow: 0 4px 15px rgba(0, 123, 94, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, rgb(0, 97.5, 74.512195122) 0%, rgb(0, 46.5, 35.5365853659) 100%);
  color: white;
  box-shadow: 0 8px 30px rgba(0, 123, 94, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #C7CCD3;
  border-color: #C7CCD3;
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background-color: #C7CCD3;
  color: #0C1D33;
  box-shadow: 0 8px 25px rgba(199, 204, 211, 0.3);
}

.btn-accent {
  background: linear-gradient(135deg, #B8956A 0%, rgb(192.2295454545, 161.2863636364, 123.2704545455) 100%);
  color: #0C1D33;
  border-color: #B8956A;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(184, 149, 106, 0.3);
}
.btn-accent:hover {
  background: linear-gradient(135deg, rgb(197.1672727273, 168.6581818182, 133.6327272727) 0%, rgb(203.7509090909, 178.4872727273, 147.4490909091) 100%);
  color: #0C1D33;
  box-shadow: 0 8px 30px rgba(184, 149, 106, 0.5);
}

@media screen and (min-width: 1024px) {
  .btn-large {
    padding: 1.25em 2.5em;
    font-size: 1.125rem;
    letter-spacing: 0.1em;
  }
}

.section {
  width: 100%;
  padding: 4em 1.5em;
}
@media screen and (min-width: 768px) {
  .section {
    padding: 5em 1.5em;
  }
}
@media screen and (min-width: 1200px) {
  .section {
    padding: 6.5em 2em;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-headline {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: #0C1D33;
  text-align: center;
  margin-bottom: 0.5em;
  font-style: italic;
  text-shadow: none;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
  width: 100%;
}
.section-headline::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #B8956A, transparent);
  margin: 0.75em auto 0;
  border-radius: 2px;
}

.section-intro {
  font-size: clamp(1.125rem, 1.5vw, 1.3rem);
  text-align: center;
  max-width: 50em;
  margin: 0 auto 3.5em;
  color: #0C1D33;
  line-height: 1.8;
  font-weight: 300;
}

.section-services {
  background-color: #F8F9FA;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em;
  margin-top: 3em;
}
@media screen and (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  }
}

.service-card {
  background: linear-gradient(135deg, white 0%, rgba(248, 249, 250, 0.5) 100%);
  padding: 2.25em;
  border-radius: 0.75em;
  box-shadow: 0 4px 15px rgba(12, 29, 51, 0.08), 0 1px 3px rgba(12, 29, 51, 0.05);
  border-top: 3px solid transparent;
  border-left: 1px solid rgba(184, 149, 106, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 123, 94, 0.03), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(12, 29, 51, 0.15), 0 4px 15px rgba(0, 123, 94, 0.1);
  border-top-color: #B8956A;
  border-left-color: rgba(184, 149, 106, 0.3);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover h3 {
  color: rgb(0, 72, 55.0243902439);
}
.service-card h3 {
  color: #007B5E;
  margin-bottom: 0.75em;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.service-card p {
  color: #0C1D33;
  line-height: 1.7;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.section-membership {
  background-color: #0C1D33;
  color: #C7CCD3;
}
.section-membership .section-headline {
  color: #C7CCD3;
  text-shadow: none;
}

.membership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
  margin-top: 3em;
}
@media screen and (min-width: 1024px) {
  .membership-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.membership-card {
  background: linear-gradient(135deg, rgba(199, 204, 211, 0.05) 0%, rgba(199, 204, 211, 0.02) 100%);
  padding: 2.5em;
  border-radius: 0.75em;
  border: 1px solid rgba(199, 204, 211, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.membership-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(184, 149, 106, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.membership-card:hover {
  background: linear-gradient(135deg, rgba(199, 204, 211, 0.12) 0%, rgba(199, 204, 211, 0.08) 100%);
  border-color: #B8956A;
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(184, 149, 106, 0.15);
}
.membership-card:hover::before {
  opacity: 1;
}
.membership-card:hover h3 {
  color: rgb(197.1672727273, 168.6581818182, 133.6327272727);
  transform: translateY(-2px);
}
.membership-card h3 {
  color: #B8956A;
  margin-bottom: 1em;
  font-size: 1.75rem;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.membership-card p {
  color: #C7CCD3;
  line-height: 1.8;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.membership-tagline {
  text-align: center;
  font-size: 1.5rem;
  font-style: italic;
  font-family: "Cormorant", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #C7CCD3;
  margin-top: 3em;
  margin-bottom: 0;
}

.section-process {
  background-color: #F8F9FA;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5em;
  margin-top: 3em;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}
.process-step:hover {
  transform: translateY(-4px);
}
.process-step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(0, 123, 94, 0.35), 0 0 40px rgba(0, 123, 94, 0.2);
}
.process-step:hover .step-description {
  color: rgb(2.2857142857, 5.5238095238, 9.7142857143);
}

.step-number {
  width: 4.5em;
  height: 4.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #007B5E 0%, rgb(0, 72, 55.0243902439) 100%);
  color: white;
  font-family: "Cormorant", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  border-radius: 50%;
  margin-bottom: 1.25em;
  box-shadow: 0 4px 15px rgba(0, 123, 94, 0.25), inset 0 -2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.step-number::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 2px solid rgba(0, 123, 94, 0.2);
  transition: all 0.4s ease;
}
.step-number:hover::before {
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-color: rgba(0, 123, 94, 0.4);
}

.step-description {
  font-size: 1.125rem;
  color: #0C1D33;
  line-height: 1.7;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.section-about {
  background: linear-gradient(135deg, white 0%, rgba(248, 249, 250, 0.3) 100%);
  position: relative;
}
.section-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(0, 123, 94, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(184, 149, 106, 0.02) 0%, transparent 50%);
  pointer-events: none;
}
.section-about .section-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.4;
  max-width: 30em;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.section-about .section-headline::after {
  background: linear-gradient(90deg, transparent, #007B5E, transparent);
}

.about-content {
  max-width: 50em;
  margin: 2.5em auto 0;
  position: relative;
  z-index: 1;
}
.about-content p {
  font-size: clamp(1.0625rem, 1.25vw, 1.1875rem);
  line-height: 1.9;
  color: #0C1D33;
  margin-bottom: 1.75em;
  font-weight: 300;
}
.about-content p:first-of-type::first-letter {
  font-size: 5em;
  font-family: "Cormorant", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  color: #007B5E;
  float: left;
  line-height: 0.675;
  margin-right: 0.1em;
}

.section-contact {
  background: radial-gradient(circle, #007B5E 0%, rgb(0, 77.1, 58.9219512195) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.section-contact::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.section-contact .section-headline {
  color: white;
  text-shadow: none;
  position: relative;
  z-index: 1;
}
.section-contact .section-headline::after {
  background: linear-gradient(90deg, transparent, white, transparent);
}

.contact-content {
  max-width: 42em;
  margin: 2.5em auto 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.contact-content p {
  font-size: clamp(1.0625rem, 1.25vw, 1.1875rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.75em;
  font-weight: 300;
}
.contact-content .btn {
  margin-top: 1.5em;
}

.footer {
  background: linear-gradient(135deg, #0C1D33 0%, rgb(7.1428571429, 17.2619047619, 30.3571428571) 100%);
  color: #C7CCD3;
  padding: 3.5em 1.5em;
  text-align: center;
  border-top: 1px solid rgba(184, 149, 106, 0.15);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #B8956A, transparent);
}
.footer p {
  margin: 0.75em 0;
  font-size: 0.9rem;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.footer p:hover {
  opacity: 1;
}
.footer .footer-tagline {
  font-family: "Cormorant", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-style: italic;
  opacity: 0.65;
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-top: 1em;
}

/* COMPONENTS – Class-based UI component styles */
/* UTILITIES – Override any styles that go before */
.visually-hidden {
  width: 1px;
  height: 1px;
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  word-wrap: normal;
  white-space: nowrap;
  overflow: hidden;
}

/*# sourceMappingURL=style.css.map */
