* {
  box-sizing: border-box;
}

:root {
  --navy: #10263f;
  --navy-2: #193652;
  --gold: #b89a61;
  --gold-soft: #d1bb8d;
  --ink: #1d2732;
  --body: #5f6973;
  --muted: #89919a;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #e4e1da;
  --line-dark: #d8d3c8;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.site {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
}

/* 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(--navy);
  font-family: "Cormorant Garamond", 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(--navy-2);
}

.city {
  margin-top: 10px;
  color: var(--muted);
}

.hero-copy {
  max-width: 720px;
  margin: 31px auto 0;
  color: #68727c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.85;
  font-style: italic;
}

/* ABOUT */
.about {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 30px 42px;
  text-align: center;
}

.gold-heading {
  position: relative;
  display: inline-block;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 3.8px;
  font-weight: 700;
  margin-bottom: 18px;
}

.gold-heading::before,
.gold-heading::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 34px;
  height: 1px;
  background: var(--gold-soft);
  opacity: .55;
}

.gold-heading::before {
  right: calc(100% + 14px);
}

.gold-heading::after {
  left: calc(100% + 14px);
}

.about p {
  max-width: 735px;
  margin: 0 auto;
  color: var(--body);
  font-family: Georgia, "Times New Roman", 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(--navy);
  font-family: "Inter", Arial, sans-serif;
  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(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 600;
  text-align: left;
}

.service-list {
  max-width: 800px;
  margin: 0 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(--navy);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
}

.service h3 span {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .2px;
}

.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: 0 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(--navy);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 24px rgba(16, 38, 63, .045);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-soft);
  box-shadow: 0 12px 30px rgba(16, 38, 63, .08);
}

.contact-icon {
  width: 49px;
  height: 49px;
  margin-bottom: 12px;
  border: 1px solid #e4dac6;
  border-radius: 50%;
  background: #faf7f0;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg,
.maps-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card span {
  font-size: 9px;
  letter-spacing: 1.9px;
  font-weight: 700;
  color: #68727c;
}

.address {
  margin-top: 44px;
  color: #68727c;
  font-size: 15px;
  line-height: 1.9;
}

.maps-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 25px;
  padding: 12px 24px;
  border: 1px solid var(--gold-soft);
  border-radius: 3px;
  color: var(--gold);
  background: transparent;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}

.maps-button:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.maps-button svg {
  width: 18px;
  height: 18px;
}

/* FOOTER */
footer {
  padding: 34px 20px 29px;
  border-top: 1px solid var(--line-dark);
  text-align: center;
  color: #8b918f;
  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: "Inter", 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;
  }
}
