:root {
  --primary: #0f1942;
  --primary-dark: #07112b;
  --accent: #c79b40;
  --accent-soft: #f4e2b6;
  --text: #1c243d;
  --muted: #56607b;
  --bg: #f8f5ee;
  --white: #ffffff;
  --border: #dde0df;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }

.site-header {
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}
.nav-bar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: 0.75rem; font-size: 1.2rem; font-weight: 700; color: var(--primary-dark); }
.brand-logo {
  height: 55px; width: auto;
  display: block;
}
.header-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.header-link-btn {
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(15, 25, 66, 0.18);
}
.site-nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.site-nav a { color: var(--muted); font-weight: 600; }
.site-nav a.active, .site-nav a:hover { color: var(--accent); }

.hero, .page-hero {
  position: relative;
  color: var(--white);
  padding: 0; /* slider provides full-height visuals */
}
.hero-content, .content-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; align-items: center; position: relative; z-index: 1; }
.hero-content.single-column { grid-template-columns: 1fr; padding-top: 1.25rem; }
.eyebrow { letter-spacing: 0.25em; text-transform: uppercase; font-size: 0.8rem; color: var(--accent); margin-bottom: 0.6rem; font-weight: 700; }
.eyebrow-dark { color: var(--primary-dark); }
.hero h1, .page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0 0 1rem; line-height: 1.15; }
.hero-copy p { max-width: 660px; }
.hero-actions { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 0.85rem 1.2rem; border-radius: 999px; font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.12); }
.btn-primary { background: var(--accent); color: var(--white); }
.btn-secondary { border: 1px solid rgba(255,255,255,0.85); color: var(--white); }
.btn-light { background: var(--accent-soft); color: var(--primary-dark); }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.9rem; margin-top: 1.6rem;
}
.hero-stats > div {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22); border-radius: 14px; padding: 0.9rem;
  display: flex; flex-direction: column; gap: 0.2rem;
}
.hero-stats strong { font-size: 1.1rem; color: var(--white); }
.hero-stats span { font-size: 0.85rem; color: rgba(255,255,255,0.88); }

.hero-card, .hero-panel, .card, .contact-form, .spotlight-card {
  background: var(--white); color: var(--text); border: 1px solid var(--border); border-radius: 18px; padding: 1.35rem; box-shadow: 0 12px 36px rgba(15,25,66,0.08);
}
/* removed .hero-panel; slider replaces it */
.hero-slider { position: relative; border-radius: 0; overflow: hidden; }
.hero-slider.full-width { border-radius: 0; }
.hero-slider .slides { display: flex; width: 100%; height: calc(100vh - 76px); transition: transform 0.6s ease; }
.hero-slider .slide { min-width: 100%; background-size: cover; background-position: center; display: flex; align-items: stretch; }
.hero-slider .slide-overlay { background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 55%); color: var(--white); padding: 1.4rem 1.6rem; width: 100%; align-self: end; }
.hero-slider .slide-overlay h4 { margin: 0 0 0.25rem; font-size: 1.1rem; }
.slide .overlay-title, .slide .overlay-sub {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms cubic-bezier(.2,.9,.3,1), transform 420ms cubic-bezier(.2,.9,.3,1);
}
.slide.active .overlay-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 120ms;
}
.slide.active .overlay-sub {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 240ms;
}
.slider-prev, .slider-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.45); color: var(--white); border: 0; width: 48px; height: 48px; border-radius: 50%; font-size: 1.6rem; cursor: pointer; }
.slider-prev { left: 14px; }
.slider-next { right: 14px; }
.slider-dots { position: absolute; left: 50%; transform: translateX(-50%); bottom: 12px; display: flex; gap: 8px; }
.slider-dots .dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.5); border: 0; cursor: pointer; }
.slider-dots .dot.active { background: var(--accent); box-shadow: 0 6px 18px rgba(0,0,0,0.22); }

.hero-slider .slides, .hero-slider .slide { height: calc(100vh - 76px); }

