
:root {
  --bg: #f8fafc;
  --card: #ffffff;
  --ink: #0f172a;
  --accent: #1d4ed8;
  --accent-ink: #ffffff;
}
* { box-sizing: border-box; }
body { font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif; background: var(--bg); color: var(--ink); margin: 0; line-height: 1.6; }
a { color: var(--accent); text-decoration: none; } a:hover { text-decoration: underline; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

.site-header { background: var(--card); border-bottom: 1px solid #e2e8f0; position: sticky; top: 0; z-index: 10; }
.nav { display: flex; justify-content: space-between; align-items: center; height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--ink); }
.brand-logo { height: 40px; width: auto; border-radius: 8px; box-shadow: 0 1px 2px rgba(0,0,0,.05); }
nav a { margin-left: 18px; font-weight: 600; color: var(--ink); opacity: .9; }
nav a:hover { opacity: 1; }

.hero { position: relative; overflow: hidden; }
.hero-blend {
  min-height: 420px;
  display: grid; place-items: center;
  text-align: center; color: white;
  background-image:
    linear-gradient(180deg, rgba(0,14,40,.65) 0%, rgba(0,14,40,.5) 50%, rgba(0,14,40,.75) 100%),
    url('assets/hero-1.jpg'),
    url('assets/hero-2.jpg'),
    url('assets/hero-3.jpg');
  background-size: cover, cover, cover, cover;
  background-position: center, center, center, center;
  background-blend-mode: normal, overlay, overlay, overlay;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(248,250,252,1) 100%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; padding: 72px 0 64px; }
.hero h1 { font-size: clamp(28px, 5vw, 48px); margin: 0 0 10px; font-weight: 800; }
.hero p { font-size: clamp(16px, 2.5vw, 18px); opacity: .95; margin: 0 0 24px; }
.cta-row { display: inline-flex; gap: 12px; flex-wrap: wrap; }
.button { display: inline-block; padding: 12px 18px; border-radius: 12px; background: var(--accent); color: var(--accent-ink); font-weight: 700; border: 2px solid transparent; }
.button.ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.button:hover { filter: brightness(1.05); }

.highlights { padding: 32px 0 54px; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.card { background: var(--card); border: 1px solid #e2e8f0; border-radius: 14px; padding: 18px; box-shadow: 0 2px 8px rgba(0,0,0,.03); }

.page { padding: 40px 0 64px; }
.narrow { max-width: 760px; }

.gallery { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 12px; margin-top: 16px; }
.gallery .thumb { display: block; border-radius: 12px; overflow: hidden; border: 1px solid #e2e8f0; }
.gallery img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .25s ease; }
.gallery .thumb:hover img { transform: scale(1.03); }

.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.85); display: none; align-items: center; justify-content: center; padding: 20px; z-index: 1000; }
.lightbox:target { display: flex; }
.lightbox img { max-width: 92vw; max-height: 85vh; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,.6); }
.lightbox .close { position: absolute; top: 14px; right: 18px; color: #fff; font-size: 36px; text-decoration: none; }
.lightbox .nav a { position: absolute; top: 50%; font-size: 52px; color: #fff; text-decoration: none; padding: 0 16px; transform: translateY(-50%); }
.lightbox .prev { left: 20px; }
.lightbox .next { right: 20px; }

.site-footer { background: var(--card); border-top: 1px solid #e2e8f0; padding: 24px 0; font-size: 14px; }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .hero-inner { padding: 64px 0 56px; }
  nav a { margin-left: 14px; }
  .gallery img { height: 180px; }
}
/* Contact page layout like mockup */

.contact-page {
  background: #ffffff;
}

.contact-panel {
  background: #f4f7fc; /* light panel like the mockup */
  padding: 2.5rem 0 3rem;
}

.contact-layout {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-main {
  flex: 1 1 0;
  max-width: 620px;
}

.contact-main h1 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.contact-main p {
  margin-bottom: 0.75rem;
}

.contact-list {
  margin: 0 0 0.75rem 1.2rem;
}

.contact-response {
  margin-bottom: 1.25rem;
}

.contact-form .field {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}

.contact-form label {
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.contact-form input,
.contact-form textarea {
  max-width: 260px;
}

.contact-form textarea {
  max-width: 260px;
  resize: vertical;
}

.contact-form .helper-text {
  margin: 0.5rem 0 0.75rem;
  font-size: 0.8rem;
  color: #555;
}

.contact-form .button {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Right logo panel */

.contact-side {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.contact-image-frame {
  border: 4px solid #111;
  padding: 0.5rem;
  background: #ffffff;
}

.contact-image-frame img {
  display: block;
  height: auto;
  max-width: 360px;  /* adjust larger/smaller as you like */
}

/* Stack on smaller screens */

@media (max-width: 900px) {
  .contact-layout {
    flex-direction: column;
  }

  .contact-side {
    justify-content: flex-start;
  }

  .contact-image-frame img {
    max-width: 260px;
  }
}
