html { scroll-behavior: smooth; }

/* ===========================
   1. HERO
=========================== */
.ov-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.ov-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transform: scale(1.08);
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.ov-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(23,63,99,.9) 0%,
    rgba(23,63,99,.45) 50%,
    rgba(0,0,0,.15) 100%);
}
.ov-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 6% 5rem;
  color: var(--white);
}
.ov-hero__content h1 {
  font-family: "EB Garamond", serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin: .75rem 0 1.5rem;
}
.ov-hero__breadcrumb {
  font-family: "Raleway", serif;
  font-size: .7rem;
  letter-spacing: .2rem;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.ov-hero__breadcrumb a { color: rgba(255,255,255,.55); transition: color .3s; }
.ov-hero__breadcrumb a:hover { color: var(--brown); }
.ov-hero__breadcrumb i { font-size: .55rem; color: var(--brown); }

/* ===========================
   2. COMPANY INTRO
=========================== */
.ov-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  padding: 8rem 6%;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}
.ov-intro__text h2 {
  font-family: "EB Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 2rem;
}
.ov-intro__text p {
  font-family: "EB Garamond", serif;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.95;
  color: #444;
  margin-bottom: 1.25rem;
}
.ov-intro__text p + p { margin-bottom: 2.5rem; }
.ov-intro__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.ov-intro__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 6s ease;
}
.ov-intro__img:hover img { transform: scale(1.04); }
.ov-intro__img::before {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 5rem;
  height: 5rem;
  border-left: 3px solid var(--brown);
  border-bottom: 3px solid var(--brown);
  z-index: 2;
}
@media screen and (max-width: 900px) {
  .ov-intro {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 5rem 6%;
  }
  .ov-intro__img { aspect-ratio: 16/9; }
  .ov-intro__img::before { display: none; }
}

/* ===========================
   3. MISSION & VISION
=========================== */
.ov-mv {
  background: #f8f7f5;
  padding: 7rem 6%;
}
.ov-mv__header {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}
.ov-mv__header h2 {
  font-family: "EB Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--blue);
  margin-top: .5rem;
}
.ov-mv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.ov-mv__card {
  background: var(--white);
  padding: 3rem;
  border-top: 3px solid var(--brown);
  transition: box-shadow .3s ease;
}
.ov-mv__card:hover { box-shadow: 0 10px 32px rgba(23,63,99,.1); }
.ov-mv__card h3 {
  font-family: "Raleway", serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .25rem;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1.25rem;
}
.ov-mv__card p {
  font-family: "EB Garamond", serif;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.9;
  color: #444;
}
@media screen and (max-width: 768px) {
  .ov-mv { padding: 5rem 6%; }
  .ov-mv__grid { grid-template-columns: 1fr; }
}

/* ===========================
   4. CORE VALUES
=========================== */
.ov-values {
  padding: 7rem 6%;
  max-width: 1400px;
  margin: 0 auto;
}
.ov-values__header {
  margin-bottom: 4rem;
}
.ov-values__header h2 {
  font-family: "EB Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--blue);
  margin-top: .5rem;
}
.ov-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.ov-val-card {
  border: 1px solid rgba(23,63,99,.1);
  padding: 2.75rem 2rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: all .4s ease;
  background: var(--white);
}
.ov-val-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--brown);
  transition: width .4s ease;
}
.ov-val-card:hover::after { width: 100%; }
.ov-val-card:hover { box-shadow: 0 12px 32px rgba(23,63,99,.12); transform: translateY(-4px); }
.ov-val-card i {
  font-size: 2rem;
  color: var(--brown);
  margin-bottom: 1.5rem;
  display: block;
}
.ov-val-card h3 {
  font-family: "EB Garamond", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: .75rem;
  line-height: 1.3;
}
.ov-val-card p {
  font-family: "EB Garamond", serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .ov-values { padding: 4rem 6%; }
  .ov-values__grid { grid-template-columns: 1fr; }
}

/* ===========================
   5. SERVICES
=========================== */
.ov-services {
  background: var(--blue);
  padding: 7rem 6%;
  overflow: hidden;
}
.ov-services__header {
  text-align: center;
  margin-bottom: 4rem;
}
.ov-services__header h2 {
  font-family: "EB Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  margin-top: .5rem;
}
.ov-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.ov-serv-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: 2.75rem 2rem 2.25rem;
  text-align: center;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}
.ov-serv-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--brown);
  transition: width .4s ease;
}
.ov-serv-card:hover::after { width: 100%; }
.ov-serv-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,102,0,.4);
  transform: translateY(-4px);
}
.ov-serv-card i {
  font-size: 2rem;
  color: var(--brown);
  margin-bottom: 1.5rem;
  display: block;
}
.ov-serv-card h3 {
  font-family: "Raleway", serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .9rem;
  line-height: 1.4;
}
.ov-serv-card p {
  font-family: "EB Garamond", serif;
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .ov-services { padding: 4rem 6%; }
  .ov-services__grid { grid-template-columns: 1fr 1fr; }
}
@media screen and (max-width: 480px) {
  .ov-services__grid { grid-template-columns: 1fr; }
}
