
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',sans-serif;
  color:#1f1a17;
  background:#f6f0e7;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(1200px,calc(100% - 48px));margin:0 auto}
.serif{font-family:'Cormorant Garamond',serif}

.site-header{
  position:fixed; inset:0 0 auto 0; z-index:50;
  background:rgba(10,15,14,.32);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner{
  min-height:90px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.brand img{height:66px; width:auto}
.nav{
  display:flex; align-items:center; gap:30px;
  color:rgba(255,255,255,.88); text-transform:uppercase; letter-spacing:.18em; font-size:12px
}
.nav a:hover,.footer-links a:hover,.contact-card a:hover{color:#d8b87d}
.button{
  display:inline-flex; align-items:center; justify-content:center;
  min-height:50px; padding:0 22px; border-radius:999px;
  background:#d8b87d; color:#16120f; border:1px solid #d8b87d;
  text-transform:uppercase; letter-spacing:.15em; font-size:12px; font-weight:600;
}
.button-outline{
  background:transparent; color:#fff; border-color:rgba(255,255,255,.45);
}
.button-outline.dark{
  color:#1f1a17; border-color:#b89563; background:transparent;
}
.button-outline:hover{background:rgba(255,255,255,.08)}
.button-outline.dark:hover{background:rgba(184,149,99,.08)}

.hero{
  position:relative; min-height:100vh; overflow:hidden; display:flex; align-items:center;
  background:#0f1614;
}
.hero-slider,.slide,.hero-overlay{position:absolute; inset:0}
.slide{
  background-size:cover; background-position:center;
  opacity:0; transform:scale(1.03);
  transition:opacity 1.2s ease, transform 6s ease;
}
.slide.active{opacity:1; transform:scale(1)}
.hero-overlay{
  background:
    linear-gradient(90deg, rgba(0,0,0,.60) 0%, rgba(0,0,0,.28) 45%, rgba(0,0,0,.46) 100%),
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.10) 42%, rgba(0,0,0,.56) 100%);
}
.hero-content{position:relative; z-index:3; padding:130px 0 80px}
.eyebrow{
  margin:0 0 18px;
  text-transform:uppercase; letter-spacing:.34em; font-size:12px; color:#d8b87d;
}
.eyebrow.dark{color:#8a6d45}
.hero h1,.page-hero h1,h2,h3{
  margin:0;
  font-family:'Cormorant Garamond',serif;
}
.hero h1{
  font-size:clamp(56px,9vw,108px);
  line-height:.90; color:#fff; font-weight:500;
}
.hero-text{
  max-width:760px; margin:24px 0 0; color:rgba(255,255,255,.86);
  font-size:20px; line-height:1.85; font-weight:300;
}
.hero-actions{display:flex; flex-wrap:wrap; gap:14px; margin-top:34px}
.hero-indicators{
  position:absolute; left:50%; bottom:34px; transform:translateX(-50%);
  display:flex; gap:10px; z-index:4;
}
.indicator{
  width:42px; height:3px; background:rgba(255,255,255,.28); border-radius:999px;
}
.indicator.active{background:#d8b87d}

.section{padding:110px 0}
.intro{background:#efe6d7}
.intro-grid,.experience-grid,.page-intro-grid,.contact-layout{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center}
h2{
  font-size:clamp(40px,5vw,64px);
  line-height:1.02; color:#201915; font-weight:500;
}
.body-copy,.section-side-text,.body-light,.contact-text,.detail-copy{
  font-size:18px; line-height:1.95;
}
.body-copy p,.contact-text,.detail-copy p{color:#5a4f43; margin:0 0 18px}
.body-light{color:rgba(255,255,255,.78); margin-top:24px}

.section-head{
  display:grid; grid-template-columns:1.05fr .95fr; gap:48px; align-items:end; margin-bottom:34px;
}
.section-side-text{color:#625648}

.villas-grid{
  display:grid; grid-template-columns:repeat(12,1fr); gap:18px;
}
.villa-card{
  grid-column:span 4; position:relative; min-height:380px; overflow:hidden;
  border-radius:28px; background:#ddd;
  box-shadow:0 22px 60px rgba(34,25,18,.08);
}
.villa-card.large{grid-column:span 8; min-height:520px}
.villa-card img{width:100%; height:100%; object-fit:cover}
.villa-card-copy{
  position:absolute; left:0; right:0; bottom:0; padding:28px;
  color:#fff; background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.75) 86%);
}
.villa-card-copy h3{font-size:38px; margin-bottom:8px}
.villa-card-copy p{margin:0 0 18px; font-size:16px; line-height:1.7; color:rgba(255,255,255,.84)}

.services{
  background:#17201d;
  color:#fff;
}
.services-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start;
}
.services h2,.contact h2{color:#fff}
.service-list{
  display:grid; grid-template-columns:1fr 1fr; gap:14px;
}
.service-item{
  border:1px solid rgba(255,255,255,.09);
  background:rgba(255,255,255,.04);
  border-radius:22px; padding:24px; line-height:1.7;
}

.experience{background:#efe6d7}
.experience-image,.page-feature-image{
  overflow:hidden; border-radius:34px;
  box-shadow:0 24px 80px rgba(44,29,16,.14);
}
.experience-image img,.page-feature-image img{width:100%; height:100%; object-fit:cover}

.contact{
  background:#101614;
  color:#fff;
}
.contact-box{
  max-width:1180px;
}
.contact-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:22px;
}
.contact-card{
  border:1px solid rgba(255,255,255,.09); background:rgba(255,255,255,.04);
  border-radius:24px; padding:26px;
}
.contact-card span{
  display:block; margin-bottom:12px; text-transform:uppercase; letter-spacing:.22em; font-size:12px; color:#d8b87d;
}
.contact-card a,.contact-card strong{font-size:20px; font-weight:500}
.contact-actions{margin-top:26px}

.footer{
  background:#0b100f; color:rgba(255,255,255,.7);
  padding:28px 0; border-top:1px solid rgba(255,255,255,.05);
}
.footer-inner{display:flex; justify-content:space-between; gap:20px; align-items:center}
.footer-links{display:flex; gap:22px; flex-wrap:wrap}

/* Villa page */
.page-hero{
  position:relative; min-height:88vh; display:flex; align-items:flex-end; overflow:hidden; background:#101614;
}
.page-hero-media,.page-hero-overlay{position:absolute; inset:0}
.page-hero-media img{width:100%; height:100%; object-fit:cover}
.page-hero-overlay{
  background:
    linear-gradient(90deg, rgba(0,0,0,.56) 0%, rgba(0,0,0,.22) 48%, rgba(0,0,0,.42) 100%),
    linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.58) 100%);
}
.page-hero-content{position:relative; z-index:3; padding:160px 0 90px}
.page-hero h1{
  font-size:clamp(54px,8vw,96px);
  line-height:.92; color:#fff; font-weight:500;
}
.page-subtitle{
  max-width:740px; margin:20px 0 0; color:rgba(255,255,255,.88); font-size:20px; line-height:1.8
}
.details-list{
  display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:26px
}
.detail-pill{
  padding:18px 20px; border-radius:18px; background:#fff; border:1px solid #eadcc7;
  font-size:15px; color:#4e4338;
}
.page-gallery{
  display:grid; grid-template-columns:1.2fr .8fr; gap:18px; margin-top:34px
}
.page-gallery .tall,.page-gallery .stack{
  border-radius:28px; overflow:hidden; min-height:320px
}
.page-gallery img{width:100%; height:100%; object-fit:cover}
.page-gallery .stack{display:grid; gap:18px}
.page-gallery .stack > div{border-radius:28px; overflow:hidden; min-height:151px}

@media (max-width: 1080px){
  .nav{display:none}
  .header-cta{display:none}
  .intro-grid,.section-head,.services-grid,.experience-grid,.page-intro-grid,.contact-layout,.footer-inner,.page-gallery{grid-template-columns:1fr; display:grid}
  .villas-grid .villa-card,.villas-grid .villa-card.large{grid-column:span 12}
}
@media (max-width: 760px){
  .container{width:min(100% - 28px, 1200px)}
  .section{padding:84px 0}
  .site-header .brand img{height:54px}
  .hero-text,.page-subtitle{font-size:17px}
  .service-list,.contact-grid,.details-list,.discover-grid{grid-template-columns:1fr}
  .villa-card{min-height:310px}
  .villa-card.large{min-height:390px}
  .villa-card-copy h3{font-size:30px}
}


.discover{background:#f8f3eb}
.discover-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.discover-card{
  background:#fff;
  border:1px solid #eadfcf;
  border-radius:28px;
  padding:28px;
  box-shadow:0 18px 50px rgba(34,25,18,.05);
}
.discover-card-accent{background:#efe6d7}
.discover-meta{
  margin-bottom:14px;
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:11px;
  color:#8a6d45;
}
.discover-card h3{
  font-size:34px;
  line-height:1.02;
  color:#201915;
  margin-bottom:16px;
}
.discover-card ul{
  margin:0;
  padding-left:18px;
  color:#5a4f43;
  line-height:1.85;
  font-size:16px;
}
.discover-card li{margin-bottom:8px}
.discover-summary{margin-top:24px}
.summary-box{
  background:#17201d;
  color:#fff;
  border-radius:28px;
  padding:28px 30px;
}
.summary-box span{
  display:block;
  margin-bottom:12px;
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:12px;
  color:#d8b87d;
}
.summary-box p{
  margin:0;
  max-width:980px;
  color:rgba(255,255,255,.82);
  line-height:1.9;
  font-size:18px;
}


.language-switch { display: flex; align-items: center; gap: 8px; margin-left: 14px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.language-switch a { color: #FFFFFF; text-decoration: none; opacity: .72; }
.language-switch a.active { opacity: 1; font-weight: 600; }
@media (max-width: 760px) { .language-switch { margin-left: 0; gap: 6px; } }
