:root {
  --bg: #f6efe6;
  --bg-soft: #fbf5ec;
  --surface: #fffdf9;
  --primary: #c8a062;
  --primary-deep: #9c7237;
  --text: #503b2a;
  --text-soft: #7f6955;
  --line: rgba(156, 114, 55, 0.2);
  --shadow: 0 22px 44px rgba(79, 53, 27, 0.14);
  --radius: 20px;
}

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

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(200, 160, 98, 0.25), transparent 36%),
    radial-gradient(circle at 100% 0%, rgba(156, 114, 55, 0.15), transparent 35%),
    linear-gradient(160deg, #faf6ef 0%, #f4ede2 60%, #f7f2ea 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(251, 245, 236, 0.86);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(156, 114, 55, 0.22);
}

.brand-title {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.9rem;
  letter-spacing: 0.01em;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-soft);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: 0.25s ease;
}

.btn-primary {
  color: #ffffff !important;
  background: linear-gradient(130deg, #c9a365, #9f7539);
  box-shadow: 0 10px 24px rgba(166, 123, 63, 0.28);
  font-weight: 600;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(130deg, #d4af70, #aa7f3e);
}

.btn-outline {
  border-color: var(--line);
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  padding: 94px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-content {
  padding: 48px;
}

.section-kicker {
  color: var(--primary-deep);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Fraunces", "Georgia", serif;
  line-height: 1.15;
  margin: 10px 0 16px;
  font-weight: 500;
}

h1 {
  font-size: clamp(2.1rem, 3.8vw, 3.6rem);
}

h2 {
  font-size: clamp(1.7rem, 2.3vw, 2.5rem);
}

h3 {
  font-size: 1.55rem;
}

p {
  color: var(--text-soft);
  font-size: 1.06rem;
}

p .btn {
  margin-top: 18px;
  display: inline-block;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.feature-panel {
  padding: 34px;
}

.feature-panel p {
  margin-bottom: 20px;
}

.feature-panel ul {
  margin-top: 20px;
  padding-left: 22px;
  color: var(--text-soft);
}

.section {
  padding: 64px 0;
}

.section-title {
  margin-bottom: 22px;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.media-card {
  overflow: hidden;
  min-height: 100%;
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.service-card {
  padding: 26px;
  min-height: 240px;
}

.service-card p {
  margin-top: 12px;
}

.service-card p:has(.btn) {
  margin-top: 20px;
}

.service-preview img {
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
}

.badge {
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-deep);
  background: rgba(200, 160, 98, 0.16);
  border-radius: 999px;
  padding: 7px 12px;
}

.info-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.info-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
}

.info-list .btn {
  padding: 8px 16px;
  font-size: 0.95rem;
  margin: 0;
  display: inline-block;
}

.form {
  display: grid;
  gap: 14px;
}

.form .btn {
  margin-top: 8px;
}

label {
  font-size: 0.95rem;
  color: var(--text-soft);
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
}

footer {
  margin-top: 64px;
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(251, 247, 241, 0.95), rgba(246, 239, 230, 0.9));
}

.footer-wrap {
  padding: 48px 0 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
  color: var(--text-soft);
}

.footer-section h4 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-section p,
.footer-section li {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section a {
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-section a:hover {
  color: var(--primary-deep);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 160, 98, 0.2);
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 8px;
}

.social-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  border-color: rgba(200, 160, 98, 0.3);
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.7s ease forwards;
}

.reveal:nth-child(2) {
  animation-delay: 0.12s;
}

.reveal:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 4%;
    right: 4%;
    top: 84px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--bg-soft);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.show {
    display: flex;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-content,
  .feature-panel {
    padding: 26px;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .service-card p:has(.btn) {
    margin-top: 24px;
  }

  .media-card img {
    min-height: 280px;
  }
}
