/* ========== Aether – Global Styles ========== */

:root{
  --bg:#F0EFEB;
  --text:#1f2937;
  --muted:#4b5563;
  --brand:#CB997E;
  --brand-2:#B7B7A4;
  --nav:#a5a58dd6;
  --link:#2b6cb0;
  --border:#e5e7eb;
  --radius:14px;

  /* actual fixed navbar height (NOT logo height) */
  --header-height: 100px;
  --header-height-sm: 90px;

  --indicator-speed: .45s;
}

@font-face{
  font-family:"AetherLuxury";
  src:url("fonts/AristocratEstate-Regular.otf") format("opentype");
  font-weight:normal;
  font-style:normal;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html:focus-within{ scroll-behavior:smooth; }

body{
  font-family:'Segoe UI',system-ui,-apple-system,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

a{ color:var(--link); text-decoration:none; }
a:hover{ text-decoration:underline; }

:focus-visible{
  outline:3px solid rgba(43,108,176,.4);
  outline-offset:2px;
}

/* Layout */
.container{
  max-width:1000px;
  margin:0 auto;
  padding:0 20px;
}

.section{ padding:80px 20px; }
.section h2{ margin:0 0 15px; font-size:1.7rem; color:var(--text); }
.section p{ line-height:1.7; color:var(--muted); }

/* offset page content for fixed navbar */
main{ padding-top: var(--header-height); }
section{ scroll-margin-top: var(--header-height); }

/* ========== NAVBAR ========== */
.navbar{
  position:fixed;
  top:0; left:0;
  width:100%;
  z-index:1000;

  background:var(--nav);
  color:#fff;
  backdrop-filter:saturate(140%) blur(6px);
  border-bottom:1px solid rgba(0,0,0,.06);

  padding:10px 0;
}

/* IMPORTANT: make navbar full width so it sits more left/right */
.navbar .container{
  max-width:100%;
  margin:0;
  padding:0 40px; /* make this 20px if you want even more left */
}

.navbar__wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

/* Big logo without making navbar tall */
.logo{
  position:relative;
  display:flex;
  align-items:center;

  height:70px;        /* controls navbar row height */
  overflow:visible;   /* logo can overflow outside */
  margin:0;
  padding:0;
  line-height:0;
}

.logo img{
  height:200px;       /* your big logo */
  width:auto;
  display:block;

  position:absolute;
  top:50%;
  left:0;
  transform:translateY(-50%);
}

/* Top nav */
.topnav{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
  gap:30px;
  padding-bottom:2px;
}

.topnav a{
  color:#fff;
  font-weight:600;
  padding:6px 0;
  line-height:1.1;
  transition:opacity .2s ease;
}
.topnav a:hover{ opacity:.85; }

/* Sliding underline */
.topnav__indicator{
  position:absolute;
  bottom:0;
  left:0;
  height:2px;
  width:var(--w, 0px);
  transform:translateX(var(--x, 0px));
  background:#fff;
  border-radius:2px;
  transition:
    transform var(--indicator-speed) cubic-bezier(.25,.1,.25,1),
    width     var(--indicator-speed) cubic-bezier(.25,.1,.25,1);
  will-change:transform, width;
}
.topnav__indicator.no-anim{ transition:none; }

@media (prefers-reduced-motion: reduce){
  html:focus-within{ scroll-behavior:auto; }
  .topnav__indicator{ transition:none; }
}

/* ========== HERO (Auto Slideshow) ========== */
.hero{
  position:relative;
  height:100vh;
  display:grid;
  place-items:center;
  text-align:center;
  color:#fff;
  padding:20px;
  overflow:hidden;
}

.hero-slides{ position:absolute; inset:0; }

.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1.05);
  transition:opacity 1100ms ease, transform 2500ms ease;
}
.hero-slide.is-active{
  opacity:1;
  transform:scale(1);
}

/* overlay for readability */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.35);
  z-index:1;
}

.hero-content{ position:relative; z-index:2; }

.hero h1{
  font-family:"AetherLuxury", serif;
  margin:0;
  font-size:clamp(2rem, 2.5vw, 3.2rem);
  line-height:1.2;
  letter-spacing:.05em;
  font-weight:normal;
  padding:16px 22px;
  text-shadow:0 2px 20px rgba(0,0,0,.4);
}

/* ========== WHAT WE DO ========== */
.whatwedo{
  display:flex;
  gap:40px;
  justify-content:center;
  flex-wrap:wrap;
}

.whatwedo__item{
  flex:1 1 260px;
  max-width:320px;
}

.whatwedo__title{
  color:var(--brand);
  font-weight:700;
  margin:8px 0 6px;
}

