:root{
  --blue-dark: #12708f;
  --blue-mid: #1c8fb0;
  --blue-light: #7fcbe4;
  --blue-pale: #bfe6f2;
  --navy: #0d3a52;
  --ink: #163241;
}
*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; overflow-x:hidden; }
body{
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #ffffff;
}
a{ color: inherit; }
.shell{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header{
  padding: 18px 0;
  text-align: center;
}
.site-header .brand{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(20px, 3.5vw, 28px);
  color: var(--navy);
  letter-spacing: 0.5px;
  text-align: center;
}
.site-header .brand span{ color: var(--blue-mid); }
.brand-logo{
  height: clamp(26px, 5vw, 38px);
  width: auto;
  display: block;
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 55%, var(--blue-light) 100%);
  color: #fff;
  padding: 56px 0 80px;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}
.hero-grid{
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-text{
  flex: 1 1 380px;
  min-width: 280px;
}
.hero-text h1{
  font-style: italic;
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.15;
  margin: 0 0 18px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.hero-text p{
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
  font-weight: 600;
  max-width: 520px;
  margin: 0 0 26px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.cta-btn{
  display: inline-block;
  background: #fff;
  color: var(--blue-dark);
  font-weight: 800;
  font-style: italic;
  font-size: 18px;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cta-btn:hover{
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 26px rgba(0,0,0,0.3);
}
.hero-photo{
  flex: 0 1 320px;
  min-width: 220px;
  display: flex;
  justify-content: center;
}
.hero-photo .frame{
  width: 100%;
  max-width: 320px;
  aspect-ratio: 955 / 1100;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  border: 4px solid rgba(255,255,255,0.6);
}
.hero-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

/* ---------- Services ---------- */
.services{
  padding: 70px 0 60px;
  text-align: center;
}
.services h2{
  font-style: italic;
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 32px);
  color: var(--navy);
  margin: 0 0 8px;
}
.services .lead{
  color: var(--blue-mid);
  font-weight: 700;
  margin: 0 0 40px;
}
.service-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  text-align: left;
}
.service-card{
  background: var(--blue-pale);
  border-left: 5px solid var(--blue-mid);
  border-radius: 10px;
  padding: 20px 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
}

/* ---------- Phone banner ---------- */
.phone-banner{
  background: linear-gradient(100deg, var(--blue-dark), var(--blue-mid));
  color: #fff;
  text-align: center;
  padding: 34px 20px;
  clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 88%);
  margin-top: 20px;
}
.phone-banner a{
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(22px, 4vw, 34px);
  letter-spacing: 0.5px;
}
.phone-banner .hint{
  display: block;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  margin-bottom: 6px;
  opacity: 0.9;
}

/* ---------- About strip ---------- */
.about{
  padding: 60px 0;
  text-align: center;
}
.about p{
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
}

/* ---------- Footer ---------- */
.site-footer{
  background: var(--navy);
  color: #cfe9f2;
  padding: 34px 0;
  text-align: center;
  font-size: 14px;
}
.footer-logo{
  display: block;
  height: 40px;
  width: auto;
  margin: 0 auto 16px;
  border-radius: 6px;
}
.fb-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-weight: 700;
  font-style: italic;
}
.fb-badge svg{ width: 22px; height: 22px; flex: none; }
.site-footer .copy{
  opacity: 0.7;
  margin-top: 10px;
}

@media (max-width: 640px){
  .hero{ padding: 40px 0 60px; clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%); }
  .hero-grid{ flex-direction: column-reverse; text-align: center; }
  .hero-text p{ margin-left: auto; margin-right: auto; }
  .service-grid{ text-align: center; }
  .service-card{ border-left: none; border-top: 5px solid var(--blue-mid); }
}
