@font-face {
   font-family: 'Lato';
   font-style: normal;
   font-weight: 300;
   src: url('/fonts/lato-light.ttf') format('truetype');
}

@font-face {
   font-family: 'Lato';
   font-style: normal;
   font-weight: 400;
   src: url('/fonts/lato-regular.ttf') format('truetype');
}

@font-face {
   font-family: 'Playfair Display';
   font-style: normal;
   font-weight: 400;
   src: url('/fonts/playfair-display-regular.ttf') format('truetype');
}

@font-face {
   font-family: 'Playfair Display';
   font-style: normal;
   font-weight: 600;
   src: url('/fonts/playfair-display-semibold.ttf') format('truetype');
}

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

body {
   font-family: 'Lato', sans-serif;
   font-weight: 400;
   background-color: #F8F7F4;
   color: #2C2C2C;
   line-height: 1.7;
}

.container {
   max-width: 900px;
   margin: 0 auto;
   padding: 0 2rem;
}

/* Header */

.site-header {
   background-color: #FFFFFF;
   border-top: 6px solid #1A2B4A;
   border-bottom: 1px solid #E0DDD8;
   padding: 2.5rem 0;
   text-align: center;
}

.site-header IMG {
   max-width: 280px;
   width: 100%;
   height: auto;
}

/* Coming soon banner */

.coming-soon-banner {
   background-color: #1A2B4A;
   text-align: center;
   padding: 0.9rem 2rem;
}

.coming-soon-banner P {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 1.1rem;
   color: #FFFFFF;
   letter-spacing: 0.06em;
}

/* Main content */

.site-main {
   padding: 4rem 0;
}

.section {
   margin-bottom: 3rem;
   padding: 2.5rem;
   background-color: #FFFFFF;
   border-top: 4px solid #C4956A;
   box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.section H2 {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 1.6rem;
   color: #1A2B4A;
   margin-bottom: 1.2rem;
}

.section P {
   font-weight: 300;
   font-size: 1.05rem;
   color: #3A3A3A;
   margin-bottom: 1rem;
}

.section P:last-child {
   margin-bottom: 0;
}

/* Contact section */

.section-contact {
   margin-bottom: 0;
   padding: 2.5rem;
   background-color: #1A2B4A;
   border-top: 4px solid #C4956A;
   box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.section-contact H2 {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   font-size: 1.6rem;
   color: #FFFFFF;
   margin-bottom: 1.8rem;
}

.contact-primary {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem 3rem;
   margin-bottom: 2rem;
}

.contact-phone,
.contact-email {
   font-size: 1.35rem;
   font-weight: 400;
   color: #C4956A;
   text-decoration: none;
   letter-spacing: 0.01em;
}

.contact-phone:hover,
.contact-email:hover {
   color: #FFFFFF;
}

.contact-secondary {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem 3rem;
   padding-top: 1.5rem;
   border-top: 1px solid rgba(255,255,255,0.12);
}

.contact-address-item {
   display: flex;
   flex-direction: column;
}

.contact-label {
   font-family: 'Playfair Display', serif;
   font-size: 0.72rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   color: rgba(255,255,255,0.45);
   margin-bottom: 0.25rem;
}

.contact-value {
   font-size: 0.92rem;
   font-weight: 300;
   color: rgba(255,255,255,0.8);
}

/* Footer */

.site-footer {
   background-color: #1A2B4A;
   border-top: 1px solid rgba(255,255,255,0.08);
   padding: 1.5rem 0;
}

.footer-inner {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.footer-copy,
.footer-credit {
   font-size: 0.8rem;
   font-weight: 300;
   color: rgba(255,255,255,0.52);
}

.footer-credit-link {
   color: rgba(255,255,255,0.52);
   text-decoration: none;
}

.footer-credit-link:hover {
   color: rgba(255,255,255,0.8);
}

@media (max-width: 600px) {
   .section {
      padding: 1.8rem 1.5rem;
   }

   .section-contact {
      padding: 1.8rem 1.5rem;
   }

   .contact-phone,
   .contact-email {
      font-size: 1.1rem;
   }
}
