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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: #2a1a0e;
  background: #faf7f2;
}

/* ── Navigation ── */
.rc-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 64px;
  border-bottom: 0.5px solid #c8b89a;
  background: #faf7f2;
  position: sticky;
  top: 0;
  z-index: 100;
}

.rc-nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 4px;
  color: #3d2410;
  text-transform: uppercase;
}

.rc-nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.rc-nav-links a {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8b7355;
  text-decoration: none;
  transition: color 0.3s ease;
}

.rc-nav-links a:hover {
  color: #3d2410;
}

/* ── Hero ── */
.rc-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 110px 64px 90px;
  text-align: center;
  border-bottom: 0.5px solid #c8b89a;
}

.rc-emblem {
  margin-bottom: 40px;
  opacity: 0.92;
  animation: fadeUp 1s ease both;
}

.rc-eyebrow {
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #c8a45a;
  margin-bottom: 20px;
  animation: fadeUp 1s ease 0.1s both;
}

.rc-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1.1;
  color: #3d2410;
  letter-spacing: 2px;
  margin-bottom: 10px;
  animation: fadeUp 1s ease 0.2s both;
}

.rc-hero h1 em {
  font-style: italic;
  color: #6b3f2a;
}

.rc-hero-sub {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #8b7355;
  margin-bottom: 36px;
  animation: fadeUp 1s ease 0.3s both;
}

.rc-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  width: 260px;
  animation: fadeUp 1s ease 0.4s both;
}

.rc-divider-line {
  flex: 1;
  height: 0.5px;
  background: #c8b89a;
}

.rc-divider-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c8a45a;
  flex-shrink: 0;
}

.rc-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: #6b3f2a;
  letter-spacing: 1px;
  animation: fadeUp 1s ease 0.5s both;
}

/* ── About ── */
.rc-about {
  padding: 90px 64px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  border-bottom: 0.5px solid #c8b89a;
}

.rc-section-label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #c8a45a;
  margin-bottom: 32px;
  display: block;
}

.rc-about p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.85;
  color: #4a3020;
}

/* ── Portfolio ── */
.rc-portfolio {
  padding: 90px 64px;
  border-bottom: 0.5px solid #c8b89a;
  text-align: center;
}

.rc-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #c8b89a;
  margin-top: 52px;
  border: 0.5px solid #c8b89a;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.rc-portfolio-item {
  background: #faf7f2;
  padding: 52px 40px;
  text-align: center;
  transition: background 0.3s ease;
}

.rc-portfolio-item:hover {
  background: #f2ece3;
}

.rc-portfolio-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid #c8b89a;
  border-radius: 50%;
}

.rc-portfolio-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: #3d2410;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.rc-portfolio-item p {
  font-size: 13px;
  letter-spacing: 0.3px;
  line-height: 1.9;
  color: #8b7355;
}

/* ── Contact ── */
.rc-contact {
  padding: 90px 64px;
  text-align: center;
  background: #3d2410;
}

.rc-contact .rc-section-label {
  color: #c8a45a;
}

.rc-contact p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: #f5f0ea;
  margin-bottom: 36px;
  line-height: 1.8;
}

.rc-contact-email {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c8a45a;
  text-decoration: none;
  border-bottom: 0.5px solid #c8a45a;
  padding-bottom: 4px;
  transition: opacity 0.3s ease;
}

.rc-contact-email:hover {
  opacity: 0.7;
}

/* ── Footer ── */
.rc-footer {
  padding: 24px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2a1a0e;
  border-top: 0.5px solid #4a3020;
}

.rc-footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: #8b7355;
  text-transform: uppercase;
}

.rc-footer-copy {
  font-size: 10px;
  letter-spacing: 1px;
  color: #6b5040;
}

/* ── Animation ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .rc-nav {
    padding: 20px 24px;
  }

  .rc-nav-links {
    gap: 24px;
  }

  .rc-hero {
    padding: 72px 24px 60px;
  }

  .rc-hero h1 {
    font-size: 42px;
  }

  .rc-about {
    padding: 60px 24px;
  }

  .rc-about p {
    font-size: 18px;
  }

  .rc-portfolio {
    padding: 60px 24px;
  }

  .rc-portfolio-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .rc-contact {
    padding: 60px 24px;
  }

  .rc-contact p br {
    display: none;
  }

  .rc-footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 20px 24px;
  }
}
