:root {
  --bg: #FAF7F2;
  --bg-warm: #F3EDE4;
  --bg-accent: #EDE5D8;
  --text: #1A1A18;
  --text-muted: #6B6560;
  --accent: #B8553A;
  --accent-light: #D4795F;
  --accent-dark: #8C3E2A;
  --teal: #2A6B6B;
  --copper: #C67B4E;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

h1, h2, h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }

.section-label {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: var(--accent);
  text-transform: lowercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.geo-line { width: 60px; height: 3px; background: var(--accent); margin: 1.2rem 0; transform: skewX(-20deg); }

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 26, 24, 0.06);
}

.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-diamond {
  width: 8px; height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
  display: inline-block;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.65rem 1.5rem;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s, transform 0.2s;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
}

.header-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  padding-top: 5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 5vw;
  z-index: 2;
}

.city-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-accent);
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 2rem;
  border-left: 3px solid var(--accent);
  width: fit-content;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: 1.5rem;
}

.hero h1 .accent { color: var(--accent); display: block; }

.hero-subtitle {
  font-family: 'Cormorant', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.5;
  margin-bottom: 2.5rem;
  font-style: italic;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent);
  color: #fff;
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  transition: all 0.3s;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
  width: fit-content;
}

.hero-cta:hover { background: var(--accent-dark); transform: scale(1.03); }

.hero-visual {
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 140%; height: 140%;
  background: radial-gradient(circle at 30% 40%, var(--accent) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, var(--teal) 0%, transparent 40%);
  opacity: 0.08;
}

.hero-geometric { position: relative; width: 320px; height: 320px; }

.ring {
  position: absolute;
  border: 3px solid var(--accent);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

.ring:nth-child(1) { width: 320px; height: 320px; top: 0; left: 0; opacity: 0.3; }
.ring:nth-child(2) { width: 240px; height: 240px; top: 40px; left: 40px; opacity: 0.5; border-color: var(--teal); animation-direction: reverse; animation-duration: 15s; }
.ring:nth-child(3) { width: 160px; height: 160px; top: 80px; left: 80px; opacity: 0.7; }

.center-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: var(--accent);
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Services */
.services {
  padding: 6rem 5vw;
  background: var(--bg-warm);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: -40px; right: 5vw;
  width: 80px; height: 80px;
  border: 3px solid var(--accent);
  transform: rotate(45deg);
  opacity: 0.15;
}

.services h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 3rem; max-width: 600px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.service-chip {
  background: var(--bg);
  padding: 1.2rem 1.5rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-left: 3px solid var(--accent);
  transition: all 0.3s;
  position: relative;
}

.service-chip:hover { transform: translateX(6px); border-color: var(--teal); background: #fff; }
.service-chip .num { font-family: 'Cormorant', serif; font-size: 0.75rem; color: var(--text-muted); position: absolute; top: 0.5rem; right: 0.8rem; }

/* Why */
.why {
  padding: 6rem 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }

.why-points { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }

.why-points li { display: flex; align-items: flex-start; gap: 1rem; font-size: 1.05rem; line-height: 1.5; }

.marker {
  width: 24px; height: 24px; min-width: 24px;
  background: var(--accent);
  transform: rotate(45deg);
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marker span { transform: rotate(-45deg); color: #fff; font-size: 0.7rem; font-weight: 700; }

/* Contact */
.contact {
  padding: 6rem 5vw;
  background: var(--text);
  color: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
  opacity: 0.08;
}

.contact h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); color: var(--bg); margin-bottom: 1rem; }
.contact p { color: rgba(250, 247, 242, 0.65); font-size: 1.1rem; max-width: 400px; }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent);
  color: #fff;
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  transition: all 0.3s;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
}

.contact-phone:hover { background: var(--accent-light); transform: scale(1.03); }

.contact-address {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(250, 247, 242, 0.5);
}

footer {
  padding: 2rem 5vw;
  background: #141413;
  color: rgba(250, 247, 242, 0.35);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s ease forwards; }
.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.25s; }
.fade-in:nth-child(3) { animation-delay: 0.4s; }
.fade-in:nth-child(4) { animation-delay: 0.55s; }
.fade-in:nth-child(5) { animation-delay: 0.7s; }

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

.scroll-reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  header { padding: 0.8rem 1.2rem; }
  .logo { font-size: 0.95rem; }
  .header-cta { padding: 0.5rem 1rem; font-size: 0.8rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 6rem 1.5rem 3rem; }
  .hero-visual { height: 250px; }
  .hero-geometric { width: 200px; height: 200px; }
  .ring:nth-child(1) { width: 200px; height: 200px; }
  .ring:nth-child(2) { width: 150px; height: 150px; top: 25px; left: 25px; }
  .ring:nth-child(3) { width: 100px; height: 100px; top: 50px; left: 50px; }
  .services { padding: 4rem 1.5rem; }
  .service-grid { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 2.5rem; }
  .contact { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 2rem; }
  .contact-phone { font-size: 1.2rem; padding: 1rem 2rem; }
  footer { flex-direction: column; gap: 0.5rem; text-align: center; }
}
