/* ========================================
   247 Asset Solutions — Modern Luxury Theme
   Palette: charcoal · warm cream · sage green · soft white
   ======================================== */

:root {
  /* Charcoal / Dark */
  --charcoal:    #2b2b2b;
  --charcoal-2:  #3a3a3a;
  --charcoal-3:  #4a4a4a;

  /* Warm neutrals */
  --cream:       #f5f0ea;
  --cream-2:     #ece6dd;
  --warm-white:  #faf8f5;
  --warm-gray:   #b5ada3;

  /* Sage green accent */
  --sage:        #4a6b5a;
  --sage-light:  #6a8f7a;
  --sage-dark:   #3a5647;

  /* Text */
  --ink:         #1e1e1e;
  --muted:       #5a5a5a;
  --light-text:  #d4cfc8;

  /* Utility */
  --line:        #ddd6cc;
  --shadow-sm:   0 2px 12px rgba(0,0,0,.06);
  --shadow-md:   0 8px 30px rgba(0,0,0,.08);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.12);
  --radius:      14px;
  --radius-lg:   20px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: var(--sage); }

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.15;
  margin: 0 0 .6rem;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.15rem; font-weight: 600; font-family: "Inter", sans-serif; }
p  { margin: 0 0 1rem; color: var(--muted); }

.container { width: min(1180px, 90vw); margin: 0 auto; }

/* ───── KICKER ───── */
.kicker {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--sage);
  margin-bottom: .6rem;
}
.kicker-light { color: var(--sage-light); }

/* ───── HEADER ───── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(14px) saturate(1.6);
  -webkit-backdrop-filter: blur(14px) saturate(1.6);
  background: rgba(250,248,245,.82);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(250,248,245,.96);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.nav-wrap {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--ink);
}
.logo-mark {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-content: center;
  background: var(--charcoal);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .04em;
}
.logo-text {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.05rem;
}
.nav-links { display: flex; gap: .15rem; }
.nav-links a {
  text-decoration: none;
  color: var(--charcoal-3);
  font-weight: 500;
  font-size: .88rem;
  padding: .45rem .7rem;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.nav-links a:hover {
  background: var(--cream);
  color: var(--ink);
}

/* mobile hamburger */
.mobile-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 28px; height: 20px; position: relative;
}
.mobile-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: absolute; left: 0;
  transition: .25s;
}
.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-toggle span:nth-child(3) { bottom: 0; }

/* ───── BUTTONS ───── */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: .4rem;
  font: 600 .9rem/1 "Inter", sans-serif;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  padding: .8rem 1.6rem;
  border-radius: 10px;
  background: var(--charcoal);
  color: #fff;
  transition: transform .2s, box-shadow .25s, background .2s;
  box-shadow: var(--shadow-sm);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--charcoal-2);
}
.btn-sm { padding: .55rem 1rem; font-size: .82rem; }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.55);
  box-shadow: none;
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.8);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ───── HERO ───── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;           /* header offset */
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('assets/imgines/home%20interior.png') center/cover no-repeat,
    linear-gradient(135deg,
      #3a3a3a 0%,
      #4a5a4f 25%,
      #5a6860 50%,
      #3d4a42 75%,
      #2b2b2b 100%);
  transform: scale(1.03);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg,
      rgba(30,30,30,.82) 0%,
      rgba(30,30,30,.55) 50%,
      rgba(30,30,30,.25) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 6rem 0 5rem;
}
.hero-inner .kicker { color: var(--sage-light); }
.hero-inner h1 { color: #fff; margin-bottom: 1rem; }
.hero-inner .lead {
  color: rgba(255,255,255,.78);
  font-size: 1.08rem;
  max-width: 540px;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: .65rem;
  margin: 1.6rem 0 2.5rem;
}
.hero-stats {
  display: flex; gap: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.stat { display: flex; flex-direction: column; gap: .15rem; }
.stat-num  { font-family: "Playfair Display", serif; font-size: 1.6rem; font-weight: 700; color: #fff; }
.stat-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.55); }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.45);
  animation: bounce 2s infinite;
}

