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

:root {
  --gold: #8a7250;
  --gold-light: #a08860;
  --bg: #f5f5f3;
  --bg2: #ffffff;
  --border: #dddad4;
  --text-dark: #1c1c1c;
  --text-mid: #555250;
  --text-light: #9a9690;
}

body {
  background-color: var(--bg);
  color: var(--text-dark);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(138,114,80,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.hex-bg {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(80vw, 640px);
  height: min(80vw, 640px);
  opacity: 0.05;
  pointer-events: none;
  animation: rotate 80s linear infinite;
}

@keyframes rotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 2rem 2.5rem;
  max-width: 620px;
  width: 100%;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.logo-area {
  margin-bottom: 1rem;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--text-dark);
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-tagline {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(0.78rem, 2vw, 0.9rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
}

.divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  margin: 1.8rem auto;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.construction-msg {
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
  margin-bottom: 2rem;
}

.construction-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.construction-text {
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  line-height: 1.9;
  color: var(--text-light);
}

.dots::after {
  content: '';
  animation: dots 2.5s steps(3, end) infinite;
}
@keyframes dots {
  0%   { content: ''; }
  33%  { content: '.'; }
  66%  { content: '..'; }
  100% { content: '...'; }
}

.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2rem 2.2rem 1.8rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 24px rgba(0,0,0,0.05);
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.person-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.person-title {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.certification {
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.8rem;
}

.card-divider {
  width: 32px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 1.6rem;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  color: var(--text-mid);
}

.contact-list li svg {
  flex-shrink: 0;
  color: var(--gold);
}

.contact-list a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}

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

.estimation-block {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold-light);
  border-radius: 3px;
  padding: 1.6rem 2rem;
  box-shadow: 0 2px 24px rgba(0,0,0,0.04);
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
  margin-bottom: 2rem;
}

.estimation-text {
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1.1rem;
}

.estimation-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--text-dark);
  color: #fff;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}

.estimation-btn:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

.footer-note {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}