/* ========== CONTACT ========== */
.contact{
  background-color:#4b5563;
  color:#fff;
  border-radius:var(--radius);
  padding:30px;
}
.contact h2{ color:#fff; }
.contact p{ color:#fff; }
.contact a{ color:#fff; text-decoration:underline; }

/* ========== FOOTER (screenshot style) ========== */
.site-footer{
  background:#fff;
  margin-top:70px;
  padding:60px 0 40px;
}

.footer-logos{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:56px;
  padding:10px 20px 30px;
  flex-wrap:wrap;
}

.footer-logos img{
  height:52px;
  width:auto;
  opacity:.95;
}

.footer-divider{
  height:1px;
  background:var(--border);
  max-width:1200px;
  margin:30px auto;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:28px;
  padding-top:10px;
}

.footer-left{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-copy{
  color:var(--brand);
  text-transform:uppercase;
  letter-spacing:.06em;
  font-size:.95rem;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:28px;
  color:var(--text);
}

.footer-links a{
  color:var(--text);
  text-decoration:none;
}
.footer-links a:hover{ text-decoration:underline; }

.footer-made{ opacity:.75; }

.footer-right{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  align-items:center;
  gap:26px;
}

.footer-right a{
  color:var(--text);
  text-decoration:none;
}
.footer-right a:hover{ text-decoration:underline; }

.footer-top{
  border:0;
  background:transparent;
  cursor:pointer;
  padding:6px 0;
  color:var(--brand);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:700;
}
.footer-top:hover{ text-decoration:underline; }

.footer-meta{
  margin-top:34px;
  text-align:center;
  color:var(--text);
  opacity:.8;
  line-height:1.9;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 820px){
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
  .footer-right{
    justify-content:flex-start;
  }
}

@media (max-width: 640px){
  :root{
    --header-height: 90px;
    --header-height-sm: 90px;
  }

  /* navbar closer to edges on mobile */
  .navbar .container{ padding:0 18px; }

  .topnav{ gap:18px; }

  /* reduce logo a bit on mobile so it doesn't collide */
  .logo{ height:64px; }
  .logo img{ height:160px; }

  main{ padding-top: var(--header-height-sm); }
  section{ scroll-margin-top: var(--header-height-sm); }
}

/* ========== FEATURE SPLIT (image + card like example) ========== */
.feature-split{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
}

.feature-media{
  position:relative;
  min-height: 360px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  overflow:hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.feature-media__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.18), rgba(0,0,0,0));
}

.feature-card{
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 34px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.feature-title{
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  color: var(--text);
}

.feature-sub{
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.feature-groups{
  display:grid;
  gap: 18px;
  margin-top: 10px;
}

.feature-group h3{
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--text);
}

.feature-group ul{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.feature-group li{
  margin: 2px 0;
}

.feature-btn{
  display:inline-block;
  margin-top: 18px;
  background: #111827;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration:none;
}

.feature-btn:hover{
  opacity: .9;
  text-decoration:none;
}

/* responsive */
@media (max-width: 900px){
  .feature-split{
    grid-template-columns: 1fr;
  }
  .feature-media{
    min-height: 280px;
  }
}

/* ===== STACKED PHOTOS (more spread out) ===== */
.photo-stack{
  position:relative;
  height:460px;  /* slightly taller */
}

/* all images */
.photo{
  position:absolute;
  background-size:cover;
  background-position:center;
  border-radius: var(--radius);
  box-shadow: 0 22px 50px rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.35);
}

/* MIDDLE image (base) */
.photo--main{
  inset: 0;
  z-index: 1;   /* lowest */
}

/* TOP image (should be on top) */
.photo--back{
  width: 65%;
  height: 60%;
  top: -80px;
  right: -40px;
  transform: rotate(4deg);
  z-index: 3;   /* highest */
}

/* BOTTOM image */
.photo--front{
  width: 60%;
  height: 55%;
  bottom: -80px;
  left: -40px;
  transform: rotate(-4deg);
  z-index: 2;   /* middle */
}
/* optional soft overlay on main for luxury feel */
.photo--main::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(0,0,0,.15), rgba(0,0,0,0));
}

/* Responsive: reduce overlap on small screens */
@media (max-width: 900px){
  .photo-stack{ height: 320px; }
  .photo--back, .photo--front{
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    width: 52%;
    height: 45%;
    opacity: .9;
  }
  .photo--back{ top: -12px; right: -12px; }
  .photo--front{ bottom: -12px; left: -12px; }
}

@media (prefers-reduced-motion: reduce){
  .photo--back, .photo--front{ transform: none; }
}

/* ===== SERVICES GRID ===== */
.services-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:30px;
}

/* card */
.service-card{
  background:#fff;
  padding:30px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:transform .3s ease, box-shadow .3s ease;
}

/* hover effect */
.service-card:hover{
  transform: translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,.12);
}

/* title */
.service-card h3{
  margin-bottom:12px;
  font-size:1.2rem;
}

/* list */
.service-card ul{
  padding-left:18px;
  color:#4b5563;
  line-height:1.7;
}

/* remove default bullets (optional cleaner look) */
.service-card ul li{
  list-style:none;
  position:relative;
  padding-left:18px;
}

/* custom bullet */
.service-card ul li::before{
  content:"•";
  position:absolute;
  left:0;
  color:var(--brand);
}

/* responsive */
@media(max-width:800px){
  .services-grid{
    grid-template-columns:1fr;
  }
}

/* ===== CONTACT HERO ===== */
.contact-hero{
  height:40vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  background:var(--brand-2);
  color:#fff;
}

.contact-hero h1{
  font-family:"AetherLuxury", serif;
  font-size:clamp(2rem,3vw,3rem);
  margin:0;
  letter-spacing:.05em;
}

.contact-hero p{
  margin-top:10px;
  opacity:.85;
}

/* ===== CONTACT GRID ===== */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}

/* ===== INFO ===== */
.contact-info h2{
  margin-bottom:20px;
}

.contact-item{
  margin-bottom:24px;
}

.contact-item strong{
  display:block;
  margin-bottom:6px;
  color:var(--brand);
}

.contact-item a{
  color:var(--text);
  text-decoration:none;
}

.contact-item a:hover{
  text-decoration:underline;
}

/* ===== FORM ===== */
.contact-form{
  background:#fff;
  padding:30px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.contact-form h2{
  margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px;
  margin-bottom:14px;
  border:1px solid #ddd;
  border-radius:8px;
  font-family:inherit;
}

.contact-form button{
  background:var(--brand);
  color:#fff;
  border:none;
  padding:12px 20px;
  border-radius:30px;
  cursor:pointer;
  font-weight:600;
}

.contact-form button:hover{
  opacity:.9;
}

/* ===== MOBILE ===== */
@media(max-width:800px){
  .contact-grid{
    grid-template-columns:1fr;
  }
}