:root {
  --gold: #b9a05c;
  --gold-nav: #b49c5a;
  --gold-deep: #9a8448;
  --charcoal: #3d3d3d;
  --ink: #1f1f1f;
  --page: #2a2a2a;
  --paper: #f4f1ea;
  --white: #f7f7f7;
  --muted: #d8d2c4;
  --header-h: 112px;
  --topbar-h: 42px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Libre Baskerville", "Droid Serif", Georgia, serif;
  color: var(--white);
  background: var(--page);
  line-height: 1.65;
  min-height: 100vh;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #111;
  padding: 0.5rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 0;
}

.topbar {
  background: var(--gold);
  color: #fff;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  padding: 0 8%;
  font-size: 14px;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  letter-spacing: 0.04em;
}

.topbar svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.site-header {
  background: var(--charcoal);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 8%;
  gap: 1.5rem;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(185, 160, 92, 0.18);
}

.logo img {
  height: 72px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 2px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold);
  margin: 4px auto;
}

.menu {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu a {
  color: var(--gold-nav);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.menu a:hover,
.menu a[aria-current="page"] {
  color: #e6d7a8;
}

.hero {
  position: relative;
  height: min(72vh, 640px);
  overflow: hidden;
  background: #111;
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s ease;
}

.hero-track img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-nav {
  position: absolute;
  inset: auto 1rem 1.2rem auto;
  display: flex;
  gap: 0.4rem;
}

.hero-nav button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.hero-nav button.active {
  background: var(--gold);
}

.section {
  padding: 4.5rem 8%;
}

.section-narrow {
  max-width: 860px;
  margin: 0 auto;
}

.center {
  text-align: center;
}

.gold-title {
  font-family: "Cormorant SC", "Cormorant Garamond", serif;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  margin: 0 0 1.6rem;
}

.bio h2 {
  font-family: "Cormorant SC", serif;
  color: var(--gold);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  margin: 0 0 1rem;
}

.bio p,
.prose p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.quote {
  font-style: italic;
  color: #eee;
  margin: 1.6rem 0;
}

.label {
  color: var(--gold);
  font-weight: 700;
}

.services h2 {
  font-family: "Cormorant SC", serif;
  color: var(--gold);
  text-transform: lowercase;
  letter-spacing: 0.08em;
  text-align: center;
  font-size: 1.8rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-top: 2rem;
}

.card {
  text-align: center;
}

.card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
  max-width: 180px;
  border: 2px solid rgba(185, 160, 92, 0.35);
}

.card h3 {
  font-family: "Cormorant SC", serif;
  color: var(--gold);
  font-size: 1.05rem;
  margin: 0 0 0.7rem;
  letter-spacing: 0.04em;
}

.card p {
  color: var(--muted);
  font-size: 0.86rem;
  margin: 0;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.value {
  text-align: center;
}

.value img {
  width: 148px;
  height: 148px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 2px solid var(--gold);
}

.value h3 {
  font-family: "Cormorant SC", serif;
  color: var(--gold);
  text-transform: lowercase;
  margin: 0 0 0.7rem;
  font-size: 1.3rem;
}

.value p,
.value ul {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: left;
}

.value ul {
  padding-left: 1.1rem;
  margin: 0;
}

.area {
  margin: 3.2rem auto 0;
  max-width: 980px;
}

.area-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 0.8rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
}

.area-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
}

.area h3 {
  font-family: "Cormorant SC", serif;
  color: var(--gold);
  text-align: center;
  font-size: 1.35rem;
  margin: 0 0 1.4rem;
}

.area-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.area-grid img {
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: cover;
}

.area.stack .area-grid {
  grid-template-columns: 1fr;
}

.area.stack .area-grid p,
.area.stack .area-grid ul {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  max-width: 1040px;
  margin: 0 auto;
  align-items: start;
}

.contact-card dt {
  color: var(--gold);
  font-weight: 700;
  margin-top: 1rem;
}

.contact-card dd {
  margin: 0.2rem 0 0;
  color: var(--white);
}

.contact-card a:hover {
  color: var(--gold);
}

.map iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.15);
}

.site-footer {
  background: var(--gold);
  color: #fff;
  text-align: center;
  padding: 1.35rem 8%;
  font-size: 14px;
}

.whatsapp {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 58px;
  height: 58px;
  z-index: 60;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

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

@media (max-width: 900px) {
  .cards,
  .values,
  .area-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .menu {
    display: none;
    position: absolute;
    top: calc(var(--topbar-h) + var(--header-h));
    left: 0;
    right: 0;
    background: #2f2f2f;
    flex-direction: column;
    padding: 1rem 8% 1.4rem;
    gap: 1rem;
  }

  .menu.open {
    display: flex;
  }

  .hero {
    height: 46vh;
  }

  .logo img {
    height: 54px;
  }

  .card img {
    max-width: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-track {
    transition: none;
  }
}
