*{box-sizing:border-box}
:root{
  --forest:#173d36;
  --forest2:#244f46;
  --gold:#a88a55;
  --gold2:#d5c39d;
  --ink:#202725;
  --body:#68716d;
  --muted:#919792;
  --paper:#f5f2ea;
  --white:#fff;
  --line:#dedbd2;
  --line2:#cbc7bc;
}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:"DM Sans",Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
}
.site{width:100%;max-width:980px;margin:auto;background:var(--paper);overflow:hidden}

/* HERO */
.hero{text-align:center;padding:46px 28px 36px;border-bottom:1px solid var(--line)}
.ca-logo{display:block;width:142px;height:auto;margin:0 auto 17px;object-fit:contain}
.hero h1{
  margin:0;color:var(--forest);
  font-family:"Source Serif 4",Georgia,serif;
  font-size:clamp(43px,7vw,62px);line-height:.98;
  font-weight:600;letter-spacing:.2px
}
.hero h1 span{color:#000}
.designation,.city{font-size:10px;letter-spacing:4.5px;font-weight:600}
.designation{margin-top:16px;color:var(--forest2)}
.city{margin-top:10px;color:var(--muted)}
.hero-copy{
  max-width:720px;margin:31px auto 0;color:#68716d;
  font-family:"Source Serif 4",Georgia,serif;font-size:17px;
  line-height:1.85;font-style:italic
}

/* ABOUT */
.about{max-width:820px;margin:auto;padding:40px 30px 42px;text-align:center}
.gold-heading{
  display:inline-block;color:var(--gold);font-size:10px;
  letter-spacing:3.8px;font-weight:700;margin-bottom:18px;position:relative
}
.gold-heading:before,.gold-heading:after{
  content:"";position:absolute;top:50%;width:34px;height:1px;
  background:var(--gold2);opacity:.65
}
.gold-heading:before{right:calc(100% + 14px)}
.gold-heading:after{left:calc(100% + 14px)}
.about p{
  max-width:735px;margin:auto;color:var(--body);
  font-family:"Source Serif 4",Georgia,serif;font-size:15.5px;line-height:1.9
}

/* SERVICES */
.services{padding:38px 32px 44px;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.what-heading{
  margin:0;color:var(--forest);font-size:13px;line-height:1.2;
  letter-spacing:3.4px;font-weight:700;text-align:center
}
.our-services{
  max-width:800px;margin:34px auto 34px;color:var(--forest);
  font-family:"Source Serif 4",Georgia,serif;font-size:27px;
  line-height:1.2;font-weight:600
}
.service-list{max-width:800px;margin:auto}
.service{margin:0 0 30px;padding:0 0 30px;border-bottom:1px solid var(--line)}
.service:last-child{margin-bottom:0;padding-bottom:0;border-bottom:0}
.service h3{
  margin:0 0 9px;color:var(--forest);font-size:17px;
  line-height:1.5;font-weight:600
}
.service h3 span{color:var(--gold);font-weight:700}
.service p{max-width:760px;margin:0;color:var(--body);font-size:14.5px;line-height:1.8}

/* CONTACT */
.contact{padding:44px 22px 34px;text-align:center}
.contact-grid{
  max-width:820px;margin:auto;display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));gap:13px
}
.contact-card{
  min-height:128px;padding:16px 7px;background:var(--white);
  border:1px solid var(--line);border-radius:8px;color:var(--forest);
  text-decoration:none;display:flex;flex-direction:column;
  justify-content:center;align-items:center;
  box-shadow:0 8px 24px rgba(23,61,54,.055);
  transition:.2s ease
}
.contact-card:hover{
  transform:translateY(-3px);border-color:var(--gold2);
  box-shadow:0 12px 30px rgba(23,61,54,.10)
}
.contact-icon{
  width:49px;height:49px;margin-bottom:12px;border:1px solid #e3d8bf;
  border-radius:50%;background:#faf7ef;color:var(--gold);
  display:flex;align-items:center;justify-content:center;font-size:21px
}
.contact-card span{font-size:9px;letter-spacing:1.9px;font-weight:700;color:#68716d}
.address{margin-top:44px;color:#68716d;font-size:15px;line-height:1.9}
.maps-button{
  display:inline-block;margin-top:25px;padding:12px 24px;
  border:1px solid var(--gold2);border-radius:3px;color:var(--gold);
  text-decoration:none;font-size:10px;letter-spacing:2px;font-weight:700;
  transition:.2s ease
}
.maps-button:hover{background:var(--forest);border-color:var(--forest);color:#fff}

/* FOOTER */
footer{
  padding:34px 20px 29px;border-top:1px solid var(--line2);
  text-align:center;color:#8b918c;font-size:9px;letter-spacing:3.8px;font-weight:700
}
footer i{color:var(--gold);font-style:normal;padding:0 6px}
footer small{display:block;margin-top:18px;color:#a0a49f;font-size:9px;letter-spacing:.5px;font-weight:400}

/* MOBILE */
@media(max-width:600px){
  .hero{padding:34px 19px 31px}
  .ca-logo{width:137px;margin-bottom:15px}
  .hero h1{font-size:43px}
  .designation,.city{font-size:9px;letter-spacing:3.3px}
  .hero-copy{margin-top:27px;font-size:16px;line-height:1.82}
  .about{padding:34px 22px 37px}
  .gold-heading{font-size:9.5px;letter-spacing:3.2px}
  .gold-heading:before,.gold-heading:after{width:23px}
  .about p{font-size:14.5px;line-height:1.82}
  .services{padding:34px 26px 38px}
  .what-heading{text-align:left;font-size:11px;letter-spacing:2.8px}
  .our-services{
    margin-top:34px;margin-bottom:31px;
    font-family:"DM Sans",Arial,sans-serif;font-size:18px;font-weight:500
  }
  .service{margin-bottom:27px;padding-bottom:27px}
  .service h3{font-size:15.5px;line-height:1.55;margin-bottom:7px}
  .service p{font-size:14px;line-height:1.75}
  .contact{padding:37px 9px 28px}
  .contact-grid{gap:9px}
  .contact-card{min-height:119px;border-radius:8px}
  .contact-icon{width:45px;height:45px}
  .contact-card span{font-size:7.8px;letter-spacing:1.2px}
  .address{margin-top:40px;font-size:14.5px;line-height:1.9}
  footer{padding-top:31px}
}
@media(max-width:365px){
  .hero h1{font-size:39px}
  .services{padding-left:21px;padding-right:21px}
  .service h3{font-size:15px}
  .service p{font-size:13.5px}
  .contact-icon{width:42px;height:42px}
  .contact-card{min-height:112px}
}


/* FINAL TYPOGRAPHY & TIDY LAYOUT REFINEMENT */
.hero h1 {
  letter-spacing: -0.35px;
  font-weight: 600;
}

.designation,
.city {
  font-family: "DM Sans", Arial, sans-serif;
  letter-spacing: 3.4px;
}

.hero-copy {
  font-size: 16px;
  line-height: 1.78;
  font-style: normal;
  letter-spacing: .05px;
}

.about p {
  font-size: 15px;
  line-height: 1.82;
  letter-spacing: .02px;
}

.gold-heading {
  font-family: "DM Sans", Arial, sans-serif;
  letter-spacing: 2.9px;
}

.what-heading {
  letter-spacing: 2.7px;
}

.our-services {
  letter-spacing: -.15px;
  font-weight: 600;
}

.service h3 {
  letter-spacing: -.05px;
}

.service p {
  font-size: 14px;
  line-height: 1.76;
  letter-spacing: .02px;
}

.contact-card span,
.maps-button,
footer {
  font-family: "DM Sans", Arial, sans-serif;
}

.address {
  font-size: 14px;
  line-height: 1.82;
}

@media (max-width: 600px) {
  .hero h1 {
    letter-spacing: -0.45px;
  }

  .hero-copy {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .about p {
    font-size: 14px;
    line-height: 1.78;
  }

  .our-services {
    font-size: 18px;
    letter-spacing: 0;
  }

  .service h3 {
    letter-spacing: 0;
  }

  .service p {
    font-size: 13.7px;
    line-height: 1.72;
  }
}

.contact-card small{display:block;margin-top:7px;color:#7b827e;font-size:9px;line-height:1.35;letter-spacing:.2px;text-align:center;word-break:break-word}
@media(max-width:600px){.contact-card small{font-size:7.4px;max-width:92px}}

/* FINAL REFERENCE-MATCH CONTACT ICONS */
.contact-icon{
  border:1px solid #dfd3b8;
  background:#faf7ef;
  color:#a88a55;
}
.contact-icon svg{
  width:25px;
  height:25px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.65;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.contact-icon svg path,
.contact-icon svg rect,
.contact-icon svg circle{
  vector-effect:non-scaling-stroke;
}
.hero h1{
  white-space:nowrap;
  font-size:clamp(36px,6.1vw,58px);
}
@media(max-width:600px){
  .hero h1{
    font-size:clamp(32px,9.6vw,43px);
    white-space:nowrap;
  }
}
@media(max-width:365px){
  .hero h1{font-size:31px}
}