/* hero-topcopy overlay */
.hero-topcopy { position: absolute; top: 12%; left: 50%; transform: translateX(-50%); z-index: 5; width: 100%; max-width: 1120px; padding: 0 1rem; }
.hero-topcopy .hero-copy { text-align: center; color: var(--white); }
.hero-topcopy .hero-copy h1 { color: var(--white); font-size: clamp(1.8rem, 3.2vw, 3rem); margin-bottom: 0.6rem; }
.hero-topcopy .hero-copy p { color: rgba(255,255,255,0.92); max-width: 900px; margin: 0.4rem auto 0; }
.hero-topcopy .hero-copy > p:nth-of-type(2) {
  display: inline-block;
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(199, 155, 64, 0.24), rgba(255, 255, 255, 0.12));
  border: 1px solid rgba(255, 214, 128, 0.35);
  box-shadow: 0 8px 24px rgba(7, 17, 43, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff7e6;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
.hero-topcopy .hero-actions { margin-top: 1rem; }
.hero-topcopy .hero-stats { margin-top: 1.2rem; display: grid; grid-template-columns: repeat(3,1fr); gap: 0.6rem; }
.hero-topcopy .hero-stats > div {
  background: rgba(255,255,255,0.10);
  padding: 0.6rem; border-radius: 10px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 8px 24px rgba(15,25,66,0.12);
}

@media (max-width: 1200px) {
  .hero-topcopy { top: 10%; }
}

@media (max-width: 900px) {
  .hero-slider .slides { height: 60vh; }
  .hero-topcopy { top: 8%; }
  .hero-topcopy .hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .hero-slider .slides { height: 50vh; }
  .hero-topcopy {
    top: 54%;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 0.8rem;
    max-width: 100%;
    width: calc(100% - 1.2rem);
  }
  .hero-topcopy .hero-copy { max-width: 100%; }
  .hero-topcopy .hero-copy h1 { font-size: 1.35rem; }
  .hero-topcopy .hero-copy p { font-size: 0.95rem; max-width: 100%; display: none; }
  .hero-topcopy .hero-stats {
    gap: 0.35rem;
    margin-top: 0.55rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-topcopy .hero-stats > div {
    padding: 0.4rem;
    border-radius: 8px;
    min-width: 0;
  }
  .hero-topcopy .hero-stats strong { font-size: 0.85rem; }
  .hero-topcopy .hero-stats span { font-size: 0.65rem; }
}
.panel-badge {
  display: inline-block; margin-bottom: 0.8rem; padding: 0.35rem 0.7rem; border-radius: 999px;
  background: var(--accent-soft); color: var(--primary-dark); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
}
.check-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 0.7rem; }
.check-list li { position: relative; padding-left: 1.3rem; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--primary-dark); font-weight: 700; }
.panel-footer { margin-top: 1.15rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-weight: 700; color: var(--primary-dark); }
.panel-footer a { color: var(--accent); }

.section { padding: 4.25rem 0; }
.section-soft { background: linear-gradient(180deg, var(--accent-soft), transparent); }
.section-heading { text-align: center; margin-bottom: 2rem; }
.section-heading h2 { margin: 0 0 0.6rem; font-size: clamp(1.7rem, 2.5vw, 2.35rem); }
.section-heading p { color: var(--muted); max-width: 720px; margin: 0 auto; }

.card-grid, .gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(0,0,0,0.1); }
.feature-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.card h3, .spotlight-copy h2, .cta-band h2 { margin: 0 0 0.6rem; }

.spotlight { background: #fff; }
.spotlight-copy h2 { font-size: clamp(1.6rem, 2.3vw, 2.1rem); }
.spotlight-card { display: grid; gap: 0.9rem; background: linear-gradient(135deg, var(--accent), var(--white)); }
.mini-stat {
  padding: 1rem; border-radius: 14px; background: rgba(255,255,255,0.8); border: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.mini-stat strong { color: var(--primary-dark); font-size: 1.05rem; }
.mini-stat span { color: var(--muted); }

.gallery-card {
  min-height: 220px; padding: 0; border-radius: 18px; border: 1px solid var(--border); overflow: hidden;
  position: relative; background: linear-gradient(135deg, rgba(15,25,66,0.08), rgba(255,255,255,0.95));
}
.gallery-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.gallery-label {
  position: absolute; left: 1rem; bottom: 1rem; padding: 0.55rem 0.8rem; border-radius: 999px;
  background: rgba(15,25,66,0.9); color: var(--white); font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

.cta-section { padding-top: 0; }
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: var(--white);
  border-radius: 24px; padding: 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
}
.cta-band h2 { font-size: clamp(1.4rem, 2.2vw, 1.95rem); }

.contact-form input, .contact-form textarea { display: block; width: 100%; margin-bottom: 0.8rem; padding: 0.8rem; border: 1px solid var(--border); border-radius: 8px; }
.site-footer { background: #f2eadf; padding: 2rem 0; border-top: 1px solid var(--border); }
.footer-content { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: var(--muted); }


.service-card{
    position:relative;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor:pointer;
    isolation:isolate;
}

.service-card:hover{
    transform: translateY(-8px) scale(1.02);
    box-shadow:0 20px 45px rgba(0,0,0,.16);
}

.service-image{
    height:260px;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition: transform 0.35s ease;
}

.service-card:hover .service-image img{
    transform: scale(1.05);
}

.service-content{
    padding:70px 30px 30px;
    text-align:center;
}

.service-icon{
    position:absolute;

    left:50%;
    top:260px;

    transform:translate(-50%,-50%);

    width:95px;
    height:95px;

    background:#0b2343;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    border:6px solid #fff;

    box-shadow:0 8px 25px rgba(0,0,0,.15);

    z-index:2;
    transition: transform 0.35s ease, background-color 0.35s ease, color 0.35s ease;
    color:#fff;
}

.service-card:hover .service-icon{
    transform: translate(-50%,-50%) scale(1.1);
    background:#c89b3c;
}

.service-icon img{
    width:42px;
    height:42px;
}