:root {
--cream: #FAF7F2;
--warm-white: #FFFDF9;
--sage: #7A9E87;
--sage-light: #B2CEBB;
--sage-dark: #4A7059;
--brown: #8B6F5E;
--brown-light: #C4A98E;
--charcoal: #2C2C2C;
--mid-gray: #6B6B6B;
--light-gray: #E8E4DE;
--gold: #C9A96E;
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'DM Sans', sans-serif;
background: var(--cream);
color: var(--charcoal);
overflow-x: hidden;
} nav {
position: fixed;
top: 20px;
left: 50%;
transform: translateX(-50%);
z-index: 100;
display: flex;
align-items: center;
justify-content: center;
padding: 14px 40px;
background: rgba(250, 247, 242, 0.95);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
border-radius: 50px;
border: 1px solid rgba(0, 0, 0, 0.08);
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
white-space: nowrap;
transition: top 0.3s, box-shadow 0.3s;
}
nav.scrolled {
top: 12px;
box-shadow: 0 6px 32px rgba(0, 0, 0, 0.14);
}
.nav-logo {
display: flex;
align-items: center;
gap: 12px;
text-decoration: none;
}
.logo-mark {
width: 46px;
height: 46px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.logo-mark img {
width: 46px;
height: 46px;
}
.logo-text {
font-family: 'Cormorant Garamond', serif;
font-size: 22px;
font-weight: 600;
color: var(--charcoal);
letter-spacing: 0.5px;
}
.logo-text span {
color: var(--sage-dark);
} .hero {
min-height: 100vh;
position: relative;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.hero-slider {
position: absolute;
inset: 0;
}
.hero-slide {
position: absolute;
inset: 0;
opacity: 0;
transition: opacity 1.2s ease;
}
.hero-slide.active {
opacity: 1;
}
.hero-slide img {
width: 100%;
height: 100%;
object-fit: cover;
}
.hero-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to bottom,
rgba(0, 0, 0, 0.35) 0%,
rgba(0, 0, 0, 0.15) 40%,
rgba(0, 0, 0, 0.55) 100%);
}
.hero-content {
position: relative;
z-index: 2;
text-align: center;
padding: 0 24px;
max-width: 760px;
}
.hero-tag {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.25);
color: white;
font-size: 11px;
font-weight: 500;
letter-spacing: 2px;
text-transform: uppercase;
padding: 7px 18px;
border-radius: 50px;
margin-bottom: 28px;
animation: fadeUp 0.7s ease both;
}
.hero-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(48px, 7vw, 88px);
font-weight: 300;
line-height: 1.05;
color: white;
margin-bottom: 20px;
animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title em {
font-style: italic;
color: var(--sage-light);
}
.hero-subtitle {
font-size: 16px;
font-weight: 300;
line-height: 1.75;
color: rgba(255, 255, 255, 0.85);
margin-bottom: 44px;
animation: fadeUp 0.7s 0.2s ease both;
}
.hero-cta {
display: inline-block;
background: var(--sage-dark);
color: white;
padding: 18px 48px;
border-radius: 50px;
font-size: 15px;
font-weight: 500;
text-decoration: none;
letter-spacing: 0.5px;
box-shadow: 0 6px 30px rgba(74, 112, 89, 0.4);
transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
animation: fadeUp 0.7s 0.3s ease both;
}
.hero-cta:hover {
background: var(--sage);
transform: translateY(-3px);
box-shadow: 0 12px 40px rgba(74, 112, 89, 0.5);
}
.hero-dots {
position: absolute;
bottom: 36px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 10px;
z-index: 3;
}
.dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.35);
cursor: pointer;
transition: background 0.3s, transform 0.3s;
}
.dot.active {
background: white;
transform: scale(1.3);
} .about {
padding: 100px 60px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
max-width: 1200px;
margin: 0 auto;
}
.about-text {}
.section-tag {
font-size: 11px;
font-weight: 500;
letter-spacing: 2px;
text-transform: uppercase;
color: var(--sage-dark);
margin-bottom: 16px;
}
.section-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(34px, 3.5vw, 50px);
font-weight: 300;
line-height: 1.15;
color: var(--charcoal);
}
.section-title em {
font-style: italic;
color: var(--sage-dark);
}
.about-body {
font-size: 15px;
font-weight: 300;
line-height: 1.85;
color: var(--mid-gray);
margin-top: 20px;
}
.about-perks {
display: flex;
gap: 12px;
flex-wrap: wrap;
margin-top: 28px;
}
.perk {
display: flex;
align-items: center;
gap: 8px;
background: var(--sage-light);
color: var(--sage-dark);
font-size: 12px;
font-weight: 500;
padding: 7px 14px;
border-radius: 50px;
letter-spacing: 0.3px;
}
.about-cta {
margin-top: 36px;
}
.btn-primary {
display: inline-block;
background: var(--sage-dark);
color: white;
padding: 15px 36px;
border-radius: 50px;
font-size: 14px;
font-weight: 500;
text-decoration: none;
letter-spacing: 0.5px;
box-shadow: 0 4px 20px rgba(74, 112, 89, 0.25);
transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
background: var(--sage);
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(74, 112, 89, 0.35);
}
.about-photos {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr;
gap: 12px;
height: 480px;
}
.about-photos .ph {
border-radius: 14px;
overflow: hidden;
}
.about-photos .ph img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s;
}
.about-photos .ph:hover img {
transform: scale(1.04);
}
.about-photos .ph.tall {
grid-row: 1 / 3;
} .lightbox-overlay {
display: none;
position: fixed;
inset: 0;
z-index: 1000;
background: rgba(0, 0, 0, 0.92);
align-items: center;
justify-content: center;
}
.lightbox-overlay.active {
display: flex;
}
.lightbox-img {
max-width: 90vw;
max-height: 90vh;
object-fit: contain;
border-radius: 8px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
animation: lbIn 0.25s ease;
}
@keyframes lbIn {
from {
opacity: 0;
transform: scale(0.92);
}
to {
opacity: 1;
transform: scale(1);
}
}
.lightbox-close {
position: fixed;
top: 24px;
right: 32px;
font-size: 36px;
font-weight: 300;
color: white;
cursor: pointer;
line-height: 1;
transition: opacity 0.2s;
z-index: 1001;
}
.lightbox-close:hover {
opacity: 0.7;
}
.about-photos .ph {
cursor: pointer;
}
.about-photos .ph img {
cursor: zoom-in;
} .nearby {
background: var(--warm-white);
padding: 90px 60px;
}
.nearby-inner {
max-width: 1100px;
margin: 0 auto;
}
.nearby .section-header {
text-align: center;
margin-bottom: 56px;
}
.nearby-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.nearby-card-link {
display: flex;
text-decoration: none;
color: inherit;
border-radius: 18px;
}
.nearby-card-link:hover .nearby-card {
border-color: var(--sage-light);
transform: translateY(-5px);
box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}
.nearby-card {
background: var(--cream);
border-radius: 18px;
padding: 36px 30px;
border: 1px solid transparent;
transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
width: 100%;
}
.nearby-icon {
font-size: 36px;
margin-bottom: 16px;
}
.nearby-name {
font-family: 'Cormorant Garamond', serif;
font-size: 22px;
font-weight: 600;
color: var(--charcoal);
margin-bottom: 8px;
}
.nearby-dist {
font-size: 11px;
font-weight: 500;
letter-spacing: 1.5px;
text-transform: uppercase;
color: var(--sage-dark);
margin-bottom: 12px;
}
.nearby-desc {
font-size: 13px;
color: var(--mid-gray);
font-weight: 300;
line-height: 1.7;
} .cta-banner {
background: var(--sage-dark);
padding: 80px 60px;
text-align: center;
}
.cta-banner h2 {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(36px, 4vw, 56px);
font-weight: 300;
color: white;
margin-bottom: 16px;
}
.cta-banner h2 em {
font-style: italic;
color: var(--sage-light);
}
.cta-banner p {
font-size: 15px;
color: rgba(255, 255, 255, 0.7);
font-weight: 300;
margin-bottom: 40px;
}
.btn-white {
display: inline-block;
background: white;
color: var(--sage-dark);
padding: 17px 48px;
border-radius: 50px;
font-size: 15px;
font-weight: 500;
text-decoration: none;
letter-spacing: 0.5px;
box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover {
transform: translateY(-3px);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
} .contact {
padding: 90px 60px;
max-width: 1100px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: start;
}
.contact-info h2 {
font-family: 'Cormorant Garamond', serif;
font-size: 42px;
font-weight: 300;
margin-bottom: 32px;
line-height: 1.2;
}
.contact-info h2 em {
font-style: italic;
color: var(--sage-dark);
}
.contact-items {
display: flex;
flex-direction: column;
gap: 22px;
}
.contact-item {
display: flex;
align-items: flex-start;
gap: 16px;
}
.ci-icon {
width: 44px;
height: 44px;
flex-shrink: 0;
border-radius: 10px;
background: var(--sage-light);
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
}
.ci-label {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 1.2px;
color: var(--mid-gray);
font-weight: 500;
margin-bottom: 3px;
}
.ci-value {
font-family: 'Cormorant Garamond', serif;
font-size: 18px;
font-weight: 600;
color: var(--charcoal);
line-height: 1.4;
}
.contact-map {
border-radius: 20px;
overflow: hidden;
height: 340px;
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.contact-map iframe {
width: 100%;
height: 100%;
border: none;
} footer {
background: var(--charcoal);
padding: 40px 60px;
display: flex;
align-items: center;
justify-content: space-between;
}
.footer-logo {
font-family: 'Cormorant Garamond', serif;
font-size: 20px;
font-weight: 600;
color: white;
text-decoration: none;
}
.footer-logo span {
color: var(--sage-light);
}
.footer-copy {
font-size: 12px;
color: rgba(255, 255, 255, 0.35);
font-weight: 300;
}
.footer-link {
color: var(--sage-light);
text-decoration: none;
font-size: 13px;
font-weight: 400;
transition: color 0.2s;
}
.footer-link:hover {
color: white;
} @keyframes fadeUp {
from {
opacity: 0;
transform: translateY(28px);
}
to {
opacity: 1;
transform: translateY(0);
}
} @media (max-width: 900px) {
nav {
top: 12px;
padding: 12px 24px;
}
.about,
.contact {
grid-template-columns: 1fr;
gap: 48px;
padding: 60px 24px;
}
.about-photos {
height: 320px;
}
.nearby {
padding: 60px 24px;
}
.nearby-grid {
grid-template-columns: 1fr;
gap: 16px;
}
.cta-banner {
padding: 60px 24px;
}
footer {
flex-direction: column;
gap: 12px;
padding: 32px 24px;
text-align: center;
}
}.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}