  :root{
    --ivory: #FAF6F1;
    --bg:#070706;
    --champagne:#D4AF37;
    --champagne-600:#b58f2b;
    --muted:#9a8f82;
    --card:#0f0f0f;
    --radius:18px;
    --maxw:1200px;
    --transition:240ms cubic-bezier(.2,.9,.2,1);
    --shadow-soft: 0 10px 40px rgba(0,0,0,.45);
  }
 a { text-decoration: none; }

 /* Prevent horizontal overflow */




.nav .menu li,
.nav .actions > * {
  flex-shrink: 1; /* allow items to shrink */
  min-width: 0;   /* prevent overflow due to long text */
}

.brand .title {
  max-width: 180px; /* or whatever fits your design */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

  /* ===== RESET & BASE ===== */
  *{box-sizing:border-box}
  html,body{height:100%}
  body{
    margin:0;
    font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",sans-serif;
    background:var(--bg);
    color:var(--ivory);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    line-height:1.6;
  }
  img{display:block;max-width:100%;height:auto}
  .container{max-width:var(--maxw);margin:0 auto;padding:0 20px}

  /* visually hidden */
  .sr-only {position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}

  /* ===== HEADER / NAV ===== */
  header.site-header{
    position:sticky;top:0;z-index:60;
    background:linear-gradient(180deg, rgba(4,4,4,0.55), rgba(4,4,4,0.35));
    border-bottom:1px solid rgba(255,255,255,0.02);
    backdrop-filter: blur(4px);
  }
  .nav {
    display:flex;align-items:center;justify-content:space-between;gap:18px;padding:18px 0;
  }
  .brand{display:flex;align-items:center;gap:14px;white-space:nowrap}
  .logo{
    width:56px;height:56px;border-radius:50%;
    background: radial-gradient(circle at 28% 28%, var(--champagne), var(--champagne-600) 60%);
    box-shadow: inset 0 3px 12px rgba(255,255,255,.06), 0 12px 40px rgba(0,0,0,.6);
    flex-shrink:0;
  }
  .brand .title{font-family:'Playfair Display',serif;font-weight:700;font-size:1.15rem;color:var(--ivory);line-height:1}
  .brand .title small{display:block;font-size:.68rem;color:var(--muted);font-weight:600;margin-top:3px}

  /* desktop menu */
  /* ===== Professional icon nav (replace prior header/nav rules) ===== */

/* global helpers for nav icons */
.nav .icon, .mobile-links .icon { display:inline-grid; place-items:center; width:28px; height:28px; margin-right:10px; color:var(--muted); }
.nav .label { display:inline-block; vertical-align:middle; }
.menu { display:flex; gap:18px; align-items:center; margin:0; padding:0; list-style:none; }
.menu li { margin:0; }

/* nav link: pill look with icon + label */
.nav-link {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:12px;
  color:var(--ivory);
  text-decoration:none;
  font-weight:600;
  transition: transform var(--transition), background var(--transition), color var(--transition);
  background: transparent;
  border: 1px solid transparent;
}

/* hover / focus states */
.nav-link:hover, .nav-link:focus {
  transform: translateY(-3px);
  background: rgba(212,175,55,0.06);
  color: var(--champagne);
  outline: none;
}
.nav-link:active { transform: translateY(-1px); }

/* active state (use .active class) */
.nav-link.active {
  background: linear-gradient(180deg, rgba(212,175,55,0.09), rgba(212,175,55,0.04));
  color: var(--champagne);
  box-shadow: 0 10px 36px rgba(180,140,50,0.06);
  transform: translateY(-2px);
}
.nav-link.active .icon { color: var(--champagne); }

/* icon button style */
.icon-btn { width:44px; height:44px; display:grid; place-items:center; border-radius:999px; background:#0a0a0a; border:1px solid rgba(255,255,255,0.03); box-shadow:0 8px 32px rgba(0,0,0,.5); color:var(--ivory); cursor:pointer; transition: transform var(--transition);}
.icon-btn:hover { transform: translateY(-3px); }

/* CTA primary button */
.btn.primary { background: linear-gradient(180deg, var(--champagne), var(--champagne-600)); color:#111; padding:10px 18px; border-radius:999px; font-weight:700; box-shadow:0 16px 60px rgba(180,140,50,0.12); }

/* language select */
.lang { height:44px; border-radius:10px; padding:6px 10px; background:#0a0a0a; border:1px solid rgba(255,255,255,0.03); color:var(--ivory); font-weight:600; }

/* brand title remove any text-decoration and keep it tight */
.brand .title { text-decoration:none !important; color:var(--ivory); }
.brand .title small { color:var(--muted); font-size:.7rem; display:block; margin-top:3px; }

/* Mobile behavior: hide .menu, show burger */
.burger { display:none; background:transparent; border:0; color:var(--ivory); cursor:pointer; padding:8px; }
.menu-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:58; opacity:0; pointer-events:none; transition:opacity var(--transition); }
.menu-overlay.open { opacity:1; pointer-events:auto; }

/* mobile drawer */
.mobile { position:fixed; top:0; right:0; width:100%; max-width:380px; height:100vh; transform:translateX(100%); background:linear-gradient(180deg,#0a0a0a,#060606); z-index:59; transition:transform var(--transition); box-shadow:-12px 0 40px rgba(0,0,0,.6); display:none; }
.mobile.open { transform:translateX(0); display:block; }

/* mobile link styles (stacked) */
.mobile-links { list-style:none; margin:20px 0 0; padding:0; display:flex; flex-direction:column; gap:10px; }
.mobile-links a { display:flex; align-items:center; gap:12px; padding:12px 10px; border-radius:10px; color:var(--ivory); font-weight:700; text-decoration:none; }
.mobile-links a:hover { background: rgba(255,255,255,0.02); transform:none; }

/* responsive breakpoints */
@media (max-width: 900px) {
  .menu { display:none; }
  .burger { display:inline-block; }
  .actions .lang { display:none; } /* hide language select on very small screens */
}
@media (max-width: 900px) { .burger { display:inline-block; } }



  /* actions */
  .actions{display:flex;gap:12px;align-items:center}
  .icon-btn{width:44px;height:44px;border-radius:999px;background:#0f0f0f;border:1px solid rgba(255,255,255,0.03);display:grid;place-items:center;cursor:pointer;box-shadow:var(--shadow-soft);transition:transform var(--transition)}
  .icon-btn:hover{transform:translateY(-3px)}
  .btn {
    display:inline-flex;align-items:center;gap:10px;padding:10px 18px;border-radius:999px;border:1px solid rgba(255,255,255,0.04);
    background:transparent;color:var(--ivory);font-weight:700;cursor:pointer;transition:transform var(--transition),box-shadow var(--transition);
  }
  .btn.primary{background:linear-gradient(180deg,var(--champagne),var(--champagne-600));color:#111;box-shadow:0 18px 60px rgba(180,140,50,0.12)}
  .btn.ghost{border:1px solid rgba(255,255,255,0.08)}
  select.lang{height:44px;border-radius:10px;padding:6px 10px;background:#080808;border:1px solid rgba(255,255,255,0.03);color:var(--ivory);font-weight:600}

  /* burger */
  .burger{display:none;background:transparent;border:0;font-size:20px;cursor:pointer;color:var(--ivory)}
  .no-scroll{overflow:hidden}

  /* ===== HERO ===== */


  .hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.3));
  z-index: -1;
}

.hero .inner {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.hero h1 {
  font-size: clamp(1.8rem, 6vw, 3rem); /* scales on mobile */
  max-width: 100%;                     /* never overflow */
  word-break: break-word;
}

.hero p.lead {
  font-size: clamp(1rem, 4vw, 1.2rem);
  max-width: 100%;
}

@media (max-width: 768px) {
  .hero-copy {
    align-items: flex-start; /* or center if you want text centered */
    text-align: left;
  }
}


.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center; /* current: aligns everything to left */
  text-align: center;
}

/* Image Slider */
.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-copy h1,
.hero-copy p,
.hero-copy .eyebrow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}


/* Background Video */
.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Foreground content */
.inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}


.btn.ghost {
  border: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.btn.ghost:hover {
  border-color: #b58f2b;
  background: rgba(255, 215, 0, 0.15);
  color: #b58f2b;
  padding: 12px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.quick .btn.ghost:hover {
  border-color: gold;
  background: rgba(255, 215, 0, 0.15);
  color: gold;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

/* Section Styling */
.highlights {
  padding: 3rem 0;
}

.highlights-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.highlights h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin: 0 0 8px;
  color: var(--champagne);
}

.highlights .muted {
  margin: 0;
}

/* Grid Layout */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: start;
}

/* Feature Card */
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--ivory);
  margin: 0 0 8px;
}

.feature-image {
  border-radius: 12px;
  width: 100%;
  height: 260px;
  object-fit: cover;
  margin-bottom: 14px;
  box-shadow: var(--shadow-soft);
}

/* Featured Row */
.featured-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.featured-image {
  width: 340px;
  height: 340px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.featured-text {
  padding: 6px 0;
}

.featured-text h3 {
  font-family: 'Playfair Display', serif;
  color: var(--champagne);
  margin-top: 0;
}

.featured-text p {
  color: var(--ivory);
  font-size: 1.05rem;
  max-width: 56ch;
}

/* Carousel Controls */
.carousel-controls {
  margin-top: 18px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
}

.carousel-dots span:nth-child(2) {
  background: rgba(212, 175, 55, 0.25);
}

/* Icon Buttons */
.icon-btn {
  background: none;
  border: none;
  color: var(--champagne);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.icon-btn:hover {
  color: #D4AF37;
}

/* Button Luxury Hover */
.btn.ghost {
  border: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  transition: all 0.3s ease;
}

.btn.ghost:hover {
  border-color: #b58f2b;
  background: rgba(255, 215, 0, 0.1);
  color: #b58f2b;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}





  /* ===== SPECIAL HIGHLIGHTS / 2-column layout ===== */
  .section{padding:72px 0}
  .grid-2{display:grid;grid-template-columns:1fr 1fr;gap:36px;align-items:start;max-width:1200px;margin:0 auto;padding:0 20px}
  .feature-card{background:#080806;border-radius:14px;padding:18px;box-shadow:0 12px 50px rgba(0,0,0,.55)}

  /* testimonial slider simple */
  .testimonial{display:flex;gap:18px;align-items:center}
  .testimonial .text{font-family:'Playfair Display',serif;color:var(--champagne);font-size:1.6rem}
  .testimonial .meta{color:var(--muted);font-size:.95rem;margin-top:10px}

  /* featured collection layout */
  .featured-row{display:grid;grid-template-columns:340px 1fr;gap:28px;align-items:center}

  /* Book CTA band */
  .book-band{background:linear-gradient(180deg, rgba(10,8,6,0.85), rgba(10,8,6,0.92));padding:56px 0;text-align:center;margin-top:40px}
  .book-band h2{font-family:'Playfair Display',serif;font-size:2.2rem;margin:8px 0 18px;color:var(--champagne)}
  .book-band .btn{background:transparent;border:1px solid rgba(212,175,55,0.2);color:var(--ivory);padding:12px 22px}

  /* footer */
  footer{padding:56px 0;background:#070605;color:var(--muted)}
  footer .footer-inner{max-width:1200px;margin:0 auto;padding:0 20px;display:grid;grid-template-columns:1fr 1fr;gap:20px;align-items:start}
  footer .logo-sm{font-family:'Playfair Display',serif;color:var(--champagne);font-size:1.5rem}

  /* responsive */
  @media (max-width:1100px){
    .hero .inner{grid-template-columns:1fr 460px}
    .featured-row{grid-template-columns:1fr}
  }
  @media (max-width:860px){
    .nav{padding:12px 16px}
    .nav .menu{display:none}
    .burger{display:inline-block}
    .actions .lang{display:none}
    .hero .inner{grid-template-columns:1fr;gap:20px;padding:0 18px}
    .image-wrap{min-height:300px}
    .grid-2{grid-template-columns:1fr}
  }

  /* small polish */
  a{color:inherit}
  .muted{color:var(--muted)}
  .gold{color:var(--champagne)}
  .underline-none{text-decoration:none !important}

  /* BOOK CTA Section */
.book-band {
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(255,255,255,0.05));
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 12px;
  margin-top: 3rem;
  box-shadow: var(--shadow-soft);
}

.book-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: var(--champagne);
}

.book-band .muted {
  margin-bottom: 18px;
  font-size: 1.05rem;
}

/* Gold Hover Button */
.btn.gold-hover {
  border: 2px solid var(--champagne);
  padding: 0.8rem 1.8rem;
  font-weight: bold;
  background: transparent;
  color: var(--champagne);
  transition: all 0.3s ease;
}

.btn.gold-hover:hover {
  background: var(--champagne);
  color: var(--ivory);
  box-shadow: 0 0 12px rgba(212,175,55,0.6);
}

/* Footer */
.site-footer {
  background: #1a1a1a; /* deep charcoal for elegance */
  padding: 2rem 0;
  color: var(--ivory);
  border-top: 2px solid rgba(212,175,55,0.2);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand .logo-sm {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--champagne);
}

.footer-brand p {
  margin: 0.3rem 0 0;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.footer-links nav {
  display: flex;
  gap: 16px;
}

.footer-links nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links nav a:hover {
  color: var(--champagne);
}

.footer-links .muted {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-links {
    align-items: center;
  }
}

/* SERVICES PAGE CSS */
.services {
  padding: 80px 20px;
  background: var(--bg);
  color: var(--ivory);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--champagne);
  margin-bottom: 12px;
}

.services-header p.muted {
  color: var(--muted);
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--champagne);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(180,140,50,0.25);
}

/* Responsive */
@media (max-width: 860px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== PROFESSIONAL HORIZONTAL SCROLL GALLERY ===== */
/* ===== CTA STYL ===== */

/* BOOK CTA - Split Layout */
.book-band {
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(255,255,255,0.03));
  padding: 4rem 2rem;
  border-radius: 14px;
  margin: 4rem auto;
  max-width: 1200px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  transition: transform 0.3s ease;
}

.book-band:hover {
  transform: translateY(-4px);
}

.book-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.book-content {
  flex: 1 1 400px;
}

.book-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--champagne);
  margin-bottom: 1rem;
  font-weight: 700;
}

.book-content p.muted {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.book-content .btn.gold-hover {
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.book-content .btn.gold-hover:hover {
  box-shadow: 0 0 16px rgba(212,175,55,0.6);
}

.book-image {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
}

.book-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  transition: transform 0.3s ease;
}

.book-image img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 860px) {
  .book-inner {
    flex-direction: column-reverse;
    text-align: center;
    gap: 2rem;
  }

  .book-content {
    flex: 1 1 100%;
  }

  .book-image {
    flex: 1 1 100%;
  }
}


