:root {
  --navy: hsl(220, 38%, 10%);
  --navy-l: hsl(220, 30%, 18%);
  --gold: hsl(43, 74%, 49%);
  --gold-l: hsl(45, 90%, 60%);
  --gold-d: hsl(40, 65%, 38%);
  --gray: hsl(220, 10%, 95%);
  --gd: hsl(220, 10%, 40%);
  --white: #fff;
  --border: hsl(220, 14%, 90%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  color: hsl(220, 20%, 12%);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

.C {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem
}

/* HEADER */
#hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .08)
}

.hi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-right: 1rem;
  height: 3rem;
}

.logo img {
  height: 10rem !important;
  width: auto;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1
}

.logo-sub {
  font-size: .55rem;
  color: var(--gd);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 1px
}

.hac {
  height: .125rem;
  background: linear-gradient(to right, var(--gold), var(--gold-l), var(--gold))
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.25rem;
  background: var(--navy);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: all .25s;
}

.back-btn:hover {
  background: var(--gold);
  color: var(--navy)
}

.back-btn svg {
  transition: transform .2s
}

.back-btn:hover svg {
  transform: translateX(-3px)
}

/* PAGE HERO */
.ph {
  position: relative;
  height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden
}

.phb {
  position: absolute;
  inset: 0
}

.phb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.pho {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 17, 36, 1), rgba(10, 17, 36, .85), rgba(10, 17, 36, .5))
}

.phc {
  position: relative;
  z-index: 10;
  padding-bottom: 3rem;
  width: 100%
}

.bc {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .75rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 1rem;
  flex-wrap: wrap
}

.bc a {
  color: rgba(255, 255, 255, .6);
  transition: color .2s
}

.bc a:hover {
  color: var(--gold)
}

.bc span {
  color: var(--gold)
}

.pt {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15
}

.ps {
  margin-top: .75rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, .75);
  max-width: 40rem;
  line-height: 1.7
}

.pgl {
  width: 4rem;
  height: .25rem;
  background: var(--gold);
  margin-top: 1.25rem
}

/* SECTION */
.s {
  padding: 5rem 0
}

.sg2 {
  background: var(--gray)
}

.sub {
  font-size: .75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--gold-d)
}

.stl {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  margin-top: .5rem
}

.gl {
  width: 4rem;
  height: .25rem;
  background: var(--gold);
  margin: .75rem 0
}

.gl.c {
  margin: .75rem auto
}

.tc {
  text-align: center
}

.mb14 {
  margin-bottom: 3.5rem
}

.mt4 {
  margin-top: 1rem
}

.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease-out, transform .7s ease-out
}

.rv.vis {
  opacity: 1;
  transform: translateY(0)
}

/* Y.H. SERVICES ACCORDION */
.about-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start
}

/* SERVICES CATEGORY GRID */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.svc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1.75rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  text-align: center;
  transition: all .25s;
}

.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
}

.svc-ic {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
}

.svc-nm {
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}

.Y.H.-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.Y.H.-acc-item {
  border: none;
}

.Y.H.-acc-btn {
  width: 100%;
  text-align: left;
  padding: .85rem 1.25rem;
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  background: var(--navy);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  transition: background .2s;
}

.Y.H.-acc-btn.active,
.Y.H.-acc-btn:hover {
  background: hsl(220, 38%, 18%);
}

.Y.H.-dot {
  color: var(--gold);
  font-size: .6rem;
}

.Y.H.-acc-content {
  display: none;
  padding: 1rem 1.25rem;
  background: var(--gray);
  font-size: .875rem;
  color: var(--navy);
  line-height: 1.7;
}

.Y.H.-acc-content.open {
  display: block;
}

.Y.H.-acc-panel {
  background: var(--gray);
  padding: 2rem;
  font-size: .9375rem;
  color: hsl(220, 10%, 30%);
  line-height: 1.8;
  border-left: 4px solid var(--gold);
  min-height: 120px;
}

@media(max-width:767px) {
  .about-services-grid {
    grid-template-columns: 1fr !important;
  }

  .Y.H.-acc-panel {
    display: none;
  }
}

/* FOOTER */
footer {
  background: var(--navy);
  color: #fff;
  padding: 1.5rem 0
}

.foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, .45)
}

.foot-inner a {
  color: rgba(255, 255, 255, .45);
  transition: color .2s
}

.foot-inner a:hover {
  color: var(--gold)
}
