:root {
  --navy: #1c2c44;
  --dark: #132032;
  --bronze: #a97449;
  --bronze-soft: #cfa988;
  --paper: #fbf8f3;
  --text: #1f2f46;
  --muted: rgba(31, 47, 70, .72);
  --line: rgba(28, 44, 68, .1);
  --shadow-soft: 0 16px 40px rgba(28, 44, 68, .08);
  --shadow-strong: 0 28px 60px rgba(28, 44, 68, .22);
  --container: 1180px;
  --sans: "Fira Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "DM Serif Display", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.ambient-one {
  top: -140px;
  right: -120px;
  width: 440px;
  height: 440px;
  background: rgba(169, 116, 73, .16);
  filter: blur(60px);
}

.ambient-two {
  top: 720px;
  left: -180px;
  width: 460px;
  height: 460px;
  background: rgba(28, 44, 68, .09);
  filter: blur(70px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 248, 243, .86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 243, .94);
  border-bottom-color: rgba(28, 44, 68, .08);
  box-shadow: 0 10px 24px rgba(28, 44, 68, .06);
}

.header-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 128px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(28, 44, 68, .08);
}

.main-nav a {
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--navy);
  font-size: 13px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(169, 116, 73, .12);
  color: var(--bronze);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-cta {
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--bronze);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 12px 26px rgba(169, 116, 73, .32);
}

.button {
  padding: 16px 30px;
  border-radius: 999px;
}

.button-dark {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 16px 34px rgba(28, 44, 68, .24);
}

.button-bronze {
  background: var(--bronze);
  color: #fff;
  box-shadow: 0 16px 34px rgba(169, 116, 73, .4);
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 8px 22px rgba(28, 44, 68, .1);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
}

.section {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 80px 40px;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 64px;
  align-items: center;
  padding-top: 72px;
}

.eyebrow,
.section-heading > span,
.about-panel > span,
.contact-copy > span,
.team-content > span,
.location-list span,
.site-footer h2 {
  display: inline-block;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(169, 116, 73, .14);
  letter-spacing: .1em;
}

.hero h1,
.section-heading h2,
.about-panel h2,
.contact-copy h2,
.team-content h3 {
  font-family: var(--serif);
  font-weight: 400;
}

.hero h1 {
  max-width: 10ch;
  margin: 22px 0 0;
  color: var(--navy);
  font-size: 68px;
  line-height: 1.06;
}

.hero h1 span {
  position: relative;
  color: var(--bronze);
  white-space: nowrap;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 10px;
  border-radius: 8px;
  background: rgba(169, 116, 73, .22);
  z-index: -1;
}

