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

:root {
  --bg: #f8f6f1;
  --bg-soft: #f1ede4;
  --text: #141414;
  --muted: #5e5a52;
  --line: rgba(20, 20, 20, 0.13);
  --glass: rgba(255, 255, 255, 0.78);
  --card: rgba(255, 255, 255, 0.88);
  --accent: #c8a75d;
  --accent-2: #e0c98e;
  --radius: 18px;
  --max: 1140px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 5%, rgba(200, 167, 93, 0.18), transparent 40%),
    radial-gradient(circle at 85% 12%, rgba(20, 20, 20, 0.07), transparent 34%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(20, 20, 20, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 20, 20, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 30%, #000 35%, transparent 85%);
  z-index: -1;
}

nav {
  backdrop-filter: blur(18px);
  background: rgba(248, 246, 241, 0.88);
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.4rem;
}

nav a {
  color: #6a6355;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.25s ease;
}

nav a:hover,
nav a.active {
  color: var(--text);
}

section { padding: 5.5rem 2rem; }
section.alt { background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), transparent); }
.container { max-width: var(--max); margin: 0 auto; }

.hero {
  padding: 8rem 2rem 6.5rem;
  text-align: center;
  background: transparent;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--muted);
  max-width: 670px;
  margin: 0 auto 2.4rem;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1f1710;
  font-weight: 700;
  padding: 0.86rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.22s ease, box-shadow 0.25s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(171, 135, 61, 0.28);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(171, 135, 61, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
  margin-left: 0.8rem;
}

.btn-outline:hover {
  border-color: rgba(20, 20, 20, 0.35);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.1vw, 2.9rem);
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.section-sub {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 2.9rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 1.2rem;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.7rem;
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 167, 93, 0.8);
}

.card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}

.step {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
}

.step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #22190f;
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.step h3 { font-weight: 700; margin-bottom: 0.3rem; }
.step p { color: var(--muted); font-size: 0.9rem; }

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
}

.testimonial {
  background: var(--glass);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.6rem;
}

.stars { color: var(--accent); margin-bottom: 0.6rem; font-size: 1rem; }
.testimonial p { font-size: 0.93rem; line-height: 1.7; margin-bottom: 0.8rem; color: var(--muted); }
.testimonial-author { font-size: 0.82rem; color: #dde5ff; font-weight: 600; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.2rem;
}

.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--line);
}

.portfolio-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(140deg, #ece6da, #ddd4c0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.6rem;
}

.portfolio-info {
  padding: 1.1rem 1.2rem;
  color: var(--text);
}

.portfolio-info h3 { font-size: 1rem; font-weight: 700; }
.portfolio-info p { font-size: 0.86rem; color: var(--muted); margin-top: 0.2rem; }

.event-badge {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.62rem;
  border-radius: 999px;
  background: rgba(200, 167, 93, 0.2);
  border: 1px solid rgba(182, 147, 73, 0.55);
  color: #6f5324;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 0.84rem;
  font-weight: 600;
  color: #3f3a32;
}

input, select, textarea {
  padding: 0.74rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  color: var(--text);
}

input::placeholder, textarea::placeholder { color: #857a68; }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(200, 167, 93, 0.8);
  box-shadow: 0 0 0 3px rgba(200, 167, 93, 0.22);
}

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

.faq-list { display: flex; flex-direction: column; gap: 0.8rem; max-width: 760px; }

details {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.2rem;
}

summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

summary::after { content: "+"; font-size: 1.3rem; color: var(--accent); }
details[open] summary::after { content: "-"; }
details p { margin-top: 0.7rem; color: var(--muted); }

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info p { color: var(--muted); margin-bottom: 1.1rem; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}

.contact-detail span:first-child { font-size: 1.1rem; }

footer {
  border-top: 1px solid var(--line);
  color: #6d675f;
  text-align: center;
  padding: 1.7rem;
  font-size: 0.85rem;
  background: rgba(246, 242, 235, 0.95);
}

footer a { color: #6f5324; text-decoration: none; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  nav { height: auto; padding: 1rem 1rem; gap: 0.8rem; flex-direction: column; }
  nav ul { gap: 1rem; }
  .contact-split { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero { padding: 5.4rem 1.1rem 4.4rem; }
  section { padding: 3.5rem 1.1rem; }
  .btn-outline { margin-left: 0; margin-top: 0.7rem; }
  .form-grid { grid-template-columns: 1fr; }
}