@keyframes heroZoom {
  from { transform: scale(1.03); }
  to   { transform: scale(1.08); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}

/* ───── SECTIONS ───── */
.section { padding: 5.5rem 0; }

/* ───── ABOUT ───── */
.grid-about {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-text h2 { margin-bottom: 1.2rem; }
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--line);
  transition: box-shadow .25s, transform .25s;
}
.highlight-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.highlight-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-content: center;
  border-radius: 10px;
  background: var(--sage);
  color: #fff;
}
.highlight-card h3 { margin-bottom: .25rem; }
.highlight-card p  { margin: 0; font-size: .9rem; }

/* ───── MISSION (dark section) ───── */
.section-dark {
  background: var(--charcoal);
  color: var(--light-text);
}
.mission-inner { max-width: 880px; }
.mission-inner h2 { color: #fff; margin-bottom: 1.5rem; }
.mission-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.mission-cols p { color: var(--warm-gray); }

/* ───── SERVICES ───── */
.section-head {
  max-width: 700px;
  margin-bottom: 2.5rem;
}
.section-intro { max-width: 65ch; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.service-card {
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--line);
  transition: box-shadow .3s, transform .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-num {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--line);
  display: block;
  margin-bottom: .4rem;
}
.service-card h3 { margin-bottom: .5rem; }
.service-card p  { margin: 0; font-size: .9rem; }

/* ───── CONTACT ───── */
.section-contact {
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.info-block { margin-top: 1.6rem; }
.info-block h3 {
  margin-bottom: .5rem;
  color: var(--ink);
}
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.info-list li {
  display: flex; align-items: center; gap: .55rem;
}
.info-list svg { flex-shrink: 0; color: var(--sage); }
.info-list a { text-decoration: none; color: var(--ink); font-weight: 500; }
.info-list a:hover { color: var(--sage); }

/* ── Form ── */
.contact-form {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2.2rem;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 { font-family: "Playfair Display", serif; font-size: 1.3rem; margin-bottom: .3rem; }
.contact-form > p  { margin-bottom: 1rem; font-size: .9rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: .7rem; }
.form-group label {
  display: block;
  margin-bottom: .35rem;
  font-weight: 600;
  font-size: .85rem;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid #d0c9bf;
  border-radius: 10px;
  padding: .7rem .85rem;
  font: inherit;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(74,107,90,.15);
}

.contact-form .btn {
  margin-top: .6rem;
  background: var(--sage);
}
.contact-form .btn:hover {
  background: var(--sage-dark);
}

.form-status { min-height: 1.4rem; margin-top: .6rem; font-weight: 600; }
.form-status.success { color: var(--sage); }
.form-status.error   { color: #9a2a2a; }

/* ───── FOOTER ───── */
.site-footer {
  background: var(--charcoal);
  color: var(--warm-gray);
  padding: 3rem 0 2rem;
}
.footer-inner { text-align: center; }
.logo-footer .logo-mark { background: var(--sage); }
.logo-footer .logo-text { color: #fff; }
.logo-footer { justify-content: center; margin-bottom: 1rem; }

.footer-tagline {
  font-size: .92rem;
  color: var(--warm-gray);
  max-width: 480px;
  margin: 0 auto 1.5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.2rem;
}
.footer-bottom p {
  margin: 0;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer-credit {
  margin-top: .4rem;
}
.footer-credit a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
}
.footer-credit a:hover {
  color: #fff;
}

/* ───── RESPONSIVE ───── */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .grid-about,
  .contact-grid,
  .mission-cols {
    grid-template-columns: 1fr;
  }
  .hero-inner { padding: 4rem 0 3rem; }
  .hero-stats { gap: 1.5rem; }

  .nav-links { display: none; }
  .nav-links.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--warm-white);
    border-bottom: 1px solid var(--line);
    padding: .8rem 5vw;
    box-shadow: var(--shadow-md);
    z-index: 50;
  }
  .mobile-toggle { display: block; }
  .btn-sm { display: none; }
}

@media (max-width: 600px) {
  .service-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .section { padding: 3.5rem 0; }
  h1 { font-size: 2rem; }
}
