/* ── Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── Custom Properties ── */
:root {
  --navy: #1B2138;
  --gold: #D4A843;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --muted: rgba(255, 255, 255, 0.7);
  --dark-text: #1B2138;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--dark-text);
  background: var(--white);
}

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

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

ul {
  list-style: none;
}

/* ── Shared ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
  line-height: 1.7;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 2rem;
}

.hero__content {
  max-width: 700px;
}

.hero__logo {
  margin-bottom: 2.5rem;
}

.hero__logo svg {
  margin-inline: auto;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__subtitle {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 580px;
  margin-inline: auto;
}


/* ── Services ── */
.services {
  background: var(--light-gray);
  padding: 5rem 2rem;
  text-align: center;
}

.services__header {
  margin-bottom: 3rem;
}

.services__header .section-heading {
  color: var(--dark-text);
}

.services__header .section-subtitle {
  color: #555;
}


.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin-inline: auto;
  text-align: left;
}

/* ── Card ── */
.card {
  border-top: 3px solid var(--gold);
  padding-top: 1.5rem;
}

.card__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.4rem;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark-text);
}

.card__desc {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.card__list {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.7;
}

.card__list li {
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.3rem;
}

.card__list li::before {
  content: '-';
  position: absolute;
  left: 0;
}

/* ── About ── */
.about {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 2rem;
}

.about__top-label {
  text-align: center;
  margin-bottom: 2.5rem;
}

.about__container {
  max-width: 1100px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.about__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--gold);
  margin-bottom: 1.5rem;
}

.about__heading {
  color: var(--white);
}

.about__desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}


/* ── Feature Box ── */
.feature-box {
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.05);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.feature-box__title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-box__list {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

.feature-box__list li {
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.2rem;
}

.feature-box__list li::before {
  content: '-';
  position: absolute;
  left: 0;
}

/* ── Contact ── */
.contact {
  background: var(--white);
  padding: 5rem 2rem;
  text-align: center;
}

.contact__content {
  max-width: 700px;
  margin-inline: auto;
}

.contact__subtitle {
  color: #666;
  margin-bottom: 2.5rem;
}

.contact__boxes {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 1.5rem 2.5rem;
  min-width: 220px;
  transition: border-color 0.2s;
}

.contact-box:hover {
  border-color: var(--gold);
}

.contact-box__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 0.5rem;
}

.contact-box__value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-text);
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: var(--muted);
  text-align: center;
  padding: 3rem 2rem;
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer__legal {
  color: var(--muted);
}

.footer__registry {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.75rem;
  font-size: 0.8rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero__title {
    font-size: 2.25rem;
  }

  .hero__subtitle {
    font-size: 0.92rem;
  }

  .section-heading {
    font-size: 1.75rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

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

  .about__left {
    margin-bottom: 1rem;
  }

  .contact__boxes {
    flex-direction: column;
    align-items: center;
  }

  .contact-box {
    width: 100%;
    max-width: 320px;
  }
}