.hero-copy p,
.section-heading p,
.about-panel p,
.contact-copy p {
  max-width: 46ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-copy p {
  margin: 24px 0 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-points span,
.about-tags span {
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(28, 44, 68, .08);
  font-size: 13px;
  font-weight: 600;
}

.hero-points span {
  padding: 9px 16px;
}

.hero-media {
  position: relative;
}

.hero-frame {
  position: absolute;
  inset: -14px;
  border-radius: 42px;
  background: rgba(207, 169, 136, .3);
  transform: rotate(-3deg);
}

.hero-media > img {
  position: relative;
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(19, 32, 50, .22);
}

.hero-card {
  position: absolute;
  left: -14px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(19, 32, 50, .18);
  animation: float 6s ease-in-out infinite;
}

.hero-card img {
  width: 32px;
}

.hero-card strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.hero-card span {
  color: rgba(31, 47, 70, .6);
  font-size: 12px;
}

.section-heading {
  margin-bottom: 44px;
}

.section-heading.centered {
  max-width: 60ch;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.about-panel h2,
.contact-copy h2 {
  margin: 14px 0;
  color: var(--navy);
  font-size: 44px;
  line-height: 1.12;
}

.section-heading p {
  margin: 0 auto;
}

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

.specialty-card {
  min-height: 230px;
  padding: 30px 26px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(28, 44, 68, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(28, 44, 68, .14);
}

.specialty-card > span {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: rgba(169, 116, 73, .14);
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 21px;
}

.specialty-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
}

.specialty-card p {
  margin: 0;
  color: rgba(31, 47, 70, .7);
  font-size: 15px;
  line-height: 1.6;
}

.specialty-card-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(150deg, var(--navy), #24395a);
  color: #fff;
  box-shadow: 0 14px 34px rgba(28, 44, 68, .2);
}

.specialty-card-cta h3 {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.specialty-card-cta a {
  align-self: flex-start;
  padding: 12px 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.about {
  padding-top: 40px;
  padding-bottom: 40px;
}

.about-panel {
  padding: 52px;
  border-radius: 36px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(28, 44, 68, .08);
}

.about-panel h2,
.about-panel p {
  max-width: 620px;
}

.about-panel p {
  margin: 0 0 24px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-tags span {
  padding: 10px 18px;
  background: rgba(28, 44, 68, .06);
  box-shadow: none;
  font-size: 14px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.team-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(28, 44, 68, .08);
}

.team-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee7dc;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.team-content {
  padding: 26px 28px;
}

.team-content > span {
  margin-bottom: 12px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(169, 116, 73, .14);
  letter-spacing: .04em;
}

.team-content h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.2;
}

.team-content p {
  margin: 0;
  color: rgba(31, 47, 70, .7);
  font-size: 15px;
  line-height: 1.6;
}

.testimonials {
  padding-top: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card {
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(28, 44, 68, .07);
}

.testimonial-card > div {
  margin-bottom: 12px;
  color: var(--bronze);
  font-size: 18px;
}

.testimonial-card p {
  margin: 0 0 20px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.65;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.testimonial-card footer span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(169, 116, 73, .16);
  color: var(--bronze);
  font-family: var(--serif);
  font-weight: 700;
}

.contact {
  padding-bottom: 96px;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, 1fr);
  gap: 56px;
  padding: 56px;
  border-radius: 36px;
  background: linear-gradient(150deg, var(--navy), #24395a);
  color: #fff;
  box-shadow: 0 28px 60px rgba(28, 44, 68, .28);
}

.contact-symbol {
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 280px;
  opacity: .06;
}

.contact-copy {
  position: relative;
}

.contact-copy > span,
.site-footer h2,
.location-list span {
  color: var(--bronze-soft);
}

.contact-copy h2 {
  max-width: 420px;
  color: #fff;
}

.contact-copy p {
  color: rgba(231, 238, 246, .78);
}

.location-list {
  position: relative;
  display: grid;
  gap: 16px;
}

.location-list article {
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
}

.location-list h3 {
  margin: 6px 0 12px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.location-list a {
  display: inline-flex;
  margin-right: 18px;
  color: #e7eef6;
  font-size: 15px;
  text-decoration: none;
}

.location-list a:last-child {
  color: var(--bronze-soft);
}

.site-footer {
  overflow: hidden;
  border-radius: 36px 36px 0 0;
  background: var(--dark);
  color: #dce3ea;
}

.footer-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 68px 40px 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
}

.footer-inner img:first-child {
  width: 150px;
  margin-bottom: 16px;
}

.footer-inner p {
  max-width: 34ch;
  margin: 0;
  color: rgba(220, 227, 234, .68);
  font-size: 15px;
  line-height: 1.7;
}

.footer-inner h2 {
  margin: 0 0 16px;
}

.footer-inner a {
  display: block;
  margin-bottom: 10px;
  color: inherit;
  font-size: 15px;
  text-decoration: none;
}

.footer-inner > img:last-child {
  justify-self: end;
  width: 96px;
  opacity: .9;
}

.copyright {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 18px 40px 36px;
  border-top: 1px solid rgba(220, 227, 234, .16);
  color: rgba(220, 227, 234, .6);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--bronze);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(169, 116, 73, .4);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 1080px) {
  .header-inner {
    padding-right: 28px;
    padding-left: 28px;
  }

  .section {
    padding-right: 28px;
    padding-left: 28px;
  }

  .hero {
    gap: 44px;
  }

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

  .section-heading h2,
  .about-panel h2,
  .contact-copy h2 {
    font-size: 38px;
  }

  .specialty-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .header-inner {
    padding: 14px 20px;
  }

  .brand img {
    width: 118px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 12px;
    border-radius: 22px;
    box-shadow: 0 24px 54px rgba(28, 44, 68, .18);
  }

  body.nav-open .main-nav {
    display: grid;
    gap: 4px;
  }

  .main-nav a {
    padding: 14px 16px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .team-grid,
  .testimonial-grid,
  .contact-panel,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-media {
    order: 2;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: 48px;
  }

  .hero-card {
    left: 14px;
    bottom: 18px;
  }

  .section {
    padding: 64px 20px;
  }

  .section-heading h2,
  .about-panel h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .about-panel,
  .contact-panel {
    padding: 32px;
    border-radius: 28px;
  }

  .footer-inner > img:last-child {
    justify-self: start;
  }
}

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

  .hero-copy p,
  .section-heading p,
  .about-panel p,
  .contact-copy p {
    font-size: 16px;
  }

  .specialty-grid {
    grid-template-columns: 1fr;
  }

  .hero-frame {
    inset: -8px;
    border-radius: 28px;
  }

  .hero-media > img {
    border-radius: 24px;
  }

  .hero-card {
    right: 12px;
    left: 12px;
    justify-content: center;
    padding: 14px 16px;
    border-radius: 18px;
  }

  .team-content,
  .testimonial-card,
  .specialty-card {
    padding: 24px;
  }

  .location-list a {
    display: flex;
    margin: 0 0 8px;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
