* {
  box-sizing: border-box;
}

:root {
  --bg: #f8f7f2;
  --white: #ffffff;
  --black: #22211f;
  --body: #77746f;
  --light: #a5a19a;
  --gold: #cbb487;
  --line: #e9e6df;
}

html {
  scroll-behavior: smooth;
}

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

.site {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
}

/* HERO */
.hero {
  text-align: center;
  padding: 42px 22px 25px;
}

.ca-logo {
  display: block;
  width: 150px;
  height: auto;
  margin: 0 auto 10px;
  object-fit: contain;
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 8vw, 62px);
  line-height: .98;
  font-weight: 600;
  letter-spacing: .2px;
  color: #161616;
}

.hero h1 span {
  color: #000000;
}

.designation,
.city {
  font-size: 11px;
  letter-spacing: 4.5px;
  font-weight: 500;
}

.designation {
  margin-top: 14px;
  color: #77746f;
}

.city {
  margin-top: 10px;
  color: #aaa69f;
}

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

/* ABOUT */
.about {
  max-width: 790px;
  margin: 0 auto;
  padding: 26px 26px 35px;
  text-align: center;
}

.gold-heading {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 3.6px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about p {
  margin: 0;
  color: #77746f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15.5px;
  line-height: 1.82;
}

/* SERVICES */
.services {
  padding: 17px 28px 35px;
}

.what-heading {
  margin: 0;
  color: #252421;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 29px;
  line-height: 1.2;
  letter-spacing: 2px;
  font-weight: 600;
  text-align: center;
}

.our-services {
  max-width: 760px;
  margin: 30px auto 31px;
  color: #35332f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
}

.service-list {
  max-width: 760px;
  margin: 0 auto;
}

.service {
  margin: 0 0 31px;
  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 7px;
  color: #292825;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
}

.service h3 span {
  color: #35332f;
}

.service p {
  margin: 0;
  color: #77746f;
  font-size: 15px;
  line-height: 1.72;
}

/* CONTACT */
.contact {
  padding: 35px 18px 29px;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.contact-card {
  min-height: 124px;
  padding: 15px 6px;
  background: var(--white);
  border: 1px solid #eeeae3;
  border-radius: 19px;
  color: #74716c;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 7px 22px rgba(40, 35, 25, .035);
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(40, 35, 25, .08);
}

.contact-icon {
  width: 49px;
  height: 49px;
  margin-bottom: 11px;
  border: 1px solid #eee8db;
  border-radius: 15px;
  background: #f7f3e9;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.contact-card span {
  font-size: 9px;
  letter-spacing: 1.7px;
  font-weight: 500;
}

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

.maps-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  padding: 12px 23px;
  border: 1px solid #e7dfce;
  border-radius: 30px;
  color: var(--gold);
  background: transparent;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 600;
}

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

/* FOOTER */
footer {
  padding: 34px 20px 28px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: #aaa69f;
  font-size: 10px;
  letter-spacing: 3.5px;
  font-weight: 600;
}

footer i {
  color: var(--gold);
  font-style: normal;
  padding: 0 5px;
}

footer small {
  display: block;
  margin-top: 18px;
  color: #aaa69f;
  font-size: 9px;
  letter-spacing: .5px;
  font-weight: 400;
}

@media (max-width: 600px) {
  .hero {
    padding-top: 34px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .ca-logo {
    width: 143px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .designation,
  .city {
    font-size: 9.5px;
    letter-spacing: 3.5px;
  }

  .hero-copy {
    margin-top: 27px;
    font-size: 16.5px;
    line-height: 1.78;
  }

  .about {
    padding: 25px 21px 32px;
  }

  .about p {
    font-size: 14.5px;
    line-height: 1.8;
  }

  .services {
    padding-left: 26px;
    padding-right: 26px;
  }

  .what-heading {
    text-align: left;
    font-family: "Inter", Arial, sans-serif;
    font-size: 20px;
    letter-spacing: .1px;
    font-weight: 500;
  }

  .our-services {
    margin-top: 35px;
    margin-bottom: 32px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 19px;
    font-weight: 400;
  }

  .service {
    margin-bottom: 29px;
    padding-bottom: 28px;
  }

  .service h3 {
    font-size: 16px;
    line-height: 1.5;
  }

  .service p {
    font-size: 14.5px;
    line-height: 1.7;
  }

  .contact {
    padding-left: 9px;
    padding-right: 9px;
  }

  .contact-grid {
    gap: 10px;
  }

  .contact-card {
    min-height: 119px;
    border-radius: 17px;
  }

  .contact-card span {
    font-size: 8px;
    letter-spacing: 1.3px;
  }

  .address {
    margin-top: 43px;
    font-size: 15px;
  }
}

@media (max-width: 365px) {
  .hero h1 {
    font-size: 39px;
  }

  .services {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service h3 {
    font-size: 15px;
  }

  .service p {
    font-size: 13.5px;
  }

  .contact-card {
    min-height: 112px;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
  }
}
